Daren Thomas
|
Registered User
|
|
Dec 17 |
awarded | ● Nice Answer |
|
Dec 14 |
awarded | ● Notable Question |
|
Dec 9 |
comment |
Storing Python dictionary entries in the order they are pushed quick and dirty. alas, not very compact (can get brittle). |
|
Dec 8 |
comment |
How can I use a key generated with sn.exe to sign a string in php? Actually, it is not that easy either. Given a key pair generated by RSACryptoServiceProvider, how do you get that into the .pem format expected by PHP? |
|
Dec 8 |
revised |
How can I use a key generated with sn.exe to sign a string in php? deleted 2 characters in body |
|
Dec 8 |
asked | How can I use a key generated with sn.exe to sign a string in php? |
|
Dec 7 |
revised |
Can I use the assemblies PublicKey to decrypt a string encrypted with the corresponding PrivateKey? added 940 characters in body |
|
Dec 7 |
comment |
Can I use the assemblies PublicKey to decrypt a string encrypted with the corresponding PrivateKey? @Eric Lippert: Thank you for those very valuable comments. Actually, just signing the stuff will be enough. But I will now spend a lot of thinking about the chosen-ciphertext attack. |
|
Dec 7 |
comment |
How to find the mime type of a file in python? check out the accepted solution. The mimetypes module works in windows too. |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 4 |
awarded | ● Nice Answer |
|
Dec 4 |
comment |
Can I use the assemblies PublicKey to decrypt a string encrypted with the corresponding PrivateKey? this is what I thought... will have to try some stuff out... |
|
Dec 4 |
comment |
Can I use the assemblies PublicKey to decrypt a string encrypted with the corresponding PrivateKey? could I reproduce the crippled signing "feature" in php? Do you know of a library for that? |
|
Dec 4 |
asked | Can I use the assemblies PublicKey to decrypt a string encrypted with the corresponding PrivateKey? |
|
Dec 3 |
comment |
What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) this mimicks pythons random.choice(seq) function. nice. |
|
Dec 2 |
comment |
Is there a tuple data structure in Python I agree. See Kimvais below for a solution to that. |
|
Dec 2 |
answered | Is there a tuple data structure in Python |
|
Nov 27 |
comment |
Remove first line in text file without allocating memory for entire text file wow. perl one-liners allways freak me out. Love it! |
|
Nov 26 |
answered | Remove first line in text file without allocating memory for entire text file |
|
Nov 26 |
comment |
How to convert an 18 Character String into a Unique ID ? why not use a table in your database for this? |
|
Nov 25 |
revised |
How to convert an 18 Character String into a Unique ID ? added 176 characters in body; deleted 21 characters in body |
|
Nov 25 |
answered | How to convert an 18 Character String into a Unique ID ? |
|
Nov 24 |
revised |
stripout comments from xml added 103 characters in body |
|
Nov 22 |
accepted | stripout comments from xml |
|
Nov 19 |
answered | Is the usage of stored procedures a bad practice? |
|
Nov 11 |
revised |
How to intersect two polygons? added 175 characters in body |
|
Nov 10 |
comment |
Suggestions for a good commit message: format/guideline? No, because the tracker can be consulted whenever you really need to find out. Also, this emphasises keeping commit granularity at bug/task level. |
|
Nov 2 |
awarded | ● Notable Question |
|
Oct 28 |
asked | How to force Visual Studio 2008 to regenerate code from T4 templates when an XML file changes? |
|
Oct 28 |
comment |
Automate download of BusinessObjecs Web Intelligence reports Yup. This was a fun track to pursue - alas I couldn't get it to work. Bugger :) |
|
Oct 23 |
answered | Parsing XML - right scripting languages / packages for the job? |
|
Oct 23 |
comment |
What is the expected period of a repeating event that has a random (but limited) interval between each occurrence? Yes, I saw that, but got fed up with my answer (its a mess, I like yours better) - also, for expected timer values, the error gets a lot smaller. I'm not sure if a timer value of 0 would really work... |
|
Oct 23 |
awarded | ● Popular Question |
|
Oct 23 |
revised |
What is the expected period of a repeating event that has a random (but limited) interval between each occurrence? added 275 characters in body; added 91 characters in body |
|
Oct 23 |
answered | What is the expected period of a repeating event that has a random (but limited) interval between each occurrence? |
|
Oct 21 |
awarded | ● Popular Question |
|
Oct 21 |
comment |
What are first-class objects in Java and C#? Right, functions are a good example: First-Class means here "you can store them in a List". You can't store ints in a Java list (at least you couldn't in earlier versions, because an int is not an object - you can now, but there is some magic involved). |
|
Oct 16 |
comment |
What is the rationale for all comparisons returning false for IEEE754 NaN values? yes, comparing a string to a string makes sense. But comparing a string to, say, apples, does not make much sense. Since apples and pears are not numbers, does it make sense to compare them? Which is greater? |
|
Oct 15 |
awarded | ● Popular Question |
|
Oct 15 |
answered | How to execute a callback method instead of an anonymous method? |
|
Oct 15 |
comment |
How do I validate a text box to only allow letters and numbers using a regular expression? Thomas, this assumes English alphabet only. |
|
Oct 15 |
revised |
What is the official name of a class that must be inherited from to instantiate? tried to make the title more descriptive |
|
Oct 14 |
comment |
Is there an equivalent to ‘cut -c’ in Windows cmd.exe (or other XP-standard tools)? @Johannes: A language can be both useful (to get things done) and ghastly at the same time. These are orthogonal concepts. As to fun... there are a lot of really weird people out there (about one in twenty). |
|
Oct 14 |
accepted | Can I avoid exceptions in C#, continuing code execution? |
|
Oct 14 |
revised |
Why does resharper suggest readonly fields deleted 5 characters in body |
|
Oct 14 |
comment |
Creating a byte[] from a List<Byte> +1 Because sometimes you have done your homework (profiling) and really need to do this optimization. Question is generally relevant, even not necessarily in OPs case. |
|
Oct 14 |
comment |
C: Looping without using looping statements or recursion wow. that blew my mind. sneaky: use somebody else's loop... |
|
Oct 14 |
answered | What is the rationale for all comparisons returning false for IEEE754 NaN values? |
|
Oct 14 |
comment |
python expression for this: max_value = max(firstArray) that is not in secondArray set() has to be one of my favorite types in python! Perl taught us to think in dictionaries, Python to think in sets. |
|
Oct 14 |
comment |
Is there an equivalent to ‘cut -c’ in Windows cmd.exe (or other XP-standard tools)? yup. I would avoid cmd.exe wherever possible (I was tempted to see if I could post some source, but then... it's just plain ghastly!) |
