User kender - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:54:31Z http://stackoverflow.com/feeds/user/4172 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1796441/python-ssh-paramiko-probelm-ssh-from-inside-of-ssh-session/1796474#1796474 0 Answer by kender for Python SSH paramiko probelm - ssh from inside of ssh session kender 2009-11-25T11:54:02Z 2009-11-25T11:56:05Z <p>can't you call the <code>ssh</code> command from inside of your client.exec_command?<br> like:</p> <pre><code>client.exec_command('ssh user@host2 "apt-get install sl -y --force-yes"') </code></pre> http://stackoverflow.com/questions/877728/what-algorithm-to-use-to-determine-minimum-number-of-actions-required-to-get-the 4 What algorithm to use to determine minimum number of actions required to get the system to "Zero" state? kender 2009-05-18T13:24:23Z 2009-11-23T23:31:24Z <p>This is kind of more generic question, isn't language-specific. More about idea and algorithm to use.</p> <p>The system is as follows:</p> <p>It registers small loans between groups of friends. <code>Alice</code> and <code>Bill</code> are going to lunch, Bill's card isn't working, so Alice pays for his meal, $10.<br /> The next day <code>Bill</code> and <code>Charles</code> meet each other on a railway station, Chales has no money for ticket, so <code>Bill</code> buys him one, for $5. Later that day <code>Alice</code> borrows $5 from <code>Charles</code> and $1 from <code>Bill</code> to buy her friend a gift.</p> <p>Now, assuming they all registered that <em>transactions</em> in the system, it looks like this:</p> <pre><code>Alice -&gt; Bill $10 Bill -&gt; Alice $1 Bill -&gt; Charles $5 Charles -&gt; Alice $5 </code></pre> <p>So, now, only thing that needs to be done is <code>Bill</code> giving <code>Alice</code> $4 (he gave her $1 and <code>Charlie</code> <em>transferred</em> his $5 to <code>Alice</code> alredy) and they're at the initial state. </p> <p>If we scale that to many diffrent people, having multiple transaction, what would be the best algorithm to get as little transactions as possible?</p> http://stackoverflow.com/questions/1785596/django-links-generated-with-url-how-to-make-them-secure 1 Django - links generated with {% url %} - how to make them secure? kender 2009-11-23T20:05:57Z 2009-11-23T22:10:21Z <p>If I want to give an option for users to log in to a website using <code>https://</code> instead of <code>http://</code>, I'd best to give them an option to get there in my view or template. </p> <p>I'd like to have the link "Use secure connection" on my login page - but then, how do I do it without hardcoding the URL? </p> <p>I'd like to be able to just do:</p> <pre><code>{% url login_page %} {% url login_page_https %} </code></pre> <p>and have them point to <code>http://example.com/login</code> and <code>https://example.com/login</code>. </p> <p>How can I do this? </p> http://stackoverflow.com/questions/1769683/how-to-resize-just-uploaded-image/1769767#1769767 2 Answer by kender for How to resize just uploaded image? kender 2009-11-20T11:05:08Z 2009-11-20T11:05:08Z <p>There's 1 things to note at beginning here:</p> <ul> <li>in your model (database) it's better to save the paths to images, not images themselves. Those should be kept in the filesystem and served directly from there, if possible (unless you don't have the access to the filesystem). </li> </ul> <p>So, in your view, you should do the following:</p> <ol> <li>Save the uploaded file somewhere (unless it's saved alredy, then you have it's path, goto 2),</li> <li>Put the original image path to database,</li> <li>Resize it, </li> <li>Save the resized image to filesystem,</li> <li>Save the path to resized image to your database.</li> </ol> <p>About the points 3 and 4, I do this like that:</p> <pre><code>orig_img = Image.open(self.imageFile) orig_img_dim = orig_img.size # (orig_img_dim[0], orig_img_dim[1]) is (y, x) size of image if (orig_img_dim[0] &gt; 600) or (orig_img_dim[1] &gt; 1000): # only resize images too large orig_img.thumbnail((600, 1000), Image.ANTIALIAS) orig_img.save(DESTINATION_FILENAME) </code></pre> <p>Note that I only resize images that are too large (larger then the 'thumbnail' size). </p> http://stackoverflow.com/questions/1762174/need-help-with-django-model-design-manytomanyfield-through-an-intermediate-mod/1762267#1762267 2 Answer by kender for Need help with Django model design, ManyToManyField "through" an intermediate model and its implications for uniqueness kender 2009-11-19T10:18:42Z 2009-11-19T10:40:07Z <p>In your case, since you say "A process (of a company) is comprised of one or more phases (of the company)", it seems like you should have a structure like:</p> <pre><code>Company &lt;----* Process &lt;----* Phase </code></pre> <p>Company has its Processes, Process has its Phases. It's not really a <code>ManyToMany</code> relation, it's <code>OneToMany</code> (Process has many Phases, but each Phase is connected to one Process).</p> <p>If so, you should have </p> <pre><code>class Phase(models.Model): process = models.ForeignKey(Process, null=True) # based on your comment, if a Phase does not belong to a Process, leave it null. phase = models.ForeignKey(Phase) order = models.PositiveIntegerField(help_text="At what step of your process will this phase occur?") class Meta: unique_togather = ("process", "order") </code></pre> <p>The <code>unique_together</code> in <code>Meta</code> class is what you want, I think. It enforces both in admin and on database level the uniqueness of those 2 fields together.</p> <p><hr></p> <p>edit:<br> (<code>ForeignKey</code> field can be null - see <a href="http://www.djangoproject.com/documentation/models/many%5Fto%5Fone%5Fnull/" rel="nofollow">this</a>)</p> <p><hr></p> <p>based on your comment:</p> <p>Don't use <code>ManyToMany</code>, as it auto-generates the "table-in-the-middle", while you need it specific for your needs. Instead, try defining the different model (together with your <code>Company</code>, <code>Phase</code> and <code>Process</code>):</p> <pre><code>class PhaseOrder(models.Model): process = models.ForeignKey(Process) phase = models.ForeignKey(Phase) order = models.PositiveIntegerField(help_text="At what step of your process will this phase occur?") class Meta: unique_together = (("process", "order"), ("process", "phase")) </code></pre> http://stackoverflow.com/questions/1755043/python-import-feedparser-works-via-ssh-but-fails-when-in-browser/1755106#1755106 5 Answer by kender for [Python] 'import feedparser' works via SSH, but fails when in browser kender 2009-11-18T10:38:01Z 2009-11-19T10:04:55Z <p>Maybe it's the problem with setting correct <code>sys.path</code> while running from shell vs from web server.</p> <p>More about <code>sys.path</code> here: <a href="http://docs.python.org/library/sys.html#sys.path" rel="nofollow">sys module</a>.</p> <p>I'd recomend to try adding <code>~/httpdocs/python-libraries/feedparser-4.1/</code> (best using full path, without <code>~/</code>) to your sys.path before the import. </p> <pre><code>import sys sys.path.append('/home/user/httpdocs/python-libraries/feedparser-4.1/') print "Content-type: text/html\n\n" try: import feedparser except: print "Cannot import feedparser.\n" </code></pre> <p>Oh, and by the way, the <code>httpdocs</code> seems like a document root for your web server. Is it the best idea to put the library there? (well, unless there's the only place you can use...) </p> <p><hr></p> <p>edit (as a general note)</p> <p>It's best to avoid the syntax like:</p> <pre><code>try: something except: print "error" </code></pre> <p>This gives you absolutly no information about the actual error you encounter. You can assume that if you try to import a module, you have <code>ImportError</code> there, but can't be sure. </p> <p>This makes debugging a real hell. Been there, done that, have lost dozens of hours due to this :)</p> <p>Whenever you can, try catching one exception type at a time. So:</p> <pre><code>try: import SomeModule except ImportError: print "SomeModule can't be imported" </code></pre> <p>You can also get familiar with the <a href="http://docs.python.org/library/traceback.html" rel="nofollow">traceback</a> module. It's in the standard library and it's there so you can use it. So, your exception handling code could be something like this:</p> <pre><code>sys.path.append('/home/user/httpdocs/python-libraries/feedparser-4.1/') try: import feedparser except ImportError: print "Content-type: text/plain\n\n" # text/plain so we get the stacktrace printed well import traceback import sys traceback.print_exc(sys.stdout) # default is sys.stderr, which is error log in case of web server running your script, we want it on standart output sys.exit(1) # here goes your code to execute when all is ok, including: print "Content-type: text/html\n\n" </code></pre> http://stackoverflow.com/questions/1755144/how-to-validate-domain-name-in-php/1755198#1755198 3 Answer by kender for How to validate domain name in PHP? kender 2009-11-18T10:53:41Z 2009-11-18T10:53:41Z <pre><code>/^[a-zA-Z0-9][a-zA-Z0-9\-\_]+[a-zA-Z0-9]$/ </code></pre> <p>should match the domain name part (without <code>.</code>).</p> http://stackoverflow.com/questions/1721675/web-content-presentation/1721695#1721695 1 Answer by kender for Web content presentation kender 2009-11-12T11:54:26Z 2009-11-12T12:07:12Z <p>If what you're looking for is making impessive designs and web page layouts, you'll need some kind of a designer. Altho, you can start by looking at <a href="http://csszengarden.com/" rel="nofollow">CssZenGarden</a>, it's pretty impressive presentation of what CSS Styles can do. </p> <p>Even if it's to CSS what a Perl Golf is to Perl :)</p> <p>Edit: From what you specified in your edit, it seems to me what you really need it some usability tweaks. This can't be done without knowing the actual product tho. Main rule, at least for me, is to present all important stuff so it be visible on a glance - and make all others available with as little clicking as possible.</p> <p>Overloading with information is worse, much worse then lack of it.</p> <p>Take a look at license terms of any current product, or some software EULAs - how many % of end users read it, you think? If they were 50% shorter, I bet <em>at least</em> 50% more people would read it.</p> http://stackoverflow.com/questions/1697702/how-to-pass-initial-parameter-to-djangos-modelform-instance 0 How to pass initial parameter to django's ModelForm instance? kender 2009-11-08T19:54:40Z 2009-11-08T20:11:39Z <p>The particular case I have is like this:</p> <p>I have a Transaction model, with fields: <code>from</code>, <code>to</code> (both are <code>ForeignKey</code>s to <code>auth.User</code> model) and <code>amount</code>. In my form, I'd like to present the user 2 fields to fill in: <code>amount</code> and <code>from</code> (<code>to</code> will be automaticly set to current user in a view function).</p> <p>Default widget to present a <code>ForeignKey</code> is a select-box. But what I want to get there, is limit the choices to the <code>user.peers</code> queryset members only (so people can only register transactions with their peers and don't get flooded with all system users).</p> <p>I tried to change the ModelForm to something like this:</p> <pre><code>class AddTransaction(forms.ModelForm): from = ModelChoiceField(user.peers) amount = forms.CharField(label = 'How much?') class Meta: model = models.Transaction </code></pre> <p>But it seems I have to pass the queryset of choices for <code>ModelChoiceField</code> right here - where I don't have an access to the web <code>request.user</code> object.</p> <p>How can I limit the choices in a form to the user-dependent ones? </p> http://stackoverflow.com/questions/1662900/web-application-on-an-iphone-styling-it-to-look-like-native-iphone-app 7 Web application on an iPhone - styling it to look like native iPhone app kender 2009-11-02T18:39:28Z 2009-11-03T06:32:22Z <p>Hi,</p> <p>I saw some web pages display diffrently on an iPod Touch (and iPhone) - they pretty much looked like the native iPhone apps.</p> <p>Think this can be done with styles and, optionally, rendering diffrent HTML on the server side, based on the user agent from request. </p> <p>So, how do I get this effect? And, also, is there any emulator of iPhone OS browser, so I could test my application before really launching it, to see if it even displays? </p> http://stackoverflow.com/questions/1660692/mobile-phone-no-verification/1660722#1660722 2 Answer by kender for Mobile Phone no. verification kender 2009-11-02T11:27:51Z 2009-11-02T11:27:51Z <p>Uh, that really depends on what you're doing. </p> <p>You can, for example, connect a phone to the server and send messages using a solution like <a href="http://www.gnokii.org/" rel="nofollow">gnokii</a> or something like this. Or you can use one of email/www to SMS gates that are out there, on the internet. </p> <p>On the other hand, you can reverse your usecase a bit. Instead of sending a confirmation code to the user (and, I guess, asking him to enter it back on your site) you can display a confirmation code to the user and ask to send a text message to the number you display. </p> <p>This makes a user having to text you. First it lowers your expenses (if you pay for the message) and second, can prevent the evil users from trying to DOS your SMS system.</p> http://stackoverflow.com/questions/1648537/how-to-split-a-string-by-commas-positioned-outside-of-parenthesis 3 How to split a string by commas positioned outside of parenthesis? kender 2009-10-30T08:02:09Z 2009-10-31T15:06:48Z <p>Hi, I got a string of such format: </p> <pre><code>"Wilbur Smith (Billy, son of John), Eddie Murphy (John), Elvis Presley, Jane Doe (Jane Doe)" </code></pre> <p>so basicly it's list of actor's names (optionally followed by their role in parenthesis). The role itself can contain comma (actor's name can not, I strongly hope so).</p> <p>My goal is to split this string into a list of pairs - <code>(actor name, actor role)</code>. </p> <p>One obvious solution would be to go through each character, check for occurances of <code>'('</code>, <code>')'</code> and <code>','</code> and split it whenever a comma outside occures. But this seems a bit heavy...</p> <p>I was thinking about spliting it using a regexp: first split the string by parenthesis:</p> <pre><code>import re x = "Wilbur Smith (Billy, son of John), Eddie Murphy (John), Elvis Presley, Jane Doe (Jane Doe)" s = re.split(r'[()]', x) # ['Wilbur Smith ', 'Billy, son of John', ', Eddie Murphy ', 'John', ', Elvis Presley, Jane Doe ', 'Jane Doe', ''] </code></pre> <p>The odd elements here are actor names, even are the roles. Then I could split the names by commas and somehow extract the name-role pairs. But this seems even worse then my 1st approach.</p> <p>Are there any easier / nicer ways to do this, either with a single regexp or a nice piece of code? </p> http://stackoverflow.com/questions/1502633/how-to-display-a-popup-with-data-of-a-data-point-in-flot-graph 0 How to display a popup with data of a data point in Flot graph? kender 2009-10-01T08:32:14Z 2009-10-28T19:43:12Z <p>I got the Flot-created graph. What I wanted to acomplish is to get some kind of information when user moves the mouse over it - best would be to show the data (from x and y axis) in some kind of javascript popup. </p> <p>It's probably trivial question, but I can't figure it out... </p> <p>Right now my javascript looks like this:</p> <pre><code>&lt;script id="source" language="javascript" type="text/javascript"&gt; $(function () { var data = [[1251756000000, 122.68],[1251842400000, 122.68],[1251928800000, 125.13],[1252015200000, 112.62],[1252101600000, 122.76]] $.plot($("#graph_placeholder"), [ data ], { xaxis: { mode: "time", minTickSize: [1, "day"], timeformat : "%y/%m/%d", }, lines: { show: true }, points: { show: false }, } ); }); &lt;/script&gt; </code></pre> <p>So best would be to get the <code>x: 1251756000000 y: 122.68</code> when hovering the point (x: 1251756000000, y: <em>any</em>). Or even have the <code>x</code> value formatted as defined in the <code>timeformat</code> (<em>2009/11/14</em>). </p> http://stackoverflow.com/questions/1629960/sending-emails-to-multiple-recipients-best-practices/1630172#1630172 0 Answer by kender for Sending emails to multiple recipients - best practices kender 2009-10-27T11:24:51Z 2009-10-27T11:24:51Z <p>I wouldn't definetly put all recipients into a To: field. Even from one place. It's just not a good practice to show other's addresses. And it generates a problem when someone hits "Reply All" and suddenly mails all others with his crap :)</p> <p>If you own the smtp server, and your application server -> smtp server connection isn't slow, I would just send every mail individually, with each single recipient in To: field. It just looks much less spam'ish then getting a mail with empty (or some bogus) To: field and being in BCC only.</p> <p>Other advantage is the person recieving your mail will know what email address is used. I got plenty of them, use different ones in different places, and it helps to be able to see which one I used on which site (sometimes I need to use this address for password reset / login, and I forgot, and if all mails had me in BCC, I'm screwed). <em>This is from your user's perspective</em>. </p> http://stackoverflow.com/questions/1624883/alternative-way-to-split-a-list-into-groups-of-n/1624993#1624993 2 Answer by kender for Alternative way to split a list into groups of n kender 2009-10-26T14:03:36Z 2009-10-26T14:03:36Z <pre><code>n = 25 list_of_lists = [L[i:i+n] for i in range(0, len(L), n)] </code></pre> <p>it gives you the list of lists <code>[[0..24], [25..49], ..]</code></p> <p>If <code>len(L) % n</code> isn't 0, the last element's (<code>list_of_lists[-1]</code>) lenght will be len(L) % n.</p> http://stackoverflow.com/questions/1544744/how-do-i-inject-actual-html-from-the-model-to-the-template/1544759#1544759 0 Answer by kender for How do I inject actual html from the model to the template? kender 2009-10-09T16:17:47Z 2009-10-09T16:17:47Z <p>See the template tags documentation <a href="http://docs.djangoproject.com/en/dev/ref/templates/builtins/" rel="nofollow">here</a>, check the <code>autoescape</code> tag description.</p> http://stackoverflow.com/questions/238079/the-funniest-weirdest-error-message-youve-got-from-a-development-environment-app/238090#238090 38 Answer by kender for The funniest/weirdest error message you've got from a development environment/application kender 2008-10-26T14:43:35Z 2009-10-05T22:27:29Z <p>Not development, but production. And the message was in the code.</p> <p>"If you ever see a window with this message, it means there were some bugs we didn't think of. Make a screenshot and mail it to us with your customer-ID and we'll refund your money"</p> http://stackoverflow.com/questions/1498983/how-do-i-validate-dates-in-a-perl-cgi-script 2 How do I validate dates in a Perl CGI-script? kender 2009-09-30T15:47:23Z 2009-10-01T13:12:06Z <p>I'm creating a small reporting script in Perl CGI. I want to have the start/end date there to filter the events on the report. So now I wonder how to validate the input in some easy, Perl-way. </p> <p>The way I generate the form with those fields is:</p> <pre><code> print textfield({-name=&gt;'start_date', -value=&gt;$start_date}); print textfield({-name=&gt;'end_date', -value=&gt;$end_date}); </code></pre> <p>Then it goes to the database query. </p> <p>Is there a simple, Perl-ish way to validate those dates? Not only as having the right number of characters, as this is simple enough via a regexp, but I'd like to report some error if the user enters 29.02.1999 or so. </p> http://stackoverflow.com/questions/1485391/how-to-get-first-and-last-record-from-a-sql-query 2 How to get First and Last record from a sql query? kender 2009-09-28T04:16:31Z 2009-09-28T04:30:49Z <p>I have a table in Postgresql, I run a query on it with several conditions that returns multiple rows, ordered by one of the columns. In general it's:</p> <pre><code>SELECT &lt;some columns&gt; FROM mytable &lt;maybe some joins here&gt; WHERE &lt;various conditions&gt; ORDER BY date DESC </code></pre> <p>Now I'm only interested in getting the first and the last row from this query. I could get them outside of the db, inside my application (and this is what I actually do) but was wondering if for better performance I shouldn't get from the database only those 2 records I'm actually interested in. </p> <p>And if so, how do I modify my query?</p> http://stackoverflow.com/questions/1479477/what-would-be-a-good-way-of-creating-graph-on-a-website 1 What would be a good way of creating graph on a website? kender 2009-09-25T20:39:38Z 2009-09-26T16:23:21Z <p>I got a bunch of data in a database. The goal is to present them to a user in a readable way, and since they're stock-data, there needs to be a graph there.</p> <p>Now it brings one question: which approach would be better, to create a graph on a server side dynamically or let the server just push raw data, allowing the client to generate graph? I saw there are some jQuery libraries for doing this, <a href="http://code.google.com/p/flot/" rel="nofollow">flot</a> for example.</p> <p>I usually prefer to do as little as possible on the client side, but this time I wonder: generating the graph on client side would produce lower server load. </p> <p>Also, changing some parameter (like displaying data for bit diffrent timespan) would require only to fetch missing data from server with ajax and redraw graph, instead of fetching completly diffrent image. This would give a more responsive UI. </p> <p>I saw that <a href="http://www.google.com/finance?q=google" rel="nofollow">Google Finance</a> uses flash for their graphs, but I'd like to avoid it if it's possible...</p> http://stackoverflow.com/questions/1476609/cronjobs-in-django/1476621#1476621 4 Answer by kender for Cronjobs in Django kender 2009-09-25T10:49:27Z 2009-09-25T10:49:27Z <p>You can set a management task (one that's called with <code>./manage.py &lt;task name&gt;</code>) that does what you need. This way you got access to all the settings, models and stuff that you use in your project. And it's also easy to maintain such a script. </p> http://stackoverflow.com/questions/1470844/ajax-based-webpage-good-way-to-do-it/1470865#1470865 5 Answer by kender for ajax based webpage - good way to do it? kender 2009-09-24T10:34:21Z 2009-09-24T10:34:21Z <p><strong>It's wrong</strong> to use AJAX (or any javascript for that matter) only to use it (unless you're learning how to use ajax which is diffrent matter). </p> <p>There are situations where the use of javascript is good (mostly when you're building a custom user interface inside your browser window) and when AJAX really shines. But loading static web pages with javascript is <strong>very</strong> wrong: first, you tie yourself with a browser that can run your JS, second you increase the load on your server and on the client side. </p> http://stackoverflow.com/questions/1466732/testing-for-cookie-existence-in-django/1467051#1467051 0 Answer by kender for Testing for cookie existence in Django kender 2009-09-23T16:13:08Z 2009-09-23T16:13:08Z <p>First, it's </p> <pre><code>request.COOKIES </code></pre> <p>not <code>request.COOKIE</code>. Other one will throw you an error.</p> <p>Second, it's a dictionary (or, dictionary-like) object, so:</p> <pre><code>if "foo" in request.COOKIES.keys() </code></pre> <p>will give you what you need. If you want to get the value of the cookie, you can use:</p> <pre><code>request.COOKIES.get("key", None") </code></pre> <p>then, if there's no key <code>"key"</code>, you'll get a <code>None</code> instead of an exception.</p> http://stackoverflow.com/questions/1438542/google-app-engine-urlfetch-to-post-files/1438614#1438614 -1 Answer by kender for Google App Engine urlfetch to POST files kender 2009-09-17T12:39:29Z 2009-09-17T12:39:29Z <p>Why not just use Python's <a href="http://docs.python.org/library/urllib2.html" rel="nofollow">urllib2</a> module to create a POST request, like they show in an example for PHP. It would be something like this:</p> <pre><code>import urrlib, urllib2 data = ( ('name', 'torrent'), ('type', 'application/x-bittorrent'), ('file', '/path/to/your/file.torrent'), ) request = urllib2.urlopen('http://torrage.com/autoupload.php', urllib.urlencode(data)) </code></pre> http://stackoverflow.com/questions/1437607/would-keeping-an-xml-data-inside-sql-table-be-an-architectural-misconception 3 Would keeping an XML data inside sql table be an architectural misconception? kender 2009-09-17T08:59:24Z 2009-09-17T10:39:34Z <p>Hi,</p> <p>I've got an SQL table that I use to keep product data. Some products have other attached data to them (be it: books have number of pages, cover type; movies have their time-length; etc).</p> <p>I could use a separate table in SQL to keep those, keeping (name, value) pairs. </p> <p>I can also just keep an XML-packed data in a single field in a table. It's not a normalized approach, but seems more-natural for me. </p> http://stackoverflow.com/questions/1333595/android-as-a-commercial-game-platform/1333776#1333776 1 Answer by kender for Android as a commercial game platform. kender 2009-08-26T10:35:28Z 2009-08-26T10:35:28Z <p>In my opinion it is worth it. </p> <p>As @Marcin said, Android is more of a open platform then iPhone. And it's easier for developers to start with developing applications and putting them on the market.</p> <p>But it means the market is populated with a lot of crap applications. And then, there are really shiny jewels too. They get good scores, are blogged/twitted about and are popular. </p> <p>So, in my opinion, if you got an idea for a good game, go for it. If you put it on the market though, consider putting (at least a 'lite' version) in the free area (people in some countries are unable to even access the paid applications market). </p> <p><em>the below part is completly my own opinion and you can simply skip it</em></p> <p>There are some 'cool' games on mobile platforms that I love to play. As for me, there are few important things to watch for when developing such a game, that aren't this important in more 'traditional' gaming, on a console or PC:</p> <ul> <li>it should be easy(fast!) to start and stop. If I play it at a bus, it could be just 1 stop. If it starts right away and then doesn't take 5 minutes to stop it, it's a <strong>+</strong></li> <li>one more thing about rapid start/stop. If I quit the game, then come back, give me a chance to continue where I stopped. No need to ask if I wanna save/load last game. Make it default, I can always start a new game if I want, can I?</li> <li>controls - even that accelerometer-using games are fun at times, try to play it in a crowded place. like a bus. Touchscreen elements should be large enough so even the thick-fingers can use it. If they are - it's a <strong>+</strong></li> <li>for long time I was trying to realise why playing Bejeweled, or Puzzle Quest, was fun and enjoying, while many of their clones were simply irrytating. The diffrence was a tiny piece of user interface - in Bejeweled the pieces you got are both diffrent colors and shapes. They are much easier to "operate" (in a Bejeweled way) then, say, screen full of diffrent color triangles. If you make a game like this, make the diffrent pieces differ in many ways, not just one (diffrent shapes with same colors would suck even more; red triangles, yellow circles, blue squares and black skulls is a way to go - <em>in my opinion</em>)</li> <li>it's a mobile device, connected to either WIFI or 3G network, you can use the internet to at least show/save highscores. But - remember - sometimes there's no network, we're in a diffrent country with roaming turned off or on the bottom of the ocean. Make the game work even there</li> </ul> http://stackoverflow.com/questions/887286/whats-the-good-time-balance-between-designing-an-application-and-coding-it 3 What's the good time balance between designing an application and coding it? kender 2009-05-20T10:54:57Z 2009-07-29T12:38:41Z <p>The question might seem trivial, but it's an actual problem: when you're working on a project, do you do any kind of <em>architecture design</em> before actually starting coding? Do you spend much time working together with a customer to get a detailed specs/usecases/mockups? </p> <p>During coding, do you alter those architectural decisions made before? Do you go back to the customer with new set of specs/usecases/mockups? </p> <p>I'm wondering, what's a good balance between all those non-coding actions and coding itself, from your experience? </p> <p>Update:</p> <p>Ok, so from the anwsers so far it seems like there are 2 approaches:</p> <ul> <li>design early, then sit and code to avoid late fixes</li> <li>minimize the design alone part, instead do iterative development (<em>agile</em> methodologies seem to prefer it that way).</li> </ul> <p>I guess which way to go depends on the project, team and customer... am I right? </p> http://stackoverflow.com/questions/177536/a-way-to-prevent-a-mobile-browser-from-downloading-and-displaying-images 0 A way to prevent a mobile browser from downloading and displaying images kender 2008-10-07T07:59:46Z 2009-07-23T13:44:48Z <p>Hey,</p> <p>Is there a simple way to prevent browser from downloading and displaying images, best would be via some magic style tag or javasctipe.</p> <p>The thing is, I'd like to tweak the company's website a bit to be more usable via mobile devices. The company is a gaming one, there's like 5MBs of images on it's main page (and those can't be touched). They alredy display deadly slow on my dsl, and they can be killers to someone who's paying for his GPRS per MB ;)</p> <p>The code of the page is not mine and shouldn't be touched too (in fact, it should be written from scratch, but it's not in my gesture to do it now) :)</p> <p>I was thinking about two solutions:</p> <p>1) If there was some kind of style-tag (or maybe a javascript? the one that would work on mobile browsers tho) that would prevent browser from downloading images and force to display alt-parameter instead I could simply attach this style if I discovered a user-agent to be some known mobile thing. or 2) I could tweak the webserver a bit to check the User-agent header and if client requests an image (.png, .gif and .jpg) send 404 instead. That has a downside tho - I'd like to allow the user to view images if he actually wants to.</p> <p>It seems that first solution would be best - what you guys think? And is there a javascript way to do it? </p> <p>I could try building document DOM, then get all <code>&lt;img&gt;</code> elements, and replace their <code>src</code> with some placeholder even but will that work on most mobile browsers (Opera Mini I suppose, the Windows Mobile thingy, the basic Symbian browser from Nokia)? And would playing with document DOM be a good solution on a mobile device (I'm not sure about it's memory-and-cpu requirements to be honest).</p> http://stackoverflow.com/questions/895025/what-should-a-main-page-of-a-web-application-be 4 What should a main page of a web application be? kender 2009-05-21T20:41:37Z 2009-07-01T13:51:59Z <p>Designing a web application, how do you design the <em>main page</em>? By this I mean the page that is displayed to a user after entering the base url, like <code>http://www.foo.com</code>.</p> <p>It would probably depend on a website, but...</p> <ul> <li>stackoverflow welcomes us with list of questions, no silly <em>what is stackoverflow</em> landing page,</li> <li>last.fm prestens a kind of <em>dashboard</em>, being very popular lately, kind of personalized landing page for registered users</li> <li>google welcomes us with a search box, but <em>iGoogle</em> i completly diffrent story - looks diffrent for everyone (well, and that's the point actually).</li> </ul> <p>The other thing is, if the user is logged in (provided the website supports logging in), should we present him a diffrent content there then some new, random incomer? And I don't mean some personalized content, but something completly diffrent, like his user profile instead of main page?</p> <p>From one perspective it could be good - registered users usually know our site, and get a kind of special greeting as soon as they come back. On the other hand, this could cause problems - when I show a website to a friend, then he goes there from his computer and sees something totally diffrent.<br /> And other thing is, when I show a <code>http://www.foo.com</code> to a friend, and it takes me directly to my user profile / dashboard - this isn't sometimes what I'd like to show everyone, as this might show some of my personal data, <em>etc</em>.</p> <p>What do you do when you design your web applications? What's, in your opinion, best from user's point of view, do my concerns about the website looking diffrent for registered and unregistered users do or don't make any sense? (Again, I don't mean <em>small</em> diffrences, like hiding huge <strong>register now</strong> link - but showing completly diffrent view then).</p> http://stackoverflow.com/questions/252906/how-to-get-the-list-of-open-windows-from-xserver 0 How to get the list of open windows from xserver kender 2008-10-31T08:53:18Z 2009-06-19T13:22:05Z <p>Anyone got an idea how to get from an Xserver the list of all open windows?</p> http://stackoverflow.com/questions/1796441/python-ssh-paramiko-probelm-ssh-from-inside-of-ssh-session/1796474#1796474 Comment by kender on Python SSH paramiko probelm - ssh from inside of ssh session kender 2009-11-25T12:07:15Z 2009-11-25T12:07:15Z 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 http://stackoverflow.com/questions/1796443/calculating-difference-between-username-and-email-in-javascript Comment by kender on Calculating difference between username and email in javascript kender 2009-11-25T12:01:34Z 2009-11-25T12:01:34Z 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? http://stackoverflow.com/questions/1785596/django-links-generated-with-url-how-to-make-them-secure/1785903#1785903 Comment by kender on Django - links generated with {% url %} - how to make them secure? kender 2009-11-23T21:01:30Z 2009-11-23T21:01:30Z 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. http://stackoverflow.com/questions/1779146/how-to-open-2-different-link-one-in-same-window-and-another-one-in-new-window-fro Comment by kender on How to open 2 different link one in same window and another one in new window from one link? kender 2009-11-23T07:45:31Z 2009-11-23T07:45:31Z 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. http://stackoverflow.com/questions/1779146/how-to-open-2-different-link-one-in-same-window-and-another-one-in-new-window-fro Comment by kender on How to open 2 different link one in same window and another one in new window from one link? kender 2009-11-22T16:27:21Z 2009-11-22T16:27:21Z 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. http://stackoverflow.com/questions/1769593/help-to-improve-comment-removing-script Comment by kender on Help to improve comment removing script kender 2009-11-20T10:28:31Z 2009-11-20T10:28:31Z Why not move this to your previous question? http://stackoverflow.com/questions/1762174/need-help-with-django-model-design-manytomanyfield-through-an-intermediate-mod/1762267#1762267 Comment by kender on Need help with Django model design, ManyToManyField "through" an intermediate model and its implications for uniqueness kender 2009-11-19T10:42:38Z 2009-11-19T10:42:38Z 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. http://stackoverflow.com/questions/1721675/web-content-presentation Comment by kender on Web content presentation kender 2009-11-12T11:52:22Z 2009-11-12T11:52:22Z please, be more specific. What do you want to present? Do you aim for some kind of multimedia presentation there, or just nice styles? http://stackoverflow.com/questions/1697702/how-to-pass-initial-parameter-to-djangos-modelform-instance/1697770#1697770 Comment by kender on How to pass initial parameter to django's ModelForm instance? kender 2009-11-09T05:33:57Z 2009-11-09T05:33:57Z Thanks a lot! This really helped. http://stackoverflow.com/questions/1697702/how-to-pass-initial-parameter-to-djangos-modelform-instance/1697715#1697715 Comment by kender on How to pass initial parameter to django's ModelForm instance? kender 2009-11-08T20:01:10Z 2009-11-08T20:01:10Z 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. http://stackoverflow.com/questions/1662900/web-application-on-an-iphone-styling-it-to-look-like-native-iphone-app/1662990#1662990 Comment by kender on Web application on an iPhone - styling it to look like native iPhone app kender 2009-11-03T08:18:55Z 2009-11-03T08:18:55Z 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 :) http://stackoverflow.com/questions/1662900/web-application-on-an-iphone-styling-it-to-look-like-native-iphone-app/1662990#1662990 Comment by kender on Web application on an iPhone - styling it to look like native iPhone app kender 2009-11-02T18:59:51Z 2009-11-02T18:59:51Z that's the problem if I don't actually got the iPhone :) http://stackoverflow.com/questions/1662900/web-application-on-an-iphone-styling-it-to-look-like-native-iphone-app/1662977#1662977 Comment by kender on Web application on an iPhone - styling it to look like native iPhone app kender 2009-11-02T18:58:55Z 2009-11-02T18:58:55Z great thing, thanks. I'll be using jQuery in this project, so I'm gonna give it a try. http://stackoverflow.com/questions/1648537/how-to-split-a-string-by-commas-positioned-outside-of-parenthesis/1648626#1648626 Comment by kender on How to split a string by commas positioned outside of parenthesis? kender 2009-10-30T09:21:12Z 2009-10-30T09:21:12Z 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? http://stackoverflow.com/questions/1648537/how-to-split-a-string-by-commas-positioned-outside-of-parenthesis/1648575#1648575 Comment by kender on How to split a string by commas positioned outside of parenthesis? kender 2009-10-30T08:22:33Z 2009-10-30T08:22:33Z How would .split work here? If I split by commas, I would get text inside parenthesis splitted too, which is definetly not my goal.