User Vincent Robert - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T00:57:58Zhttp://stackoverflow.com/feeds/user/268http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1886837/array-under-another-array-in-javascript/1886887#18868870Answer by Vincent Robert for Array under another array in javascript.Vincent Robert2009-12-11T09:34:26Z2009-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#18864281Answer by Vincent Robert for Execution of curl command in javaVincent Robert2009-12-11T07:33:59Z2009-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-php2Introduction to ASP.Net from PHPVincent Robert2008-10-30T00:09:06Z2009-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#18320440Answer by Vincent Robert for c++ error - help neededVincent Robert2009-12-02T10:32:48Z2009-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 << "You will need the following amount of paint in gallons: "
<< (cans / 100) << "." << setfill('0') << setw(2) << (cans % 100) << endl;
</code></pre>
http://stackoverflow.com/questions/1821049/json-encoding-problem-in-ie6-and-ie7/1821277#18212771Answer by Vincent Robert for JSON encoding problem in IE6 and IE7Vincent Robert2009-11-30T17:45:05Z2009-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#18119582Answer by Vincent Robert for jQuery, remove item from middle of list, then refresh list?Vincent Robert2009-11-28T08:12:28Z2009-11-28T08:12:28Z<p><code>id="city_X"</code> is duplicated on the <code><li></code> and the <code><label></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><label></code>s are for form input elements, not for text display. Either use no tag or <code><span></code></p>
<p>Here is how I would do it:</p>
<pre><code><ul id="city_list">
<li id='city_7' class="city">
<span class="label">Eureka</span>
- <a href='city.modify.php?id=7&modification_type=edit'>Edit</a>
- <a href='#' class='confirm_delete'>Delete</a>
</li>
<li id='city_8' class="city">
<span class="label">Rolla</span>
- <a href='city.modify.php?id=8&modification_type=edit'>Edit</a>
- <a href='#' class='confirm_delete'>Delete</a>
</li>
<li id='city_10' class="city">
<span class="label">Union</span>
- <a href='city.modify.php?id=10&modification_type=edit'>Edit</a>
- <a href='#' class='confirm_delete'>Delete</a>
</li>
</ul>
</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#18119270Answer by Vincent Robert for syntax error, unexpected '<' Vincent Robert2009-11-28T07:57:36Z2009-11-28T07:57:36Z<p>By the way, submitting to yourself can be:</p>
<pre><code><form action="" method="post">
</code></pre>
http://stackoverflow.com/questions/1808010/using-get-to-get-page-content-and-render-it-into-div-tag/1808059#18080591Answer by Vincent Robert for using $.get to get page content and render it into div tagVincent Robert2009-11-27T10:52:35Z2009-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-wsdl2Generating JavaScript stubs from WSDLVincent Robert2008-09-03T10:54:28Z2009-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#17857573Answer by Vincent Robert for How to add non-standard attributes in a valid wayVincent Robert2009-11-23T20:34:03Z2009-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-timezones0ICalendar parser in PHP that supports timezonesVincent Robert2009-11-23T11:22:20Z2009-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#17825702Answer by Vincent Robert for Implicit operator - when is it a good/bad idea?Vincent Robert2009-11-23T11:29:47Z2009-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#17690093Answer by Vincent Robert for java:how to hide static resources like html ,images from user on jboss platfrom?Vincent Robert2009-11-20T08:15:17Z2009-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#17387940Answer by Vincent Robert for Checking condition inside a loopVincent Robert2009-11-15T20:55:49Z2009-11-15T20:55:49Z<pre><code>while (man > woman) {
</code></pre>
<p>Beware of infinite loops here :-)</p>
http://stackoverflow.com/questions/1737480/passing-mouse-clicks-through-an-overlaying-element-div/1737504#17375042Answer by Vincent Robert for Passing mouse clicks through an overlaying element <div>Vincent Robert2009-11-15T13:17:04Z2009-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#17348202Answer by Vincent Robert for Making CSS url() relative to documentVincent Robert2009-11-14T16:56:45Z2009-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><?php
readfile('http://example1.com/global.css');
?>
</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#16880711Answer by Vincent Robert for sorting elements javascriptVincent Robert2009-11-06T14:48:51Z2009-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 < 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 < 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 < l; ++i )
{
target.appendChild(nodes[i].element);
}
</code></pre>
http://stackoverflow.com/questions/1424196/how-to-sort-javascript-object-array-by-element-name/1688147#16881470Answer by Vincent Robert for How to sort javascript object array by element.nameVincent Robert2009-11-06T15:00:26Z2009-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 > b.name)
return -1;
else if (b.name > a.name)
return 1;
else
return 0;
});
for(var i = 0; i < 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#16814601Answer by Vincent Robert for Why the expression for live needs to be evaluated in jQueryVincent Robert2009-11-05T15:54:20Z2009-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#16100430Answer by Vincent Robert for How can I give control back (briefly) to the browser during intensive JavaScript processing?Vincent Robert2009-10-22T21:22:45Z2009-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(
'<option selected value="' + obj.data[0].value + '">'
+ obj.data[0].name
+ '</option>'
);
/////////////////////////////
var i = 1;
$.whileAsync({
test: function(){ i < obj.data.length; }
loop: function()
{
$("#mySelect").append(
'<option value="' + obj.data[i].value + '">'
+ obj.data[i].name
+ '</option>'
);
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#16039823Answer by Vincent Robert for Sorting Divs in jQuery by Custom Sort OrderVincent Robert2009-10-21T22:16:38Z2009-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#15557840Answer by Vincent Robert for JQuery and links - strange situationVincent Robert2009-10-12T17:11:47Z2009-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#15557382Answer by Vincent Robert for JQuery and links - strange situationVincent Robert2009-10-12T17:01:55Z2009-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#15541840Answer by Vincent Robert for Javascript document.write() - Replace PNG with GIF?!Vincent Robert2009-10-12T12:04:52Z2009-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#15508981Answer by Vincent Robert for Need Help With Getting Cross Domain XML With JavaScriptVincent Robert2009-10-11T15:02:51Z2009-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><?php readfile($_GET['url']) ?>
</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><script></code> tag instead of XMLHttpRequest. Since the <code><script></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#154770512Answer by Vincent Robert for Using gsub to replace a particular character with a newline (Ruby, Rails console)Vincent Robert2009-10-10T11:23:02Z2009-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#15476753Answer by Vincent Robert for stop the title showing up on hover with jquery?Vincent Robert2009-10-10T11:09:55Z2009-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#15476451Answer by Vincent Robert for How to execute a command line from phpVincent Robert2009-10-10T10:56:26Z2009-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#15466005Answer by Vincent Robert for Force Javascript function call to wait until previous one is finishedVincent Robert2009-10-09T23:55:59Z2009-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#15465655Answer by Vincent Robert for PHP - I can't trim off the last character which is a spaceVincent Robert2009-10-09T23:41:12Z2009-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-javascriptComment by Vincent Robert on Array under another array in javascript.Vincent Robert2009-12-11T09:36:19Z2009-12-11T09:36:19ZJavascript IS case sensitive.http://stackoverflow.com/questions/1831646/c-error-help-needed/1832044#1832044Comment by Vincent Robert on c++ error - help neededVincent Robert2009-12-03T10:03:44Z2009-12-03T10:03:44ZIf 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#1821277Comment by Vincent Robert on JSON encoding problem in IE6 and IE7Vincent Robert2009-11-30T23:08:08Z2009-11-30T23:08:08ZYou'll need to give more information than "doesn't work". 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#1808059Comment by Vincent Robert on using $.get to get page content and render it into div tagVincent Robert2009-11-27T14:19:52Z2009-11-27T14:19:52ZCan 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#1808001Comment by Vincent Robert on Overcoming a basic problem with CSV parsing using the FasterCSV gemVincent Robert2009-11-27T10:45:49Z2009-11-27T10:45:49ZLooks like I'm wrong. "If fields are not enclosed with double quotes, then double quotes may not appear inside the fields." -- <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#1808001Comment by Vincent Robert on Overcoming a basic problem with CSV parsing using the FasterCSV gemVincent Robert2009-11-27T10:42:48Z2009-11-27T10:42:48ZIsn'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#1803875Comment by Vincent Robert on nocache of linked JavascriptVincent Robert2009-11-26T14:12:03Z2009-11-26T14:12:03ZIsn't this what Rails does by default, appending the file modification timestamp to the queryhttp://stackoverflow.com/questions/1785675/how-to-add-non-standard-attributes-in-a-valid-way/1785757#1785757Comment by Vincent Robert on How to add non-standard attributes in a valid wayVincent Robert2009-11-23T23:11:37Z2009-11-23T23:11:37ZBy 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#1785757Comment by Vincent Robert on How to add non-standard attributes in a valid wayVincent Robert2009-11-23T23:09:11Z2009-11-23T23:09:11ZI 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 "half-way pass" while still detecting real errors.http://stackoverflow.com/questions/1766715/when-not-to-use-the-static-keyword-in-java/1766732#1766732Comment by Vincent Robert on When NOT to use the static keyword in Java?Vincent Robert2009-11-19T21:52:20Z2009-11-19T21:52:20ZSorry for that, it was an impulsive down vote :)http://stackoverflow.com/questions/1766715/when-not-to-use-the-static-keyword-in-java/1766732#1766732Comment by Vincent Robert on When NOT to use the static keyword in Java?Vincent Robert2009-11-19T21:48:00Z2009-11-19T21:48:00ZPlease, leave me the time to actually type my comment ;-)http://stackoverflow.com/questions/1766715/when-not-to-use-the-static-keyword-in-java/1766732#1766732Comment by Vincent Robert on When NOT to use the static keyword in Java?Vincent Robert2009-11-19T21:46:50Z2009-11-19T21:46:50ZStatic 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#1734820Comment by Vincent Robert on Making CSS url() relative to documentVincent Robert2009-11-14T22:29:15Z2009-11-14T22:29:15ZNo, 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#1734820Comment by Vincent Robert on Making CSS url() relative to documentVincent Robert2009-11-14T19:05:22Z2009-11-14T19:05:22ZI didn't said it was good, I said it would be working...http://stackoverflow.com/questions/1703850/top-3-improvements-that-ruby-offers/1703873#1703873Comment by Vincent Robert on Top 3 improvements that Ruby offers?Vincent Robert2009-11-09T21:35:05Z2009-11-09T21:35:05Z@Xeoncross, yes you can, either on the object itself or on its class.