vog

1,261
reputation
116 views

Registered User

name vog
member for 1 year
seen Aug 29 at 1:00
website
location
age
Dec
6
awarded  Mortarboard
Sep
24
accepted Is there a simple tool to convert mysql to postgresql syntax?
Sep
20
awarded  Yearling
Aug
28
accepted Game positioning OO design
Aug
23
accepted How to: Create reminders that should trigger an event to be handled in a Windows application?
Aug
17
revised Optimizing N Queens code to avoid stack overflow
deleted 18 characters in body; deleted 34 characters in body
Aug
17
revised How can I safely encode a string in Java to use as a filename ?
edited body; added 2 characters in body
Aug
14
comment Avoiding SSL “You are about to be redirected to a connection that is not secure.” message
@TesterTurnedDeveloper: I fully agree. So an answer should explain the good reasons for that warning before blindly suggesting ways to circumvalent it.
Aug
14
revised Avoiding SSL “You are about to be redirected to a connection that is not secure.” message
added 250 characters in body
Aug
14
comment Avoiding SSL “You are about to be redirected to a connection that is not secure.” message
@Jim Robert: This is an urban legend. See: stackoverflow.com/questions/174348/…
Aug
14
revised Optimizing N Queens code to avoid stack overflow
added 11 characters in body; added 48 characters in body; added 130 characters in body
Aug
14
revised Avoiding SSL “You are about to be redirected to a connection that is not secure.” message
deleted 3 characters in body
Aug
14
revised Avoiding SSL “You are about to be redirected to a connection that is not secure.” message
added 606 characters in body; deleted 29 characters in body
Jul
31
accepted C# GUI primer tutorial
Jul
29
comment How do I build a GUI in C++?
If you don't want to sound offensive, you should delete at least the second sentence, even if your answer isn't on top.
Jul
27
comment Framework design patterns
MVC is a good description of what's happening within sole JavaScript (without server requests). It is structured the same way as e.g. Qt or GTK+. This is original, plain MVC. However, if you add server requests (AJAX, etc.) and run the main part of your application on it, its a whole different story.
Jul
27
awarded  Nice Answer
Jul
27
accepted Simple XML - Dealing With Colons In Nodes
Jul
27
revised How to: Create reminders that should trigger an event to be handled in a Windows application?
deleted 14 characters in body
Jul
27
answered How to: Create reminders that should trigger an event to be handled in a Windows application?
Jul
27
revised Avoiding SSL “You are about to be redirected to a connection that is not secure.” message
added 101 characters in body
Jul
27
revised How do I build a GUI in C++?
added 7 characters in body
Jul
27
answered How to: Create reminders that should trigger an event to be handled in a Windows application?
Jul
27
comment How do I build a GUI in C++?
@Jim In Texas: I agree, but this "bit of low level" should be learned after the basics, so I still find that recommendation inappropriate for beginners.
Jul
27
comment How do I build a GUI in C++?
Thanks! I fixed that.
Jul
27
revised How do I build a GUI in C++?
added 4 characters in body
Jul
27
revised Avoiding SSL “You are about to be redirected to a connection that is not secure.” message
added 24 characters in body; added 81 characters in body
Jul
27
comment Avoiding SSL “You are about to be redirected to a connection that is not secure.” message
@Joel Potter: If you don't have an SSL certificate for your own domain, then yes, you'll have a problem.
Jul
27
revised Avoiding SSL “You are about to be redirected to a connection that is not secure.” message
deleted 42 characters in body
Jul
27
comment Simple XML - Dealing With Colons In Nodes
Done. Thanks for the hint!
Jul
27
revised Simple XML - Dealing With Colons In Nodes
added 325 characters in body; added 27 characters in body; added 19 characters in body
Jul
27
answered Simple XML - Dealing With Colons In Nodes
Jul
27
comment XPath | path expression .Net
"Double slashes are terribly inefficient"?! To my experience, the dependants() operator is quite efficient compared to checking the names of a whole path of XML elements. However, it depends on the index the XPath implementation uses.
Jul
27
revised XPath | path expression .Net
added 13 characters in body
Jul
27
answered XPath | path expression .Net
Jul
27
revised How do I build a GUI in C++?
added 1 characters in body
Jul
27
comment How do I build a GUI in C++?
There are wrappers such as GTKmm. So scragar's proposal is okay. However, I don't like the personal tone of this answer.
Jul
27
comment How do I build a GUI in C++?
This introduces the Win32 API, a very low level approach to GUI programming that ties you to the Windows platform. I would not recommend that.
Jul
27
revised How do I build a GUI in C++?
added 54 characters in body; added 194 characters in body
Jul
27
comment Qt wrapper for C libraries
What do you mean with a "QT-like wrapper"?
Jul
27
answered How do I build a GUI in C++?
Jul
27
answered Read content of RAR file into memory in Python
Jul
27
comment Avoiding memory leaks while mutating c-strings
@Alan: I think that risking buffer overflows is also a bad idea for "education purposes". YMMV.
Jul
27
comment Storing, Updating, Retrieving settings for a PHP Application without a Database
@hobodave: Please don't take the votes personally. I don't know whether you noticed, but I removed my answer after you explained to me why it was misguided.
Jul
27
comment Storing, Updating, Retrieving settings for a PHP Application without a Database
There's a difference between "parallel writes cleanly overwrite each other" and "parallel writes leave a mess which can't be read in anymore". Although the first variant might be acceptable, the second one definitely isn't. However, the second scenario is possible since Zend_Config_Writer_Ini::write() is not atomic. Introducing such a race condition into a web application is negligent, and that's my reason for voting down this dangerous approach. It is nothing personally against you, hobodave.
Jul
27
comment Avoiding SSL “You are about to be redirected to a connection that is not secure.” message
@Abignale: The cryptographic traffic overhead is AFAICS seldomly observed. In addition, cryptography is usually combined with compression, so if you haven't used compression (e.g. mod_deflate) before, the cryptography might even decrease the traffic.
Jul
27
comment Avoiding SSL “You are about to be redirected to a connection that is not secure.” message
There'a a good reason for the browser to warn. You shouldn't circumvalent it without understanding why it's there in the first place. You should get down to the root of the trouble instead of fighting symptoms.
Jul
27
comment Framework design patterns
This is just MTV implemented using the strategy (aka "templated method") pattern. So yes, internally it uses another pattern, as every software uses internally more than one pattern, but at the whole it's still just MTV.
Jul
27
accepted Can I use C++ features while extending Python?
Jul
27
comment Storing, Updating, Retrieving settings for a PHP Application without a Database
Of course I meant parallel write access. There's a difference between "parallel writes cleanly overwrite each other" and "parallel writes leave a mess which can't be read in anymore". Although the first variant might be acceptable, the second one definitely isn't. However, the second scenario is possible since file_put_contents() is not atomic.