User Vincent Robert - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T00:57:58Z http://stackoverflow.com/feeds/user/268 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1886837/array-under-another-array-in-javascript/1886887#1886887 0 Answer by Vincent Robert for Array under another array in javascript. Vincent Robert 2009-12-11T09:34:26Z 2009-12-11T15:45:12Z <p>You should get an error in Firebug saying that array[0] is undefined (at least, I do).</p> <p>Using string as keys is only possible with hash tables (a.k.a. objects) in Javascript.</p> <p>Try this:</p> <pre><code>var array = []; array[0] = {}; array[0]["username"] = "Eric"; array[0]["album"] = "1"; </code></pre> <p>or </p> <pre><code>var array = []; array[0] = {}; array[0].username = "Eric"; array[0].album = "1"; </code></pre> <p>or simpler</p> <pre><code>var array = []; array[0] = { username: "Eric", album: "1" }; </code></pre> <p>or event simpler</p> <pre><code>var array = [{ username: "Eric", album: "1" }]; </code></pre> http://stackoverflow.com/questions/1886396/execution-of-curl-command-in-java/1886428#1886428 1 Answer by Vincent Robert for Execution of curl command in java Vincent Robert 2009-12-11T07:33:59Z 2009-12-11T07:33:59Z <p>If you are trying to port your shell script to Java, I recommend using an HTTP library made for Java instead of curl, like <a href="http://hc.apache.org/httpclient-3.x/" rel="nofollow">Apache Commons HTTP Client</a>.</p> <p>However, if you really want to execute your shell script inside a Java program, you can use Darin's suggestion to use <code>Runtime.getRuntime().exec("/path/yourscript.sh")</code></p> http://stackoverflow.com/questions/248885/introduction-to-asp-net-from-php 2 Introduction to ASP.Net from PHP Vincent Robert 2008-10-30T00:09:06Z 2009-12-10T14:43:04Z <p>I am very new to ASP.Net and would like to try this technology, mostly because I am impressed with the performances so far.</p> <p>I come from the PHP world where you can just include some PHP code into your HTML page and that will do the trick as long as the web server is able to give the page to the PHP processor. One page, one PHP script, this is the rule. (I'm leaving behind path info issues here...)</p> <p>Now I am very confused about all the ASP.Net tutorials I read so far. ASP.Net seems to be working in many different ways and it looks like history often changed the "best way".</p> <p>Here what I understood so far:</p> <ul> <li>You can embed you ASP code within your HTML page, this seems to be the old way, when .Net did not exist. While this looks ok for me PHP guy, I do not understand how I can share classes between pages.</li> <li>You can "partially define" (WTF?) the System.Web.UI.Page class and separate the ASP code from the HTML using some events and controls (did not really understand that one).</li> <li>You can create controls that you directly embed into your HTML that can be bound to external data, code is then completely separated from the HTML and has to be compiled separately (again, absolutely no clue about that).</li> </ul> <p>Now keep in mind that I am using Mono with Mac OS X, so no Visual Studio, every "use-Visual-Studio-and-everything-is-done-for-you-automatically" answer will be down-voted, I want to actually type my code and understand what is going on under the hood. I want to be able to control what I send to the browser and how.</p> <p>What would you recommend for a newbie like me to experiment with ASP.Net (using the C# language is that is relevant). Feel free to answer with a long formatted article, I really want an <strong>ASP.Net beginner tutorial for existing PHP developers</strong>.</p> http://stackoverflow.com/questions/1831646/c-error-help-needed/1832044#1832044 0 Answer by Vincent Robert for c++ error - help needed Vincent Robert 2009-12-02T10:32:48Z 2009-12-03T10:04:07Z <p>Since <code>wall_area</code> and <code>paint_cover</code> are ints, dividing them will return an int, not a float. You need to cast one of them to float or double.</p> <p>Adding <code>0.999</code> is not a method I know of to round a float to some decimal precisions. Adding <code>0.5</code> (or similar) and casting to int will give you the rounded float. But you can still get precision errors, floats are floats and they come with precision errors.</p> <p>The best advice I can give is that if you want a specific precision, you should forget floats entirely.</p> <pre><code>// Here you get 100th of cans cans = 100 * wall_area / paint_cover; // Here you display your cans number as a decimal cout &lt;&lt; "You will need the following amount of paint in gallons: " &lt;&lt; (cans / 100) &lt;&lt; "." &lt;&lt; setfill('0') &lt;&lt; setw(2) &lt;&lt; (cans % 100) &lt;&lt; endl; </code></pre> http://stackoverflow.com/questions/1821049/json-encoding-problem-in-ie6-and-ie7/1821277#1821277 1 Answer by Vincent Robert for JSON encoding problem in IE6 and IE7 Vincent Robert 2009-11-30T17:45:05Z 2009-11-30T17:45:05Z <p><code>contentType</code> is used to set the type of sent data. GET requests do not send data so you may be talking about the type of received data, this is changed using the <code>dataType</code> option.</p> <p>Replace:</p> <pre><code>$.getJSON('json/showreel.json', function(data) { ... }); </code></pre> <p>by:</p> <pre><code>$.ajax({ type: 'get', url: 'json/showreel.json', dataType: 'application/json' success: function(data) { ... } }); </code></pre> http://stackoverflow.com/questions/1811803/jquery-remove-item-from-middle-of-list-then-refresh-list/1811958#1811958 2 Answer by Vincent Robert for jQuery, remove item from middle of list, then refresh list? Vincent Robert 2009-11-28T08:12:28Z 2009-11-28T08:12:28Z <p><code>id="city_X"</code> is duplicated on the <code>&lt;li&gt;</code> and the <code>&lt;label&gt;</code>. An <code>id</code> must be unique in the document or you will have undefined behavior when trying to do <code>$('#my_id')</code>.</p> <p><code>&lt;label&gt;</code>s are for form input elements, not for text display. Either use no tag or <code>&lt;span&gt;</code></p> <p>Here is how I would do it:</p> <pre><code>&lt;ul id="city_list"&gt; &lt;li id='city_7' class="city"&gt; &lt;span class="label"&gt;Eureka&lt;/span&gt; - &lt;a href='city.modify.php?id=7&amp;modification_type=edit'&gt;Edit&lt;/a&gt; - &lt;a href='#' class='confirm_delete'&gt;Delete&lt;/a&gt; &lt;/li&gt; &lt;li id='city_8' class="city"&gt; &lt;span class="label"&gt;Rolla&lt;/span&gt; - &lt;a href='city.modify.php?id=8&amp;modification_type=edit'&gt;Edit&lt;/a&gt; - &lt;a href='#' class='confirm_delete'&gt;Delete&lt;/a&gt; &lt;/li&gt; &lt;li id='city_10' class="city"&gt; &lt;span class="label"&gt;Union&lt;/span&gt; - &lt;a href='city.modify.php?id=10&amp;modification_type=edit'&gt;Edit&lt;/a&gt; - &lt;a href='#' class='confirm_delete'&gt;Delete&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt; </code></pre> <p>Assuming you want to delete when clicking on the delete link.</p> <pre><code>// Use event delegation $('#city_list').bind('click', function(event) { $(event.target).closest('.confirm_delete').each(function() { // Get ID from city var $city = $(this).closest('.city'); var id = $city.attr('id').match(/city_(.+)/)[1]; // Do any AJAX request to tell the server to delete the city $city.remove(); }) }) </code></pre> http://stackoverflow.com/questions/1811885/syntax-error-unexpected/1811927#1811927 0 Answer by Vincent Robert for syntax error, unexpected '<' Vincent Robert 2009-11-28T07:57:36Z 2009-11-28T07:57:36Z <p>By the way, submitting to yourself can be:</p> <pre><code>&lt;form action="" method="post"&gt; </code></pre> http://stackoverflow.com/questions/1808010/using-get-to-get-page-content-and-render-it-into-div-tag/1808059#1808059 1 Answer by Vincent Robert for using $.get to get page content and render it into div tag Vincent Robert 2009-11-27T10:52:35Z 2009-11-27T10:52:35Z <ol> <li>You should be using <a href="http://docs.jquery.com/Ajax/jQuery.get" rel="nofollow"><code>$.get</code></a> and not <code>$get</code></li> <li>Your call to <code>$.get</code> is missing its ending semi-column</li> <li>Second parameter to <code>$.get</code> is a callback, not a variable to be filled. You need to pass a function that will be passed the content as a parameter</li> </ol> <p>Here is a working example:</p> <pre><code>$.get("/Views/Templates/_Temp1.ascx", function(result) { $("#RecentstoryDiv").html(result); }); </code></pre> <p>But you will be better using the <a href="http://docs.jquery.com/Ajax/load" rel="nofollow"><code>load</code></a> method</p> <pre><code>$("#RecentstoryDiv").load("/Views/Templates/_Temp1.ascx"); </code></pre> http://stackoverflow.com/questions/41446/generating-javascript-stubs-from-wsdl 2 Generating JavaScript stubs from WSDL Vincent Robert 2008-09-03T10:54:28Z 2009-11-25T16:07:08Z <p>Hello, I'm looking for a tool to generate a JavaScript stub from a WSDL.</p> <p>Although I usually prefer to use REST services with JSON or XML, there are some tools I am currently integrating that works only using SOAP.</p> <p>I already created a first version of the client in JavaScript but I'm parsing the SOAP envelope by hand and I doubt that my code can survive a service upgrade for example, seeing how complex the SOAP envelope specification is.</p> <p>So is there any tool to automatically generate fully SOAP compliant stubs for JavaScript from the WSDL so I can be more confident on the future of my client code.</p> <p>More: The web service I try to use is RPC encoded, not document literal.</p> http://stackoverflow.com/questions/1785675/how-to-add-non-standard-attributes-in-a-valid-way/1785757#1785757 3 Answer by Vincent Robert for How to add non-standard attributes in a valid way Vincent Robert 2009-11-23T20:34:03Z 2009-11-23T20:34:03Z <p>Using those attribute will produce an invalid document.</p> <p>Adding those attributes later using Javascript will produce an invalid document (even if the W3C validator is unable to tell you so).</p> <p>But W3C has never been against using proprietary extensions. Validation should not be a requirement. It is a way to tell you when you do not conform to the spec. W3C will not send the FBI just for an invalid page.</p> <p>If you are relying on proprietary extensions to give your visitor a better experience (but not rely on it) then you are on the good path :-) Just pray (or contribute) for those to be in the next spec.</p> <p><hr></p> <p>Now if it is about preventing browser context menu or selection, that's just rude! Don't do it!</p> http://stackoverflow.com/questions/1782534/icalendar-parser-in-php-that-supports-timezones 0 ICalendar parser in PHP that supports timezones Vincent Robert 2009-11-23T11:22:20Z 2009-11-23T12:50:51Z <p>I am looking for a PHP class that can parse an ICalendar (ICS) file and correctly handle timezones.</p> <p>I already created an ICS parser myself but it can only handle timezones known to PHP (like 'Europe/Paris').</p> <p>Unfortunately, ICS file generated by Evolution (default calendar software of Ubuntu) does not use default timezone IDs. It exports events with its a specific timezone ID exporting also the full definition of the timezone: daylight saving dates, recurrence rule and all the hard stuff to understand about timezones.</p> <p>This is too much for me. Since it was only a small utility for my girlfriend, I won't have time to investigate further the ICalendar specification and create a full blown ICalendar parser myself.</p> <p>So is there any known implementation in PHP of ICalendar file format that can parse timezones definitions?</p> http://stackoverflow.com/questions/1782503/implicit-operator-when-is-it-a-good-bad-idea/1782570#1782570 2 Answer by Vincent Robert for Implicit operator - when is it a good/bad idea? Vincent Robert 2009-11-23T11:29:47Z 2009-11-23T11:29:47Z <p>Basically, implicit conversion is always a bad idea when designing standard libraries. Because if you suddenly discover a case where you implicit conversion breaks, you cannot fix it easily because so much people depend on it.</p> <p>On the other hand, if you are responsible for the whole code base (or at least your team). Just go for what makes your life(s) simpler.</p> <p>And if you discover one case where it breaks:</p> <ul> <li>you will have learned something (which is always nice)</li> <li>you can step back and fix the code</li> </ul> http://stackoverflow.com/questions/1768819/javahow-to-hide-static-resources-like-html-images-from-user-on-jboss-platfrom/1769009#1769009 3 Answer by Vincent Robert for java:how to hide static resources like html ,images from user on jboss platfrom? Vincent Robert 2009-11-20T08:15:17Z 2009-11-20T08:15:17Z <p>If those images are used in your pages, the user will HAVE TO be able to download them to see them.</p> <p>This is basic HTTP. If you want to download a resource, you need to have access to it.</p> <p>Preventing your users from accessing <code>mywebsite.com/mainfolder/images/myimage.jpeg</code> will mean you WON'T be able to use this image in your HTML or CSS.</p> <p>If those files should not be available to the user but only the server, don't publish them by keeping them in a non-published folder.</p> http://stackoverflow.com/questions/1738663/checking-condition-inside-a-loop/1738794#1738794 0 Answer by Vincent Robert for Checking condition inside a loop Vincent Robert 2009-11-15T20:55:49Z 2009-11-15T20:55:49Z <pre><code>while (man &gt; woman) { </code></pre> <p>Beware of infinite loops here :-)</p> http://stackoverflow.com/questions/1737480/passing-mouse-clicks-through-an-overlaying-element-div/1737504#1737504 2 Answer by Vincent Robert for Passing mouse clicks through an overlaying element <div> Vincent Robert 2009-11-15T13:17:04Z 2009-11-15T13:17:04Z <p>You could try to retrieve the mouse coordinates in your click event and then retrieve an element by hiding your overlay, use <code>document.elementFromPoint(x, y)</code> and then redisplay the overlay.</p> <p>See this SO question for more info about elementFromPoint: </p> <p><a href="http://stackoverflow.com/questions/1569775/how-do-i-find-the-dom-node-that-is-at-a-given-x-y-position-hit-test">How do I find the DOM node that is at a given (X,Y) position? (Hit test)</a></p> http://stackoverflow.com/questions/1734688/making-css-url-relative-to-document/1734820#1734820 2 Answer by Vincent Robert for Making CSS url() relative to document Vincent Robert 2009-11-14T16:56:45Z 2009-11-14T16:56:45Z <p>You can duplicate your CSS file on each website using a server-side script.</p> <p><code>example1.com/global.css</code> is your CSS file</p> <p><code>example2.com/global.css.php</code> is a PHP script that will actually return the global.css file of example1.com</p> <p>The script can be as simple as</p> <pre><code>&lt;?php readfile('http://example1.com/global.css'); ?&gt; </code></pre> <p>But you would need more code if you want to handle caching better.</p> http://stackoverflow.com/questions/1687905/sorting-elements-javascript/1688071#1688071 1 Answer by Vincent Robert for sorting elements javascript Vincent Robert 2009-11-06T14:48:51Z 2009-11-06T19:08:05Z <p>You have to think of your values as pixels. If you want to sort them, you need to first compute their position and then translate this position into an offset in the table.</p> <p>Once you have the offset, it is easy to sort the array. Here is an example code (0-based to simplify):</p> <pre><code>// Your constants var nbGroup = 3, nbCol = 2 nbLine = 3, nbPerGroup = nbCol * nbLine; function computeOffset(index) { // Search the block var group = Math.round(index / nbPerGroup - 0.5); var groupPos = index % nbPerGroup; // Search the line var line = Math.round(groupPos / nbCol - 0.5); // Search the column var col = groupPos % nbCol; // This formula is dependent on your layout return col + line * nbCol * nbGroup + group * nbCol; } // Fill an array from 0 to 17 var array = []; for( var i = 0; i &lt; 18; ++i ) { array.push(i); } // Sort our array based on the position offset array.sort(function(a, b) { return computeOffset(a) - computeOffset(b); }); console.log(array); // [0, 1, 6, 7, 12, 13, 2, 3, 8, 9, 14, 15, 4, 5, 10, 11, 16, 17] </code></pre> <p>I didn't do the actual sorting of DOM nodes but you are smart enough to do it by yourself, do you? <b>;-)</b></p> <p><hr></p> <p>Ok, to sort an array of DOM nodes, you must have access to the index of your node or compute it. Here is a solution (untested code):</p> <pre><code>var elements = ... var nodes = [] for( var i = 0, l = elements.length; i &lt; l; ++i ) { nodes.push({ index:i, element:elements[i] }); } nodes.sort(function(a, b) { return computeOffset(a.index) - computeOffset(b.index); }); // Your DOM array should be sorted now. // Note that you will have to append DOM nodes (yes again) // to the document to actually sort the displayed elements. var target = ... for( var i = 0, l = nodes.length; i &lt; l; ++i ) { target.appendChild(nodes[i].element); } </code></pre> http://stackoverflow.com/questions/1424196/how-to-sort-javascript-object-array-by-element-name/1688147#1688147 0 Answer by Vincent Robert for How to sort javascript object array by element.name Vincent Robert 2009-11-06T15:00:26Z 2009-11-06T15:00:26Z <p>This is because <code>sort()</code> is not a method of the <code>DomElementList</code> you retrieve with <code>.elements</code>.</p> <p>The nice thing is that you can apply the <code>Array.sort</code> method to your <code>DomElementList</code> using a Javascript trick.</p> <p>Then, you just have to append the nodes again in the DOM, they won't be duplicated but moved.</p> <pre><code>var myform = document.getElementById('myform'), elem = myform.elements; // call the Array.sort() method on our DomElementList Array.prototype.sort.call(elem, function() { if (a.name &gt; b.name) return -1; else if (b.name &gt; a.name) return 1; else return 0; }); for(var i = 0; i &lt; elem.length; i++) { myform.appendChild(elem[i]); } </code></pre> http://stackoverflow.com/questions/1680864/why-the-expression-for-live-needs-to-be-evaluated-in-jquery/1681460#1681460 1 Answer by Vincent Robert for Why the expression for live needs to be evaluated in jQuery Vincent Robert 2009-11-05T15:54:20Z 2009-11-05T15:54:20Z <p><code>live</code> is just a way to give event delegation to people that do not easily understand it.</p> <p>You look familiar with the concept and in need of performance. I would suggest to actually use event delegation explicitely instead of <code>live</code>.</p> <pre><code>$(document).bind('click', function(event) { var $target = $(event.target); if( $target.is('li a') ) { // Do something with $target } }); </code></pre> http://stackoverflow.com/questions/210821/how-can-i-give-control-back-briefly-to-the-browser-during-intensive-javascript/1610043#1610043 0 Answer by Vincent Robert for How can I give control back (briefly) to the browser during intensive JavaScript processing? Vincent Robert 2009-10-22T21:22:45Z 2009-10-22T21:22:45Z <p>If you need something simpler, I wrote a jQuery plugin to ease writing of asynchronous loops: <a href="http://mess.genezys.net/jquery/jquery.async.php" rel="nofollow">jQuery Async</a>.</p> <p>Using the plugin, your code can be rewritten as:</p> <pre><code>function appendToSelect() { $("#mySelect").children().remove() ; $("#mySelect").html( '&lt;option selected value="' + obj.data[0].value + '"&gt;' + obj.data[0].name + '&lt;/option&gt;' ); ///////////////////////////// var i = 1; $.whileAsync({ test: function(){ i &lt; obj.data.length; } loop: function() { $("#mySelect").append( '&lt;option value="' + obj.data[i].value + '"&gt;' + obj.data[i].name + '&lt;/option&gt;' ); i++; } }); ///////////////////////////// } </code></pre> <p>Should help the responsiveness. Tweak the 'bulk' and 'delay' option for more control.</p> http://stackoverflow.com/questions/1603617/sorting-divs-in-jquery-by-custom-sort-order/1603982#1603982 3 Answer by Vincent Robert for Sorting Divs in jQuery by Custom Sort Order Vincent Robert 2009-10-21T22:16:38Z 2009-10-22T21:12:55Z <p>Appending (or prepending) the DOM nodes again will actually sort them in the order you want. </p> <p>Using jQuery, you just have to select them in the order you want and append (or prepend) them to their container again.</p> <pre><code>$(['any', 'product', 'video']) .map(function(index, category) { return $('[category='+category+']'); }) .prependTo('#input'); </code></pre> <p><hr /></p> <p>Sorry, missed that you wanted to remove nodes not in your category list. Here is the corrected version:</p> <pre><code>// Create a jQuery from our array of category names, // it won't be usable in the DOM but still some // jQuery methods can be used var divs = $(['any', 'product', 'video']) // Replace each category name in our array by the // actual DOM nodes selected using the attribute selector // syntax of jQuery. .map(function(index, category) { // Here we need to do .get() to return an array of DOM nodes return $('[category='+category+']').get(); }); // Remove everything in #input and replace them by our DOM nodes. $('#input').empty().append(divs); // The trick here is that DOM nodes are selected // in the order we want them in the end. // So when we append them again to the document, // they will be appended in the order we want. </code></pre> http://stackoverflow.com/questions/1555622/jquery-and-links-strange-situation/1555784#1555784 0 Answer by Vincent Robert for JQuery and links - strange situation Vincent Robert 2009-10-12T17:11:47Z 2009-10-12T17:11:47Z <p>Is your <code>inner</code> ID unique in the page?</p> <p>You could try to query it in Firebug using <code>document.getElementById("inner")</code> and see if the return DOM node is the one you expect (hover the result in Firebug, il will hilight the DOM node in your page).</p> http://stackoverflow.com/questions/1555622/jquery-and-links-strange-situation/1555738#1555738 2 Answer by Vincent Robert for JQuery and links - strange situation Vincent Robert 2009-10-12T17:01:55Z 2009-10-12T17:01:55Z <p>Is your jQuery code wrapped inside <code>$(document).ready(function(){ ... })</code> ?</p> <p>If you are not waiting for the DOM to be ready, it is possible that jQuery cannot find <code>#inner</code>.</p> <pre><code>$(document).ready(function(){ $('#inner a').click(function(){ console.log( 'achtung' ); }); }); </code></pre> http://stackoverflow.com/questions/1553908/javascript-document-write-replace-png-with-gif/1554184#1554184 0 Answer by Vincent Robert for Javascript document.write() - Replace PNG with GIF?! Vincent Robert 2009-10-12T12:04:52Z 2009-10-12T12:04:52Z <p>jQuery version of the replacement:</p> <pre><code>$(document).ready(function() { // List all PNG images $("img[src$=.png]").each(function(i, img) { // Replace with GIF versions img.src = img.src.replace(/\.png$/, '.gif') }); }); </code></pre> http://stackoverflow.com/questions/1550839/need-help-with-getting-cross-domain-xml-with-javascript/1550898#1550898 1 Answer by Vincent Robert for Need Help With Getting Cross Domain XML With JavaScript Vincent Robert 2009-10-11T15:02:51Z 2009-10-12T08:21:26Z <p>You require something on your server side to proxy your request to that other server. A URL that looks like:</p> <pre><code>/proxy?url=http%3A//musicbrainz.org/ws/1/artist/%3Ftype%3Dxml%26name%3Dexample%26limit%3D10 </code></pre> <p>If PHP is available on your server, you can Google to find a generic PHP proxy script.</p> <p><hr /></p> <p><strong>EDIT</strong> Here is an example of <em>very simple</em> PHP script that will retrieve a specified URL:</p> <pre><code>&lt;?php readfile($_GET['url']) ?&gt; </code></pre> <p>Note that you won't be able to POST any data to it, or specify a Content-Type. This is the most basic proxy required for very basic needs.</p> <p><hr /></p> <p>I understand that JSON is not an option right now but still, here is the explanation of why it can work for cross domain requests.</p> <p>JSON being Javascript, it can be queried using the <code>&lt;script&gt;</code> tag instead of XMLHttpRequest. Since the <code>&lt;script&gt;</code> tag does not have the same restriction for cross domain request, it is possible to retrieve the JSON content this way. </p> <p>This technique is called <a href="http://en.wikipedia.org/wiki/JSON#JSONP" rel="nofollow">JSONP</a> and is implemented in jQuery in the <a href="http://docs.jquery.com/Ajax/jQuery.getJSON" rel="nofollow">getJSON</a> function.</p> http://stackoverflow.com/questions/1547668/using-gsub-to-replace-a-particular-character-with-a-newline-ruby-rails-console/1547705#1547705 12 Answer by Vincent Robert for Using gsub to replace a particular character with a newline (Ruby, Rails console) Vincent Robert 2009-10-10T11:23:02Z 2009-10-10T11:23:02Z <p><code>s.description</code> returns a copy of the description so <code>gsub!</code> will only modify the copy and return the modified copy.</p> <p>Try this:</p> <pre><code>s.description = s.description.gsub(/;/,"\n") </code></pre> http://stackoverflow.com/questions/1547230/stop-the-title-showing-up-on-hover-with-jquery/1547675#1547675 3 Answer by Vincent Robert for stop the title showing up on hover with jquery? Vincent Robert 2009-10-10T11:09:55Z 2009-10-10T11:09:55Z <p>You can remove the <code>title</code> attribute from your HTML element and store it elsewhere.</p> <p>jQuery provides a way to store information sticked to HTML elements using <code>$().data()</code>.</p> <p>This should work:</p> <pre><code>$(document).ready(function() { $('[title]').each(function() { var title = $(this).attr('title'); $(this).data('title', title).removeAttr('title'); }); }); </code></pre> <p>You can retrieve it later using <code>$(this).data('title')</code></p> http://stackoverflow.com/questions/1547636/how-to-execute-a-command-line-from-php/1547645#1547645 1 Answer by Vincent Robert for How to execute a command line from php Vincent Robert 2009-10-10T10:56:26Z 2009-10-10T10:56:26Z <p>You can use the <a href="http://php.net/system" rel="nofollow"><code>system</code></a> function but you will require a PHP version which allows it: impossible in safe mode.</p> http://stackoverflow.com/questions/1546587/force-javascript-function-call-to-wait-until-previous-one-is-finished/1546600#1546600 5 Answer by Vincent Robert for Force Javascript function call to wait until previous one is finished Vincent Robert 2009-10-09T23:55:59Z 2009-10-09T23:55:59Z <p>If these functions actually do an AJAX request, you are better keeping them asynchronous. You can make a synchronous AJAX request but it will stop the browser from responding and lead to bad user experience.</p> <p>If what you require if that these AJAX requests are made one after the other because they depend on each other, you should investigate your function to see if it provides a callback mechanism.</p> <pre><code>makeRequest('food', function() { // called when food request is done makeRequest('shopping'); }); </code></pre> <p>Using jQuery, it looks something like that</p> <pre><code>$.get("/food", function(food) { // do something with food $.get("/shopping", function(shopping) { // do something with shopping }); }); </code></pre> http://stackoverflow.com/questions/1546555/php-i-cant-trim-off-the-last-character-which-is-a-space/1546565#1546565 5 Answer by Vincent Robert for PHP - I can't trim off the last character which is a space Vincent Robert 2009-10-09T23:41:12Z 2009-10-09T23:41:12Z <p>Isn't it because you manually add a space when you <code>echo $searchTerm</code>? ;-)</p> <p>Your code looks fine, I would just remove the <a href="http://php.net/substr" rel="nofollow"><code>substr</code></a>, <a href="http://php.net/explode" rel="nofollow"><code>explode</code></a> removes the whitespace between keywords.</p> <p>If you really want to ensure you have no whitespaces around your keywords, you can use the <a href="http://php.net/trim" rel="nofollow"><code>trim</code></a> function.</p> http://stackoverflow.com/questions/1886837/array-under-another-array-in-javascript Comment by Vincent Robert on Array under another array in javascript. Vincent Robert 2009-12-11T09:36:19Z 2009-12-11T09:36:19Z Javascript IS case sensitive. http://stackoverflow.com/questions/1831646/c-error-help-needed/1832044#1832044 Comment by Vincent Robert on c++ error - help needed Vincent Robert 2009-12-03T10:03:44Z 2009-12-03T10:03:44Z If it is about rounding to next integer, then why want a 2 decimal precision? http://stackoverflow.com/questions/1821049/json-encoding-problem-in-ie6-and-ie7/1821277#1821277 Comment by Vincent Robert on JSON encoding problem in IE6 and IE7 Vincent Robert 2009-11-30T23:08:08Z 2009-11-30T23:08:08Z You'll need to give more information than &quot;doesn't work&quot;. Did it crash with an error? Did it do something? Is the JSON in your response valid (jsonlint.com)? http://stackoverflow.com/questions/1808010/using-get-to-get-page-content-and-render-it-into-div-tag/1808059#1808059 Comment by Vincent Robert on using $.get to get page content and render it into div tag Vincent Robert 2009-11-27T14:19:52Z 2009-11-27T14:19:52Z Can you add to your answer the code you are using to include jQuery in your page? http://stackoverflow.com/questions/1807942/overcoming-a-basic-problem-with-csv-parsing-using-the-fastercsv-gem/1808001#1808001 Comment by Vincent Robert on Overcoming a basic problem with CSV parsing using the FasterCSV gem Vincent Robert 2009-11-27T10:45:49Z 2009-11-27T10:45:49Z Looks like I'm wrong. &quot;If fields are not enclosed with double quotes, then double quotes may not appear inside the fields.&quot; -- <a href="http://tools.ietf.org/html/rfc4180#section-2" rel="nofollow">tools.ietf.org/html/rfc4180#section-2</a> http://stackoverflow.com/questions/1807942/overcoming-a-basic-problem-with-csv-parsing-using-the-fastercsv-gem/1808001#1808001 Comment by Vincent Robert on Overcoming a basic problem with CSV parsing using the FasterCSV gem Vincent Robert 2009-11-27T10:42:48Z 2009-11-27T10:42:48Z Isn't the space saying that the field is actually not surrounded by quotes (since the first char is not a quote) and that quotes should be taken as part of the field content? http://stackoverflow.com/questions/1803819/nocache-of-linked-javascript/1803875#1803875 Comment by Vincent Robert on nocache of linked Javascript Vincent Robert 2009-11-26T14:12:03Z 2009-11-26T14:12:03Z Isn't this what Rails does by default, appending the file modification timestamp to the query http://stackoverflow.com/questions/1785675/how-to-add-non-standard-attributes-in-a-valid-way/1785757#1785757 Comment by Vincent Robert on How to add non-standard attributes in a valid way Vincent Robert 2009-11-23T23:11:37Z 2009-11-23T23:11:37Z By real errors, I meant important errors like invalid structure or misspelled attribute which might really mess rendering up and make you lose time. http://stackoverflow.com/questions/1785675/how-to-add-non-standard-attributes-in-a-valid-way/1785757#1785757 Comment by Vincent Robert on How to add non-standard attributes in a valid way Vincent Robert 2009-11-23T23:09:11Z 2009-11-23T23:09:11Z I never meant to make you feel guilty of having invalid code. You seem to be using validation in the right way: detecting coding errors. Now for your specific problem, your back-end validation could have specific cases for those attributes and just issue a warning? That will allow to &quot;half-way pass&quot; while still detecting real errors. http://stackoverflow.com/questions/1766715/when-not-to-use-the-static-keyword-in-java/1766732#1766732 Comment by Vincent Robert on When NOT to use the static keyword in Java? Vincent Robert 2009-11-19T21:52:20Z 2009-11-19T21:52:20Z Sorry for that, it was an impulsive down vote :) http://stackoverflow.com/questions/1766715/when-not-to-use-the-static-keyword-in-java/1766732#1766732 Comment by Vincent Robert on When NOT to use the static keyword in Java? Vincent Robert 2009-11-19T21:48:00Z 2009-11-19T21:48:00Z Please, leave me the time to actually type my comment ;-) http://stackoverflow.com/questions/1766715/when-not-to-use-the-static-keyword-in-java/1766732#1766732 Comment by Vincent Robert on When NOT to use the static keyword in Java? Vincent Robert 2009-11-19T21:46:50Z 2009-11-19T21:46:50Z Static is not about accessing the member fields or not. It is about class semantics. If a method applies to instances of the class, it must not be static. In your case, it is your collection instance that is read-only, not the class itself, so the function must be non-static. Static is really about class methods, for factories or utility functions. http://stackoverflow.com/questions/1734688/making-css-url-relative-to-document/1734820#1734820 Comment by Vincent Robert on Making CSS url() relative to document Vincent Robert 2009-11-14T22:29:15Z 2009-11-14T22:29:15Z No, but it may slow it down because the file first has to be downloaded from the first server, then from the second. http://stackoverflow.com/questions/1734688/making-css-url-relative-to-document/1734820#1734820 Comment by Vincent Robert on Making CSS url() relative to document Vincent Robert 2009-11-14T19:05:22Z 2009-11-14T19:05:22Z I didn't said it was good, I said it would be working... http://stackoverflow.com/questions/1703850/top-3-improvements-that-ruby-offers/1703873#1703873 Comment by Vincent Robert on Top 3 improvements that Ruby offers? Vincent Robert 2009-11-09T21:35:05Z 2009-11-09T21:35:05Z @Xeoncross, yes you can, either on the object itself or on its class.