User vog - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T23:26:26Zhttp://stackoverflow.com/feeds/user/19163http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1184734/optimizing-n-queens-code-to-avoid-stack-overflow/1184794#11847942Answer by vog for Optimizing N Queens code to avoid stack overflowvog2009-07-26T15:02:56Z2009-08-17T18:17:20Z<p><b>Direct answer:</b> There's no need to push whole grids onto the stack, and you might want to represent the grid as array of 8 integers denoting the Queen position at each row.</p>
<p><b>Real problem:</b> Your code is too long and too complicated. Keep it simple! The queen's problem is usually solved by 2 functions of <10 lines each. Is is as simple as:</p>
<p><sub></p>
<pre><code>public static boolean isSolution(final int[] board)
{
for (int i = 0; i < board.length; i++) {
for (int j = i + 1; j < board.length; j++) {
if (board[i] == board[j]) return false; // same column "|"
if (board[i]-board[j] == i-j) return false; // diagonal "\"
if (board[i]-board[j] == j-i) return false; // diagonal "/"
}
}
return true;
}
public static void solve(int depth, int[] board)
{
if (depth == board.length && isSolution(board)) {
outputSolution(board);
}
if (depth < board.length) { // try all positions of the next row
for (int i = 0; i < board.length; i++) {
board[depth] = i;
solve(depth + 1, board);
}
}
}
</code></pre>
<p></sub>
Add some output code and a main program, and you're finished!
<sub></p>
<pre><code>public static void outputSolution(final int[] board)
{
System.out.println("--- Solution ---");
for (int i = 0; i < board.length; i++) {
for (int j = 0; j < board[i]; j++) System.out.print(" ");
System.out.println("Q");
}
}
public static void main(String[] args)
{
int n = 8;
solve(0, new int[n]);
}
</code></pre>
<p></sub></p>
http://stackoverflow.com/questions/1184176/how-can-i-safely-encode-a-string-in-java-to-use-as-a-filename/1184180#11841804Answer by vog for How can I safely encode a string in Java to use as a filename ?vog2009-07-26T09:59:55Z2009-08-17T18:06:29Z<p>It depends on whether the encoding should be reversible or not.</p>
<p><b>Revsersible</b></p>
<p>Use URL encoding (<code><a href="http://java.sun.com/javase/6/docs/api/java/net/URLEncoder.html" rel="nofollow">java.net.URLEncoder</a></code>) to replace special characters with <code>%xx</code>. Note that you take care of the <em>special cases</em> where the string equals ".", equals ".." or is empty!¹ Many programs use URL encoding to create file names, so this is a standard technique which everybody understands.</p>
<p><b>Irrevsersible</b></p>
<p>Use a hash (e.g. SHA-1) of the given string. Modern hash algorithms (not MD5) can be considered collision-free. In fact, you'll have a break-through in cryptography if you find a collision.</p>
<p><hr>
<sub>
¹ You can handle all 3 special cases elegantly by using a prefix such as <code>"myApp-"</code>. If you put the file directly into $HOME, you'll have to do that anyway to avoid conflicts with existing files such as ".bashrc".</sub>
<pre><code>public static String encodeFilename(String s)
{
try
{
return "myApp-" + java.net.URLEncoder.encode(s, "UTF-8");
}
catch (java.io.UnsupportedEncodingException e)
{
throw new RuntimeException("UTF-8 is an unknown encoding!?");
}
}</pre></code></p>
http://stackoverflow.com/questions/1185830/avoiding-ssl-you-are-about-to-be-redirected-to-a-connection-that-is-not-secure/1185862#11858624Answer by vog for Avoiding SSL "You are about to be redirected to a connection that is not secure." messagevog2009-07-26T23:21:42Z2009-08-14T17:15:38Z<p><b>"How can I avoid this?"</b></p>
<p>You shouldn't!</p>
<p>Although you could try that with JavaScript. This might work on some browsers and fail on others.</p>
<p><b>"What's the purpose of this dialog?"</b></p>
<p>It warns because switching between SSL and non-SSL on websites is usually unexpected by the user. A warning about the "non-SSL to SSL" is not emitted since it increases security and privacy. However, when security is suddenly <i>decreased</i>, the user should notice that quickly, in order to avoid a false feeling of security. In fact, redirecting to a non-SSL site is sometimes used in XSS/MITM attacks.</p>
<p><b>"SSL is going to cause an increase in traffic / processing power"</b></p>
<p>This is nonsense. It might be true for sites full of big, static content. However, for normal dynamic web applications, encryption is very cheap compared to business logic, database access, etc.</p>
<p>There is an urban legend saying that SSL-content is not chached by browsers. See "<a href="http://stackoverflow.com/questions/174348/will-web-browsers-cache-content-over-https">Will web browsers cache content over https</a>" for more information.</p>
<p><b>"Yahoo does it. Yahoo is a big technical company. Are you smarter than Yahoo?"</b></p>
<p>Some rhetoric counter-questions:</p>
<ul>
<li>Are you a big technical company like Yahoo?</li>
<li>Did being a big technical company prevent Microsoft from producing crappy software?</li>
<li>Do you have to support crappy old (SSL-broken) browsers, as Yahoo has to?</li>
</ul>
http://stackoverflow.com/questions/1186177/how-to-create-reminders-that-should-trigger-an-event-to-be-handled-in-a-windows/1186216#11862162Answer by vog for How to: Create reminders that should trigger an event to be handled in a Windows application?vog2009-07-27T02:46:52Z2009-07-27T02:53:18Z<p>Locally, you could trigger the events using a timer that check the current time e.g. every 10 seconds or more often. The clients should regularily synchronize with the database server, querying all data for the current day or (on user demand) later events. This allows the clients to run and to remind the user even when the network fails for some time.</p>
<p>Another very interesting option is a server side reminder tool next to the database. It generates reminders and sends them via <a href="http://xmpp.org/" rel="nofollow">XMPP</a> to the clients. The client machines don't need a special software anymore - any Jabber client would be sufficient, although a special software acting as an XMPP client would be possible, too.</p>
http://stackoverflow.com/questions/1186017/how-do-i-build-a-gui-in-c/1186038#118603819Answer by vog for How do I build a GUI in C++?vog2009-07-27T01:08:08Z2009-07-27T02:37:02Z<p>There are plenty of <b>free portable GUI libraries</b>, each with its own strengths and weaknesses:</p>
<ul>
<li><a href="http://www.qtsoftware.com/products/" rel="nofollow">Qt</a>
<li><a href="http://www.gtkmm.org/" rel="nofollow">GTKmm</a> (based on <a href="http://www.gtk.org/" rel="nofollow">GTK+</a>)
<li><a href="http://www.wxwidgets.org/" rel="nofollow">wxWidgets</a>
<li><a href="http://www.fltk.org/" rel="nofollow">FLTK</a>
<li>...
</ul>
<p>Especially <b>Qt has nice tutorials</b> and tools which help you getting started. Enjoy!</p>
<p>Note, however, that you should <b>avoid platform specific</b> functionality such as the Win32 API or MFC. These libraries tie you unnecessarily on a specific platform without any benefits.</p>
http://stackoverflow.com/questions/1186177/how-to-create-reminders-that-should-trigger-an-event-to-be-handled-in-a-windows/1186182#1186182-1Answer by vog for How to: Create reminders that should trigger an event to be handled in a Windows application?vog2009-07-27T02:30:24Z2009-07-27T02:30:24Z<p>You should really <b>avoid popups</b>. Popups are generally considered <b>not user friendly</b>. They interrupt the user's work flow. Even worse, they steal the keyboard input. What if the users was typing an important email right now?</p>
<p>Instead you might provide a nice, pleasant sound and a task bar bubble or similar.</p>
http://stackoverflow.com/questions/1185830/avoiding-ssl-you-are-about-to-be-redirected-to-a-connection-that-is-not-secure/1185852#11858521Answer by vog for Avoiding SSL "You are about to be redirected to a connection that is not secure." messagevog2009-07-26T23:18:12Z2009-07-27T02:13:01Z<p><b>Use SSL for the whole page</b> in the first place!</p>
<p>There's nothing wrong with SSL. You should provide user privacy everywhere, not only on login. It makes sense an the whole site. So simply redirect all non-SSL pages to SSL pages and keep everything SSL.</p>
http://stackoverflow.com/questions/1186107/simple-xml-dealing-with-colons-in-nodes/1186117#11861171Answer by vog for Simple XML - Dealing With Colons In Nodesvog2009-07-27T01:54:25Z2009-07-27T02:07:55Z<p>The solution is explained in <a href="http://www.sitepoint.com/blogs/2005/10/20/simplexml-and-namespaces/" rel="nofollow">this nice article</a>. You need the <code>children()</code> method for accessing XML elements which contain a namespace. This code snippet is quoted from the article:</p>
<pre><code>$feed = simplexml_load_file('http://www.sitepoint.com/recent.rdf');
foreach ($feed->item as $item) {
$ns_dc = $item->children('http://purl.org/dc/elements/1.1/');
echo $ns_dc->date;
}</code></pre>
http://stackoverflow.com/questions/1186056/xpath-path-expression-net/1186081#11860811Answer by vog for XPath | path expression .Netvog2009-07-27T01:35:51Z2009-07-27T01:42:28Z<p><code>//Cities[../name="Orange"]/*</code></p>
<p>The predicate in brackets <code>[../name="Orange"]</code> is roughly equivalent to a where clause.</p>
http://stackoverflow.com/questions/1185959/read-content-of-rar-file-into-memory-in-python/1186014#11860140Answer by vog for Read content of RAR file into memory in Pythonvog2009-07-27T00:58:02Z2009-07-27T00:58:02Z<p>The <a href="http://packages.debian.org/source/lenny/p7zip" rel="nofollow">free 7zip library</a> is also able to handle RAR files.</p>
http://stackoverflow.com/questions/1185874/how-to-determine-absolute-orientation/1185925#11859250Answer by vog for How to determine absolute orientationvog2009-07-26T23:59:27Z2009-07-26T23:59:27Z<p>I think the question "how to determine when to use one or the other" is misguided. You should <b>always use both sensors</b> for orientation. There are cases where one of them is useless. However, these are edge cases.</p>
http://stackoverflow.com/questions/1185878/can-i-use-c-features-while-extending-python/1185907#11859076Answer by vog for Can I use C++ features while extending Python?vog2009-07-26T23:44:31Z2009-07-26T23:44:31Z<p>It doesn't matter whether your implementation of the hook functions is implemented in C or in C++. In fact, I've already seen some Python extensions which make active use of C++ templates and even the Boost library. <b>No problem.</b> :-)</p>
http://stackoverflow.com/questions/1185846/framework-design-patterns/1185881#1185881-1Answer by vog for Framework design patternsvog2009-07-26T23:31:16Z2009-07-26T23:31:16Z<p>MTV is just a more accurate name for what's usually called MVC. So in fact, <b>Rails and Django use the same pattern</b>. Is has established over years and hardly any framework does things differently, except maybe the half-object pattern. However, halb-objects have not established in the web world.</p>
<p>The "real" MVC is a pattern found in classical GUIs as well as within JavaScript (if you only look at what's happening within the browser). It is simply not applicable in the WWW so it had to be adapted. The result is confusingly often also called MVC, while MTV is a more accurate description.</p>
http://stackoverflow.com/questions/1185855/parallel-ssh-in-python/1185871#11858711Answer by vog for Parallel SSH in Pythonvog2009-07-26T23:27:10Z2009-07-26T23:27:10Z<p>You can simply use subprocess.Popen for that purpose, without any problems.</p>
<p>However, you might want to simply install cronjobs on the remote machines. :-)</p>
http://stackoverflow.com/questions/1185802/is-it-possible-to-code-in-firebug-and-save-to-remote-directory/1185813#11858130Answer by vog for Is it possible to code in Firebug and save to remote directory?vog2009-07-26T22:59:33Z2009-07-26T22:59:33Z<p>There's currently no automatic way to do that.</p>
<p>In addition, this would only work for plain HTML, JS and CSS files. If there anything <i>generated</i> on server side, you'll need to update your server-side templates by hand anyway, because the client (Firefox with Firebug) won't know about the template. It only seed the generated code.</p>
http://stackoverflow.com/questions/1185689/avoiding-memory-leaks-while-mutating-c-strings/1185743#11857434Answer by vog for Avoiding memory leaks while mutating c-stringsvog2009-07-26T22:30:54Z2009-07-26T22:30:54Z<p>In order to avoid buffer overflows and memory leaks, you should <b>always use C++ classes</b> such as <code>std::string</code> in this case.</p>
<p>Only the very last instance should convert the class into something low level such as <code>char*</code>. This will make your code simple and safe. Just change your code to:</p>
<pre><code>std::string TextHelper::shortenWithPlaceholder(const std::string& text,
size_t newSize) {
return text.substr(0, newSize-3) + "...";
}</code></pre>
<p>When using that function in a C context, you simply use the <code>cstr()</code> method:</p>
<pre><code>some_c_function(shortenWithPlaceholder("abcde", 4).c_str());</code></pre>
<p>That's all!</p>
<p>In general, you should not program in C++ the same way you program in C. It's more appropriate to treat C++ as a really different language.</p>
http://stackoverflow.com/questions/1185274/how-do-i-get-the-size-of-an-iphone-context/1185321#11853212Answer by vog for How do I get the size of an Iphone contextvog2009-07-26T19:17:46Z2009-07-26T19:17:46Z<p>You can't get that information from the <code>CGContextRef</code> object, but from the surrounding <code>frame</code> object:</p>
<pre><code>self.frame.size.width
self.frame.size.height</code></pre>
http://stackoverflow.com/questions/1185264/is-an-autocomplete-text-box-for-entering-addresses-a-good-idea/1185295#11852950Answer by vog for Is an autocomplete text box for entering addresses a good idea?vog2009-07-26T19:05:55Z2009-07-26T19:05:55Z<ol>
<li><p>This is no problem. As soon as the autocomplete pops up, people will understand.</p></li>
<li><p>Yeah, you should find a way to migrate it, or put that field on top of the address. If it's already entered, people won't think they'll have to enter it again.</p></li>
<li><p>When your store grows, you need chaching. Anyway. At all levels.</p></li>
<li><p>I agree. Just fix some minor issues. :-)</p></li>
</ol>
http://stackoverflow.com/questions/1185272/functional-data-structure-for-a-discussion-site/1185285#11852852Answer by vog for Functional Data-Structure for A Discussion Sitevog2009-07-26T19:02:20Z2009-07-26T19:02:20Z<ol>
<li><p>Add a "parent" link to the class itself.</p></li>
<li><p>Yes.</p></li>
<li><p>Yes, but an integer constrained to {-1,1} would be a good idea, too.</p></li>
</ol>
http://stackoverflow.com/questions/1185248/is-python-only-for-building-backends-when-you-need-to-write-sql-by-hand/1185270#11852702Answer by vog for Is Python only for building backends when you need to write SQL by hand?vog2009-07-26T18:55:15Z2009-07-26T18:55:15Z<p>Your question is very strange.</p>
<p>First, Django doesn't force you to use its SQL abstraction. Each part of Django can be use idenpendently of the others. You can use Django together with any other SQL library.</p>
<p>Second, if you need to build your own SQL queries, an ORM is the <i>opposite</i> of what you need.</p>
http://stackoverflow.com/questions/1185223/best-way-to-do-a-string-search-and-replace/1185243#11852431Answer by vog for Best way to do a string search and replacevog2009-07-26T18:43:51Z2009-07-26T18:43:51Z<p>Don't do that if the wordsToCheck can be modified by a user!</p>
<p>Your approach works perfectly without Regexes. Just do a normal String.Replace.</p>
<p>If the input is safe, you can also use one regex for all keywords, e.g.</p>
<pre><code>return Regex.Replace(contentToReplace, "(this|the|and)", String.Format("<span style=\"background-color:yellow;\">{0}</span> ", word), RegexOptions.IgnoreCase);</code></pre>
<p>where "this|the|and" is simply <code>wordsToCheck</code> where the commas are replaces with pipes "|".</p>
<p>BTW, you might want to take the list keywords directly as a regex instead of a comma separated list. This will give you more flexibility.</p>
http://stackoverflow.com/questions/1185016/how-do-i-detect-groups-of-common-strings-in-filenames/1185065#11850652Answer by vog for How do I detect groups of common strings in filenamesvog2009-07-26T17:25:50Z2009-07-26T18:27:28Z<p>Simply build a histogram whose keys are modified by a regex:</p>
<pre><code><?php
# input
$filenames = array("Birthday001.jpg", "Birthday002.jpg", "Birthday003.jpg", "Picknic1.jpg", "Picknic2.jpg", "Afternoon.jpg");
# create histogram
$histogram = array();
foreach ($filenames as $filename) {
$name = preg_replace('/\d+\.[^.]*$/', '', $filename);
if (isset($histogram[$name])) {
$histogram[$name]++;
} else {
$histogram[$name] = 1;
}
}
# output
foreach ($histogram as $name => $count) {
if ($count == 1) {
echo "$name ($count picture)\n";
} else {
echo "$name ($count pictures)\n";
}
}
?>
</code></pre>
http://stackoverflow.com/questions/1185017/create-dynamic-xml-and-send-it-with-php-class/1185040#11850400Answer by vog for Create dynamic xml and send it with php classvog2009-07-26T17:09:42Z2009-07-26T17:14:58Z<p>The given code looks strange. I think the "<code><?php</code>" lines needs to be moved up as the first line. You should also check whether any of your included files accidently perform some output, e.g. by having a space or line break in front of their first "<code><?php</code>" or after their last "<code>?></code>".</p>
<p>Apart from that, you could use an XML library, but this will only ensure your XML code is well-formed. It is most important to have clear, lucid XML creation code. This is best done with a template library such as PHP itself. :-)</p>
<pre><code><?php header('Content-type: text/xml') ?>
<?xml version="1.0" encoding="utf-8"?>
<response>
<status><?php echo htmlspecialchars($status_code) ?></status>
<fout><?php echo htmlspecialchars($gebruikersnaam) ?></fout>
</response>
</code></pre>
http://stackoverflow.com/questions/1184997/enabling-tabs-in-xcode-or-lessening-the-pain-of-not-having-them/1185014#11850140Answer by vog for Enabling tabs in xcode? Or lessening the pain of not having them?vog2009-07-26T16:57:57Z2009-07-26T16:57:57Z<p>The Xcode source code editor allows you to choose the file from a list. It's two clicks instead of one (as it would be with tabbing), but it's better than nothing.</p>
<p>In addition, you can simply Alt-Tab through your open source code windows. This is not slower than tabbing, and has the same effect since the source code windows are usually placed exactly one in front of another.</p>
http://stackoverflow.com/questions/1184991/c-gui-primer-tutorial/1185008#11850082Answer by vog for C# GUI primer tutorialvog2009-07-26T16:54:00Z2009-07-26T16:54:00Z<p>If you want to learn WPF instead of WinForms, you can try the <a href="http://www.wpftutorial.net/" rel="nofollow">WPF tutorial of Christian Moser</a>.</p>
http://stackoverflow.com/questions/1184991/c-gui-primer-tutorial/1185004#11850041Answer by vog for C# GUI primer tutorialvog2009-07-26T16:51:50Z2009-07-26T16:51:50Z<p>There's a nice <a href="http://cplus.about.com/od/learnc/ss/random_2.htm" rel="nofollow">tutorial of David Bolton</a>.</p>
http://stackoverflow.com/questions/1184886/game-positioning-oo-design/1184914#11849142Answer by vog for Game positioning OO designvog2009-07-26T16:04:13Z2009-07-26T16:10:00Z<p>Make your map a two-dimensional array. At each position, put an array of all objects at that position. In addition, add position attributes to each object.</p>
<p>Yes, this will duplicate the information! So on each move you'll have to change the object <i>and</i> update the map.</p>
<p>However, fast reading and fast finding of the objects is very important for that kind of game. In addition, this solution avoids any search routine (e.g. go through the map and look for a particular object), which is generally a good idea: Replace all search routines over large datasets with indexes. The map should be seen as some kind of index over the object's position attributes.</p>
http://stackoverflow.com/questions/1184747/rtf-doc-docx-text-extraction-in-program-written-in-c-qt/1184762#11847620Answer by vog for rtf / doc / docx text extraction in program written in c++/qt vog2009-07-26T14:48:04Z2009-07-26T14:53:13Z<p>I recommend <i>not</i> to use COM as this would defeat the usage of a <i>portable</i> library like Qt in the first place.</p>
<p>You might want to use the classic <a href="http://freshmeat.net/projects/catdoc" rel="nofollow">catdoc</a> or a similar tool such as <a href="http://wvware.sourceforge.net/" rel="nofollow">wvWare</a>.</p>
<p>Note that although the catdoc author claims that catdoc doesn't work under Windows, there is a <a href="http://swish-e.org/archive/2001-12/3280.html" rel="nofollow">posting of 2001 which states the opposite</a>.</p>
http://stackoverflow.com/questions/1184699/implementing-model-view-controller-the-right-way/1184718#11847181Answer by vog for Implementing Model-View-Controller the right wayvog2009-07-26T14:28:09Z2009-07-26T14:41:43Z<p>You should create a model for the the whole game. It should contain everything about the game except the GUI interaction. The views, on the other side, contain all GUI stuff without knowing anything about the game flow.</p>
<p>The whole point is that models and views are expected to be reusable. The model classes should play with any GUI (and maybe even the console or command line). The view classes should be able to be used with other similar-looking games. Models and views should be completely decoupled.</p>
<p>Then, the controller fills the gap. It reacts on user input, asks the model classes to perform a specific game move, and asks the views to show the new situation. The controller is not expected to be reusable. It's the glue which holds the game together. The controller ensures that model classes and view classes remain indenpendent and reusable.</p>
<p>In addition, don't try to make the design perfect from the start. Don't hesitate to refactor at any time. The faster a bad design decision gets corrected, the less evil it does. Designing everything upfront means that a bad design decisions won't be corrected at all, unless you make a perfect design upfront, which is simply improssible even with decades of experience.</p>
<p>Always remember the third design rule of the X Window System: "The only thing worse than generalizing from one example is generalizing from no examples at all."</p>
http://stackoverflow.com/questions/1184499/how-do-i-produce-a-time-interval-query-in-sqlite/1184592#11845921Answer by vog for How do I produce a time interval query in SQLite?vog2009-07-26T13:26:21Z2009-07-26T14:09:43Z<p>PostgreSQL allows the following query.</p>
<p>In contrast to your example, this returns an additional column for the day, and it omits the minutes where nothing happened (count=0).</p>
<pre><code>select
day, hour, minute, count(*)
from
(values ( 0),( 1),( 2),( 3),( 4),( 5),( 6),( 7),( 8),( 9),
(10),(11),(12),(13),(14),(15),(16),(17),(18),(19),
(20),(21),(22),(23),(24),(25),(26),(27),(28),(29),
(30),(31),(32),(33),(34),(35),(36),(37),(38),(39),
(40),(41),(42),(43),(44),(45),(46),(47),(48),(49),
(50),(51),(52),(53),(54),(55),(56),(57),(58),(59))
as minutes (minute),
(values ( 0),( 1),( 2),( 3),( 4),( 5),( 6),( 7),( 8),( 9),
(10),(11),(12),(13),(14),(15),(16),(17),(18),(19),
(20),(21),(22),(23))
as hours (hour),
(select distinct cast(start_ts as date) from sessions
union
select distinct cast(end_ts as date) from sessions)
as days (day),
sessions
where
(day,hour,minute)
between (cast(start_ts as date),extract(hour from start_ts),extract(minute from start_ts))
and (cast(end_ts as date), extract(hour from end_ts), extract(minute from end_ts))
group by
day, hour, minute
order by
day, hour, minute;</code></pre>
http://stackoverflow.com/questions/1185830/avoiding-ssl-you-are-about-to-be-redirected-to-a-connection-that-is-not-secure/1185882#1185882Comment by vog on Avoiding SSL "You are about to be redirected to a connection that is not secure." messagevog2009-08-14T17:30:56Z2009-08-14T17:30:56Z@TesterTurnedDeveloper: I fully agree. So an answer should explain the good reasons for that warning <i>before</i> blindly suggesting ways to circumvalent it.http://stackoverflow.com/questions/1185830/avoiding-ssl-you-are-about-to-be-redirected-to-a-connection-that-is-not-secure/1185862#1185862Comment by vog on Avoiding SSL "You are about to be redirected to a connection that is not secure." messagevog2009-08-14T17:10:48Z2009-08-14T17:10:48Z@Jim Robert: This is an urban legend. See: <a href="http://stackoverflow.com/questions/174348/will-web-browsers-cache-content-over-https" rel="nofollow" title="will web browsers cache content over https">stackoverflow.com/questions/174348/…</a>http://stackoverflow.com/questions/1186017/how-do-i-build-a-gui-in-c/1186021#1186021Comment by vog on How do I build a GUI in C++?vog2009-07-29T09:48:37Z2009-07-29T09:48:37ZIf you don't want to sound offensive, you should delete at least the second sentence, even if your answer isn't on top.http://stackoverflow.com/questions/1185846/framework-design-patterns/1185881#1185881Comment by vog on Framework design patternsvog2009-07-27T21:44:11Z2009-07-27T21:44:11ZMVC 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.http://stackoverflow.com/questions/1186017/how-do-i-build-a-gui-in-c/1186047#1186047Comment by vog on How do I build a GUI in C++?vog2009-07-27T02:25:39Z2009-07-27T02:25:39Z@Jim In Texas: I agree, but this "bit of low level" should be learned <i>after</i> the basics, so I still find that recommendation inappropriate for beginners.http://stackoverflow.com/questions/1186017/how-do-i-build-a-gui-in-c/1186038#1186038Comment by vog on How do I build a GUI in C++?vog2009-07-27T02:22:04Z2009-07-27T02:22:04ZThanks! I fixed that.http://stackoverflow.com/questions/1185830/avoiding-ssl-you-are-about-to-be-redirected-to-a-connection-that-is-not-secure/1185852#1185852Comment by vog on Avoiding SSL "You are about to be redirected to a connection that is not secure." messagevog2009-07-27T02:13:22Z2009-07-27T02:13:22Z@Joel Potter: If you don't have an SSL certificate for your own domain, then yes, you'll have a problem.http://stackoverflow.com/questions/1186107/simple-xml-dealing-with-colons-in-nodes/1186117#1186117Comment by vog on Simple XML - Dealing With Colons In Nodesvog2009-07-27T02:08:07Z2009-07-27T02:08:07ZDone. Thanks for the hint!http://stackoverflow.com/questions/1186056/xpath-path-expression-net/1186081#1186081Comment by vog on XPath | path expression .Netvog2009-07-27T01:46:53Z2009-07-27T01:46:53Z"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.http://stackoverflow.com/questions/1186017/how-do-i-build-a-gui-in-c/1186021#1186021Comment by vog on How do I build a GUI in C++?vog2009-07-27T01:22:15Z2009-07-27T01:22:15ZThere are wrappers such as GTKmm. So scragar's proposal is okay. However, I don't like the personal tone of this answer.http://stackoverflow.com/questions/1186017/how-do-i-build-a-gui-in-c/1186047#1186047Comment by vog on How do I build a GUI in C++?vog2009-07-27T01:18:32Z2009-07-27T01:18:32ZThis introduces the Win32 API, a very low level approach to GUI programming that ties you to the Windows platform. I would not recommend that.http://stackoverflow.com/questions/1186031/qt-wrapper-for-c-librariesComment by vog on Qt wrapper for C librariesvog2009-07-27T01:12:10Z2009-07-27T01:12:10ZWhat do you mean with a "QT-like wrapper"?http://stackoverflow.com/questions/1185689/avoiding-memory-leaks-while-mutating-c-strings/1185713#1185713Comment by vog on Avoiding memory leaks while mutating c-stringsvog2009-07-27T00:46:24Z2009-07-27T00:46:24Z@Alan: I think that risking buffer overflows is also a bad idea for "education purposes". YMMV.http://stackoverflow.com/questions/1185845/storing-updating-retrieving-settings-for-a-php-application-without-a-database/1185853#1185853Comment by vog on Storing, Updating, Retrieving settings for a PHP Application without a Databasevog2009-07-27T00:37:00Z2009-07-27T00:37:00Z@hobodave: Please don't take the votes personally. I don't know whether you noticed, but <i>I</i> removed my answer after you explained to me why it was misguided.http://stackoverflow.com/questions/1185845/storing-updating-retrieving-settings-for-a-php-application-without-a-database/1185861#1185861Comment by vog on Storing, Updating, Retrieving settings for a PHP Application without a Databasevog2009-07-27T00:30:25Z2009-07-27T00:30:25ZThere'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 <i>that's</i> my reason for voting down this dangerous approach. It is nothing personally against you, hobodave.