mikl

1,395
Reputation
212 views

Registered User

Name mikl
Member for 9 months
Seen 18 hours ago
Website
Location DK
Age 25
I own my own little consulting company, helping my customers do advanced web sites with Drupal and creating web applications with Django.
Nov
18
comment When you’re the origin repo in git, how do you do a local pull?
Since he is talking about the master repository, there is nothing to add a remote to.
Nov
1
accepted Crash and Socket Failure: 9-signalling Processes with Sudo
Oct
14
accepted What version is 5.2.0-8+etch13 really?
Oct
14
revised What version is 5.2.0-8+etch13 really?
edited tags
Oct
14
answered What version is 5.2.0-8+etch13 really?
Oct
14
comment MySQL MAX_JOIN_SIZE Error! Need to optimize query.
You should probably specify LEFT JOIN or another specific join type, based on your needs.
Oct
13
answered Deploying Google Analytics With Django
Aug
27
revised Set size on backgroundimage with css?
added 14 characters in body
Aug
27
comment Set size on backgroundimage with css?
Well, that's not possible. There might be options for doing that in future versions of CSS, but that's a long way off.
Aug
27
revised Set size on backgroundimage with css?
added 584 characters in body; added 136 characters in body
Aug
27
answered Set size on backgroundimage with css?
Aug
26
answered Drupal 6 module for program syntax higlighting
Aug
26
revised Publishing the HEAD of a branch without all the previous commit objects
added 447 characters in body
Aug
26
answered Publishing the HEAD of a branch without all the previous commit objects
Aug
25
comment Sorting words (not lines) in VIM
I'd hardly say a convoluted Perl script is an improvement…
Aug
24
revised Feature not installing, don’t know why
edited tags
Aug
22
comment Drupal 6: Programmatically Altering User Values (how do you use profile_save_profile??)
Well, I thinks that's a bit hard to say, not knowing your specific use case. Whatever works best for you :)
Aug
22
comment Django - How to get only 2 object for a combination of fields with a queryset
I think what you might be looking for is better distinct support, which is not currently available, but there's a patch for it: code.djangoproject.com/ticket/6422
Aug
20
answered Crash and Socket Failure: 9-signalling Processes with Sudo
Aug
19
answered Using Python to convert color formats?
Aug
19
comment Drupal 6: Programmatically Altering User Values (how do you use profile_save_profile??)
Yeah, profile_save_profile() overwrites all the existing values – not very elegant: api.drupal.org/api/function/… The profile module is one of the darker corners of Drupal's API, and it has been completely remade in Drupal 7 – so it'll be much easier to work with – flexibility and extensibility.
Aug
19
comment Good resources for learning PL/pgSQL?
Okay, thanks for the suggestions :)
Aug
19
comment Good resources for learning PL/pgSQL?
Okay, I think I'm going to just bite the bullet and dig through it, even though it looks a bit intimidating.
Aug
18
accepted Drupal 6: Programmatically Altering User Values (how do you use profile_save_profile??)
Aug
18
comment Good resources for learning PL/pgSQL?
Okay, wikified.
Aug
18
answered Drupal 6: Programmatically Altering User Values (how do you use profile_save_profile??)
Aug
18
comment HTML snippet from Python
Yeah, Python is not PHP. Embedding code in HTML is bad style and the fast road to maintenance nightmares.
Aug
18
asked Good resources for learning PL/pgSQL?
Jul
24
answered Django (?) really slow with large datasets after doing some python profiling
Jul
22
answered Is file transfer possible to iPhone 3.0 via Bluetooth or not?
Jul
14
comment Base 62 conversion in Python
@Mike Cooper: Base 64 is not optimised for numbers, and thus not really applicable for this use case. @Miles: Yes, the baseconverter class that Simon Willison posted at djangosnippets.org/snippets/1431 seems like a worthy competitor. I might do a benchmark some time to find the most efficient one :)
Jul
13
comment Base 62 conversion in Python
Yeah, I looked at that earlier, but it converts strings, not numbers :)
Jul
13
comment Base 62 conversion in Python
Oops, I think I'll change it to return 0 if num <= 0 :)
Jul
13
comment Base 62 conversion in Python
I think I'll pass on the dot and the tilde, just to avoid user confusion, but the dash and the underscores should be worthwhile additions, thanks.
Jul
13
comment Base 62 conversion in Python
Thanks, just what I was looking for :)
Jul
13
asked Base 62 conversion in Python
Jul
11
revised How do I do large non-blocking updates in PostgreSQL?
added 257 characters in body
Jul
11
revised How do I do large non-blocking updates in PostgreSQL?
edited tags
Jul
11
comment How do I do large non-blocking updates in PostgreSQL?
Hmm, I had not considered that – still, I think this will be faster than UPDATE orders SET status = null;, since that would mean a full table scan.
Jul
11
revised How do I do large non-blocking updates in PostgreSQL?
added 600 characters in body; added 302 characters in body
Jul
11
answered How do I do large non-blocking updates in PostgreSQL?
Jul
10
answered Non-blocking Javascript
Jul
9
comment How do I get a link to parent node in nodecomments in drupal 6?
No, if you're changing template files, you should take a copy and put it in your theme's folder to make sure it has precedence :)
Jun
30
awarded  Nice Answer
Jun
24
awarded  Civic Duty
Jun
24
comment How do I get a link to parent node in nodecomments in drupal 6?
Well, the position shouldn't matter, since the variable is available anywhere in the template file.
Jun
24
comment How do I get a link to parent node in nodecomments in drupal 6?
Hard to say. It works for me :)
Jun
23
revised Outer Variable Access in PHP Class
Globals needs to be declared both places to work.
Jun
23
accepted How to dynamically reconfigure Drupal’s jQuery-based autocomplete at runtime?
Jun
22
answered How to execute a file within the python interpreter?