blog.x-e.ro / page 14 of 157 art floria : african violets
what a beautiful summer it has been so far. my mom has been able to grow foreign flowers that she could have never dreamed about this year. a prime example were these gorgeous african violets. they bud as little pink balls, then they slowly open up into amazing little purple flowers.
fonts :: my new type foundry
the time is has finally come. my new font site is online. i have meticulously updated all my older fonts, and reinvented my type foundry. i currently have 21 fonts for download. type|size=0 is dead. long live the fontvir.us!
edit: i no longer own this domain
pure php email validation : using regular expressions
php :: using regular expressions
<?php
$email = 'someone@somewhere.com';
if (!eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $email)) {
//invalid email
} else {
//valid email
}
?>
SQL get last ID : mssql and mysql
here's a simple SQL script that returns the last row created. this is great for when you add a new record that has an autogenerated id and you need that number.
mssql
CREATE PROCEDURE [dbo].[getLastLogin]
AS
SELECT TOP 1 *
FROM dbo.login
ORDER BY id DESC
GO
mysql
SELECT * FROM `login`
ORDER BY `id` DESC
LIMIT 1,1;
plasma pong : fluid dynamics meets 80's nostalgia
games :: fluid dynamics meets 80's nostalgia
this little freeware gem will keep you occupied for hours. the game combines fluid dynamics with classic 80's nostalgia for and awesome game. and did i mention that it was free? grab a copy for pc or mac at plasmapong.com.
graphic reset buttons : w/o javascript
i was having some trouble at work creating form buttons with graphics for reset buttons. i just thought someone might be interested in my non-javascript solution:
<button style="background: none; border: none;">
<img src="reset.jpg" alt="" />
</button>
the magic number : HD DVD processing key leaked
video :: HD DVD processing key leaked
09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0
HD DVDs
everyone is going crazy over this. in case you’re a n00b and don’t know, this is the 'processing key' for all HD-DVDs out currently. this means that linux will now have the ability to decode and play HD movies, as well as facilitate the creation of HD-DVD backup warez. this number cannot be copywritten, so feel free to share!