User TM - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T00:29:23Zhttp://stackoverflow.com/feeds/user/12983http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/402161/black-box-vs-white-box-testing4Black box vs White box TestingTM2008-12-31T02:37:22Z2009-11-27T10:56:17Z
<p>Which type of testing would you say should be the emphasis (for testers/QAs), and why?</p>
<p>A quick set of definitions from wikipedia:</p>
<p><strong>Black box testing</strong> </p>
<ul>
<li>takes an external perspective of the test object to derive test cases. These tests can be functional or non-functional, though usually functional. The test designer selects valid and invalid input and determines the correct output. There is no knowledge of the test object's internal structure.</li>
</ul>
<p><strong>White box testing</strong> </p>
<ul>
<li>uses an internal perspective of the system to design test cases based on internal structure. It requires programming skills to identify all paths through the software. The tester chooses test case inputs to exercise paths through the code and determines the appropriate outputs. In electrical hardware testing, every node in a circuit may be probed and measured; an example is in-circuit testing (ICT).</li>
</ul>
<p>edit: just to clarify a bit more, I realize that both are important, but usually they are separate between dev and QA. </p>
<p>Is internal knowledge important for the tester/QA? I've heard arguments that testing with this knowledge in mind enables them to better test for problems, but I've also heard arguments that this knowledge can distract from functional needs and promote "testing to to the code" rather than to the intended solution.</p>
http://stackoverflow.com/questions/1424392/komodo-edit-code-completion-for-django1Komodo Edit - code-completion for Django?TM2009-09-14T23:26:17Z2009-11-15T20:33:59Z
<p>I've been using Komodo Edit for a small project in Django.</p>
<p>The code completion features seem to work pretty well for standard python modules, however, it doesn't know anything about Django modules. Is there any way to configure Komodo Edit to use Django modules for autocomplete as well?</p>
http://stackoverflow.com/questions/1729513/jquery-i-have-a-function-fn-myfunction-with-other-functions-inside-how-can-i/1729530#17295304Answer by TM for Jquery: i have a function $.fn.my_function with other functions inside, how can i call them?TM2009-11-13T14:26:07Z2009-11-13T14:26:07Z<p>You'll have to expose them to the "outside world" somehow. Currently, they are only visible within <code>my_function</code> so you won't be able to call them from anywhere else.</p>
<p>The most naive way to fix this would be something like:</p>
<pre><code>var foo;
var bar;
$.fn.my_function = function() {
foo = function() {
//stuff
};
bar = function() {
//stuff
};
};
</code></pre>
<p>The same concept could be applied to place references to them anywhere that makes sense for your usage.</p>
http://stackoverflow.com/questions/1697577/jquery-closest/1697595#16975953Answer by TM for jQuery closest();TM2009-11-08T19:17:17Z2009-11-08T23:15:52Z<p><code>closest()</code> only selects the current element and its parent elements (and the limits it to the first match).</p>
<p>Your <code>img</code> element isn't a parent of the link you have the hover handler on, therefore it doesn't work.</p>
<p><strong>Update:</strong> as ScottyUSCD pointed out, the previous code I posted won't work. I misread the source and thought the elements were siblings.</p>
<p>His answer was correct:</p>
<pre><code>$(this).closest("li").children("img")
</code></pre>
<p>This will navigate up to the closest parent <code>li</code> element, then look through that element's children for any <code>img</code> elements.</p>
http://stackoverflow.com/questions/1501576/struts-uploading-files2Struts - Uploading FilesTM2009-10-01T02:15:42Z2009-11-06T19:21:03Z
<p>I'm having a problem uploading a file using spring webflow 1.0 and struts 1.3.</p>
<p>The jsp is something like this:</p>
<pre><code><html:form action="/flowAction" method="post" enctype="multipart/form-data">
<!-- snip -->
<html:file property="file" name="attachDocumentsForm" size="50"/>
<!-- snip -->
</html:form>
</code></pre>
<p>The Form is something like this:</p>
<pre><code>public class AttachDocumentsForm extends SpringBindingActionForm {
// note, SpringBindingActionForm extends struts' ActionForm
private FormFile file;
//snip
}
</code></pre>
<p>Now, my problem is that when I submit the form, the <code>file</code> field is always <code>null</code>. The other fields on the form are filled out properly, and if I dig through the <code>RequestContext</code>, I can find the file is buried deep some of the data structures there. </p>
<p>Here is the <strong>horribly</strong> ugly way that I can get at the attachment:</p>
<pre><code>// 'context' is the RequestContext
ServletExternalContext servletExternalContext = (ServletExternalContext) context.getExternalContext();
ActionForm form = (ActionForm) servletExternalContext.getRequest().getAttribute("actionForm");
FormFile file = (FormFile) form.getMultipartRequestHandler().getFileElements().get("file");
</code></pre>
<p>I've noticed that the <code>MultipartRequestHandler</code> on my form is <code>null</code>, and I suspect that this might be part of the problem, but I've tried populating it with an instance of <code>CommonsMultipartRequestHandler</code> to no avail.</p>
<p>What do I need to do to let the <code>file</code> field be populated correctly?</p>
http://stackoverflow.com/questions/1651050/why-use-monospaced-font-for-programming/1651060#165106017Answer by TM for Why use monospaced font for programming?TM2009-10-30T16:55:36Z2009-10-30T16:55:36Z<p>For me, I think the biggest thing is that when you move your cursor up/down, it goes to an expected, predictable location in previous/next line.</p>
<p>With non-monospaced fonts its harder to navigate your cursor around.</p>
http://stackoverflow.com/questions/1598759/git-and-mercurial-compare-and-contrast33Git and Mercurial - Compare and ContrastTM2009-10-21T04:46:35Z2009-10-29T08:35:55Z
<p>For a while now I've been using subversion for my personal projects.</p>
<p>More and more I keep hearing great things about Git and Mercurial, and DVCS in general.</p>
<p>I'd like to give the whole DVCS thing a whirl, but I'm not too familiar with either option.</p>
<p>What are some of the differences between Mercurial and Git?</p>
<p>Note that I'm <strong>not</strong> trying to find out which one is "best" or even which one I should start with. I'm mainly looking for key areas where they are similar and where they are different, because I am interested to know how they differ in terms of implementation and philosophy.</p>
http://stackoverflow.com/questions/1608714/how-to-avoid-argument-validation/1608798#16087981Answer by TM for How to avoid argument validationTM2009-10-22T17:39:56Z2009-10-22T17:39:56Z<p>You may be helped by using more complex types rather than primitives.</p>
<p>For example, if you take the time to define something like a <code>PersonName</code> class, you can have the validation <em>there</em>, and you don't have to keep validating it on every other object that needs to have a name on it.</p>
<p>Obviously this is only going to help the problem if you have multiple objects that use the same field types.</p>
http://stackoverflow.com/questions/1592037/where-can-i-learn-about-recommendation-systems2Where can I learn about recommendation systems?TM2009-10-20T01:36:38Z2009-10-22T15:26:04Z
<p>I'd like to play around with building a recommendations system, and by that I mean an algorithm that looks at preferences and/or reviews posted by a user and then makes recommendations for them, similar to what netflix or amazon use.</p>
<p>What are some good resources for learning how to write something like this? Where should I start?</p>
http://stackoverflow.com/questions/1149199/mojo-sdk-set-a-timer1Mojo SDK - set a timerTM2009-07-19T03:49:28Z2009-10-21T00:37:30Z
<p>I'm messing around with building an application for the Palm Pre. </p>
<p>I have a simple question: How can I set up a timer for some code to get run after a certain amount of time has passed?</p>
<p>I tried using the regular old javascript <code>setTimeout</code>, but it doesn't seem to work.</p>
<p>Here is what I've tried:</p>
<pre><code>setTimeout(this.someFunction, 3000);
setTimeout('this.someFunction()', 3000);
</code></pre>
<p>Neither one seems to work. How can I accomplish this?</p>
http://stackoverflow.com/questions/1580300/hiding-a-div-using-jquery/1580323#15803230Answer by TM for Hiding a div using JQueryTM2009-10-16T20:48:56Z2009-10-16T20:48:56Z<p>I think a better option would be to style the div so that it is hidden when the page is written, without any javascript.</p>
<p>Then, whenever you are ready to show it again, use javascript to unhide it:</p>
<pre><code>$('#someId').show();
</code></pre>
http://stackoverflow.com/questions/1569837/django-how-can-i-get-permalink-to-work-with-throwaway-slug1Django - how can I get permalink to work with "throwaway" slug TM2009-10-15T01:21:36Z2009-10-15T05:39:13Z
<p>I'm trying to add slugs to the url in my django app, much like SO does.</p>
<p>Currently, I have pages that work just fine with a url like this:</p>
<pre><code>http://example.com/foo/123/
</code></pre>
<p>I'd like to add 'slugified' urls like so:</p>
<pre><code>http://example.com/foo/123/foo-name-here
</code></pre>
<p>I can get it to work just fine, by simply modifying the urlconf and adding a throwaway value to the view function:</p>
<pre><code>#urls.py
ulpatterns = patterns('project.app.views',
url(r'^foo/(?P<foo_id>\d+)/(?P<name_slug>\w+)/$', 'foo_detail', name='foo_detail'),
)
#views.py:
def foo_detail(request, foo_id, name_slug):
# stuff here, name slug is just discarded
</code></pre>
<p>Visting the url with the slug works just fine.</p>
<p>However, my problem is when I am using <code>@models.permalink</code>.</p>
<p>For my <code>Foo</code> model, I used to have the following, which worked just fine:</p>
<pre><code>@models.permalink
def get_absolute_url(self):
return ('foo_detail', [str(self.id),])
</code></pre>
<p>However, after my change, whenever I call <code>{{ foo.get_absolute_url }}</code> in my templates, the result is always an empty string.</p>
<p>I have tried the following two replacements for <code>get_absolute_url</code>, neither of which is working:</p>
<pre><code>from django.template.defaultfilters import slugify
# attempt 1
@models.permalink
def get_absolute_url(self):
return ('foo_detail', [str(self.id), slugify(self.name)])
# attempt 2
@models.permalink
def get_absolute_url(self):
return ('foo_detail', (), {
'foo_id': str(self.id),
'name_slug': slugify(self.name),
})
</code></pre>
<p>Note that if I add a <code>print slugify(self.name)</code> before returning, the slugified name is showing up in the console just fine.</p>
<p>When invoking <code>{{ foo.get_absolute_url }}</code> in my templates, the result is always an empty string, and I don't get any errors.</p>
<p>I know I could replace the method with <code>return '/foo/%s/%s' % (str(self.id), slugify(self.name))</code>, but I'm trying to get the permalink working so that my URL is only defined in one place. What am I doing wrong?</p>
http://stackoverflow.com/questions/909338/what-is-the-worst-commit-message-you-have-ever-authored/1570264#15702641Answer by TM for What is the WORST commit message you have ever authored?TM2009-10-15T04:24:17Z2009-10-15T04:24:17Z<blockquote>
<p>PROJ-1254: Some reasonable message</p>
</blockquote>
<p>Turns out I made 4-5 commits with a completely wrong ticket id, it should have been PROJ-2154</p>
<p>Even worse: our issue tracking software looks up related code changes from the repository. Therefore, if somebody ever looks at that 6-month-old issue they will find a lot of random code commits that don't even make sense tied to it.</p>
<p>Oops.</p>
http://stackoverflow.com/questions/1567610/browser-textbox-autocomplete-event-when-does-this-happen/1567631#15676311Answer by TM for browser textbox autocomplete event, when does this happen?TM2009-10-14T16:57:33Z2009-10-14T17:07:46Z<p>You could give <code>$(window).load(callback)</code> a try. This will wait until everything is fully loaded (images etc), rather than just after the DOM has been loaded the way <code>$(document).ready</code> does.</p>
<p>I'm not 100% sure whether or not it happens before auto complete but it definitely occurs after DOM ready.</p>
<p>Alternatively you might try registering a "one-off" change event handler when the DOM is ready like so:</p>
<pre><code>$(document).ready(function() {
$('input').one('click', function() {
// do whatever you wanted to do when it first changed
});
});
</code></pre>
<p>This will fire only the first time the field changes. The only question is whether or not the browser will fire the change event when it does the autocompletion.</p>
http://stackoverflow.com/questions/1545773/palm-pre-frameworks/1545801#15458019Answer by TM for Palm Pre frameworksTM2009-10-09T20:05:44Z2009-10-09T20:05:44Z<p>The framework that Palm provides in the SDK is called Mojo.</p>
<p>Mojo is built on top of Prototype, therefore you will automatically have access to Prototype when you work on the Pre, and you will have to make use of it for various system calls.</p>
<p>Therefore, you are probably going to get the most benefit from learning Prototype.</p>
<p>That said, it is possible to add other js libraries like jQuery if you prefer to use those for your Pre apps.</p>
<p>Check out the webOSdev <a href="http://developer.palm.com/index.php?option=com%5Fcontent&view=article&id=1654" rel="nofollow">API Reference</a> for more information about the Mojo Framework.</p>
http://stackoverflow.com/questions/1538764/jquery-post-when-done/1538778#15387783Answer by TM for jquery post when done TM2009-10-08T16:03:49Z2009-10-08T16:03:49Z<p>You need to put your <code>location.href</code> inside the callback function.</p>
<pre><code>$.post("cart.php", { 'products[]':postvalues }, function(data, status) {
// if you don't want to redirect if it doesn't work, you can check if status == 'success'
location.href = "index.php";
});
</code></pre>
<p>See the <a href="http://docs.jquery.com/Ajax/jQuery.post" rel="nofollow">jQuery.post</a> docs for more information.</p>
<p>Although, I must ask: if you are going to redirect anyway, why do this via ajax? </p>
<p>Is there some reason you don't want to simply submit a form the normal way? If not, you should probably go that route instead.</p>
http://stackoverflow.com/questions/1535331/how-to-hide-all-elements-except-one-using-jquery/1535339#15353392Answer by TM for How to hide all elements except one using jquery?TM2009-10-08T02:41:10Z2009-10-08T02:47:40Z<p>This should work:</p>
<pre><code>$('div:not(#myDiv)').hide(); // hide everything that isn't #myDiv
$('#myDiv').appendTo('body'); // move #myDiv up to the body
</code></pre>
<p><strong>Update:</strong></p>
<p>If you want to hide EVERYTHING that, not just <code>div</code> elements, use this instead:</p>
<pre><code>$('body > :not(#myDiv)').hide(); //hide all nodes directly under the body
$('#myDiv').appendTo('body');
</code></pre>
<p>Probably simpler is to wrap the entire "hideable" part of the page in a big container element, and hide that directly though.</p>
<p>Like so:</p>
<pre><code> <body>
<div id="contents">
<!-- a lot of other stuff here -->
<div id="myDiv>
</div>
</div>
</body>
</code></pre>
<p>Then you can just do this, which is cleaner and faster:</p>
<pre><code>$('#contents').hide();
$('#myDiv').appendTo('body');
</code></pre>
http://stackoverflow.com/questions/1518286/django-use-reverse-url-mapping-in-settings6Django - use reverse url mapping in settingsTM2009-10-05T04:40:49Z2009-10-05T12:24:38Z
<p>A few of the options in the django settings file are urls, for example <code>LOGIN_URL</code> and <code>LOGIN_REDIRECT_URL</code>. Is it possible to avoid hardcoding these urls, and instead use reverse url mapping? At the moment this is really the only place where I find myself writing the same urls in multiple places.</p>
http://stackoverflow.com/questions/1518216/jquery-remove-options-from-select/1518220#15182200Answer by TM for jQuery remove options from selectTM2009-10-05T04:05:39Z2009-10-05T04:05:39Z<p><code>find()</code> takes a selector, not a value. This means you need to use it in the same way you would use the regular jQuery fuction (<code>$('selector')</code>).</p>
<p>Therefore you need to do something like this:</p>
<pre><code>$(this).find('[value="X"]').remove();
</code></pre>
<p>See the jQuery <a href="http://docs.jquery.com/Traversing/find" rel="nofollow">find</a> docs.</p>
http://stackoverflow.com/questions/1512002/model-view-relationships/1512041#15120411Answer by TM for model/view relationshipsTM2009-10-02T22:12:00Z2009-10-02T22:12:00Z<p>One of the best ways to learn this is to go through the great <a href="http://docs.djangoproject.com/en/dev/intro/tutorial01/" rel="nofollow">Django tutorial</a>.</p>
http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1505669#15056692Answer by TM for What's the worst security hole you've ever seen?TM2009-10-01T18:33:16Z2009-10-01T18:33:16Z<p>One of the utility companies I have doesn't use <code>autocomplete="off"</code> in their credit card form.</p>
<p>Sure, they don't store your credit card info (a good thing), but imagine how horrified I was when I paid my 2nd months bill and my browser offered to fill in the entire credit card number for me...</p>
http://stackoverflow.com/questions/1490559/django-slugified-urls-how-to-handle-collisions2Django slugified urls - how to handle collisions?TM2009-09-29T04:23:55Z2009-09-29T14:25:10Z
<p>I'm currently working on a toy project in Django.</p>
<p>Part of my app allows users to leave reviews. I'd like to take the title of the review and slugify it to create a url.</p>
<p>So, if a user writes a review called "The best thing ever!", the url would be something like: <code>www.example.com/reviews/the-best-thing-ever</code>. </p>
<p>That's all well and good, but what is the best way to handle case where two users pick the same title? I don't want to make the title required to be unique.</p>
<p>I've thought about adding the review id in the url somewhere, but I'd like to avoid that extra info for any urls that don't collide.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1486930/form-empty-input/1487000#14870000Answer by TM for Form empty inputTM2009-09-28T13:22:44Z2009-09-28T13:28:43Z<p>There are a few problems at play here.</p>
<p>First off, it has double quotes inside for the value, which means that it isn't valid syntax. You need to use single quotes so that the value will be a single string.</p>
<p>Try this:</p>
<pre><code>$("#univers input[type=text][value='']")
</code></pre>
<p>Or even better:</p>
<pre><code>$("#univers input:text[value='']")
</code></pre>
<p>Your second problem is that the selector doesn't automatically keep updating as fields get filled out. Therefore, you will be selecting all of the empty fields when the page loads, and even if they get filled out later, the callback will still get fired.</p>
<p>As Marius mentioned, you'll need to use the <code>onbeforeshow</code> callback to enable/disable the tooltip based on whether or not the field is actually empty.</p>
<p>Something like this should work:</p>
<pre><code>// don't use [value=''] because a field that isn't empty at first might be empty later
$("#univers input:text").tooltip({
effect: 'slide',
position: "center right",
offset: [-2, 10],
effect: "fade",
opacity: 0.5,
tip: '.tooltip',
onBeforeShow: function() {
return this.value == '';
// will return false if the value is not empty,
// returning false makes the tooltip not show
}
});
</code></pre>
http://stackoverflow.com/questions/1467331/output-results-from-a-jquery-ajax-call/1467367#14673673Answer by TM for Output results from a jquery ajax callTM2009-09-23T17:05:46Z2009-09-23T17:13:58Z<p>The first issue here is that your arguments are wrong for the <code>success</code> callback.</p>
<p>The args are actually as follows:</p>
<pre><code>function (data, textStatus) {
this; // the options for this ajax request
}
</code></pre>
<p>So, in your code, <code>event</code> is actually the data (jQuery will have converted responseXML for you and stuck it in this variable), and your <code>XMLHttpRequest</code> is actually the textStatus.</p>
<p>So you'd want to do something like this</p>
<pre><code>function(data, status) {
alert('response: ' + data);
}
</code></pre>
<p><strong>If you want the XMLHttpRequest object directly:</strong></p>
<pre><code>var xhr = $.ajax({ /* blah */ });
</code></pre>
<p>Then you can look at <code>xhr.responseText</code> when the call is complete to see the raw result. It's probably better to use jQuery's data param if possible though.</p>
<p>For more info the <a href="http://docs.jquery.com/Ajax/jQuery.ajax#options" rel="nofollow">jQuery ajax docs</a>.</p>
http://stackoverflow.com/questions/1451068/hiding-the-context-menu-at-onblur-event-in-jquery/1451367#14513670Answer by TM for hiding the context menu at onblur event in jqueryTM2009-09-20T16:10:11Z2009-09-21T22:29:36Z<p>You mention the <code>blur</code> event explicitly, but I don't think that's actually what you need, since the context menu <code>div</code> you mentioned probably will not ever be focused or blurred.</p>
<p>You should use the mouseout event:</p>
<p>Assuming your context menu has an id of 'contextMenuContainer', this should cover it:</p>
<pre><code>$('#contextMenuContainer').mouseout(function() {
$(this).hide();
});
</code></pre>
<p>For more see the <a href="http://docs.jquery.com/Events/mouseout" rel="nofollow">jQuery Events/mouseout</a> documentation.</p>
<p><strong>Update:</strong></p>
<p>I tried registering a mouseout event handler on the plugin page you linked to, and it was firing just fine. I should note that it fires every time you change menu items though, so you'll need to check the event target to make sure the mouse has actually exited the entire menu.</p>
http://stackoverflow.com/questions/1455602/printing-tuple-with-string-formatting-in-python/1455620#14556201Answer by TM for Printing tuple with string formatting in PythonTM2009-09-21T17:06:49Z2009-09-21T17:06:49Z<p>This doesn't use string formatting, but you should be able to do:</p>
<pre><code>print 'this is a tuple ', (1, 2, 3)
</code></pre>
<p>If you really want to use string formatting:</p>
<pre><code>print 'this is a tuple %s' % str((1, 2, 3))
# or
print 'this is a tuple %s' % ((1, 2, 3),)
</code></pre>
<p>Note, this assumes you are using a Python version earlier than 3.0.</p>
http://stackoverflow.com/questions/1452638/how-to-access-item-values-nested-within-the-dom/1452675#14526753Answer by TM for How to access item values nested within the DOM ?TM2009-09-21T02:49:05Z2009-09-21T02:49:05Z<p>Is the content in the iframe loaded from the same domain as the parent document? If not, then due to browser security restrictions (<a href="http://en.wikipedia.org/wiki/Same%5Forigin%5Fpolicy" rel="nofollow">same domain policy</a>), you won't be able to access it via javascript.</p>
<p>If it is from the same domain, you should be able to use <code>getElementById</code> without any problems.</p>
http://stackoverflow.com/questions/1452380/good-jquery-interview-questions/1452448#14524483Answer by TM for Good jQuery interview questions?TM2009-09-21T00:50:11Z2009-09-21T00:50:11Z<p>I'd start by posing a <strong>very</strong> simple problem, tell them they can use plain javascript or jquery to solve it. You'd be surprised at how many people a very easy question will weed out.</p>
<p>Have them write the solution on a whiteboard in front of you, or on a piece of paper if you don't have a whiteboard.</p>
<p>Don't sweat minor syntax errors. If there are any simple mistakes, tell them that you see a small problem, ask them if they can find it. When writing code by hand, without any highlighting, and under pressure, it's easy to make small bugs. If they can recover from it, don't count it against them too much.</p>
<p>After they give you a solution, ask them to go through the code and explain how it works.</p>
<p>That last bit will give you mounds of information on whether or not they understand what they are doing.</p>
http://stackoverflow.com/questions/1451254/how-could-this-be-done-better/1451403#14514030Answer by TM for How could this be done better?TM2009-09-20T16:36:26Z2009-09-20T16:44:02Z<p>Looking at your dev site, I can see that you want the top bar to be the same color as the area you hover over at the bottom. This means you can remove your hardcoded colors and simply look up the color of the item you are hovering over.</p>
<p>To make things simpler, I'd advise that you take all of your sections at the bottom and give them a common CSS class. For this example I'll use <code>navSection</code>.</p>
<pre><code>$('.navSection').hover(function() {
var bgColor = $(this).css('background-color');
$(this).siblings().stop().fadeTo('slow', .2);
$('#navigation').stop().animate({ backgroundColor: bgColor }, 500);
}, function() {
$(this).siblings().stop().fadeTo('slow', 1);
$('#navigation').stop().animate({ backgroundColor: "#404040" }, 500);
});
</code></pre>
<p>This will work on the page you linked to, provided that you add the <code>navSection</code> class to the areas you want to hover over.</p>
http://stackoverflow.com/questions/1451292/what-does-selector-ahref-mean-in-jquery/1451298#14512985Answer by TM for What does selector 'a[href*=#]' mean in jQuery?TM2009-09-20T15:40:12Z2009-09-20T16:00:49Z<p>First off the selector <code>'a[href*="#"]'</code> means any link that has a <code>#</code> in the <code>href</code> attribute. For example, it would match the following elements:</p>
<pre><code><a href='#someSection'>Blah</a>
<a href='#otherSection'>Foo</a>
<a href='foobar.html#otherSection'>Foo</a>
</code></pre>
<p>See <a href="http://docs.jquery.com/Selectors/attributeContains" rel="nofollow">Selectors/attributeContains</a> from the jQuery documentation.</p>
<p>As for <strong><code>location.host</code></strong> and <strong><code>location.pathname</code></strong>, they refer to the host and the path in the current url. </p>
<p>For example, if the page was located at <code>http://www.example.com/somepage.html</code>, then:</p>
<ul>
<li><strong><code>location.host</code></strong> would be <strong><code>www.example.com</code></strong></li>
<li><strong><code>location.pathname</code></strong> would be <strong><code>/somepage.html</code></strong></li>
</ul>
<p>As for <strong><code>this.hash</code></strong>, that is a property on the link that was clicked, which will evaluate to the 'hash' portion of the link. For example:</p>
<pre><code><a href="somepage.html#someSection">Foobar</a>
</code></pre>
<p>For the element above, <strong><code>this.hash</code></strong> would be <strong><code>#someSection</code></strong>.</p>
<p>Lastly, as for <strong><code>.size()</code></strong>, in the case above, that is checking the number of elements that were selected in the jQuery object. </p>
<p>The author of the code you posted is attempting to do something cute: he's expecting that his page will have an element present that has an <code>id</code> matching the <code>hash</code> of the link that was clicked.</p>
<p>For example, if <code>this.hash</code> is <code>#someSection</code>, the author checks if there is an element with <code>id</code> equal to 'someSection'"</p>
<pre><code>var target = $('#someSection');
// if target.size() is 0, that means there was no such element with id = 'someSection'
</code></pre>
http://stackoverflow.com/questions/1792360/what-are-the-limits-of-python/1793767#1793767Comment by TM on What are the limits of Python?TM2009-11-25T04:14:30Z2009-11-25T04:14:30ZSo is it bad that I like Python AND JavaScript?http://stackoverflow.com/questions/573618/django-set-up-a-scheduled-job/573656#573656Comment by TM on Django - Set Up A Scheduled Job?TM2009-11-20T21:21:59Z2009-11-20T21:21:59ZRe reading this answer I'm wondering why I didn't upvote it a long time ago. +1http://stackoverflow.com/questions/1773228/what-are-some-authoritative-respected-best-known-implementation-websites-resour/1773279#1773279Comment by TM on What are some authoritative/respected "best known implementation" websites/resources?TM2009-11-20T21:18:56Z2009-11-20T21:18:56ZTrue, but you probably could come up with something like "a pretty good implementation that a lot of people agree is suitable for use case". Sure, it's not BEST, but still useful.http://stackoverflow.com/questions/1771521/xml-cannot-be-the-whole-programComment by TM on XML cannot be the whole programTM2009-11-20T16:13:20Z2009-11-20T16:13:20ZCould you elaborate on where the error is coming from? Is it the response from the webservice?http://stackoverflow.com/questions/1771350/postgresql-and-jms-or-other-pub-sub-callback-mechanism/1771431#1771431Comment by TM on PostgreSQL and JMS (Or other Pub-Sub/Callback Mechanism)TM2009-11-20T16:03:42Z2009-11-20T16:03:42ZPostgreSQL does offer stored procedures in Java. "PostgreSQL runs stored procedures in more than a dozen programming languages, including Java, Perl, Python, Ruby, Tcl, C/C++, and its own PL/pgSQL, which is similar to Oracle's PL/SQL." - <a href="http://www.postgresql.org/about/" rel="nofollow">postgresql.org/about</a>http://stackoverflow.com/questions/1771360/should-i-use-sqlite-for-automatically-build-a-list-of-banned-ips-of-comment-spammComment by TM on Should I use SQLite for automatically build a list of banned IPs of comment spammers?TM2009-11-20T16:01:02Z2009-11-20T16:01:02ZI've got to ask: if the anti spam system has been working <b>flawlessly</b> for a year now, why do you need to start banning the ip addresses?http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1770521#1770521Comment by TM on Code-Golf: What is the shortest program that compiles and crashes?TM2009-11-20T14:34:32Z2009-11-20T14:34:32Z@roe yes this is a valid statement because javascript will perform semicolon insertion. Also, just like C, a pointless evaluation statement is allowed in javascript, <code>someVar;</code> doesn't really do anything useful, but the variable gets evaluated and it is part of the spec.http://stackoverflow.com/questions/91846/rails-or-django-or-something-else/91902#91902Comment by TM on Rails or Django? (or something else?)TM2009-11-18T22:57:07Z2009-11-18T22:57:07ZJust a note, nowadays <code>mod_wsgi</code> is the "preferred" way to host a Django app, rather than <code>mod_python</code>. http://stackoverflow.com/questions/91846/rails-or-django-or-something-else/91874#91874Comment by TM on Rails or Django? (or something else?)TM2009-11-18T22:55:14Z2009-11-18T22:55:14Z@Fabian that is true but you have to remember that a large chunk of "Ruby programmers" have <i>only</i> used Ruby for Rails. http://stackoverflow.com/questions/91846/rails-or-django-or-something-else/94193#94193Comment by TM on Rails or Django? (or something else?)TM2009-11-18T22:53:46Z2009-11-18T22:53:46Z@Ryan I agree... personally I like to understand what is happening. Learning is more fun to me than saying to myself "wow, something happened behind the scenes and then it worked!". Also, in my experience, you ALWAYS get to a point where you've got to figure out the magic.http://stackoverflow.com/questions/576988/python-specific-antipatterns-and-bad-practices/577198#577198Comment by TM on Python-specific antipatterns and bad practicesTM2009-11-18T20:45:05Z2009-11-18T20:45:05ZWow I never realized this could happen. How should this be handled ideally? default arg as <code>None</code> and create new empty list if it's still <code>None</code>?http://stackoverflow.com/questions/576988/python-specific-antipatterns-and-bad-practices/579472#579472Comment by TM on Python-specific antipatterns and bad practicesTM2009-11-18T20:38:55Z2009-11-18T20:38:55ZI do this myself, it seems some frameworks even encourage this behavior in the docs... but I see your point, had never really thought about it since I was never altering the framework.http://stackoverflow.com/questions/1755883/how-to-apply-css-property-using-javascript/1755892#1755892Comment by TM on How to apply css property using javascript?TM2009-11-18T13:22:35Z2009-11-18T13:22:35ZShouldn't use the <code>attr</code> function, as it could blow away existing style attributes. Go for <code>css</code>.http://stackoverflow.com/questions/1718693/django-use-custom-class-for-request-user/1718752#1718752Comment by TM on Django: use custom class for request.user?TM2009-11-16T17:39:36Z2009-11-16T17:39:36ZThis is the correct way to do it.http://stackoverflow.com/questions/1701822/making-a-variable-value-positive/1701858#1701858Comment by TM on making a variable value positiveTM2009-11-09T15:46:06Z2009-11-09T15:46:06ZSince this question is tagged jQuery, I'm guessing the asker is using javascript and this won't work.