I am 74% addicted to blogging
74%How Addicted to Blogging Are You? Are you addicted to blogging or maybe you think so? Take the test…. Source: Delirium
74%How Addicted to Blogging Are You? Are you addicted to blogging or maybe you think so? Take the test…. Source: Delirium
Ever wondered what the internet is and how it works or maybe how your notebook connects to the internet to shower you will all your desired content? CypherHackz had posted a 2 part video appropriately titled “The Dawn Of The Net” on his blog which I found to be super educational to those wanting to understand what happens and how in the network. From the time you hit enter right up till the page is displayed in your browser. Part 1/2 [youtube]http://www.youtube.com/watch?v=mn6A0Y5aroc[/youtube] ...
I want those stickers!! Delirium’s first contest winners will receive those stickers. Want in too? This is what you gotta do; Subscribe to Delirium via RSS or Email. Link back to Delirium. Be the top commentator. Contest ends on the 13th Jan 2008 so if you want them then start moving. Source: Delirium
The videos speaks for itself. Enjoy [youtube]http://www.youtube.com/watch?v=1lE21kpE3M0[/youtube] Source: Delirium
My friend wanted to know how to select all files but one on the CLI or in a bash script. This is how I normally do it, do you know a better way? ** From the command line** ls * | grep -v [pattern to ignore] or ls [!pattern to ignore] * in a bash script it may look like this, for i in `ls * | grep -v [pattern to ignore]` do do something here done ...