User Paolo Bergantino - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T11:54:11Zhttp://stackoverflow.com/feeds/user/16417http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/746082/how-to-find-list-of-possible-words-from-a-letter-matrix-boggle-solver62How to find list of possible words from a letter matrix [Boggle Solver]Paolo Bergantino2009-04-14T02:11:33Z2009-11-19T07:06:12Z
<p>Lately I have been playing a game on my iPhone called Scramble. Some of you may know this game as Boggle. Essentially, when the game starts you get a matrix of letters like so:</p>
<pre><code>F X I E
A M L O
E W B X
A S T U
</code></pre>
<p>The goal of the game is to find as many words as you can that can be formed by chaining letters together. You can start with any letter, and all the letters that surround it are fair game, and then once you move on to the next letter, all the letters that surround that letter are fair game, <strong>except for any previously used letters</strong>. So in the grid above, for example, I could come up with the words <code>LOB</code>, <code>TUX</code>, <code>SEA</code>, <code>FAME</code>, etc. Words must be at least 3 characters, and no more than NxN characters, which would be 16 in this game but can vary in some implementations. While this game is fun and addictive, I am apparently not very good at it and I wanted to cheat a little bit by making a program that would give me the best possible words (the longer the word the more points you get).</p>
<p><img src="http://www.boggled.org/sample.gif" alt="Sample Boggle" /></p>
<p>I am, unfortunately, not very good with algorithms or their efficiencies and so forth. My first attempt uses a dictionary <a href="http://www.freebsd.org/cgi/cvsweb.cgi/src/share/dict/web2?rev=1.12;content-type=text%2Fplain" rel="nofollow">such as this one</a> (~2.3MB) and does a linear search trying to match combinations with dictionary entries. This takes a <em>very</em> long time to find the possible words, and since you only get 2 minutes per round, it is simply not adequate.</p>
<p>I am interested to see if any Stackoverflowers can come up with more efficient solutions. I am mostly looking for solutions using the Big 3 Ps: Python, PHP, and Perl, although anything with Java or C++ is cool too, since speed is essential.</p>
<p><strong>CURRENT SOLUTIONS</strong>:</p>
<ul>
<li><a href="#746102" rel="nofollow">Adam Rosenfield</a>, Python, ~20s </li>
<li><a href="#746345" rel="nofollow">John Fouhy</a>, Python, ~3s </li>
<li><a href="#746955" rel="nofollow">Kent Fredric</a>, Perl, ~1s </li>
<li><a href="#750012" rel="nofollow">Darius Bacon</a>, Python, ~1s </li>
<li><a href="#750722" rel="nofollow">rvarcher</a>, VB.NET <a href="http://www.myvrad.com/boggle/default.aspx" rel="nofollow">(live link)</a>, ~1s</li>
<li><a href="#757165" rel="nofollow">Paolo Bergantino</a>, PHP <a href="http://www.rootspot.com/stackoverflow/boggle.php" rel="nofollow">(live link)</a>, ~5s (~2s locally)</li>
</ul>
<p><strong>BOUNTY</strong>:</p>
<p>I am adding a bounty to this question as my way of saying thanks to all the people who pitched in with their programs. Unfortunately I can only give the accepted answer to one of you, so I'll measure who has the fastest boggle solver 7 days from now and award the winner the bounty.</p>
<p>Bounty awarded. Thanks to everyone that participated.</p>
http://stackoverflow.com/questions/1601933/how-do-i-stop-a-web-page-from-scrolling-to-the-top-when-a-link-is-clicked-that-tr/1601948#160194810Answer by Paolo Bergantino for How do I stop a web page from scrolling to the top when a link is clicked that triggers javascript?Paolo Bergantino2009-10-21T16:21:47Z2009-10-21T16:21:47Z<p>You need to <code>return false;</code> in the jQuery click handler to prevent the default action from happening:</p>
<pre><code><a href="#" id="ma_link">Do something fancy</a>
</code></pre>
<p>Then with jQuery:</p>
<pre><code>$('#ma_link').click(function(e) {
// do something fancy
return false; // prevent default click action from happening!
e.preventDefault(); // same thing as above
});
</code></pre>
http://stackoverflow.com/questions/1593083/what-is-an-efficient-way-to-set-css-class-for-each-cell-in-a-given-table-row/1593095#159309514Answer by Paolo Bergantino for What is an efficient way to set CSS class for each cell in a given table row?Paolo Bergantino2009-10-20T08:05:22Z2009-10-20T08:05:22Z<p>Why can't you set the class of the row and adjust your css accordingly?</p>
<pre><code><tr class="myclass">
<td>...</td>
<td>...</td>
</tr>
</code></pre>
<p>Then in CSS:</p>
<pre><code>tr.myclass td {
...
}
</code></pre>
<p>In either case, assuming the table has an id of "mytable" you could give all the table rows the class you want like so:</p>
<pre><code>var rows = document.getElementById('mytable').getElementsByTagName('tr');
for(var x = 0; x < rows.length; x++) {
rows[x].className = rows[x].className + " myclass";
}
</code></pre>
<p>If you're doing this to the whole table, though, you might as well just give a class to the table tag itself then do:</p>
<pre><code>table.myclass tr td {
...
}
</code></pre>
http://stackoverflow.com/questions/432944/sms-from-web-application/433201#43320116Answer by Paolo Bergantino for SMS from web applicationPaolo Bergantino2009-01-11T16:54:42Z2009-10-12T17:59:54Z<p>I don't know if this applies to you, but what I have done many times to save myself the money is ask the user in his profile what his carrier is, then tried matching it with <a href="http://en.wikipedia.org/wiki/List%5Fof%5Fcarriers%5Fproviding%5FSMS%5Ftransit" rel="nofollow"><code>this list</code></a>. Essentially, many/most carriers have an email address connected to a phone number that will easily let you send texts to the number. For example, if you have ATT and your phone number is 786-262-8344, an email to 7682628344@txt.att.net will send you a text message with the subject/body of the email, free of charge. This technique will pretty much cover all of your US users for free. Obviously, depending on the needs of your application this may not be possible/adequate/desired, but it is an option to be aware of.</p>
http://stackoverflow.com/questions/1542158/how-do-i-select-all-disabled-decendants-using-jquery/1542162#15421623Answer by Paolo Bergantino for How do I select all disabled decendants using jQueryPaolo Bergantino2009-10-09T06:43:51Z2009-10-09T06:43:51Z<p>Try:</p>
<pre><code>$('#myCell :input:disabled').removeAttr('disabled');
</code></pre>
<p>The <a href="http://docs.jquery.com/Selectors/input" rel="nofollow"><code>:input</code></a> selector is going to select all input elements, and the <a href="http://docs.jquery.com/Selectors/disabled" rel="nofollow"><code>:disabled</code></a> selector is going to select elements that are disabled. You could probably just have the <code>:disabled</code> selector but it doesn't hurt to have both and is probably marginally faster to do so.</p>
http://stackoverflow.com/questions/1475550/how-to-put-a-div-at-center-of-another-div/1475556#14755568Answer by Paolo Bergantino for How to put a div at center of another div?Paolo Bergantino2009-09-25T05:22:45Z2009-09-26T01:16:52Z<p>You probably are not including a DOCTYPE in your document, thus throwing IE into quirks mode.</p>
<p>Add this at the top of your file, for example:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
</code></pre>
<p>See the difference here: <a href="http://jsbin.com/oloja" rel="nofollow">with doctype</a>, <a href="http://jsbin.com/ufamu" rel="nofollow">without doctype</a>.</p>
<p>It is a very good practice to always include a DOCTYPE into your document to make your website be as consistent as possible across browsers. With a DOCTYPE and a reset stylesheet cross browser layouts are much more reliable.</p>
<p>The above DOCTYPE is just one of many choices. For more, check out <a href="http://stackoverflow.com/questions/414891/whats-up-doctype">this stackoverflow question</a></p>
<p>You may also notice that Stackoverflow's sister site aimed at designers is named after this very important aspect of web design: <a href="http://doctype.com/" rel="nofollow">Doctype</a>.</p>
http://stackoverflow.com/questions/1473071/suppress-click-event-using-jquery/1473102#14731024Answer by Paolo Bergantino for Suppress click event using JQueryPaolo Bergantino2009-09-24T17:32:32Z2009-09-24T17:32:32Z<p>You can't remove the onclick handler like that. All you're doing is attaching yet another click handler. Try this:</p>
<pre><code>$("input[type='button'][value='Select']").removeAttr('onclick');
</code></pre>
<p>Also make sure your code is wrapped around document.ready</p>
http://stackoverflow.com/questions/1449047/jquery-getjson-returning-undefined/1449052#14490523Answer by Paolo Bergantino for Jquery getJSON returning 'undefined'Paolo Bergantino2009-09-19T17:34:38Z2009-09-19T17:34:38Z<p>Try:</p>
<pre><code>alert(data[0].filename);
</code></pre>
<p>The JSON being returned is an array (the brackets) containing one object (the curly braces), so you have to access the first element of the array to be able to get the filename of the first file.</p>
http://stackoverflow.com/questions/501719/dynamically-adding-a-form-to-a-django-formset-with-ajax/669982#6699829Answer by Paolo Bergantino for Dynamically adding a form to a Django formset with AjaxPaolo Bergantino2009-03-21T20:58:02Z2009-09-16T06:42:13Z<p>This is how I do it, using <a href="http://www.jquery.com" rel="nofollow">jQuery</a>:</p>
<p>My template:</p>
<pre><code><h3>My Services</h3>
{{ serviceFormset.management_form }}
{% for form in serviceFormset.forms %}
<div class='table'>
<table class='no_error'>
{{ form.as_table }}
</table>
</div>
{% endfor %}
<input type="button" value="Add More" id="add_more">
<script>
$('#add_more').click(function() {
cloneMore('div.table:last', 'service');
});
</script>
</code></pre>
<p>In a javascript file:</p>
<pre><code>function cloneMore(selector, type) {
var newElement = $(selector).clone(true);
var total = $('#id_' + type + '-TOTAL_FORMS').val();
newElement.find(':input').each(function() {
var name = $(this).attr('name').replace('-' + (total-1) + '-','-' + total + '-');
var id = 'id_' + name;
$(this).attr({'name': name, 'id': id}).val('').removeAttr('checked');
});
newElement.find('label').each(function() {
var newFor = $(this).attr('for').replace('-' + (total-1) + '-','-' + total + '-');
$(this).attr('for', newFor);
});
total++;
$('#id_' + type + '-TOTAL_FORMS').val(total);
$(selector).after(newElement);
}
</code></pre>
<p>What it does:</p>
<p><code>cloneMore</code> accepts <code>selector</code> as the first argument, and the <code>type</code> of formset as the 2nd one. What the <code>selector</code> should do is pass it what it should duplicate. In this case, I pass it <code>div.table:last</code> so that jQuery looks for the last table with a class of <code>table</code>. The <code>:last</code> part of it is important because the <code>selector</code> is also used to determine what the new form will be inserted after. More than likely you'd want it at the end of the rest of the forms. The <code>type</code> argument is so that we can update the <code>management_form</code> field, notably <code>TOTAL_FORMS</code>, as well as the actual form fields. If you have a formset full of, say, <code>Client</code> models, the management fields will have IDs of <code>id_clients-TOTAL_FORMS</code> and <code>id_clients-INITIAL_FORMS</code>, while the form fields will be in a format of <code>id_clients-N-fieldname</code> with <code>N</code> being the form number, starting with <code>0</code>. So with the <code>type</code> argument the <code>cloneMore</code> function looks at how many forms there currently are, and goes through every input and label inside the new form replacing all the field names/ids from something like <code>id_clients-(N)-name</code> to <code>id_clients-(N+1)-name</code> and so on. After it is finished, it updates the <code>TOTAL_FORMS</code> field to reflect the new form and adds it to the end of the set.</p>
<p>This function is particularly helpful to me because the way it is setup it allows me to use it throughout the app when I want to provide more forms in a formset, and doesn't make me need to have a hidden "template" form to duplicate as long as I pass it the formset name and the format in which the forms are laid out. Hope it helps.</p>
http://stackoverflow.com/questions/1414840/jquery-ajax-parameter-not-being-passed-to-mvc/1414846#14148463Answer by Paolo Bergantino for jQuery AJAX parameter not being passed to MVCPaolo Bergantino2009-09-12T10:45:19Z2009-09-12T10:45:19Z<p><code>data</code> needs to be a Javascript object literal:</p>
<pre><code>$.ajax({
type: "GET",
data: {ProjectID: p},
url: "/Home/Batches",
success: function(msg) {
populateBatches(msg);
}
});
</code></pre>
http://stackoverflow.com/questions/1400637/stop-reload-for-ajax-submitted-form/1400656#14006561Answer by Paolo Bergantino for Stop reload for ajax submitted form Paolo Bergantino2009-09-09T16:17:29Z2009-09-09T16:17:29Z<p>Any reason you are using live? It's not necessary if the HTML is already there when the page loads.</p>
<p>Anyhow, the proper way to stop the form submission if you are using AJAX is not to catch the button's click event, but the form's submit event. You can then cancel the form's default action and do your AJAX stuff. This is best for usability.</p>
<p>This would be appropriate for the HTML above:</p>
<pre><code>$(function() {
$('#form').submit(function() {
$.ajax({
data: $(this).serialize(),
url: $(this).attr('action'),
type: $(this).attr('method'),
success: function(r) {
//...
}
});
return false; // prevent form from submitting
});
});
</code></pre>
http://stackoverflow.com/questions/1400569/jquery-how-to-access-divs-p-tag-and-append-it/1400591#14005915Answer by Paolo Bergantino for JQuery how to access divs <p> tag and append itPaolo Bergantino2009-09-09T16:05:20Z2009-09-09T16:05:20Z<p>If you read the documentation for closest() you will see it only looks upwards, not sideways:</p>
<blockquote>
<p>Get a set of elements containing the closest parent element that matches the specified selector, the starting element included.</p>
</blockquote>
<p>You could do this to find the previous <code><p></code> from the input:</p>
<pre><code>$(this).prev("p").append(element_value + ",-");
</code></pre>
<p>Or a more explicit:</p>
<pre><code>$(this).closest("div.entry").find("p").append(element_value + ",-");
</code></pre>
<p>Which would then not depend on which side of the <code><p></code> the input happens to be on.</p>
http://stackoverflow.com/questions/1371020/django-flush-response1Django - flush response?Paolo Bergantino2009-09-03T01:29:31Z2009-09-03T01:58:34Z
<p>I am sending an AJAX request to a Django view that can potentially take a lot of time. It goes through some well-defined steps, however, so I would like to print status indicators to the user letting it know when it is finished doing a certain thing and has moved on to the next.</p>
<p>If I was using PHP it might look like this, using the <a href="http://www.php.net/flush" rel="nofollow">flush</a> function:</p>
<pre><code>do_something();
print 'Done doing something!';
flush();
do_something_else();
print 'Done doing something else!';
flush();
</code></pre>
<p>How would I go about doing the same with Django? Looking at <a href="http://docs.djangoproject.com/en/dev/ref/request-response/#id3" rel="nofollow">the documentation</a> I see that HttpResponse objects have a flush method, but all it has to say is that "This method makes an HttpResponse instance a file-like object." - I'm not sure that's what I want. I'm having a hard time wrapping my head around how this could be done in Django since I have to return the response and don't really have a control of when the content goes to the browser.</p>
http://stackoverflow.com/questions/196684/jquery-get-select-option-text7jQuery get select option textPaolo Bergantino2008-10-13T04:06:34Z2009-09-01T23:34:58Z
<p>Alright, say I have this:</p>
<pre><code><select id='list'>
<option value='1'>Option A</option>
<option value='2'>Option B</option>
<option value='3'>Option C</option>
</select>
</code></pre>
<p>What would the selector look like if I wanted to get "Option B" when I have the value '2'. Please note that this is not asking how to get the <em>selected</em> text value, but just any one of them, whether selected or not, depending on the value attribute. I tried:</p>
<pre><code>$("#list[value='2']").text();
</code></pre>
<p>But it is not working. </p>
http://stackoverflow.com/questions/1355961/scan-through-json-technique/1355979#13559791Answer by Paolo Bergantino for Scan through JSON techniquePaolo Bergantino2009-08-31T05:48:25Z2009-08-31T05:48:25Z<p>Your best bet is to build an inverse of the json object:</p>
<pre><code>var inverse = {}
for(var key in smiliesList) {
if(smiliesList.hasOwnProperty(key)) {
inverse[smiliesList[key]] = key;
}
}
</code></pre>
<p>After that you have an object that is the inverse of the original, so you can simply do:</p>
<pre><code>alert(inverse[":)"]); // sm-1
</code></pre>
http://stackoverflow.com/questions/1355844/reqular-expression-replace-user-defined-format-with-number/1355866#13558662Answer by Paolo Bergantino for Reqular Expression: Replace user defined Format with Number?Paolo Bergantino2009-08-31T05:03:30Z2009-08-31T05:03:30Z<p>How about this?</p>
<pre><code>$num = 23;
$format = 'ABC-####-09';
print preg_replace('/(#+)/e', 'str_pad($num, strlen("$1"), 0, STR_PAD_LEFT)', $format);
</code></pre>
http://stackoverflow.com/questions/1352621/jquery-alternating-rows-with-visability/1352627#13526277Answer by Paolo Bergantino for Jquery Alternating Rows with visabilityPaolo Bergantino2009-08-29T23:17:44Z2009-08-29T23:17:44Z<p>This is possible with the <a href="http://docs.jquery.com/Selectors/visible" rel="nofollow">:visible</a> and the <a href="http://docs.jquery.com/Selectors/odd" rel="nofollow">:odd</a> (or the <a href="http://docs.jquery.com/Selectors/even" rel="nofollow">:even</a>) selectors:</p>
<pre><code>$('table').find('tr:visible:odd').addClass('odd');
</code></pre>
<p>Then you can do:</p>
<pre><code>table tr td {
background-color: #fff;
}
table tr.odd td {
background-color: #c1c1c1;
}
</code></pre>
http://stackoverflow.com/questions/622982/django-passing-custom-form-parameters-to-formset3Django Passing Custom Form Parameters to Formset Paolo Bergantino2009-03-08T03:36:08Z2009-08-27T14:38:38Z
<p>I have a Django Form that looks like this:</p>
<pre><code>class ServiceForm(forms.Form):
option = forms.ModelChoiceField(queryset=ServiceOption.objects.none())
rate = forms.DecimalField(widget=custom_widgets.SmallField())
units = forms.IntegerField(min_value=1, widget=custom_widgets.SmallField())
def __init__(self, *args, **kwargs):
affiliate = kwargs.pop('affiliate')
super(ServiceForm, self).__init__(*args, **kwargs)
self.fields["option"].queryset = ServiceOption.objects.filter(affiliate=affiliate)
</code></pre>
<p>I call this form with something like this:</p>
<pre><code>form = ServiceForm(affiliate=request.affiliate)
</code></pre>
<p>Where <code>request.affiliate</code> is the logged in user. This works as intended.</p>
<p>My problem is that I now want to turn this single form into a formset. What I can't figure out is how I can pass the affiliate information to the individual forms when creating the formset. According to the docs to make a formset out of this I need to do something like this:</p>
<pre><code>ServiceFormSet = forms.formsets.formset_factory(ServiceForm, extra=3)
</code></pre>
<p>And then I need to create it like this:</p>
<pre><code>formset = ServiceFormSet()
</code></pre>
<p>Now how can I pass affiliate=request.affiliate to the individual forms this way?</p>
http://stackoverflow.com/questions/1339103/three-questions-about-table-manipulation-with-jquery/1339112#13391122Answer by Paolo Bergantino for three questions about table manipulation with jQueryPaolo Bergantino2009-08-27T06:03:38Z2009-08-27T06:03:38Z<h3>One:</h3>
<pre><code>$('#mytable').find('tr').hover(function() {
$(this).addClass('active');
}, function() {
$(this).removeClass('active');
});
</code></pre>
<p>Along with this CSS:</p>
<pre><code>#mytable tr.active td {
background-color: #ccc;
}
</code></pre>
<h3>Two:</h3>
<p>You said update a "row" but all you can really update is cells, unless you want to create whole new cells.</p>
<pre><code>$(cell).html('Contents');
</code></pre>
<p>Or:</p>
<pre><code>var $cell = $('<td>').html('Contents');
$(row).html($cell);
</code></pre>
<p>Or if a table row has 3 cells, to update the first one:</p>
<pre><code>$(row).find('td').eq(0).html('Contents');
</code></pre>
<h3>Three:</h3>
<pre><code>$('#mytable').find('tr').length;
</code></pre>
http://stackoverflow.com/questions/1338635/is-th-only-semantically-different-from-td/1338642#13386425Answer by Paolo Bergantino for Is <th> only semantically different from <td>?Paolo Bergantino2009-08-27T03:01:10Z2009-08-27T03:01:10Z<p>Since there is a semantic difference most browsers also bold and center the contents of a <code><th></code> tag.<br />
This is irrelevant if you are using a reset stylesheet, but there is a presentational difference by default.</p>
http://stackoverflow.com/questions/1337694/django-templates-ifless-ifgreater/1337706#13377066Answer by Paolo Bergantino for Django templates "ifless", "ifgreater"Paolo Bergantino2009-08-26T21:50:05Z2009-08-26T21:50:05Z<p>There's no built-in way of doing this, but there is a popular template tag to get it done: <a href="http://www.djangosnippets.org/snippets/1350/" rel="nofollow">smart if</a>.</p>
http://stackoverflow.com/questions/1328877/double-statement-in-php/1328880#132888012Answer by Paolo Bergantino for double $ statement in phpPaolo Bergantino2009-08-25T15:04:41Z2009-08-25T15:04:41Z<p>It means a <a href="http://www.php.net/manual/en/language.variables.variable.php" rel="nofollow">variable variable</a>:</p>
<pre><code>$a = 'b';
$b = 'test';
print $$a; // test
</code></pre>
<p><em>For the most part</em> (although there are exceptions if you know what you're doing) they are bad practice and whenever you see someone using them arrays are probably the better idea.</p>
http://stackoverflow.com/questions/748076/using-live-benefits-similar-to-bind/748109#7481097Answer by Paolo Bergantino for Using live() - benefits - similar to bind()Paolo Bergantino2009-04-14T15:21:00Z2009-08-23T17:22:44Z<p>Sometimes you have a set of elements when the page loads, like, say, edit links:</p>
<pre><code><table>
<tr>
<td>Item 1</td>
<td><a href="#" class="edit">Edit</a></td>
</tr>
<tr>
<td>Item 2</td>
<td><a href="#" class="edit">Edit</a></td>
</tr>
<tr>
<td>Item 3</td>
<td><a href="#" class="edit">Edit</a></td>
</tr>
</table>
</code></pre>
<p>Now, maybe you have something like this with jQuery:</p>
<pre><code>$(document).ready(function() {
$('a.edit').click(function() {
// do something
return false;
});
});
</code></pre>
<p>But what if you add a new element to this table dynamically, after the page has initially loaded?</p>
<pre><code>$('table').append('
<tr><td>Item 4</td><td><a href="#" class="edit">Edit</a></td></tr>
');
</code></pre>
<p>When you click on "Edit" on this new Item, nothing will happen because the events were bound on page load. Enter live. With it, you can bind the event above like this:</p>
<pre><code>$(document).ready(function() {
$('a.edit').live('click', function() {
// do something
return false;
});
});
</code></pre>
<p>Now if you add any new <code><a></code> elements with a class of <code>edit</code> after the page has initially loaded, it will still register this event handler.</p>
<p>But how is this accomplished?</p>
<p>jQuery uses what is known as event delegation to achieve this functionality. Event delegation is helpful in this situation or when you want to load a large amount of handlers. Say you have a DIV with images:</p>
<pre><code><div id="container">
<img src="happy.jpg">
<img src="sad.jpg">
<img src="laugh.jpg">
<img src="boring.jpg">
</div>
</code></pre>
<p>But instead of 4 images, you have 100, or 200, or 1000. You want to bind a click event to images so that X action is performed when the user clicks on it. Doing it as you might expect...</p>
<pre><code>$('#container img').click(function() {
// do something
});
</code></pre>
<p>...would then bind hundreds of handlers that all do the same thing! This is inefficient and can result in slow performance in heavy webapps. With event delegation, even if you don't plan on adding more images later, using live can be much better for this kind of situation, as you can then bind <strong>one</strong> handler to the container and check when it is clicked if the target was an image, and then perform an action:</p>
<pre><code>// to achieve the effect without live...
$('#container').click(function(e) {
if($(e.target).is('img')) {
performAction(e.target);
}
});
// or, with live:
$('img', '#container').live('click', function() {
performAction(this);
});
</code></pre>
<p>Since jQuery knows that new elements can be added later on or that performance is important, instead of binding an event to the actual images, it might add one to the div like in the first example (in reality, I'm pretty sure it binds them to the body but it might to the container in the example above) and then delegate. This <code>e.target</code> property can let it check after the fact if the event that was clicked/acted on matches the selector that you might have specified.</p>
<p>To make it clear: this is helpful not only in the direct way of not having to rebind events, but it can be dramatically faster for a large amount of items.</p>
http://stackoverflow.com/questions/1309194/jquery-datepicker-style/1309205#13092051Answer by Paolo Bergantino for jQuery - DatePicker - StylePaolo Bergantino2009-08-20T22:36:43Z2009-08-20T22:36:43Z<p>Check out this question: <a href="http://stackoverflow.com/questions/656676/jquery-ui-theming-css-sizing-differences">jQuery-UI Theming - CSS Sizing Differences</a>.</p>
<p>I believe it is the same problem you are having.</p>
http://stackoverflow.com/questions/1307378/python-mysql-update-statement/1307413#13074135Answer by Paolo Bergantino for Python MYSQL update statementPaolo Bergantino2009-08-20T16:35:46Z2009-08-20T16:35:46Z<p>You've got the syntax all wrong:</p>
<pre><code>cursor.execute ("""
UPDATE tblTableName
SET Year=%s, Month=%s, Day=%s, Hour=%s, Minute=%s
WHERE Server=%s
""", (Year, Month, Day, Hour, Minute, ServerID))
</code></pre>
<p>For more, <a href="http://mysql-python.sourceforge.net/MySQLdb.html" rel="nofollow">read the documentation</a>.</p>
http://stackoverflow.com/questions/1307309/jquery-if-statement/1307325#13073252Answer by Paolo Bergantino for JQuery if statementPaolo Bergantino2009-08-20T16:22:09Z2009-08-20T16:22:09Z<p>I am not sure what is happening to your code, but you can achieve what you want much more nicely:</p>
<pre><code>var availableInstalls = 10;
var checkedBoxes = $("input:checkbox:checked", this).length;
alert(availableInstalls - checkedBoxes);
</code></pre>
<p>You should also really avoid pure class selectors and try having IDs or at least the tag name as well.</p>
http://stackoverflow.com/questions/1305734/is-it-ok-to-add-your-own-attributes-to-html-elements/1305750#130575012Answer by Paolo Bergantino for Is it OK to add your own attributes to HTML elements?Paolo Bergantino2009-08-20T12:12:51Z2009-08-20T12:12:51Z<p>There has been much discussion about this:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/992115/custom-attributes-yay-or-nay">Custom attributes - Yay or nay?</a></li>
<li><a href="http://stackoverflow.com/questions/432174/">How to store arbitrary data for some HTML tags</a></li>
<li><a href="http://stackoverflow.com/questions/209428">Non-Standard Attributes on HTML Tags. Good Thing? Bad Thing? Your Thoughts?</a></li>
</ul>
<p>At the end of the day, I am on the camp that believes data attributes are the best way to go. They are being introducted in HTML5 to avoid name conflicts. Essentially, if you want to store anything data related you just prepend "data-" on the attribute name:</p>
<pre><code><div class="user" data-userid="5"></div>
</code></pre>
<p>The only con to the whole thing is then that your XHTML won't validate, but I honestly don't care about that stuff. (That's right, I said it)</p>
http://stackoverflow.com/questions/1305686/what-is-this-in-php-multiple-code-for-one-variable/1305691#130569110Answer by Paolo Bergantino for What is this in PHP? Multiple code for one variable.Paolo Bergantino2009-08-20T12:00:25Z2009-08-20T12:00:25Z<p><a href="http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc" rel="nofollow">Heredoc syntax</a>.</p>
http://stackoverflow.com/questions/1285375/how-to-ensure-images-are-loaded-inside-a-jquery-plugin/1285390#12853903Answer by Paolo Bergantino for How to ensure images are loaded inside a JQuery plugin?Paolo Bergantino2009-08-16T21:33:50Z2009-08-16T21:33:50Z<p>Images have a load() event, so you could do something like:</p>
<pre><code>$(document).ready(function() {
$('.magnifier').magnifier();
});
$.fn.magnifier = function() {
return this.each(function() {
$(this).find('img').load(function() {
// do something to image when it is loaded
});
});
}
</code></pre>
<p>You could also simply wrap the code around window.load inside the plugin itself:</p>
<pre><code>$.fn.magnifier = function() {
var that = this;
$(window).load(function() {
that.each(function() {
$(this).find('img').each(function() {
// image would be loaded at this point
});
});
});
return this;
}
</code></pre>
http://stackoverflow.com/questions/1269794/jquery-filter-allowed-parameters/1269802#12698022Answer by Paolo Bergantino for jQuery Filter Allowed ParametersPaolo Bergantino2009-08-13T02:59:57Z2009-08-13T02:59:57Z<p><a href="http://docs.jquery.com/Selectors" rel="nofollow">http://docs.jquery.com/Selectors</a></p>
<p>Those are just the built in ones, though. You can actually create your own!</p>
<p>So if you wanted to get all <code><div></code> elements that satisfied a certain criteria through a filter, you could do:</p>
<pre><code>$.expr[':'].big = function(e) {
return $(e).width() > 500;
};
$('div:big'); // would only select divs that are over 500 pixels wide
</code></pre>
http://stackoverflow.com/questions/1601995/jquery-click-change-event-not-working-properly-in-ie7-8Comment by Paolo Bergantino on jQuery Click/Change event not working properly in IE7/8Paolo Bergantino2009-10-21T16:36:14Z2009-10-21T16:36:14Z<a href="http://jsbin.com/ovexi" rel="nofollow">jsbin.com/ovexi</a> "click" works fine for me on IE6/IE7http://stackoverflow.com/questions/1593083/what-is-an-efficient-way-to-set-css-class-for-each-cell-in-a-given-table-rowComment by Paolo Bergantino on What is an efficient way to set CSS class for each cell in a given table row?Paolo Bergantino2009-10-20T08:58:20Z2009-10-20T08:58:20ZI'm not sure I understand what the problem is then. What can't you do that my answer didn't cover?http://stackoverflow.com/questions/1542158/how-do-i-select-all-disabled-decendants-using-jquery/1542162#1542162Comment by Paolo Bergantino on How do I select all disabled decendants using jQueryPaolo Bergantino2009-10-09T08:03:53Z2009-10-09T08:03:53Z...? I'm not sure how that is a problem knowing what the two selectors do?http://stackoverflow.com/questions/1475550/how-to-put-a-div-at-center-of-another-div/1475566#1475566Comment by Paolo Bergantino on How to put a div at center of another div?Paolo Bergantino2009-09-25T17:12:09Z2009-09-25T17:12:09ZEven though he said vertically, I am pretty sure he meant horizontally.http://stackoverflow.com/questions/1418149/django-newbie-having-trouble-with-modelformComment by Paolo Bergantino on django newbie. Having trouble with ModelFormPaolo Bergantino2009-09-13T16:53:18Z2009-09-13T16:53:18ZYou don't need to pass an instance for creating a new Student. I am not sure if that is what is making the form not work, but it is definitely unnecessary.
http://stackoverflow.com/questions/1414590/jquery-doesnt-work-in-html-return/1414623#1414623Comment by Paolo Bergantino on jQuery doesn't work in .html() returnPaolo Bergantino2009-09-12T08:52:52Z2009-09-12T08:52:52ZTo be precise, live doesn't "automatically reattach the event handler" - it initially binds a single event handler that watches for ANY click element in the entire document and sees if the target element of the event matches the selector provided to it. This is known as event delegation.http://stackoverflow.com/questions/1400572/how-to-match-whole-word-that-is-preceded-by-a-tabComment by Paolo Bergantino on How to match whole word that is preceded by a tab?Paolo Bergantino2009-09-09T16:13:57Z2009-09-09T16:13:57ZI'm not a Java developer but you might want to check out something like this <a href="http://opencsv.sourceforge.net" rel="nofollow">opencsv.sourceforge.net</a>http://stackoverflow.com/questions/1400572/how-to-match-whole-word-that-is-preceded-by-a-tabComment by Paolo Bergantino on How to match whole word that is preceded by a tab?Paolo Bergantino2009-09-09T16:10:01Z2009-09-09T16:10:01Z
Mind me asking what language you are using? From this question and your last one, it seems to me like you are trying to parse a CSV file with tab as the delimiter. Virtually every language is going to have something to allow you to do this without resorting to regexhttp://stackoverflow.com/questions/1381346/easiest-way-to-write-a-python-program-with-access-to-django-database-functionalit/1381395#1381395Comment by Paolo Bergantino on Easiest way to write a Python program with access to Django database functionalityPaolo Bergantino2009-09-05T10:26:23Z2009-09-05T10:26:23ZThis was very helpful. Thanks.http://stackoverflow.com/questions/1371020/django-flush-response/1371078#1371078Comment by Paolo Bergantino on Django - flush response?Paolo Bergantino2009-09-03T03:36:33Z2009-09-03T03:36:33ZI'm not talking about the back-end, don't browsers limit how many open connections it can have to a particular domain? I am pretty sure they do. If I tried opening 6-7 ajax requests it would then queue them until the rest open up.http://stackoverflow.com/questions/1371020/django-flush-response/1371061#1371061Comment by Paolo Bergantino on Django - flush response?Paolo Bergantino2009-09-03T03:11:29Z2009-09-03T03:11:29ZThanks. I had tried generators but stupidly enough I was yielding integers in my test and it made it not work. I'm probably going to end up not doing this at all but it's nice to know it at least worked, albeit with the limitations you mentioned.http://stackoverflow.com/questions/1371020/django-flush-response/1371078#1371078Comment by Paolo Bergantino on Django - flush response?Paolo Bergantino2009-09-03T03:10:20Z2009-09-03T03:10:20ZI considered splitting it up, but for the reasons mentioned above and then some I was really hoping to avoid it. All the steps are 100% independent, though, but isn't there a 2 active request limit per domain or something like that?http://stackoverflow.com/questions/1353290/radio-button-selected/1353302#1353302Comment by Paolo Bergantino on Radio button selected ?Paolo Bergantino2009-08-30T07:14:57Z2009-08-30T07:14:57Z$('input[name=groupName]').is(':checked') is probably the most concise.http://stackoverflow.com/questions/710919/how-can-i-have-php-avoid-lazy-evaluation/710945#710945Comment by Paolo Bergantino on How can I have PHP avoid lazy evaluation?Paolo Bergantino2009-08-28T19:50:33Z2009-08-28T19:50:33ZI am perfectly aware of the limitations, did you even read my answer?http://stackoverflow.com/questions/1339103/three-questions-about-table-manipulation-with-jquery/1339112#1339112Comment by Paolo Bergantino on three questions about table manipulation with jQueryPaolo Bergantino2009-08-27T06:51:04Z2009-08-27T06:51:04ZYou can write a quick plugin to "compact" it if you really want.