User hasen j - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T14:16:28Zhttp://stackoverflow.com/feeds/user/35364http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1857427/how-do-i-break-up-the-controllers-views-into-cohesive-files-in-a-django-project/1857574#18575741Answer by hasen j for How do I break up the controllers (views) into cohesive files in a Django project?hasen j2009-12-07T03:03:21Z2009-12-07T16:08:33Z<p>The view functions don't have to be in <code>views.py</code>, they can be anywhere, as long as they're mapped properly in <code>urls.py</code>. So it's up to you how you organize your project.</p>
<blockquote>
<p>but it appears that the script that generates the file structure creates a "views" module when it creates the file, and I don't see a way to change/override this behavior from the script.</p>
</blockquote>
<p>You can totally ignore that script and what it generates. It doesn't do anything magical behind the scenes; it just creates those files for you.</p>
http://stackoverflow.com/questions/1857044/google-maps-mashup-using-c/1857662#18576623Answer by hasen j for Google Maps Mashup using C++hasen j2009-12-07T03:31:25Z2009-12-07T03:31:25Z<p>It's certainly feasible (as a standalone GUI application, for example). But, is it advisable? I wouldn't say so, unless you plan to do it as a learning project.</p>
<blockquote>
<p>C++ is the only language I know as it is all I have studied so far in school.</p>
</blockquote>
<p>You're supposed to pick up languages on your own. </p>
<p>Javascript has a familiar syntax, but it has functional features, and objects work differently. So just as a caution, when you learn it, don't think of it as a cpp-like scripting language; it's not.</p>
http://stackoverflow.com/questions/686353/c-random-float5C++ random floathasen j2009-03-26T15:49:14Z2009-12-05T05:04:47Z
<p>How do I generate random floats in C++?</p>
<p>I thought I could take the integer rand and divide it by something, would that be adequate enough?</p>
http://stackoverflow.com/questions/415889/embeddable-flash-based-mp3-player3embeddable flash based mp3 playerhasen j2009-01-06T09:08:27Z2009-12-04T15:35:57Z
<p>I need to serve audio content (not music though, more like podcasts; human speech), and I'm thinking of using a flash-based player to let users hear the content without having to download it.</p>
<p>I need a free embeddable flash based mp3 player. Any suggestions?</p>
<p>Because it's not music, I don't care about playlist (I don't want them, they will get in the way), and I need a seek-bar (if that's what you call it), I also don't want it to display the file name or title any crazy thing like that, just a play/pause button and a seek bar.</p>
<p>Or, alternatively, if it's not very complicated, I might try to make one myself. Does anyone have experience building such a thing to give me an insight on how hard it would be?</p>
<p><strong>UPDATE</strong>
I'm looking at this one <a href="http://www.macloo.com/examples/audio_player/" rel="nofollow">http://www.macloo.com/examples/audio_player/</a></p>
<p>Though, I don't know who made it, and whether or not it's free?</p>
http://stackoverflow.com/questions/1844807/what-does-mean/1844826#18448263Answer by hasen j for What does /([^.]*)\.(.*)/ mean?hasen j2009-12-04T04:18:32Z2009-12-04T04:18:32Z<p>Anything except a dot, followed by a dot, followed by anything.</p>
<p>You can test regex'es on <a href="http://regexpal.com/" rel="nofollow">regexpal</a></p>
http://stackoverflow.com/questions/1819444/oop-when-is-it-an-object/1840292#18402921Answer by hasen j for OOP: When is it an object?hasen j2009-12-03T14:42:42Z2009-12-03T14:42:42Z<p>I answered this already in <a href="http://stackoverflow.com/questions/1829966/oop-how-to-choose-a-possible-object-candidate">another question</a></p>
<p>Code objects are <strong>not</strong> related to tangible real-life objects; they are just constructs that hold related information together.</p>
<p>Don't believe what the Java books/schools teach about objects; they're lying.</p>
<p>Just write something that gets the job done, even if it's ugly, then refactor continuously:</p>
<ul>
<li>eliminate <a href="http://en.wikipedia.org/wiki/Duplicate%5Fcode" rel="nofollow">duplicate code</a> (<a href="http://en.wikipedia.org/wiki/Don%27t%5Frepeat%5Fyourself" rel="nofollow">don't repeat yourself</a>)</li>
<li>increase <a href="http://en.wikipedia.org/wiki/Cohesion%5F%28computer%5Fscience%29" rel="nofollow">cohesion</a></li>
<li>reduce <a href="http://en.wikipedia.org/wiki/Coupling%5F%28computer%5Fscience%29" rel="nofollow">coupling</a></li>
</ul>
<p>But:</p>
<ul>
<li>don't over-engineer; <a href="http://en.wikipedia.org/wiki/KISS%5Fprinciple" rel="nofollow">keep it simple</a></li>
<li>don't write stuff <a href="http://en.wikipedia.org/wiki/YAGNI" rel="nofollow">you ain't gonna need</a></li>
</ul>
<p>If you don't end up with massive (and useless) class hierarchy, then you have done a good job, producing elegant and clean code.</p>
<p>Remember: OOP is a means, not an end.</p>
http://stackoverflow.com/questions/1829966/oop-how-to-choose-a-possible-object-candidate/1830016#18300161Answer by hasen j for OOP - How to choose a possible object candidate?hasen j2009-12-02T00:53:16Z2009-12-02T15:47:21Z<p>Just write something that gets the job done, even if it's ugly, then refactor continuously:</p>
<ul>
<li>eliminate <a href="http://en.wikipedia.org/wiki/Duplicate%5Fcode" rel="nofollow">duplicate code</a> (<a href="http://en.wikipedia.org/wiki/Don%27t%5Frepeat%5Fyourself" rel="nofollow">don't repeat yourself</a>)</li>
<li>increase <a href="http://en.wikipedia.org/wiki/Cohesion%5F%28computer%5Fscience%29" rel="nofollow">cohesion</a></li>
<li>reduce <a href="http://en.wikipedia.org/wiki/Coupling%5F%28computer%5Fscience%29" rel="nofollow">coupling</a></li>
</ul>
<p>But:</p>
<ul>
<li>don't over-engineer; <a href="http://en.wikipedia.org/wiki/KISS%5Fprinciple" rel="nofollow">keep it simple</a></li>
<li>don't write stuff <a href="http://en.wikipedia.org/wiki/YAGNI" rel="nofollow">you ain't gonna need</a></li>
</ul>
<p>It's not a precise recipe, just some general guidelines. Keep practicing.</p>
<p>P.S.</p>
<p>Code objects are <strong>not</strong> related to tangible real-life objects; they are just constructs that hold related information together.</p>
<p>Don't believe what the Java books/schools teach about objects; they're lying.</p>
http://stackoverflow.com/questions/1826859/is-there-ever-a-good-reason-to-use-eval/1827734#18277340Answer by hasen j for Is there ever a good reason to use eval() ?hasen j2009-12-01T17:35:33Z2009-12-01T17:35:33Z<p>For debugging/testing an idea before implementing it the proper way.</p>
<p>For instance, you're making a toy calculator, and you want to work on the gui first, so you just use <code>eval</code> to do the "back-end" work in the background. Later, you come back to the back-end, scratch <code>eval</code>, and write a proper expression parser.</p>
http://stackoverflow.com/questions/1823286/singleton-in-go/1823326#18233261Answer by hasen j for Singleton in gohasen j2009-12-01T00:34:43Z2009-12-01T04:16:40Z<p>Just put your variables and functions at the package level.</p>
<p>Also see similar question: <a href="http://stackoverflow.com/questions/31875">How to make a singleton in Python</a></p>
http://stackoverflow.com/questions/1814653/object-oriented-design-interview-question/1814699#18146994Answer by hasen j for Object Oriented Design Interview Questionhasen j2009-11-29T05:01:10Z2009-11-29T05:01:10Z<p>I'd tell him to scratch that. It's a horrible abstraction. Not to mention we're not given any context. Abstractions don't come out of thin air, or out of an "idea" of what's "right". Show me what problem are you trying to solve first, so we can evaluate this abstraction.</p>
<p>If no context is provided, then I'll just assume/make-up my own: you want some types of objects to be able to eat other types of objects. Nothing more, nothing less.</p>
<p>Make an <code>Eatable</code> interface (or you can call it <code>Food</code>, if you want), and since we have no context what so ever, I'll assume it's a toy console program, that just prints:</p>
<pre><code><X> ate <Y>
</code></pre>
<p>so all we need for this interface is a <code>getFoodName()</code> method.</p>
<p>For error checking, you can create a bunch of <code>isXFoodType</code> methods, for instance, <code>isGrassFoodType()</code>, <code>isMeatFoodType()</code>, etc. The <code>Cow</code>'s implementation of <code>Eat(Eatable e)</code> would check for <code>isGrassFoodType()</code>, and when fails, prints:</p>
<pre><code>"Cow can't eat " + e.getFoodName()
</code></pre>
http://stackoverflow.com/questions/536148/c-string-parsing-python-style5C++ string parsing (python style)hasen j2009-02-11T09:49:23Z2009-11-27T21:49:23Z
<p>I love how in python I can do something like:</p>
<pre><code>points = []
for line in open("data.txt"):
a,b,c = map(float, line.split(','))
points += [(a,b,c)]
</code></pre>
<p>Basically it's reading a list of lines where each one represents a point in 3D space, the point is represented as three numbers separated by commas</p>
<p>How can this be done in C++ without too much headache?</p>
<p>Performance is not very important, this parsing only happens one time, so simplicity is more important.</p>
<p>P.S. I know it sounds like a newbie question, but believe me I've written a lexer in D (pretty much like C++) which involves reading some text char by char and recognizing tokens,<br />
it's just that, coming back to C++ after a long period of python, just makes me not wanna waste my time on such things.</p>
http://stackoverflow.com/questions/1805306/should-i-pursue-java-or-php-for-a-career-path-in-programming/1805798#18057982Answer by hasen j for Should I pursue Java or PHP for a career path in programming?hasen j2009-11-26T21:42:41Z2009-11-26T21:42:41Z<p>Your career is not in a language. </p>
<p>Investing all your energy in a certain single language is a sure way to doom your career, and more importantly, yourself as a programmer.</p>
<p>Chances are, in 5 years the trends will be completely different. 5 years ago there was no Django or jQuery or AppEngine.</p>
<p>What you need to work on is yourself: just use whatever langauge you like, as long as you keep playing around, have fun, make lots of mistakes, learn from them. Read books, blogs, etc.</p>
http://stackoverflow.com/questions/1802342/please-show-me-a-situtation-which-shows-need-for-delegates-or-function-point/1804330#18043300Answer by hasen j for Please show me a situtation which shows `need` for Delegates (or) function pointers.hasen j2009-11-26T15:29:35Z2009-11-26T15:29:35Z<p>Checkout the <a href="http://www.joelonsoftware.com/items/2006/08/01.html" rel="nofollow">Can your programming language do this?</a> article from Joel.</p>
<p>He has few good examples where there are two functions that are almost doing the same thing, but use different functions to achieve a certain task.</p>
<pre><code>alert("get the lobster");
PutInPot("lobster");
PutInPot("water");
alert("get the chicken");
BoomBoom("chicken");
BoomBoom("coconut");
</code></pre>
<p>Refactored with functions passed as arguments:</p>
<pre><code>function Cook( i1, i2, f )
{
alert("get the " + i1);
f(i1);
f(i2);
}
Cook( "lobster", "water", PutInPot );
Cook( "chicken", "coconut", BoomBoom );
</code></pre>
http://stackoverflow.com/questions/1801142/neon-glow-effect-in-ie81neon-glow effect in IE8hasen j2009-11-26T01:48:23Z2009-11-26T01:55:51Z
<p>The following css creates a nice neon-glow effect around text</p>
<pre><code>{
text-shadow: 0em 0em 0.3em white; /* assuming a dark background */
}
</code></pre>
<p>However it doesn't work in IE7/8</p>
<p>For a reference, compare <a href="http://www.w3.org/Style/Examples/007/text-shadow" rel="nofollow">this page</a> in Firefox and IE </p>
<p>Is there a way to get a similar effect in it?</p>
http://stackoverflow.com/questions/1775799/what-is-a-programming-language/1792019#17920190Answer by hasen j for What is a programming language?hasen j2009-11-24T18:33:15Z2009-11-24T18:33:15Z<p>A formal language for describing processes/algorithms.</p>
http://stackoverflow.com/questions/1702395/git-what-is-the-best-workflow-to-this-situation/1785314#17853140Answer by hasen j for GIT: What is the best workflow to this situation?hasen j2009-11-23T19:12:47Z2009-11-23T19:12:47Z<p>I think this problem is outside the scope of git.</p>
<p>I'd say you should always keep the 'common base' common for all projects. </p>
<p>If one project requires a specific hack, you should try and make so that it doesn't affect other repos. For example, make it off by default, and only on for that certain website.</p>
<p>One way to force yourself to do that is have them all use the exact same "common" repo; not a clone of it. You can use symlinks for the base/common code base, for instance.</p>
http://stackoverflow.com/questions/1778621/which-license-can-be-used-if-source-is-only-distributed-for-paid-customers/1778626#17786265Answer by hasen j for Which License can be used if source is only distributed for paid customers?hasen j2009-11-22T12:56:05Z2009-11-22T12:56:05Z<p>Let your company hire some good lawyer(s) to write such a license.</p>
http://stackoverflow.com/questions/1774373/github-and-svn-workflow/1774378#17743780Answer by hasen j for Github and SVN Workflowhasen j2009-11-21T03:15:10Z2009-11-21T03:15:10Z<p>Either force the other guy to use <code>git</code>, or have the <code>svn</code> repository be the main one, and use <a href="http://www.kernel.org/pub/software/scm/git-core/docs/git-svn.html" rel="nofollow"><code>git-svn</code></a> to pull/push from/to it.</p>
http://stackoverflow.com/questions/580458/what-is-the-most-popular-web-programming-language/580536#580536-1Answer by hasen j for What is the most popular web programming language?hasen j2009-02-24T05:10:09Z2009-11-19T19:51:21Z<p>Unfortunately I think it's PHP.</p>
<p>I say unfortunately because PHP sucks!</p>
http://stackoverflow.com/questions/1747130/sum-and-division-example-python/1747302#17473020Answer by hasen j for Sum and Division example (Python)hasen j2009-11-17T08:11:06Z2009-11-17T08:11:06Z<pre><code>def sumdiv7(limit):
for i in range(limit):
result = sum(range(i*7)) / 7
print "For", i, ", sumdiv = ", result
</code></pre>
<p>Example:</p>
<pre><code>>>> sumdiv7(4)
For 0 , sumdiv = 0
For 1 , sumdiv = 3
For 2 , sumdiv = 13
For 3 , sumdiv = 30
</code></pre>
<p>The trick is very simple, you want to sum multiples of 7,</p>
<p>To get the ith multiple of 7, it's just <code>i*7</code></p>
<p><code>range</code> is a python function to get a list of numbers from 0 to <code>x</code></p>
<p><code>sum</code> sums a list.</p>
<p>Just put these pieces together</p>
http://stackoverflow.com/questions/1746382/less-restrictive-gpl-like-license2less-restrictive GPL-like licensehasen j2009-11-17T03:21:28Z2009-11-17T05:45:33Z
<h3>Situation:</h3>
<p>I want to pick a license for an open-source project. </p>
<p>Having considered GPL vs BSD/MIT, I prefer GPL because it protects the open-source-ness of software. However, I prefer something less restrictive. </p>
<p>I'm particularly amused at the fact that different versions of GPL are not compatible!!</p>
<p>I want the software to stay FOSS, but I don't want licensing issues to stand in the way of making it possible to incorporate the source-code into other FOSS projects.</p>
<h3>Requirements:</h3>
<ol>
<li>FOSS (Free / Open Source)</li>
<li>Prevents incorporating into closed-source software</li>
<li>Doesn't prevent incorporating into open-source software that has another license</li>
</ol>
<p><strong>Is there such a license?</strong></p>
<h3>Potential issues:</h3>
<p>I know that #3 and #2 might seem contradictory, but I think there are ways around it, for instance, word the license so that:</p>
<ul>
<li>If you incorporate into FOSS software that uses gpl-like* license, you may re-license to that license</li>
<li>Otherwise, you may not change the license</li>
</ul>
<p>Where gpl-like is any FOSS license that requires the whole project to be under the same license.</p>
<h3>Please note:</h3>
<p>This question is about whether or not there is such a license at all. It's not an attempt to create one.</p>
http://stackoverflow.com/questions/1727250/embedding-instead-of-inheritance-in-go/1727737#17277373Answer by hasen j for Embedding instead of inheritance in Gohasen j2009-11-13T07:42:49Z2009-11-13T07:42:49Z<p>The only real uses for inheritance are:</p>
<ul>
<li><p>Polymorphism</p>
<ul>
<li>Go's interface's "static duck typing" system solves this problem</li>
</ul></li>
<li><p>Borrowing implementation from another class</p>
<ul>
<li>This is what embedding is for</li>
</ul></li>
</ul>
<p>Go's approach doesn't exactly map 1-to-1, consider this classical example of inheritance and polymorphism in Java (<a href="http://pages.cpsc.ucalgary.ca/~schock/courses/w05/cpsc233/slides/polymorphism/after/" rel="nofollow">based on this</a>):</p>
<pre><code>//roughly in Java (omitting lots of irrelevant details)
//WARNING: don't use at all, not even as a test
abstract class BankAccount
{
int balance; //in cents
void Deposit(int money)
{
balance += money;
}
void withdraw(int money)
{
if(money > maxAllowedWithdrawl())
throw new NotEnoughMoneyException();
balance -= money;
}
abstract int maxAllowedWithdrawl();
}
class Account extends BankAccount
{
int maxAllowedWithdrawl()
{
return balance;
}
}
class OverdraftAccount extends BankAccount
{
int overdraft; //amount of negative money allowed
int maxAllowedWithdrawl()
{
return balance + overdraft;
}
}
</code></pre>
<p>Here, inheritance and polymorphism are combined, and you can't translate this to Go without changing the underlying structure.</p>
<p>I haven't delved deeply into Go, but I suppose it would look something like this:</p>
<pre><code>//roughly Go? .... no?
//for illustrative purposes only; not likely to compile
//
//WARNING: This is totally wrong; it's programming Java in Go
type Account interface
{
func addToBalance(int);
func maxWithdraw();
}
func Deposit(account *Account, amount int)
{
account.addToBalance(amount)
}
func Withdraw(account *Account, amount int)
{
if account.maxWithdraw() > amount
{
return os.Errno(1); // API?
}
account.addToBalance( -amount );
return os.Errno(0); // API?
}
type BankAccount
{
balance int;
}
func (account *BankAccount) addToBalance(int amount)
{
account.balance += amount;
}
type RegularAccount
{
*BankAccount;
}
func (account *RegularAccount) maxWithdraw()
{
return account.balance; //assuming it's allowed
}
type OverdraftAccount
{
*BankAccount;
overdraft int;
}
func (account *OverdraftAccount) maxWithdraw()
{
return account.balance + account.overdraft;
}
</code></pre>
<p>As per the note, this is totally a wrong way to code since one is doing Java in Go. If one was to write such a thing in Go, it would probably be organized a lot different than this.</p>
http://stackoverflow.com/questions/1721137/is-google-building-operating-system-using-go-would-you/1727173#17271730Answer by hasen j for Is Google building operating system using Go? Would you?hasen j2009-11-13T04:42:52Z2009-11-13T04:54:17Z<p>Aside from the FAQ entry that everyone has already pointed out,</p>
<p>Go is not suitable for writing a kernel: it doesn't allow pointer arithmetic, has no facilities for manual memory management. </p>
<p>The kernel has to manage memory, Go doesn't allow that.</p>
<p><strong>EDIT</strong>:</p>
<p>Actually I'm not so sure about that anymore. There's an <a href="http://golang.org/pkg/unsafe/#tmp%5F65" rel="nofollow">unsafe package</a> in the library that can defeat the type/safety system.</p>
http://stackoverflow.com/questions/1726130/go-code-contribution-license-and-patent-implications/1727100#17271000Answer by hasen j for Go code contribution: license and patent implications?hasen j2009-11-13T04:14:49Z2009-11-13T04:14:49Z<p>Disclaimer: I am not a lawyer</p>
<blockquote>
<p>Grant of Patent License.</p>
</blockquote>
<p>Means if you have a patent on something in your contribution, you allow Google to use it without worrying about IP crap.</p>
<p>In other words: </p>
<p>Patent License = Permission to use the "patented technology" (if any).</p>
<p>It's irrecoverable: meaning you can't change your mind later.</p>
http://stackoverflow.com/questions/1725975/no-symbol-table-in-go/1726027#172602711Answer by hasen j for No symbol table in Go?hasen j2009-11-12T23:05:00Z2009-11-12T23:05:00Z<p>Parsing means just figuring out the program structure: separating the module into statements/declarations, breaking expressions down to sub-expressions, etc. You end up with a tree structure, known as a "parse tree", or "abstract syntax tree" (AST).</p>
<p>Apparently, C++ requires a symbol table to do parsing.</p>
<p>This page discusses some reasons <a href="http://compilers.iecc.com/comparch/article/98-07-199" rel="nofollow">why C++ requires a symbol table for parsing</a>.</p>
<p>Of course, parsing is only a part of compilation, and you will need a symbol table to do a full compilation. </p>
<p>However, parsing itself can be useful in writing analysis tools (e.g. which module imports which modules). So, simplifying the parsing process means it's easier to write code analysis tools.</p>
http://stackoverflow.com/questions/1720057/git-config-style-configuration-system0git-config style configuration systemhasen j2009-11-12T05:18:29Z2009-11-12T13:33:59Z
<p>What system does <code>git-config</code> use to manage configuration? Is it something that's publicly available as a stand-alone library/tool? or is it tightly interwined into git?</p>
<p>I'd like to have something like it for my project.</p>
<p>Is there a library that I can use which provides similar functionality? Or should I just write my own tool/library?</p>
http://stackoverflow.com/questions/694477/getting-django-admin-url-for-an-object1Getting Django admin url for an objecthasen j2009-03-29T11:19:22Z2009-11-12T09:28:14Z
<p>Before Django 1.0 there was an easy way to get the admin url of an object, and I had written a small filter that I'd use like this: <code><a href="{{ object|admin_url }}" .... > ... </a></code></p>
<p>Basically I was using the url reverse function with the view name being <code>'django.contrib.admin.views.main.change_stage'</code></p>
<pre><code>reverse( 'django.contrib.admin.views.main.change_stage', args=[app_label, model_name, object_id] )
</code></pre>
<p>to get the url.</p>
<p>As you might have guessed, I'm trying to update to the latest version of Django, and this is one of the obstacles I came across, that method for getting the admin url doesn't work anymore.</p>
<p>How can I do this in django 1.0? (or 1.1 for that matter, as I'm trying to update to the latest version in the svn).</p>
http://stackoverflow.com/questions/1712172/whats-your-take-on-the-programming-language-go/1712784#171278416Answer by hasen j for What's your take on the programming language Go?hasen j2009-11-11T03:18:49Z2009-11-11T09:43:56Z<p>First thought: wow, D done right! Proper mix of Python and C.</p>
<p>After watching the <a href="http://www.youtube.com/watch?v=rKnDgT73v8s" rel="nofollow">TechTalk</a>:</p>
<ul>
<li>Syntax is a bit ugly (could be prettier)
<ul>
<li>Don't like <code>:=</code> syntax</li>
<li>You still need <code>for i = 0; i < 10; i++</code>?? seriously?</li>
<li>Too many braces, stars, ampersands. </li>
</ul></li>
<li>The interface thing is brilliant! Can't wait to use it.</li>
<li>The channel concept is interesting, not sure what to think about it though.</li>
</ul>
http://stackoverflow.com/questions/1692152/good-solution-to-the-preventing-default-button-on-form-from-firing-problem/1692181#16921812Answer by hasen j for Good solution to the 'preventing default button on form from firing' problem?hasen j2009-11-07T06:13:16Z2009-11-07T06:28:15Z<p>One thing you could do is:</p>
<ul>
<li>Set the submit action to <code>javascript: return false;</code> </li>
<li>Don't create a submit button</li>
<li>Create another button that does the sending; it calls a function that changes the action on the form to the real address and then calls <code>submit()</code> on the form object.</li>
</ul>
<p>e.g. something like this:</p>
<pre><code><form id="myform" action="javascript: return false">
....
<input type="button" onclick="submit_myform">
...
function submit_myform()
{
jQuery("#myform").attr("action", "post.php").submit(); //untested
}
</code></pre>
<p>This way, there's no way to submit the form other than explicitly hitting this button.</p>
http://stackoverflow.com/questions/1670499/experience-with-django/1670549#16705493Answer by hasen j for Experience with Djangohasen j2009-11-03T22:28:01Z2009-11-03T22:28:01Z<p>warning: shameless self promotion follows</p>
<p>I use django, and I've written up a bit about <a href="http://hasenj.wordpress.com/2009/04/11/the-problem-with-django/" rel="nofollow">my experience with it</a>.</p>
<p>It's not bad, it gives you a great starting point, but at some time in the future, you'll find yourself fighting it, or doing things without its help, because it's easier that way.</p>
<p>For instance, the automatic admin interface is fine for simple things, but eventually you'll want to create a very costumized interface for managing your website, and the auto admin site just won't cut it.</p>
http://stackoverflow.com/questions/1886055/is-it-wrong-to-charge-for-web-appComment by hasen j on is it wrong to charge for web app ?hasen j2009-12-11T05:54:54Z2009-12-11T05:54:54Zfree software and open source is not about not charging for your work.http://stackoverflow.com/questions/1828654/programmer-friendly-search-engine/1853936#1853936Comment by hasen j on Programmer-friendly search engine?hasen j2009-12-11T01:47:27Z2009-12-11T01:47:27Zif only google's engine was open source ...http://stackoverflow.com/questions/1877505/how-to-pick-a-language-for-artificial-intelligence-programming/1877589#1877589Comment by hasen j on How to pick a language for Artificial Intelligence Programming?hasen j2009-12-10T23:33:21Z2009-12-10T23:33:21Z+1 for cool people develop on linuxhttp://stackoverflow.com/questions/465006/can-you-recommend-a-java-decompiler-and-ui-for-linux/465024#465024Comment by hasen j on Can you recommend a Java Decompiler and UI for Linux ?hasen j2009-12-10T22:22:45Z2009-12-10T22:22:45Zfrom the jadclipse wiki, the link to jad is <a href="http://www.varaneckas.com/jad" rel="nofollow">varaneckas.com/jad</a>http://stackoverflow.com/questions/465006/can-you-recommend-a-java-decompiler-and-ui-for-linux/465024#465024Comment by hasen j on Can you recommend a Java Decompiler and UI for Linux ?hasen j2009-12-10T22:22:08Z2009-12-10T22:22:08Zthe Jad link is deadhttp://stackoverflow.com/questions/1871240/c-pointer-arithmetic-for-2d-arraysComment by hasen j on C pointer arithmetic for 2D arrayshasen j2009-12-09T06:12:57Z2009-12-09T06:12:57ZI don't see anything wrong with this question; after all it's what SO is intended for, is it not? (if we ignore the possibility of it being homework).http://stackoverflow.com/questions/11127/in-c-windows-how-do-i-get-the-network-name-of-the-computer-im-on/1870523#1870523Comment by hasen j on In C++/Windows how do I get the network name of the computer I'm on?hasen j2009-12-08T23:14:31Z2009-12-08T23:14:31Zedited for code, but yea, you shouldn't post a qestion as an answer to another question!! specially an old one!http://stackoverflow.com/questions/428486/what-are-some-of-the-things-you-hate-about-your-favorite-editor-ide/571812#571812Comment by hasen j on What are some of the things you hate about your favorite editor/IDE?hasen j2009-12-08T15:23:16Z2009-12-08T15:23:16Zwell actually it's not my favorite any more; I switched to vimhttp://stackoverflow.com/questions/1851443/fast-simple-programmers-editor/1851452#1851452Comment by hasen j on Fast, Simple Programmer's Editorhasen j2009-12-07T01:51:34Z2009-12-07T01:51:34ZAre you insane? yes vim rocks, but it's the <i>wrong</i> answer to this questionhttp://stackoverflow.com/questions/686216/what-code-would-you-have-on-your-wedding-cake/686854#686854Comment by hasen j on What code would you have on your wedding cake?hasen j2009-12-06T03:05:33Z2009-12-06T03:05:33Zsimple, change it to <code>if girl is self.wife</code>http://stackoverflow.com/questions/686216/what-code-would-you-have-on-your-wedding-cake/686938#686938Comment by hasen j on What code would you have on your wedding cake?hasen j2009-12-06T03:01:01Z2009-12-06T03:01:01Zmissing the return statement; where's the Happiness instance?http://stackoverflow.com/questions/686353/c-random-float/1850926#1850926Comment by hasen j on C++ random floathasen j2009-12-05T03:56:33Z2009-12-05T03:56:33Zinteresting approach, I'd like to upvote but, I really don't understand what's going onhttp://stackoverflow.com/questions/1829966/oop-how-to-choose-a-possible-object-candidateComment by hasen j on OOP - How to choose a possible object candidate?hasen j2009-12-03T14:43:32Z2009-12-03T14:43:32ZPossible duplicate: <a href="http://stackoverflow.com/questions/1819444/oop-when-is-it-an-object" rel="nofollow" title="oop when is it an object">stackoverflow.com/questions/1819444/…</a>http://stackoverflow.com/questions/1829966/oop-how-to-choose-a-possible-object-candidate/1830016#1830016Comment by hasen j on OOP - How to choose a possible object candidate?hasen j2009-12-02T15:32:59Z2009-12-02T15:32:59ZThanks! I will try to shorten it a bit.
Providing sweet APIs is a whole field of art in and of itself. I mean, any programmer can come up with an API like the DOM, but how many people could come up with API like jQuery?http://stackoverflow.com/questions/1830024/is-this-an-efficient-way-to-convert-html-to-text-using-jqueryComment by hasen j on Is this an efficient way to convert HTML to text using jQuery?hasen j2009-12-02T01:11:31Z2009-12-02T01:11:31ZThe question is not clear ..