bigmattyh

3,862
reputation
233 views

Registered User

name bigmattyh
member for 1 year
seen yesterday
website
location Austin, TX
age 32
Generalist, enthusiast, hacker.
Dec
12
comment cpu serial number
Not sure why the vote to move to superuser.com -- he's asking how to do it in C.
Dec
6
awarded  Mortarboard
Nov
29
accepted What’s limiting my PHP resources?
Nov
28
revised with jQuery, access json from cross domain url where json may be poorly formed
Cleaned up the &quot code
Nov
25
answered What’s limiting my PHP resources?
Nov
25
revised What’s limiting my PHP resources?
edited tags
Nov
25
revised What’s limiting my PHP resources?
edited title
Nov
25
comment What’s limiting my PHP resources?
I'm running this under fastcgi, via nginx. I've updated my post to give this (relevant) info. Thanks!
Nov
25
asked What’s limiting my PHP resources?
Nov
9
comment making a variable value positive
A negative negative is positive. So -(-900) == 900.
Nov
3
awarded  Citizen Patrol
Oct
27
awarded  Notable Question
Oct
27
comment To find first N prime numbers in python
You can make this more efficient if you replace the xrange with (2, (possibleprime // 2), 1) -- since there's no need to test divisors that are greater than half of the number.
Oct
24
comment A beginner’s question on web technologies.
@all: Touché. It's easy to misinterpret tone on the interwebs. Carry on.
Oct
22
comment A beginner’s question on web technologies.
@annakata: That's totally unnecessary and rude. -1.
Oct
15
accepted Better way to right align text in HTML Table
Oct
14
comment Custom event in jQuery that isn’t bound to a DOM element?
It's just a convention that works. I prefer it over using document or body because it acts sort of like a sterile clearinghouse for events -- I know everything that's in it, and there's less likelihood of something bad unwanted happening by accident. Can you explain why you think it's a bad idea?
Oct
12
answered Custom event in jQuery that isn’t bound to a DOM element?
Oct
12
comment JQuery and links - strange situation
That might be your problem -- put the code in a $(document).ready() block.
Oct
7
comment Good high-level python ftp/http lib?
It doesn't matter that much whether a project has recent commits. Many mature projects reach a level of stability, where the features are complete and the bugs have been squashed.
Sep
30
comment jquery accessing/changing value attribute of an element
Show us your HTML.
Sep
28
answered Do any sites using MVC frameworks ( php, python ) post their full source through a VC browser?
Sep
27
comment Css style not applying in Internet Explorer, but works well in firefox
The problem was highlighted in buti-oxa's answer. A td must go inside a tr, and a tr must go inside a table -- you cannot put a td directly inside a div.
Sep
26
comment input size Vs width
Which doctypes will the size attribute force into quirks mode? Please explain.
Sep
26
answered input size Vs width
Sep
24
answered How to dynamically add em tag before img?
Sep
23
answered How can I fix this strange IE 8 img anchor hover behaviour?
Sep
21
comment Is there a way of making normal links automatically load through ajax, rather than normally?
Hard to tell without seeing the content of the pages that you're loading. Have you tried loading a simple page, like <html><head></head><body>Test</body></html>?
Sep
21
awarded  
Sep
20
comment Is there a way of making normal links automatically load through ajax, rather than normally?
Any link on the same domain should work -- if the URL is redirected via .htaccess, it shouldn't matter.
Sep
20
accepted Is there a way of making normal links automatically load through ajax, rather than normally?
Sep
19
comment DIV issue between firefox & chrome
bold necessary...?
Sep
19
comment DIV issue between firefox & chrome
+1 solely for the line "Yay, go me."
Sep
19
comment Binding JQuery events
Yes. jQuery.live() acts in the same way as .bind(), except that it will create new event handlers on elements as they are created.
Sep
19
revised Is there a way of making normal links automatically load through ajax, rather than normally?
added 270 characters in body; added 19 characters in body; added 23 characters in body; added 23 characters in body
Sep
19
comment Is there a way of making normal links automatically load through ajax, rather than normally?
The syntax is correct, as far as I can tell. Be sure you've included jQuery in the head of your document. Also, make sure you change #targetDiv to the name of the div you're actually using on your page.
Sep
19
comment How could we fool the HTTP protocol?
You really seem to be asking: how can I reduce these headers. If you're using a framework, I'd look into the documentation of it, to see where the headers are added, and go from there.
Sep
19
comment Is there a way of making normal links automatically load through ajax, rather than normally?
good suggestion to target the body of the link's URL.
Sep
19
revised Is there a way of making normal links automatically load through ajax, rather than normally?
deleted 50 characters in body; added 10 characters in body
Sep
19
answered Is there a way of making normal links automatically load through ajax, rather than normally?
Sep
19
comment Django ORM, filtering objects by type with model inheritence.
I didn't know this was possible. Interesting.
Sep
18
accepted Setting styles through code on html elements. Is there better way?
Sep
18
comment Setting styles through code on html elements. Is there better way?
The whole asp.net domain is so weird and ... wrong ... for writing webapps.
Sep
18
answered Setting styles through code on html elements. Is there better way?
Sep
14
accepted How to create multiple instances of show/hide div in jquery?
Sep
14
comment How to create multiple instances of show/hide div in jquery?
I've updated the post to allow for arbitrary HTML in your document structure. You do have to link the two with some associated id though. Just output something unique to the toggle link/toggle box combination, and put it in the data-id attribute of the anchor and div elements.
Sep
14
revised How to create multiple instances of show/hide div in jquery?
added 417 characters in body; added 9 characters in body
Sep
14
comment How to create multiple instances of show/hide div in jquery?
The point is, use a pattern that you can follow. If you don't know for sure what the HTML is going to be, you'll need to create a specific link between your toggle button and the content, when you output the page.
Sep
14
answered How to create multiple instances of show/hide div in jquery?
Sep
14
revised Question about IP Rights
edited tags