1,480 reputation
416
bio website theninth.se
location
age 31
visits member for 1 year, 8 months
seen 16 mins ago
stats profile views 109

A hobbyist coder from Sweden.


1d
comment Python tuple not populating
But you can't append to a tuple ?
1d
awarded  Enlightened
1d
awarded  Nice Answer
Apr
28
comment Convert list of strings into multiple data types in one line
@MichaelDavidWatson Ok, that's what comments are for I guess. Throw away some hints for an answer even though you haven't got time to really try it out :)
Apr
27
comment Convert list of strings into multiple data types in one line
If you didn't have that float in there I would suggest [ast.literal_eval(s) for s in strLst]
Apr
19
revised Accessing specific value in a list of values
added import :-)
Apr
19
suggested suggested edit on Accessing specific value in a list of values
Apr
16
comment C to Python code conversion(print address-like values)
hex(1492460964) ?
Apr
16
accepted Can't implement ORDER BY clause in complex query
Apr
14
comment Can't implement ORDER BY clause in complex query
Yeah! My "production server" in this case is not really critical. It's for a game project of mine. I will have this in the back of my head, though. Also, in this case i used some elses Django model which implemented this field. So did not thought about this problem until now. And I don't think I bother forking this module, nor choose another. This works...
Apr
13
comment Can't implement ORDER BY clause in complex query
SQLite on dev-server (where the problem occured) and MySQL on production server. Found a solution. See my answer :) THANKS
Apr
13
answered Can't implement ORDER BY clause in complex query
Apr
13
comment Can't implement ORDER BY clause in complex query
Are you sure? I really didn't think it mattered. Which SQL dialects does it matter to? SQLite don't seem to be affected.
Apr
13
asked Can't implement ORDER BY clause in complex query
Apr
12
revised Error opening a file with date/time stamp in its name
added 65 characters in body
Apr
12
answered Error opening a file with date/time stamp in its name
Apr
11
revised Loop over json array inside dict
forgot parenthesis
Apr
11
comment Loop over json array inside dict
You are right too. Have an upvote ;)
Apr
11
accepted Loop over json array inside dict
Apr
11
comment Loop over json array inside dict
Oh, It did'nt quite work. But your code made me see my misstake. I thought row where a mutable object and I didn't need to put row = row.concat... I could figure it out myself from your fiddle but it was'nt quite what I was asking for. So an upvote! I wish I could give you two :-p Lars-August nailed what I already figured out though.