kender

3,688
Reputation
203 views

Registered User

Name kender
Member for 1 year
Seen 41 mins ago
Website
Location PL
Age 30
Programmer by heart, currently working as senior test manager for a bank. Basic field of interest: python coding, java, distributed databases, bussiness usage of python :) Also interested in usability and integration testing.
2d
comment Python SSH paramiko probelm - ssh from inside of ssh session
i would do the authorization part with keys (public you throw on destination server, into .ssh/authorized_keys, private you keep on the machine you ssh from). It's better and safer then keeping the passwords in your source
2d
comment Calculating difference between username and email in javascript
I wouldnt go this way. I use my name as username on many websites (and in fact ones that won't allow me that have much bigger chance of never seeing me again - their loss :). And besides, I dont really see how having a username 'tester' would allow others to contact me: should they email tester@yahoo.com, tester@gmail.com or any other of zillions emailable domains out there?
2d
revised Python SSH paramiko probelm - ssh from inside of ssh session
edited title
2d
answered Python SSH paramiko probelm - ssh from inside of ssh session
Nov
23
comment Django - links generated with {% url %} - how to make them secure?
This has 1 disadvantage though; when/if I move the site to diffrent domain, or something like that, relative URLs won't break, this one will. I was looking for something more like request.build_absolute_uri() function with option to replace http with https, but I guess it's better to implement it by myself.
Nov
23
asked Django - links generated with {% url %} - how to make them secure?
Nov
23
comment How to open 2 different link one in same window and another one in new window from one link?
I would just throw away a browser that would allow some sites to open new page in a new window instead of new tab. There's a reason why there are tabs now. On the other hand, if it's client request, use javascript that calls window.open twice. If a user wants this behavior, he will allow your page to open popups. But it's still evil.
Nov
22
comment How to open 2 different link one in same window and another one in new window from one link?
The question is - why you wanna do it with the same link? Are you trying to display some bad-ass add there or something? It's an evil approach.
Nov
20
answered How to resize just uploaded image?
Nov
20
accepted Need help with Django model design, ManyToManyField “through” an intermediate model and its implications for uniqueness
Nov
19
revised how to get Company contact page url
fixed formatting
Nov
19
comment Need help with Django model design, ManyToManyField “through” an intermediate model and its implications for uniqueness
Then you don't need the ManyToMany field defined, just an additional table. Check my latest edit. The uniqueness is guaranteed with unique_together in Meta.
Nov
19
revised Need help with Django model design, ManyToManyField “through” an intermediate model and its implications for uniqueness
added 568 characters in body
Nov
19
revised Need help with Django model design, ManyToManyField “through” an intermediate model and its implications for uniqueness
added 231 characters in body
Nov
19
answered Need help with Django model design, ManyToManyField “through” an intermediate model and its implications for uniqueness
Nov
19
revised [Python] ‘import feedparser’ works via SSH, but fails when in browser
added 31 characters in body
Nov
19
revised How to validate domain name in PHP?
edited tags
Nov
19
revised [Python] ‘import feedparser’ works via SSH, but fails when in browser
added 1359 characters in body
Nov
18
accepted How to validate domain name in PHP?
Nov
18
answered How to validate domain name in PHP?
Nov
18
answered [Python] ‘import feedparser’ works via SSH, but fails when in browser
Nov
18
revised how to find buttons with specified text inside using jquery?
deleted 2 characters in body; edited title
Nov
12
revised Web content presentation
added 597 characters in body
Nov
12
answered Web content presentation
Nov
12
comment Web content presentation
please, be more specific. What do you want to present? Do you aim for some kind of multimedia presentation there, or just nice styles?
Nov
9
comment How to pass initial parameter to django’s ModelForm instance?
Thanks a lot! This really helped.
Nov
9
awarded  Popular Question
Nov
8
comment How to pass initial parameter to django’s ModelForm instance?
passing initial data would set my select box to specified value - not limit the choices, or modify validation, that i'd get with setting QuerySet in ModelForm definition.
Nov
8
asked How to pass initial parameter to django’s ModelForm instance?
Nov
5
awarded  Self-Learner
Nov
3
comment Web application on an iPhone - styling it to look like native iPhone app
I'll sure will get one (probably iPod touch though, as I don't need yet another phone). The web app is not a iPhone-only thing tho, it's just an idea to make it app-like for iPhone users. Hence, before lauching it live i'd get the actual device, but before it's just another expense I can avoid :)
Nov
2
comment Web application on an iPhone - styling it to look like native iPhone app
that's the problem if I don't actually got the iPhone :)
Nov
2
comment Web application on an iPhone - styling it to look like native iPhone app
great thing, thanks. I'll be using jQuery in this project, so I'm gonna give it a try.
Nov
2
asked Web application on an iPhone - styling it to look like native iPhone app
Nov
2
answered Mobile Phone no. verification
Oct
30
comment How to split a string by commas positioned outside of parenthesis?
every time I see the regular expression that's useful, like this one, I start to wonder - should they be human-readable? Or it's just me... who doesn't see it from first glance?
Oct
30
revised How to split a string by commas positioned outside of parenthesis?
edited title
Oct
30
asked How to split a string by commas positioned outside of parenthesis?
Oct
27
answered Sending emails to multiple recipients - best practices
Oct
27
revised Sending emails to multiple recipients - best practices
it's not really a c# question, but general one
Oct
26
comment Alternative way to split a list into groups of n
You can create your own class for storing a list and code it there, then you'd have a more direct approach... but I doubt it would change anything. Lists don't have a .split() function, at least not in python 2.x ;)
Oct
26
answered Alternative way to split a list into groups of n
Oct
14
awarded  Popular Question
Oct
9
answered How do I inject actual html from the model to the template?
Oct
8
awarded  Tumbleweed
Oct
8
comment Python: How to print a class or objects of class using print()?
there's also a unicode method, which you can use instead of Str ; note that it should return a unicode object, not a string (but if you return a string, the conversion to unicode will be done anyway...)
Oct
1
asked How to display a popup with data of a data point in Flot graph?
Sep
30
asked How do I validate dates in a Perl CGI-script?
Sep
28
comment Regex to match text between specified delimiters? (I just can’t get it myself)
would the \1 group contain "first matched here" and "second match", or everything between first ABC till last XYZ?
Sep
28
asked How to get First and Last record from a sql query?