SpoonMeiser

2,011
reputation
169 views

Registered User

name SpoonMeiser
member for 1 year
seen 20 hours ago
website
location London, England
age 28
20h
answered redirecting a webpage from site A to site B without changing url
Dec
12
accepted hyperlink open is seperate windows
Dec
11
comment How can I use javascript to convert relative href attributes into absolute paths?
You should sort out your code snippet.
Dec
11
comment How can I use javascript to convert relative href attributes into absolute paths?
Ignore that comment. I'm wrong.
Dec
11
comment How can I use javascript to convert relative href attributes into absolute paths?
Does this work in IE? I thought IE normalised the href internally before you could access it?
Nov
29
comment how eq(0) works with DOM
Does jQuery use this API now? In my experience, selecting by class (for large documents, at least) is slow anyway.
Nov
28
revised hyperlink open is seperate windows
added link
Nov
28
answered hyperlink open is seperate windows
Nov
28
answered Scroll position should unchange
Nov
28
accepted how eq(0) works with DOM
Nov
28
answered how eq(0) works with DOM
Nov
28
revised What is the best way to test for an empty string with jquery-out-of-the-box?
edited tags
Nov
28
answered What is the best way to test for an empty string with jquery-out-of-the-box?
Nov
25
comment How do I fix “bash: perl myscript.pl: command not found”?
myscript.pl > myfile.txt will overwrite the content of myfile.txt with the output from the script, which might not be what you intended.
Nov
23
comment How do I order this list in Python?
+1 for using key instead of cmp.
Nov
20
comment Why can’t I save CSS changes in FireBug?
This isn't entirely true. Firebug shows you all of the styles that apply to an element, including where they came from, and just strikes through them if they've been superseded by a more specific/later/important rule. It lets you change/add rules at any level. You also have the option to view just the computed styles, but the default view is to show all styles.
Nov
16
comment How can i prevent that users browse my site with a specific browser?
Have you considered not arbitrarily restricting users? Just a thought.
Nov
16
answered Getting a list of columns to show next to the column they are related to
Nov
14
comment Each looping return a result
+1 for using generators. A much under valued/used feature, in my opinion.
Nov
14
comment On which site i will get more answer for CSS question stackoverflow.com or doctype.com?
Did you ask this question on doctype.com too?
Nov
14
revised How to best implement a 1:1 relationship in a RDBMS?
added 76 characters in body
Nov
14
revised How to best implement a 1:1 relationship in a RDBMS?
add note about unique constraint
Nov
14
comment How to best implement a 1:1 relationship in a RDBMS?
@Vilx: yes you can. A unique constraint implies that all values are unique, but you can have multiple NULLs because you can't compare NULL to NULL.
Nov
13
answered How to best implement a 1:1 relationship in a RDBMS?
Nov
10
comment html link breaks
I think the first point is key here. In IE, at least, anchors don't seem to act like anchors (pointer style, for example) unless it actually has a href. Adding a href will fix it for IE, and I suspect that other browsers work regardless.
Nov
10
comment count (non-blank) lines-of-code in bash
Not if you're piping into it though, as standard in counts as just one file.
Nov
9
revised Centering 2 divs of unknown width in IE6 and IE7
edited tags
Nov
6
answered Is it possible to upload image to server without submitting the form?
Nov
2
comment how do I add a parameter to an ajax call using jquery?
Are you always guaranteed to get this header? Across all browsers? That it's easy to spoof the header is unimportant, there's no extra data exposed, it's just returned in a different format.
Nov
2
asked how do I add a parameter to an ajax call using jquery?
Nov
2
comment What are five things you hate about your favorite language?
@kaleissin I would too, but it's another step to get safe code that you get for free in other languages.
Nov
1
awarded  Nice Answer
Oct
20
comment How can I get all a form’s values that would be submitted without submitting
Does this work correctly for checkboxes, radio buttons and multi-selects?
Oct
8
accepted Combine two lists: aggregate values that have similar keys
Oct
5
comment Combine two lists: aggregate values that have similar keys
Curses, beat me to a very similar answer by mere seconds!
Oct
5
answered Combine two lists: aggregate values that have similar keys
Oct
5
comment Combine two lists: aggregate values that have similar keys
Is ordering important in the final list?
Oct
1
comment How can I FTP a file with an SSH key instead of a password, in Perl?
AFAIK FTP doesn't support public/private key authentication. SFTP is a different protocol to FTP, and is almost certainly what you mean.
Sep
28
comment What are some funny loading statements to keep users amused?
@lagerdalek, it was from Moonstone.
Sep
25
comment python arbitrarily incrementing an iterator inside a loop
To make this work with iterators, can you not just replace the list comprehension with a generator expression? That is, instead of [x for x in ...], do (x for x in ...). This will prevent another list being created.
Aug
28
accepted Can I pickle a python dictionary into a sqlite3 text field?
Aug
14
awarded  Yearling
Jul
30
answered Calculate dragable divs - jquery
Jul
30
comment Calculate dragable divs - jquery
Effectivly saying RTFM isn't helpful; (s)he already appears to be using resizable.
Jul
29
asked ‘skipping’ a table in SQL inner joins
Jul
26
comment Getting existing git branches to track remote branches.
cloning the central repository and editing .git/config are the two options I already mentioned in my question.
Jul
26
comment git rm multiple files that have already been deleted from disk
Not sure why I got down-voted; git does a good job of identifying files that have been deleted, even if you've not explicitly told it by using git rm.
Jul
26
comment Getting existing git branches to track remote branches.
Actually turns out that a similar question has been asked before: stackoverflow.com/questions/312055/…
Jul
26
asked Getting existing git branches to track remote branches.
Jul
23
answered How old are you, and how old were you when you started coding?