Dreadfully boring day looming....
-
Been here since 7.50am (8.44 now) and already I am waiting for hometime. Rebranding applications........zzzzzzzzzzzzz Company name change and logo replacement. 10 Print "DULL" 20 GOTO 10
I still remember having to write your own code in FORTRAN rather than be a cut and paste merchant being pampered by colour coded Intellisense - ahh proper programming - those were the days :)
-
Been here since 7.50am (8.44 now) and already I am waiting for hometime. Rebranding applications........zzzzzzzzzzzzz Company name change and logo replacement. 10 Print "DULL" 20 GOTO 10
I still remember having to write your own code in FORTRAN rather than be a cut and paste merchant being pampered by colour coded Intellisense - ahh proper programming - those were the days :)
Did something similar a few days ago, but it just was a product name change. Very boring... :suss:
If you truly believe you need to pick a mobile phone that "says something" about your personality, don't bother. You don't have a personality. A mental illness, maybe - but not a personality. - Charlie Brooker My Blog - My Photos - ScrewTurn Wiki
-
Been here since 7.50am (8.44 now) and already I am waiting for hometime. Rebranding applications........zzzzzzzzzzzzz Company name change and logo replacement. 10 Print "DULL" 20 GOTO 10
I still remember having to write your own code in FORTRAN rather than be a cut and paste merchant being pampered by colour coded Intellisense - ahh proper programming - those were the days :)
A bit of rewriting to ManagedCode ...
using System; public class BoredomWrite { public static void Main(string[] args) { while (true) { Console.WriteLine("Dull".ToUpper()); } } }
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT. -
A bit of rewriting to ManagedCode ...
using System; public class BoredomWrite { public static void Main(string[] args) { while (true) { Console.WriteLine("Dull".ToUpper()); } } }
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.Sometimes I find your sentences elongated.. but just finding that you do that in your code too !:-D Why not just
Console.WriteLine("DULL")
?
Jemmy : Deadline? Pfft, a real programmer eats deadlines for breakfast. :P Mark: I thought real programmers ignored deadlines :sigh: Best wishes to Rexx[^]
-
Been here since 7.50am (8.44 now) and already I am waiting for hometime. Rebranding applications........zzzzzzzzzzzzz Company name change and logo replacement. 10 Print "DULL" 20 GOTO 10
I still remember having to write your own code in FORTRAN rather than be a cut and paste merchant being pampered by colour coded Intellisense - ahh proper programming - those were the days :)
;P
We are a big screwed up dysfunctional psychotic happy family - some more screwed up, others more happy, but everybody's psychotic joint venture definition of CP
My first real C# project | Linkify!|FoldWithUs! | sighist -
Sometimes I find your sentences elongated.. but just finding that you do that in your code too !:-D Why not just
Console.WriteLine("DULL")
?
Jemmy : Deadline? Pfft, a real programmer eats deadlines for breakfast. :P Mark: I thought real programmers ignored deadlines :sigh: Best wishes to Rexx[^]
Just to treat with safe any user inputs on par with magic strings. Should you substitute args[0], where the user can enter a mix and match of uppercase and lowercase, then the boredom code should work fine there too. Isn't it? I admit that accessing args[0] without encompassing it in a valid try catch block is a coding horror however. ;)
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT. -
Just to treat with safe any user inputs on par with magic strings. Should you substitute args[0], where the user can enter a mix and match of uppercase and lowercase, then the boredom code should work fine there too. Isn't it? I admit that accessing args[0] without encompassing it in a valid try catch block is a coding horror however. ;)
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.You aren't using the args parameter. :doh: