bobince

36,616
reputation
4014 views

Registered User

name bobince
member for 1 year
seen 5 hours ago
website
location Bavaria, Germany
age 33
Once upon a time I was an assembler nut. Now I'm exiled in webland. I'm not sure this is progress.
5h
comment Group select boxes into array for post?
Interesting! And by interesting I mean annoying and stupid. :-)
5h
comment Group select boxes into array for post?
No clobber. Two <select>​s with the same name are no different than two <input>​s with the same name: both will be submitted (eg. in a query string it would be foo=v1&foo=v2. It's PHP that does the clobber, when you use names without [] at the end.
5h
answered Does VMWare or any other ‘virtualization software’ alowe you to set the amount of CPU cores?
5h
answered How do I pass argument to anonymous Javasript function?
5h
accepted What are all the HTML escaping contexts?
5h
comment Markdown vs. HTML in a CMS
+1 if you must use HTML, well-formed and restricted XHTML is the way to do it.
5h
comment javascript not working on IE, but ok to all other browswer.
+1 this is the reason it doesn't work. Although the other whinges about faux-security and dodgy JS practice are also true.
6h
revised Making URLs on a textblock clickable
make tag visible, & apostrophe.me; added 1 characters in body
6h
revised What are all the HTML escaping contexts?
added 17 characters in body
6h
revised What are all the HTML escaping contexts?
added 600 characters in body; added 48 characters in body
6h
answered What are all the HTML escaping contexts?
13h
answered JavaScript returned by AJAX is not working. How to work with JavaScript?
14h
accepted Unsigned Integer in Javascript
14h
answered Unsigned Integer in Javascript
15h
answered Java: Turkish Encoding Mac/Windows
15h
comment Java: Turkish Encoding Mac/Windows
+1. It is a shame that so much of the Java stdlib has default arguments for the Encoding; there's almost never a good reason to rely on the default encoding, it just encourages horrible bugs and deployment issues.
15h
revised Django full-text search with MySQL InnoDB
added 124 characters in body; added 14 characters in body
16h
revised Django full-text search with MySQL InnoDB
added 57 characters in body; added 6 characters in body; added 75 characters in body
16h
answered Django full-text search with MySQL InnoDB
16h
comment My website hacked
There isn't nearly enough information in the question to do anything with, but a lot of recent site compromises have been due to client-side trojans stealing FTP passwords. You need to check all client machines that have logged on to the FTP (use multiple AV checkers, because today's anti-virus software is unreliable rubbish; if you find infections reinstall the OS, because they're probably not going to remove it reliably). And stop using non-encrypted FTP. It's 2009 you know.
20h
accepted Are jQuery() and $() aliases?
1d
revised styling XML (not HTML) with javascript & css after rendering in browser
added 17 characters in body; added 1 characters in body
1d
answered styling XML (not HTML) with javascript & css after rendering in browser
1d
awarded  Nice Answer
1d
accepted Remove whitespace in Python using string.whitespace
1d
answered JavaScript and Flash incompatibility with IE
1d
comment Whats the most impressive thing you’ve seen done with JavaScript?
Jings! Rumbled!
1d
answered Getting Enter key to submit a dojo.form
1d
comment Display the result on the webpage as soon as the data is available at server
If there's a filter, you'd need to faff with your server-side config. eg. for mod_deflate on Apache you'd have to change the SetOutputFilter or AddOutputFilterByType directive in use. I'm not sure about what jQuery provides for reading partial responses... you'd first try to access the page in a straight browser to see if it renders bit-by-bit before worrying about AJAX.
1d
comment Display the result on the webpage as soon as the data is available at server
Perhaps you have a filter at the server side doing extra buffering. The one I had that stopped it working was mod_deflate as noted above, but other filters might have the same effect.
1d
accepted in what conditions we can use css * selector?
1d
accepted Is there any event between keypress and keyup in javascript?
1d
awarded  Good Answer
2d
comment Loading XML into Document object in Google Chrome
+1. There is a DOMParser you can have from WebKit and Mozilla, but when you're fetching a resource the simple, straightforward thing to do should be a plain old XMLHttpRequest.
2d
answered Remove whitespace in Python using string.whitespace
2d
answered jQuery click function not working in IE
2d
comment jQuery click function not working in IE
select-many doesn't have scriptable option​s either. Both selects are indivisble widgets in IE, so you have minimal opportunities to script them. In any case the HTML and DOM standards say nothing about the internals of form fields, so it's not advisable to rely on them.
2d
comment Jquery problem getting text from a script tag?
Then script isn't an appropriate tag. See eg. stackoverflow.com/questions/324627/… , stackoverflow.com/questions/340104/… for various alternative strategies.
2d
comment xml version 1.0 encoding utf-8 in php?
You do not need to include an XML Declaration for version 1.0 and UTF-8. Those are the defaults, implied if they are missing. The XML Declaration is completely worthless unless you are using XML 1.1 (which almost no-one ever needs to) or a non-UTF-8 encoding (which you should avoid if at all possible). All it serves to do is trip up IE into Quirks Mode in XHTML-as-HTML.
2d
comment getElementById from iframe
contentWindow is a non-standard IE extension. For compatibility use: var idoc= iframe.contentDocument || iframe.contentWindow.document.
2d
comment javascript cookie, little help please…
Don't use setAttribute on an HTML document. There are many bugs in it in IE, one of which is that style won't work. Suggest getElementById(...).style.display= 'none'.
2d
comment Javascript 2.0 classes
: String was I think supposed to be ActionScript type notation, it doesn't exist in JavaScript.
2d
comment Special characters in OSX filename ? (Python os.rename)
It's not really Python's fault: the real path separator in OS X is the slash. It's only a Finder display hack that makes : misleadingly appear as /; on the command line you'll see the real character. This oddity is presumably to satisfy old-school Mac users who used to be able to use / in filenames because the pre-OS X path separator used to be the colon.
2d
answered Converting UTF-8 PostgreSQL DB into ASCII Shapefile
2d
answered JQuery “select all except”
2d
answered Many-to-many without intermediate table - is it possible?
2d
comment in what conditions we can use css * selector?
* * here is a hack to get around IE6's lack of support for >, but performance isn't going to be great as the trailing *​s require the browser to select every element on the page, twice, before narrowing it down. I'm loath to serve that hack to other browsers. It would seem simpler to me to put a padding-left: 115px on the callout and set the background image there instead of on the h3, which you might simply display: none instead. No extra floats or child-selectors required.
Dec
13
comment change background color of current element
Indeed. Inline attributes are good for demo code, but in real life binding from script is almost always the better route.
Dec
13
comment ROW_NUMBER() in MySQL
@Bill: nifty! What's the performance like on this sort of query, generally? Seeing heavy lifting in HAVING always makes me nervous. :-)
Dec
13
comment Python vs PHP for Web Service development
Agreed, though there is one practical reason you might prefer Python, for services that are going to be handling a bunch of non-ASCII text. PHP's Unicode support is generally poor.