gnud

6,272
Reputation
287 views

Registered User

Name gnud
Member for 1 year
Seen 3 hours ago
Website
Location NO
Age
1d
answered Implementing a File Object (C++)
2d
revised In C is “i+=1;” atomic?
deleted 90 characters in body
2d
comment How to use strtol to read from an __int64 value ?
Doesn't seem like this exists for msvc, although it seems kinda identical to __strtoi64.
2d
answered How to use strtol to read from an __int64 value ?
2d
answered In C is “i+=1;” atomic?
Nov
23
accepted PHP object has semicolon (or other strange character) in variable name
Nov
23
comment PHP object has semicolon (or other strange character) in variable name
Thanks - the one time I didn't run my example code :)
Nov
23
revised PHP object has semicolon (or other strange character) in variable name
added 2 characters in body
Nov
23
answered PHP object has semicolon (or other strange character) in variable name
Nov
22
answered php - Should I encrypt email addresses?
Nov
20
answered Fron Array (var_dump) to my array?
Nov
20
answered How do I show what fields a struct has in gdb?
Nov
17
answered Dynamically reassemble a picture in javascript
Nov
16
answered How is a union different from a struct? Do other languages have similar constructs?
Nov
15
answered Initialize Objects like arrays in PHP?
Nov
15
revised RegEx to get the keywords from HTML
better pattern: uses the "w" class to match international characters.
Nov
15
revised RegEx to get the keywords from HTML
added 19 characters in body; added 86 characters in body
Nov
15
answered RegEx to get the keywords from HTML
Nov
14
answered save variable as txt but not in the server
Nov
14
answered Looking for a Java Graphics alternative
Nov
14
comment Java: Is there support for macros?
Agreed - it's not a pretty picture.
Nov
13
answered Java: Is there support for macros?
Nov
13
revised PHP database connection
added 125 characters in body
Nov
13
answered PHP database connection
Nov
13
comment list management python
You define urlList to be a dict, not a list...
Nov
13
answered How to remove unique, then duplicate dictionaries in a list?
Nov
13
answered How does PHP process functions in a file?
Nov
13
comment Php syntax error
Ockonal, it seems your machine is running PHP4. The code is for php5. In php4, "private" is not a keyword, hence the error.
Nov
13
comment PHP Preg-Replace more than one underscore
No need to define a character class.
Nov
13
comment Accented/umlauted characters in C?
Well, your terminal input is in UTF-8, but your locale is in ASCII. That's gonna cause some problems :)
Nov
13
comment Accented/umlauted characters in C?
You have to include langinfo.h for CODESET to be defined.
Nov
12
awarded  Nice Answer
Nov
12
comment Accented/umlauted characters in C?
What's the output of locale charmap in the terminal, and of calling nl_langinfo(CODESET) after the call to setlocale() in the c program?
Nov
12
comment Is anybody working on a high level standard library for C++
Yes - several other projects also have nice networking components. I just don't know what the asker is looking for.
Nov
12
revised Accented/umlauted characters in C?
added example
Nov
12
comment Accented/umlauted characters in C?
Sorry, I removed my -1. But still - checking if the byte equals 0x3c? Check if it's > 127, please! Otherwise, any UTF-8-sequence not starting with 0x3c will yield wild results, because each byte in the sequence will be treated as ASCII.
Nov
12
comment Accented/umlauted characters in C?
This post shows a profound ignorance of UTF-8, and encodings in general. It's just plain wrong: The sum of the two bytes is NOT the unicode code point. -1
Nov
12
comment Accented/umlauted characters in C?
Of course the platform matters - 'ö' does not fit in one byte in UTF-8, so you can't compare it as a character constant.
Nov
12
answered Is anybody working on a high level standard library for C++
Nov
12
comment h1 tag class (alternate)
Well, you will need a corresponding CSS rule...
Nov
12
answered How to balance tags with PHP
Nov
12
answered Accented/umlauted characters in C?
Nov
12
comment Deleting duplicate dictionaries in a list in python
Just remember, this version will work for lists of dictionaries, not lists of lists :)
Nov
12
answered change file extension in php?
Nov
12
answered How could I print out the nth letter of the alphabet in Python?
Nov
12
awarded  Nice Answer
Nov
12
comment PDF Generation with High Resultion SVG Images (suggestions needed!)
You want to create a PDF from existing HTML? Or programatically?
Nov
12
answered aspect-oriented techniques in python?
Nov
12
accepted python function slowing down for no apparent reason
Nov
12
revised python function slowing down for no apparent reason
added 430 characters in body