It took me ten minutes to figure out how to call from my Nokia 5230
Fahad Sadah
Posts
-
Fighting obsolescence..... - do you REALLY use a smart phone, and if so, how? -
Jokes in Code CommentsWhy were you using GOTO in the first place? :doh:
-
Pranking the office: fake Blue Screen of DeathActually, it does what he says it does.
-
Why you should never change the order of mission critical tasksEnnis Ray Lynch, Jr. wrote:
- Eat Breakfast (no comment about 3 please))
-
What is your best code comment this year? -
What is your best code comment this year?I was trying to get a certain CSS3 selector (forget which one, now) to work in Firefox and Webkit type browsers, without -moz- and -webkit- prefixes (I'll share the secret later). I used <magic> tags, but didn't comment them out =p
-
What is your best code comment this year?Real programmers don't need processors.
-
Interesting code commentsMy english teacher last year was talking to me about an essay I handed her. She was saying that it was waay beyond my level, a great essay, and obviously plagiarised. I told her it was my own work, and she checked by searching google. She concluded that yes, it was mine, but it was a rubbish essay anyway, full of faults, worst she'd ever seen.
-
CSS Poll.class .anotherclass .yetanotherclass .moreclassness .fifthclass .ireallyshouldgivetheseclassesnames .nooneunderstandsmycode So 1) :-D
-
How far do you go with your backupsWhat backups?
-
Anyone fancy a game of word association? I'm starting BoredHaven't we already had go?
-
Installing programs onto Linux.tar.gz files compressed archives. To open it, do:
tar zxvf bugzilla-3.2.3.tar.gz
The z means unZip, the x means eXtract, the v means Verbose, and the f means File. A new folder will be created, cd into it, see what's in there.
-
Installing programs onto LinuxServer applications like MySQL will not show with applications. Also, please be aware that package names differ between distros.
-
How to unlock a PC programmatically [modified]The default MS "system locked" screen runs in a secure desktop (just like UAC prompts), so that apps cannot touch it. You could implement your own GINA, but definitely not in VB.
-
If You Have a Dell Computer...SLIC code in the BIOS, which you can add yourself.
-
Advice on how to help an 11 year old start programming... -
Need help with TableAdapter problem [modified]Does the delete work in T-SQL?
-
Delegates and Parallel.ForImpossible? Thanks.
-
Abort a suspended threadYou could undo it after. See my reply.
-
Abort a suspended threadtry
{
yourThread.Abort();
}
catch (ThreadStateException e)
{
yourThread.Resume();
}