CesarB

6,624
Reputation
191 views

Registered User

Name CesarB
Member for 1 year
Seen Nov 24 at 14:07
Website
Location Rio de Janeiro, Brazil
Age
Nov
24
comment Worst UI You’ve Ever Used
The "pro mode" screen seems to be quite simple in comparison: jensroesner.de/wgetgui/data/…
Nov
24
comment Flow controlling macros with ‘goto’
From the pulseaudio maintainer: "On modern systems it has become pretty clear that for normal userspace software only an aborting malloc() makes sense [...]" article.gmane.org/gmane.comp.audio.jackit/19998/…
Nov
13
comment What is Caps Lock good for?
EVEN WITH CRUISE CONTROL YOU STILL HAVE TO STEER
Oct
29
accepted How are NULLs stored in a database ?
Oct
16
awarded  Yearling
Oct
9
awarded  Good Answer
Oct
3
awarded  Nice Answer
Sep
29
awarded  Enlightened
Sep
29
accepted How to flush output of Python print?
Sep
18
accepted GCC: program doesn’t work with compilation option -O3
Aug
10
answered To find a Git Repo by its ID
Aug
1
comment Merge sort in Haskell
@alexey_r: I meant arrays for replacing [String], not for replacing String aka [Char] itself. Replacing String is a separate optimization.
Aug
1
revised Merge sort in Haskell
answer how to make it more efficient
Aug
1
answered Merge sort in Haskell
Jul
27
answered Open-source tool to visualize C/C++ header file dependencies?
Jul
23
comment Can a single SetEvent() trigger multiple WaitForSingleObject()
Do not use PulseEvent, see blogs.msdn.com/oldnewthing/archive/…
Jul
22
comment GCC Atomic Builtins instead of pthread?
These builtins were defined by Intel, as the page mentions; I would expect they also work on other compilers.
Jul
22
answered GCC Atomic Builtins instead of pthread?
Jul
22
answered Why does Internet Explorer need the “hasLayout” flag?
Jul
17
comment Build An Linux Executable Using GCC
Doesn't gcc (in fact the linker it calls) already set the executable bit in its output file?
Jul
16
answered Is there a “safe” subset of Python for use as an embedded scripting language?
Jul
15
comment Why is “array” a reserved word in C/C++?
Cygwin is a Unix-like system. "link" is a global function declared in unistd.h, which iostream ended up including. This is what is confusing the compiler; it is probably using the definition of "link" as a function, instead of your definition as a struct. When compiling for Unix, you should avoid using names reserved for the POSIX headers; when compiling for Win32, you should avoid the names from the Win32 headers. Since you are using cygwin, you have to avoid both sets of names.
Jul
9
accepted Is there a definitieve resource that documents navigation of the linux /proc and /sys filesystems?
Jul
9
answered Is there a definitieve resource that documents navigation of the linux /proc and /sys filesystems?
Jul
7
revised Is gettimeofday() guaranteed to be of microsecond resolution?
fix escaping
Jul
7
comment Is gettimeofday() guaranteed to be of microsecond resolution?
Note that the TSC might not always be synchronized between cores, might stop or change its frequency when the processor enters lower power modes (and you have no way of knowing it did so), and in general is not always reliable. The kernel is able to detect when it is reliable, detect other alternatives like HPET and ACPI PM timer, and automatically select the best one. It's a good idea to always use the kernel for timing unless you are really sure the TSC is stable and monotonic.
Jul
7
comment Purpose of struct, typedef struct, in C++
Another difference would be in name mangling of functions within these structs or receiving them or pointers to them as parameters.
Jul
6
accepted Get the Linux Kernel make process to rebuild modified files
Jul
6
answered Why can’t gcc find the random() interface when -std=c99 is set?
Jul
4
accepted Why do I get different results when I dereference a pointer after freeing it?
Jul
3
answered Why do I get different results when I dereference a pointer after freeing it?
Jul
2
comment Most wanted database feature?
Already exists on PostgreSQL: postgresql.org/docs/8.4/…
Jul
1
awarded  Nice Answer
Jul
1
answered Equivalent of “pthread_rwlock_timedrdlock()” and “pthread_rwlock_timedwrlock()” in MSVC/Windows
Jul
1
accepted Is it possible to turn off support for “and” / “or” boolean operator usage in gcc?
Jul
1
comment Alternatives to dlsym() and dlopen() in C++
Instead of getting a pointer to a table, you could instead get a pointer to a function which when called returns the pointer to the table. This allows the plugin to initialize itself before any other function is called, and even create the table dynamically.
Jul
1
revised Is it possible to turn off support for “and” / “or” boolean operator usage in gcc?
mention the risks of using the switch
Jul
1
answered Is it possible to turn off support for “and” / “or” boolean operator usage in gcc?
Jun
30
answered __udivdi3 undefined. Howto find code?
Jun
29
comment What was the strangest coding standard rule that you were forced to follow?
Somewhat related questions (both mine): stackoverflow.com/questions/224138/… and stackoverflow.com/questions/224421/…
Jun
29
comment What features do you miss in C++?
From gcc.gnu.org/gcc-4.5/changes.html: "When printing the name of a class template specialization, G++ will now omit any template arguments which match the default template argument for that parameter." If I'm reading this right, it should help a lot with these error messages.
Jun
29
answered Get the Linux Kernel make process to rebuild modified files
Jun
26
answered How to check if a file has been opened by another application in C++
Jun
25
comment What different terms mean the same thing (or don’t, but people think they do)?
blogs.msdn.com/oldnewthing/archive/…
Jun
25
accepted Header files in subdirectories (e.g. gtk/gtk.h vs gtk-2.0/gtk/gtk.h)
Jun
24
comment Header files in subdirectories (e.g. gtk/gtk.h vs gtk-2.0/gtk/gtk.h)
AFAIR, gtk-config has been replaced by the generic pkg-config a long time ago (as have most other uses of packagename-config style scripts).
Jun
24
answered Header files in subdirectories (e.g. gtk/gtk.h vs gtk-2.0/gtk/gtk.h)
Jun
24
revised How can I quickly create large (>1gb) text+binary files with “natural” content? (C#)
remove extraneous character in title
Jun
24
comment How can I quickly create large (>1gb) text+binary files with “natural” content? (C#)
There is alread a compression benchmark which uses a portion of the Wikipedia dump: cs.fit.edu/~mmahoney/compression/…
Jun
23
comment Will it ever be possible to run all web traffic via HTTPS?
All else being equal, if you use 2x the number of bits in the key, you just SQUARED the amount of work needed to break it via brute force, while normal encryption and decryption would be just around 2-4 times slower. Brute-force being 10x faster just loses you around 3.3 bits of key strength. You should be more worried about advances in the math the crypto people use than about computers becoming faster.