User vava - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:00:25Z http://stackoverflow.com/feeds/user/6258 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1091099/does-one-assembler-instruction-always-execute-atomically 4 Does one assembler instruction always execute atomically? vava 2009-07-07T08:50:34Z 2009-11-14T09:32:14Z <p>Today I came across this question:</p> <p>you have a code</p> <pre><code>static int counter = 0; void worker() { for (int i = 1; i &lt;= 10; i++) counter++; } </code></pre> <p>If <code>worker</code> would be called from two different threads, what value will <code>counter</code> have after both of them are finished?</p> <p>I know that actually it could be anything. But my internal guts tells me, that <code>counter++</code> will most likely be translated into single assembler instruction, and if both threads are execute on the same core, <code>counter</code> will be 20.</p> <p>But what if those threads are run on different cores or processors, could there be a race condition in their microcode? Is one assembler instruction could always be viewed as atomic operation?</p> http://stackoverflow.com/questions/637133/what-is-your-motivation 19 What is your motivation? vava 2009-03-12T02:06:27Z 2009-11-12T16:23:12Z <p>As software developers we all know that motivation matters. Without it we could just stare into the monitor all day long and do nothing. There are some tricks to get yourself motivated like talking to people or doing the fun part of the project, but they do not always work.</p> <p>In the mean time I started to notice that I am most productive when I could see the person who is appreciating my work. The user, who is using the software and enjoying it. Because if there's none, what's the point of writing this code?</p> <p>So I was wondering, what makes <strong>you</strong> be at your top, is it the users, your fellow coders or maybe the money you get?</p> <p><strong>PS.</strong> I know there's quite a few questions about motivation but they all about overcoming current situation. What I want to hear is what makes you come to the office every day, what you enjoy the most in your job, what makes you want to write this code and do it as fast as you possible could.</p> http://stackoverflow.com/questions/1696086/whats-the-best-way-to-get-the-length-of-the-decimal-representation-of-an-int-in/1696092#1696092 12 Answer by vava for What's the best way to get the length of the decimal representation of an int in C++? vava 2009-11-08T11:30:04Z 2009-11-08T11:30:04Z <pre><code>//Works for positive integers only int DecimalLength(int n) { return floor(log10f(n) + 1); } </code></pre> http://stackoverflow.com/questions/1654150/scope-of-exception-object-in-c/1654168#1654168 0 Answer by vava for Scope of exception object in C++ vava 2009-10-31T11:52:16Z 2009-10-31T11:52:16Z <p>First of all, the object you throw goes out of scope almost immediately. What's going to be caught by exception handlers is a <em>copy</em> of original object. That copy will be deleted after catch handler is executed <em>unless</em> you catch it by value (not by reference). In this case there will be another copy created. But you should catch it by reference (preferably const one) anyway.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1643723#1643723 0 Answer by vava for What is the worst real-world macros/pre-processor abuse you've ever come across? vava 2009-10-29T13:26:14Z 2009-10-29T13:26:14Z <pre><code>#define return if (std::random(1000) &lt; 2) throw std::exception(); else return </code></pre> <p>this is just so evil. It's random, which means it fires in different places all the time, it changes return statement, which usually have some code on it that could fail all by itself, it changes innocent looking keyword that you won't ever get suspicious over and it uses exception from std space so you won't try to search through your sources to find it's source. Just brilliant. </p> http://stackoverflow.com/questions/1606495/meaning-of-foreachfunctiontag-in-javascript/1606538#1606538 1 Answer by vava for Meaning of forEach(function(tag) in JavaScript vava 2009-10-22T11:18:50Z 2009-10-22T11:18:50Z <p><code>forEach</code> simply iterates over array and calls function you pass to it with every element it finds.</p> <p>Be aware that not every browser support it, there's helper function <code>$.forEach</code> in jQuery, it is safer in terms of browser support.</p> http://stackoverflow.com/questions/1606299/how-does-compiler-choose-between-template-specializations-featuring-an-array 2 How does compiler choose between template specializations featuring an array? vava 2009-10-22T10:21:52Z 2009-10-22T10:33:45Z <p>I just came across std::tr1::extent template and it puzzled me. I never ever dealt with array type parameters in my life so I don't understand how they work. So, given the code from gcc <code>type_traits</code></p> <pre><code>template&lt;typename _Tp, unsigned _Uint, std::size_t _Size&gt; struct extent&lt;_Tp[_Size], _Uint&gt; template&lt;typename _Tp, unsigned _Uint&gt; struct extent&lt;_Tp[], _Uint&gt; </code></pre> <p>how does compiler chooses between those specializations? What type I should pass to <code>extent</code> to get it choose the second one?</p> http://stackoverflow.com/questions/1605265/union-query-in-mysql/1605313#1605313 2 Answer by vava for Union query in mysql vava 2009-10-22T06:14:16Z 2009-10-22T06:34:43Z <p><code>SELECT</code> statements you'd like to <code>UNION</code> have to return the same number of columns and types of those columns should match.</p> <p>So</p> <pre><code>SELECT a, b, c FROM table1 UNION SELECT a, b, c FROM table2 </code></pre> <p>will work, but</p> <pre><code>SELECT a, b FROM table1 UNION SELECT a, b, c FROM table2 </code></pre> <p>will not.</p> <p>Names of the fields and the fields themselves might be different though.</p> http://stackoverflow.com/questions/1605312/not-copying-char-arrays-function-swap-doesnt-compile-correctly-and-stringptr-is/1605356#1605356 0 Answer by vava for Not copying char arrays, function swap doesnt compile correctly and stringPtr is not modified vava 2009-10-22T06:27:09Z 2009-10-22T06:27:09Z <p>Look closely at the line </p> <pre><code>from = new char[stringLen+1]; </code></pre> <p>It is the same as </p> <pre><code>from = MyString(new char[stringLen+1]); </code></pre> <p>so your constructor of MyString get uninitialized array of chars. Then you trying to get the length of the string, but <code>strlen</code> just looping through chars of the string looking for <code>0</code> char. As we don't know what content uninitialized array of chars might have, we don't know what length <code>strlen</code> could return. It can even go further than array boundary and crash your program with segfault. But I can say for sure, after that there's not enough space in from.stringPtr to hold the string you want to copy in it.</p> <p>So, use <code>from.stringPtr = new char[stringLen+1];</code> or better <code>from = MyString(*this);</code> since you have copy constructor already.</p> http://stackoverflow.com/questions/1605277/substitute-mysql-result/1605285#1605285 0 Answer by vava for Substitute MySQL result vava 2009-10-22T06:04:05Z 2009-10-22T06:09:36Z <p>It is the best way to do this :)</p> <p>If <code>doc_type</code> could be an integer, you also can use <code>ELT</code> function, as in</p> <pre><code>SELECT ELT(doc_type, 'Invoice', 'Document') FROM table; </code></pre> <p>but it is still worse than simple join as you have to put this thing into every query and every application that using the database, and changing description becomes a hell.</p> http://stackoverflow.com/questions/1594277/how-can-i-get-the-current-month-and-previous-three-months-using-php/1594329#1594329 -1 Answer by vava for How can i get the current month and previous three months using PHP vava 2009-10-20T12:41:16Z 2009-10-20T12:41:16Z <pre><code>echo date('F', strtotime('-2 month')), '&lt;br&gt;', date('F', strtotime('last month')), '&lt;br&gt;', date('F'); </code></pre> http://stackoverflow.com/questions/1584920/creating-unsafe-browser-xul-element-from-firefox-extension-gives-nserrorfailur 0 Creating unsafe browser XUL element from Firefox extension gives (NS_ERROR_FAILURE) [nsIWebNavigation.sessionHistory] vava 2009-10-18T13:44:05Z 2009-10-18T17:26:41Z <p>I'm trying to add hidden <code>browser</code> element dynamically from Firefox extension but, although it adds successfully, it gives me <code>Error: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIWebNavigation.sessionHistory]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: chrome://global/content/bindings/browser.xml :: :: line 641" data: no] Source File: chrome://global/content/bindings/browser.xml Line: 647</code></p> <p>Code looks like this:</p> <pre><code>let parent = document.querySelector("#browser"); let browser = document.createElement("browser"); browser.style.visibility = "hidden"; parent.appendChild(browser); </code></pre> <p>What I'm doing wrong here?</p> http://stackoverflow.com/questions/982000/firefox-throwing-a-exception-with-html-canvas-putimagedata/1581329#1581329 0 Answer by vava for Firefox throwing a exception with HTML Canvas putImageData vava 2009-10-17T03:31:37Z 2009-10-17T03:31:37Z <p>I'm trying to fight exactly the same error right now and so far I found out that <code>graphData</code> is null. Why it is null and why error it gives said something about strings, that is a mistery to me.</p> http://stackoverflow.com/questions/1555545/const-correctness-question-in-c/1555626#1555626 0 Answer by vava for Const Correctness Question in C++ vava 2009-10-12T16:38:08Z 2009-10-12T16:38:08Z <p>Because compiler cares only about access to <code>this</code>. It doesn't go as far as checking all the paths that can change your object. So yeah, it works. Is it unsafe? It depends :) Shouldn't be in most cases but sure there's a set of circumstances that can make it all fall over. </p> http://stackoverflow.com/questions/1554910/d-r-y-vs-avoid-macros/1554936#1554936 0 Answer by vava for D.R.Y vs "avoid macros" vava 2009-10-12T14:35:57Z 2009-10-12T14:35:57Z <p>I would vote for macros in this case. They aren't that bad after all, you shouldn't try to write inline functions with them but other than that they are good.</p> http://stackoverflow.com/questions/1554340/understanding-the-or-operator-in-if-conditionals-in-ruby/1554395#1554395 0 Answer by vava for Understanding the "||" OR operator in If conditionals in Ruby vava 2009-10-12T12:48:00Z 2009-10-12T12:48:00Z <p>First one compares "projects" and "parts" string literals to <code>@controller.controller_name</code> variable.</p> <p>Second one evaluates ("projects" || "parts") which is "projects" because "projects" string literal neither <code>false</code> or <code>nil</code> or empty string and compare it to <code>@controller.controller_name</code></p> <p>Third one compares <code>@controller.controller_name</code> and "projects" and if they are equal, it return <code>true</code>, if they aren't it return "parts" which is equal to <code>true</code> for <code>if</code> statement.</p> http://stackoverflow.com/questions/1554280/extract-text-from-pdf-in-javascript/1554355#1554355 0 Answer by vava for extract text from pdf in Javascript vava 2009-10-12T12:39:07Z 2009-10-12T12:39:07Z <p>It is possible but: </p> <ul> <li>you would have to use the server anyway, there's no way you can get content of a file on user computer without transferring it to server and back</li> <li>I don't thing anyone has written such library yet</li> </ul> <p>So if you have some free time you can learn pdf format and write such a library yourself, or you can just use server side library of course.</p> http://stackoverflow.com/questions/1553462/check-if-a-string-contains-a-certain-number/1553489#1553489 3 Answer by vava for Check if a string contains a certain number vava 2009-10-12T09:06:34Z 2009-10-12T09:17:37Z <pre><code>if (strpos(','.$string.',' , ','.$numberA.',') !== FALSE) { //found } </code></pre> <p>Notice guard ',' chars, they will help to deal with '13' magic '1, 2, 133' case.</p> http://stackoverflow.com/questions/1550614/insert-rownums-in-mysql-table-via-query-or-script/1550636#1550636 1 Answer by vava for Insert rownums in mysql table via query or script vava 2009-10-11T12:54:38Z 2009-10-11T12:54:38Z <p>I don't think it is possible in SQL but you can use your primary key as initial order. After all, by default rows are sorted based on it anyway.</p> <pre><code>UPDATE table SET order = id; </code></pre> http://stackoverflow.com/questions/1550542/display-values-of-multidimensional-array-returend-from-function/1550591#1550591 3 Answer by vava for Display values of multidimensional array returend from function vava 2009-10-11T12:27:36Z 2009-10-11T12:27:36Z <p>You really have to save relation between <code>naziv</code> and <code>naziv_url</code>, it'll help you in the future. Just get it from DB like this:</p> <pre><code>$kategorija[$row['naziv_url']] = $row["naziv"]; </code></pre> <p>and then you can enumerate this array like this:</p> <pre><code>foreach($kategorija as $naziv_url =&gt; $naziv) { } </code></pre> <p>Always use the value that you know is unique as keys, I supposed url in unique in this case.</p> http://stackoverflow.com/questions/1522925/usability-of-applications-without-the-traditional-menu-bar/1523024#1523024 2 Answer by vava for Usability of applications without the traditional "menu" bar vava 2009-10-06T00:07:20Z 2009-10-08T23:17:31Z <p>It is <a href="http://en.wikipedia.org/wiki/Ribbon%5F%28computing%29" rel="nofollow">ribbon</a>. Presumably it is easier to use than the standard menu because it is context dependent. The whole purpose of developing it was that despite the fact Word can do almost anything now, people were complaining it is missing some features just because they couldn't find them. So MS people were thinking hard and ribbon is what they created. Being context dependent it shows you the features you might use right now, not all the features and it saves screen estate so more features actually visible to the user.</p> http://stackoverflow.com/questions/1535467/rails-validation-issue/1535516#1535516 0 Answer by vava for Rails Validation Issue vava 2009-10-08T03:44:18Z 2009-10-08T03:44:18Z <p>I can guess that <code>validates_uniqueness_of</code> fails, which means <code>@contact.save</code> returns false and since you haven't told Rails what template to use in that case, it is using default one, which has the same name as action.</p> http://stackoverflow.com/questions/1535397/boolean-code-clarity-which-style-to-use/1535414#1535414 33 Answer by vava for Boolean Code Clarity - which style to use? vava 2009-10-08T03:08:35Z 2009-10-08T03:08:35Z <p>If you name you boolean variables in form isName, then you'll see that forms <code>if (isName)</code> makes more sense than <code>if (isName == true)</code></p> <p>hasName, wasName and other forms are also useful.</p> http://stackoverflow.com/questions/1532432/what-is-the-difference-between-structure-and-class-in-c/1532449#1532449 5 Answer by vava for what is the difference between structure and class in c++? vava 2009-10-07T15:41:25Z 2009-10-07T15:49:06Z <p>There's not much difference. For structs, </p> <ul> <li>all methods and fields are public by default</li> <li>inheritance is public by default</li> </ul> http://stackoverflow.com/questions/1532151/getfilecontents-fails-with-400-response-code 0 get_file_contents fails with 400 response code vava 2009-10-07T14:53:49Z 2009-10-07T15:09:14Z <p>I have the strangest issue ever. I'm trying to get results of CGI script running on the same server with <code>get_file_contents</code> and it works everywhere except my local machine under Ubuntu.</p> <p>It works when I ask it to get url from different server (same script running on production), it works deployed on different server, I'm absolutely sure I have <code>allow_url_fopen</code> set. But every time I'm trying to get that page from a local server I get <code>failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request</code> on PHP side and <code>[error] [client 127.0.0.1] request failed: error reading the headers</code> in Apache error log.</p> <p>So what can I do with it, what headers should I pass so Apache won't turn me down or, alternatively, what configuration options should I tweak for the same results?</p> http://stackoverflow.com/questions/1531384/converting-an-array-into-a-string-in-as3/1531457#1531457 1 Answer by vava for Converting an array into a string in AS3. vava 2009-10-07T12:53:15Z 2009-10-07T12:53:15Z <pre><code>function join_arr(arr) { var newarr = []; for (var i = 0; i &lt; arr.length; i++) { newarr.push(arr[i].join(",")); } return newarr.join("\n"); } </code></pre> <p>Haven't tested it but should work :)</p> http://stackoverflow.com/questions/1531176/jquert-sort-function-performance/1531273#1531273 0 Answer by vava for jQuert sort function performance vava 2009-10-07T12:16:24Z 2009-10-07T12:35:28Z <p>I think if you add name as metadata to the node and eliminate looking through the DOM on every comparison, it'll be much faster. Remember, there's O(n<sup>2</sup>) of them after all.</p> <pre><code>$(function() { $('.media-status-specie li') .each(function () { $(this).data('name', $(this).find(".english").text()); }) }); .... function sortDescending1(a, b) { return $(a).data('name') &lt; $(b).data('name') ? 1 : -1; } </code></pre> <p><strong>Disclaimer:</strong> It's my opinion, I'm no good at guessing slow points as any other developer out there, use profiler to find real performance killer.</p> http://stackoverflow.com/questions/1531008/jquery-form-submit/1531037#1531037 4 Answer by vava for jQuery form submit vava 2009-10-07T11:24:34Z 2009-10-07T11:24:34Z <p>Look closely at your form declaration</p> <pre><code>&lt;form action="gigi.php" name='formular' method="post" enctype="multipart/form-data" /&gt; </code></pre> <p>Note <code>/&gt;</code> at the end of it. It means you have empty form, no form fields, no submit button. They do not relate to this form in any way.</p> <p>Instead, try this:</p> <pre><code>&lt;form action="gigi.php" name='formular' method="post" enctype="multipart/form-data"&gt; &lt;input type="file" name="fisier" /&gt; &lt;input type="submit" value="trimite" /&gt; &lt;/form&gt; </code></pre> http://stackoverflow.com/questions/1530871/a-few-questions-concerning-this-article-about-design-principles/1530985#1530985 1 Answer by vava for A few questions concerning this article about design principles vava 2009-10-07T11:13:24Z 2009-10-07T11:13:24Z <p>I think it is more or less agile style of coding - working code is preferred over beautiful code. Once you get your code working, you can make it pretty. It's easier than the other way around, going from beautiful code to working code.</p> <p>In order to achieve working code fast, you have to cut corners. Which implies that implementation should be as simple as possible. And it also implies that interfaces might not be consisted if it makes code complicated. Making working code fast means sacrifices, consistency is awesome to have but not required. As are many other things.</p> <p>But, there's a catch. You have to be good to get away when you're coding like this. Joel <a href="http://www.joelonsoftware.com/items/2009/09/23.html" rel="nofollow">said</a> it good.</p> http://stackoverflow.com/questions/1530765/why-use-visual-studio-6-for-c/1530792#1530792 10 Answer by vava for Why use Visual Studio 6 for C++ vava 2009-10-07T10:32:57Z 2009-10-07T10:32:57Z <p>It's a legacy thing. Too much code is written in VC6. There was 4 years between it and VS 2003. And it is always painful to drag the code to new compiler so a lot of developers and managers just don't want to do it.</p> http://stackoverflow.com/questions/1699937/does-the-business-layer-keeps-working-even-a-session-closed-in-the-middle-of-proc/1699954#1699954 Comment by vava on Does the business layer keeps working even a session closed in the middle of process? vava 2009-11-09T09:32:33Z 2009-11-09T09:32:33Z Wouldn't it crash when it writes to a closed stream? http://stackoverflow.com/questions/1696086/whats-the-best-way-to-get-the-length-of-the-decimal-representation-of-an-int-in/1696092#1696092 Comment by vava on What's the best way to get the length of the decimal representation of an int in C++? vava 2009-11-08T12:28:59Z 2009-11-08T12:28:59Z @Thomas, I don't think loop (even small one) will be faster than logarithm calculation. http://stackoverflow.com/questions/1654150/scope-of-exception-object-in-c/1654168#1654168 Comment by vava on Scope of exception object in C++ vava 2009-10-31T12:10:05Z 2009-10-31T12:10:05Z Pointers get copied too but nobody cares usually :) http://stackoverflow.com/questions/1638670/javascript-at-bottom-top-of-web-page/1638705#1638705 Comment by vava on JavaScript at bottom/top of web page? vava 2009-10-28T17:18:37Z 2009-10-28T17:18:37Z Yes, &lt;script&gt; tag can be anywhere and it will be executed when encountered, so there's a good chance that everything before it will already be visible to the user (but it is not guaranteed). http://stackoverflow.com/questions/1617757/detect-when-mouse-leaves-via-top-of-page-with-jquery Comment by vava on Detect when mouse leaves via top of page with jquery vava 2009-10-24T12:06:01Z 2009-10-24T12:06:01Z @vava, I'm just saying that maybe your friend has slower machine/bigger screen and moves mouse fast. That might be the reason for the difference. http://stackoverflow.com/questions/1617757/detect-when-mouse-leaves-via-top-of-page-with-jquery Comment by vava on Detect when mouse leaves via top of page with jquery vava 2009-10-24T11:38:16Z 2009-10-24T11:38:16Z Have you tried moving the mouse really quick? Events sometimes doesn't fire if mouse moves quickly. http://stackoverflow.com/questions/1606299/how-does-compiler-choose-between-template-specializations-featuring-an-array/1606344#1606344 Comment by vava on How does compiler choose between template specializations featuring an array? vava 2009-10-22T11:08:06Z 2009-10-22T11:08:06Z Hm, looks like despite the logic, when <code>extent&lt;&#95;Tp[&#95;Size], &#95;UInt&gt;</code> matches against <code>extent&lt;int[1][2]&gt;</code>, <code>&#95;Tp</code> gets <code>int[2]</code> not <code>int[1]</code>. But <code>(int [1])[2]</code> seems to be so more intuitive... http://stackoverflow.com/questions/1606299/how-does-compiler-choose-between-template-specializations-featuring-an-array/1606344#1606344 Comment by vava on How does compiler choose between template specializations featuring an array? vava 2009-10-22T10:49:08Z 2009-10-22T10:49:08Z So the second one will be chosen any time there's empty square brackets ([]) in the declaration? http://stackoverflow.com/questions/1605312/not-copying-char-arrays-function-swap-doesnt-compile-correctly-and-stringptr-is/1605322#1605322 Comment by vava on Not copying char arrays, function swap doesnt compile correctly and stringPtr is not modified vava 2009-10-22T06:43:26Z 2009-10-22T06:43:26Z @sharptooth, it has constructor, that accepts <code>char &#42;</code> so it will be converted to <code>from = MyString(new char[stringLen + ])</code> and use default <code>operator=</code> to copy it. http://stackoverflow.com/questions/1605265/union-query-in-mysql/1605313#1605313 Comment by vava on Union query in mysql vava 2009-10-22T06:35:24Z 2009-10-22T06:35:24Z @mjv, fixed :) Although it makes explanation more confusing. http://stackoverflow.com/questions/1605312/not-copying-char-arrays-function-swap-doesnt-compile-correctly-and-stringptr-is/1605322#1605322 Comment by vava on Not copying char arrays, function swap doesnt compile correctly and stringPtr is not modified vava 2009-10-22T06:29:16Z 2009-10-22T06:29:16Z so, you're saying <code>void func(int &amp; a) { a = 1; }</code> won't modify a? http://stackoverflow.com/questions/1594277/how-can-i-get-the-current-month-and-previous-three-months-using-php/1594329#1594329 Comment by vava on How can i get the current month and previous three months using PHP vava 2009-10-20T12:45:15Z 2009-10-20T12:45:15Z @Nathan Kleyn, I didn't about &quot;-1 month&quot; syntax, &quot;last month&quot; was just a guess that worked. http://stackoverflow.com/questions/1594277/how-can-i-get-the-current-month-and-previous-three-months-using-php/1594329#1594329 Comment by vava on How can i get the current month and previous three months using PHP vava 2009-10-20T12:43:50Z 2009-10-20T12:43:50Z What's wrong with it? It's working as required :) http://stackoverflow.com/questions/1594196/how-can-i-simplify-this-jquery-javascript/1594243#1594243 Comment by vava on How can I simplify this jquery/javascript vava 2009-10-20T12:29:53Z 2009-10-20T12:29:53Z you lost <code>not-ok-box</code> id http://stackoverflow.com/questions/1584920/creating-unsafe-browser-xul-element-from-firefox-extension-gives-nserrorfailur/1585492#1585492 Comment by vava on Creating unsafe browser XUL element from Firefox extension gives (NS_ERROR_FAILURE) [nsIWebNavigation.sessionHistory] vava 2009-10-19T04:15:02Z 2009-10-19T04:15:02Z Unfortunately, canvas.getImageData() doesn't work when called from chrome code if canvas resides in sandboxed document.