DrJokepu
|
Registered User
|
Software Developer (C#) / System Analyst
[A Certain Music Industry Company] Ltd. London, UK |
|
10h |
revised |
Centralised settings in C# for multiple programs added 491 characters in body; added 17 characters in body |
|
10h |
answered | Centralised settings in C# for multiple programs |
|
15h |
comment |
Why did(do) you study informatics ? As we have discussed before, for the girls, of course: stackoverflow.com/questions/68675/… |
|
1d |
comment |
Difference between big-O notation and big-O estimate Why don't you ask your teacher? Surely he or she is better qualified to do it than a bunch of people on the Internet. |
|
1d |
comment |
Is it possible to protect from downloading a video from a site. This is so trivial I'm surprised that it has to be explained to people. |
|
1d |
answered | In C is “i+=1;” atomic? |
|
2d |
comment |
Number of nested loops at runtime Lumpy: If you make sure that your recursive function is tail-recursive, transforming it to a loop should be trivial. Hence you can keep the both "elegance" of recursion and the speed and stack-friendliness of loops. |
|
2d |
answered | Number of nested loops at runtime |
|
2d |
comment |
Interview question: f(f(n)) == -n The problem with this approach is that it doesn't work with two's compliment negative numbers (which is what every modern CPU uses). That's why I deleted my identical answer. |
|
Nov 22 |
comment |
Learning c++ from a C# background Saying that 'in C# a struct lives on the stack and a class lives on the heap' makes Jon Skeet cry. It is just not true. Read up on it. |
|
Nov 21 |
comment |
C# 3 byte Ints If you'll ever run this code on a big endian device (unlikely in the case of C#, but not entirely impossible) this will break, of corse. |
|
Nov 20 |
comment |
If C# is type safe why is this possible without casting? It is part of the language, not the class library. You won't find the operator + (int, int) or operator == (int, int) in Reflector either. |
|
Nov 20 |
revised |
If C# is type safe why is this possible without casting? made in sound more english |
|
Nov 19 |
answered | If C# is type safe why is this possible without casting? |
|
Nov 19 |
comment |
The Jquery displays $20.099999999999998 instead of $20.1 Of course, this has nothing to do with jQuery. This is a javascript/floating point problem. |
|
Nov 18 |
answered | Is there any assembly language debugger for OS X? |
|
Nov 18 |
answered | program c# for 10+(5/3) without using ‘/’ operator |
|
Nov 18 |
comment |
How do I make sure a file path is safe in C#? I know it's nitpicking, but "resolving to the most simple form" is not straightforward at all, given that NTFS supports junctions (hard links). All I'm saying I guess that this problem is a lot more complicated than it looks like at first glance. |
|
Nov 18 |
comment |
Which 32-bit/64-bit CPU architecture has the easiest instruction set? Just out of curiosity, why is parsing / assembling x86 assembly so hard? |
|
Nov 18 |
comment |
Which 32-bit/64-bit CPU architecture has the easiest instruction set? Very good post, +OVER 9000 |
|
Nov 18 |
comment |
How do I make sure a file path is safe in C#? So how about C:\ImageRepository\Customers\100\..\101\secretstuff.png? |
|
Nov 16 |
awarded | ● Popular Question |
|
Nov 16 |
comment |
C program to compare integers without using logical operators? As Sam152 mentionned, you can always text for equality with XOR (^ operator in C). if (a ^ b == 0) -> they're equal |
|
Nov 16 |
comment |
What is good about Objective-C? Why would anyone care about the order of they're named anyway? |
|
Nov 16 |
comment |
wpf DataGrid control: adding the most recent row on top. I didn't realize that there was a DataGrid control shipped with WPF. |
|
Nov 16 |
revised |
Is WebRequest The Right C# Tool For Interacting With Websites? Added semicolon to please the angered spirits |
|
Nov 16 |
comment |
Automated web browser? (anyway, you should probably try .SetAttribute("value", "myname") instead) |
|
Nov 16 |
comment |
Automated web browser? gold farming, eh? |
|
Nov 14 |
comment |
Can I add custom attribute to html tag? and also stackoverflow.com/questions/209428/… |
|
Nov 14 |
comment |
Can I add custom attribute to html tag? stackoverflow.com/questions/432174/… |
|
Nov 14 |
accepted | Hex 0x0001 vs 0x00000001 |
|
Nov 14 |
answered | Hex 0x0001 vs 0x00000001 |
|
Nov 14 |
comment |
Alternative to Java Curiosly enough, I've read a paper a while ago in a computer science journal about OOHaskell, I believe this is the same paper: homepages.cwi.nl/~ralf/OOHaskell |
|
Nov 14 |
comment |
Alternative to Java I think he said genetics not generics. |
|
Nov 13 |
revised |
Inner classes in C# edited tags to reflect proper terminology |
|
Nov 12 |
comment |
mapping an I/O port to memory? That's going to be funny given that on x86 everything over 0xc0000000 is owned by the kernel. You're not writing a device driver are, are you? |
|
Nov 12 |
comment |
Determining child interface closest to a class Even if there are no "diamonds" you will still have to traverse the whole interface inheritance tree to you find IParent. Recursive functions come to mind to traverse a tree to find something. |
|
Nov 12 |
comment |
Determining child interface closest to a class C# supports multiple inheritance of interfaces. Let's say there are two intefaces inheriting from IParent: IChild1 and IChild2. What happens if a class implements both IChild1 and IChild2? |
|
Nov 12 |
answered | Hex vs decimal as OracleCommand parameters |
|
Nov 12 |
comment |
Casting generic type “as T” whilst enforcing the type of T You're right, I forgot the syntax, fixed. |
|
Nov 12 |
revised |
Casting generic type “as T” whilst enforcing the type of T fixed syntax; added 66 characters in body |
|
Nov 12 |
answered | Casting generic type “as T” whilst enforcing the type of T |
|
Nov 12 |
answered | How to emulate IE7 and FF2? |
|
Nov 12 |
comment |
Deserialize Json in C# Actually, there are three different JSON serializers included with .NET 3.5. In 2.0 however, there's only one and it's not very good either so if you use 2.0 you have to get a third party library. |
|
Nov 10 |
answered | MySql connection, can I leave it open? |
|
Nov 9 |
comment |
SQL performance issue for IN and OR @IronGoofy: It totally does. In Oracle 8. Modern databases should handle it just fine though. |
|
Nov 9 |
answered | jquery Dollar sign |
|
Nov 8 |
comment |
.NET 4 Profiler? Thanks for your advices. Unfortunately, it's not very easy to get the generated MSIL due to the compiler being a JIT compiler - the compiled code is never written to the disk. While I agree that compiler optimization is over-emphasized (especially in .NET), for a program compiled with my compiler it takes almost a second on a modern computer to calculate the factorial of 20 so there's clearly something wrong and I was hoping that a profiler could help me find the source of the problem. |
|
Nov 8 |
comment |
How can I achieve inheritance in C? stackoverflow.com/questions/1237266/… |
|
Nov 5 |
accepted | How to upload a file over 2MB |
