User tj9991 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T08:14:40Zhttp://stackoverflow.com/feeds/user/1662http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/24692/where-can-you-find-fun-educational-programming-challenges39Where can you find fun/educational programming challenges?tj99912008-08-23T23:08:03Z2009-11-22T05:09:34Z
<p>I've searched around for different challenge sites, and most of them seem to be geared towards difficulty in problem solving logically, rather than trying to use your language of choice to do something you haven't used it for. Their center is around mathematics rather than function design.</p>
<p>Some kind of point system for correctly solving challenges, or solving them the most efficient/smallest would be neat as well.</p>
<h2>Listed sites</h2>
<ul>
<li><strong><a href="http://projecteuler.net/" rel="nofollow">Project Euler</a></strong></li>
<li><a href="http://www.topcoder.com/tc" rel="nofollow">TopCoder</a></li>
<li><a href="http://icpcres.ecs.baylor.edu/onlinejudge/index.php" rel="nofollow">UVa Online Judge</a></li>
<li><a href="http://www.pythonchallenge.com/" rel="nofollow">Challenges with Python</a></li>
<li><a href="http://code.google.com/codejam/" rel="nofollow">Google Code Jam</a></li>
<li><a href="http://www.programming-challenges.com/pg.php?page=index" rel="nofollow">Programming Challenges</a></li>
<li><a href="http://forum.lessthandot.com/viewforum.php?f=102" rel="nofollow">Less Than Dot</a></li>
<li><a href="http://cm2prod.baylor.edu/" rel="nofollow">ACM's Programing Contest archive</a></li>
<li><a href="http://train.usaco.org/usacogate" rel="nofollow">USACO problems</a></li>
<li><a href="http://www.itasoftware.com/careers/SolveThisWorkHerePuzzles.html" rel="nofollow">ITA Software's puzzle page</a></li>
<li><a href="http://refactormycode.com/" rel="nofollow">Refactor My Code</a></li>
<li><a href="http://www.rubyquiz.com/" rel="nofollow">Ruby Quiz</a></li>
</ul>
http://stackoverflow.com/questions/1599060/how-can-i-get-an-accurate-utc-time-with-python1How can I get an accurate UTC time with Python?tj99912009-10-21T06:34:31Z2009-11-11T14:29:05Z
<p>I wrote a desktop application and was using <code>datetime.datetime.utcnow()</code> for timestamping, however I've recently noticed that some people using the application get wildly different results than I do when we run the program at the same time. Is there any way to get the UTC time locally without using urllib to fetch it from a website?</p>
http://stackoverflow.com/questions/23738/why-is-peer-to-peer-programming-a-hard-topic-to-obtain-good-research-for0Why is Peer-to-Peer programming a hard topic to obtain good research for?tj99912008-08-22T23:28:23Z2009-09-14T08:22:41Z
<p>After reading a bit more about how Gnutella and other P2P networks function, I wanted to start my own peer-to-peer system. I went in thinking that I would find plenty of tutorials and language-agnostic guidelines which could be applied, however I was met with a vague simplistic overview.</p>
<p>I could only find very small, precise P2P code which didn't do much more than use client/server architecture on all users, which wasn't really what I was looking for. I wanted something like Gnutella, but there doesn't seem to be any articles out in the open for joining the network.</p>
http://stackoverflow.com/questions/27567/where-can-i-learn-more-about-pypys-translation-function3Where can I learn more about PyPy's translation function?tj99912008-08-26T08:40:28Z2009-06-25T02:07:47Z
<p>I've been having a hard time trying to understand PyPy's translation. It looks like something absolutely revolutionary from simply reading the description, however I'm hard-pressed to find good documentation on actually translating a real world piece of code to something such as LLVM. Does such a thing exist? The official PyPy documentation on it just skims over the functionality, rather than providing anything I can try out myself.</p>
http://stackoverflow.com/questions/110641/how-do-you-code-the-hello-world-program-in-your-favourite-language/110912#1109121Answer by tj9991 for How do you code the "Hello World!" program in your favourite language?tj99912008-09-21T12:35:45Z2008-10-25T08:12:05Z<p>My favorite language in the world, Haskell:</p>
<pre><code>main :: IO ()
main = putStrLn "Hello World!"
</code></pre>
http://stackoverflow.com/questions/25636/what-is-the-best-way-to-learn-assembly-specifically-for-someone-who-has-experi12What is the best way to learn Assembly? Specifically, for someone who has experience in dynamic languages.tj99912008-08-25T03:57:45Z2008-09-25T17:32:09Z
<p>I've been using Python for quite some time now, and I absolutely love the ease of use and flexibility, but I really want to get closer to the hardware for some iter mathematics that I'm working on. I'm also intrigued by being so close to the hardware, with absolutely nothing holding you back from using everything it has.</p>
<p>I've researched for introductions to Assembly and to me they go much faster than they should. They jump straight into registers and operations without explaining what exactly they are, and why they matter.</p>
<p>I'd love to see an in-depth introduction to Assembly, to make sure you understand the concepts before proceeding to any kind of programming with it.</p>
http://stackoverflow.com/questions/113906/which-gui-toolkit-would-you-use-for-a-touchscreen-interface/113957#1139570Answer by tj9991 for Which GUI toolkit would you use for a touchscreen interface?tj99912008-09-22T09:22:29Z2008-09-22T09:22:29Z<p>I work at Little Caesars, and all orders are handled through the computer system. They use a touch screen interface which resembles a blown-up version of normal forms. Buttons are about 20x larger than what you would normally get, and text is enlarged quite a bit as well. It looked rather simple and I doubt they used a special framework for it. I recommend you give that a shot, using a standard toolkit.</p>
http://stackoverflow.com/questions/68283/view-edit-mp3-id3-data-in-c/68306#683066Answer by tj9991 for View/edit MP3 id3 data in C#tj99912008-09-16T00:44:21Z2008-09-16T00:44:21Z<p><a href="http://developer.novell.com/wiki/index.php/TagLib_Sharp" rel="nofollow">TagLib Sharp</a> has support for reading ID3 tags.</p>
http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/53505#535051Answer by tj9991 for How to check if the given string is palindrome?tj99912008-09-10T06:08:15Z2008-09-10T06:08:15Z<p>I had to do this for a programming challenge, here's a snippet of my Haskell:</p>
<pre><code>isPalindrome :: String -> Bool
isPalindrome n = (n == reverse n)
</code></pre>
http://stackoverflow.com/questions/34020/are-python-threads-buggy/34024#340240Answer by tj9991 for Are python threads buggy?tj99912008-08-29T05:50:47Z2008-08-29T05:50:47Z<p>I've used it in several applications and have never had nor heard of threading being anything other than 100% reliable, as long as you know its limits. You can't spawn 1000 threads at the same time and expect your program to run properly on Windows, however you can easily write a worker pool and just feed it 1000 operations, and keep everything nice and under control.</p>
http://stackoverflow.com/questions/29126/php-frameworks-for-simplifying-crud/29129#291291Answer by tj9991 for PHP frameworks for simplifying CRUDtj99912008-08-26T22:45:36Z2008-08-26T22:45:36Z<p>I highly recommend <a href="http://www.crudphp.com/" rel="nofollow">CrudPHP</a> as you won't get the overhead of using a larger framework which wasn't intended specifically for CRUD operations.</p>
http://stackoverflow.com/questions/22128/where-can-open-source-developers-showcase-their-projects-and-ask-for-help-with4Where can open source developers "showcase" their projects and ask for help with development?tj99912008-08-22T11:50:58Z2008-08-26T13:54:02Z
<p>After not having much luck with writing to the Python mailing list, I've been on a search for the appropriate place to post my project to and receive developer support. I don't want to blacklist it by posting it to a general site and make it appear as spamming, but I also want to make sure it gets seen by as many developers with experience in that particular field.</p>
http://stackoverflow.com/questions/27568/assembler-ide-simulator-for-beginner/27573#275732Answer by tj9991 for Assembler IDE/Simulator for beginnertj99912008-08-26T08:43:38Z2008-08-26T08:43:38Z<p>You may be interested in <a href="http://retrospec.sgn.net/game.php?link=z80asm" rel="nofollow">this</a> for a Z80 simulator, and I've had good experiences with <a href="http://www.winasm.net/" rel="nofollow">WinAsm</a>.</p>
http://stackoverflow.com/questions/27516/whats-the-difference-between-programmer-and-software-engineer/27520#275201Answer by tj9991 for What's the difference between programmer and software engineer?tj99912008-08-26T07:38:08Z2008-08-26T07:38:08Z<p>You'll find that a lot of non tech-savvy companies will favor "software engineer" as it does have a professional ring to it. My skills were questioned when I applied as a programmer, when they told me they were seeking a software engineer. I believe that software engineer isn't an exact synonym to programmer, but rather a seasoned programmer.</p>
<p>There seems to be a lot of discussion on the topic, as displayed on the relevant <a href="http://en.wikipedia.org/wiki/Debates_within_software_engineering" rel="nofollow">wikipedia article</a>.</p>
http://stackoverflow.com/questions/27509/detecting-an-undefined-object-property-in-javascript/27510#275102Answer by tj9991 for Detecting an undefined object property in JavaScripttj99912008-08-26T07:27:57Z2008-08-26T07:27:57Z<pre><code>if (somevariable == undefined) {
alert('the variable is not defined!');
}
</code></pre>
<p>You can also make it into a function, as shown <a href="http://verens.com/archives/2005/07/25/isset-for-javascript/" rel="nofollow">here</a>:</p>
<pre><code>function isset(varname){
return(typeof(window[varname]) != 'undefined');
}
</code></pre>
http://stackoverflow.com/questions/27506/what-motivates-you-more-individual-rewards-or-team-rewards/27507#275077Answer by tj9991 for What motivates you more - individual rewards or team rewards?tj99912008-08-26T07:23:46Z2008-08-26T07:23:46Z<p>If I'm working with people who I know are competent and have a purpose there, I prefer team rewards, because of the shared success. However, I've been placed with far too many people who don't belong, and in those cases, individual reward is highly preferred.</p>
http://stackoverflow.com/questions/27444/virtualbox-to-use-dual-monitors/27453#274532Answer by tj9991 for VirtualBox to use dual monitorstj99912008-08-26T05:34:59Z2008-08-26T05:34:59Z<p><a href="http://ubuntuforums.org/showthread.php?t=433359" rel="nofollow">This</a> should help.</p>
http://stackoverflow.com/questions/27435/mysql-vs-postgresql-for-web-applications/27443#274430Answer by tj9991 for MySQL vs PostgreSQL for Web Applicationstj99912008-08-26T05:23:03Z2008-08-26T05:23:03Z<p>If you are writing an application which may get distributed quite a bit on different servers, MySQL carries a lot of weight over PostgreSQL because of the portability. PostgreSQL is difficult to find on less than satisfactory web hosts, albet there are a few. In most regards, PostgreSQL is slower than MySQL, especially when it comes to fine tuning in the end. All in all, I'd say to give PostgreSQL a shot for a short amount of time, that way you aren't completely avoiding it, and then make a judgement.</p>
http://stackoverflow.com/questions/25661/pygame-within-a-pygtk-application/25761#257610Answer by tj9991 for pyGame within a pyGTK applicationtj99912008-08-25T08:08:46Z2008-08-25T08:08:46Z<p>You may be interested in <a href="http://www.daa.com.au/pipermail/pygtk/2006-September/012888.html" rel="nofollow">this message thread</a>. Looks like they recommend against it.</p>
http://stackoverflow.com/questions/24675/tactics-for-using-php-in-a-high-load-site/24679#246795Answer by tj9991 for Tactics for using PHP in a high-load sitetj99912008-08-23T22:45:58Z2008-08-23T22:45:58Z<p><a href="http://us.php.net/apc" rel="nofollow">APC</a> is an absolute must. Not only does it make for a great caching system, but the gain from the auto-cached PHP files is a godsend. As for the multiple database idea, I don't think you would get much out of having different databases on the same server. It may give you a bit of a gain in speed during query time, but I doubt the effort it would take to deploy and maintain the code for all three while making sure they are in sync would be worth it.</p>
<p>I also highly recommend running <a href="http://www.xdebug.org/" rel="nofollow">Xdebug</a> to find bottlenecks in your program. It made optimization a breeze for me.</p>
http://stackoverflow.com/questions/22259/how-do-i-resize-and-convert-an-uploaded-image-to-a-png-using-gd/22267#222670Answer by tj9991 for How do i resize and convert an uploaded image to a PNG using GDtj99912008-08-22T12:57:24Z2008-08-22T12:57:24Z<p><a href="http://www.phpit.net/article/image-manipulation-php-gd-part2/" rel="nofollow">This article</a> seems like it would fit what you want. You'll need to change the saving imagejpeg() function to imagepng() and have it save the file to a string rather than output it to the page, but other than that it should be easy copy/paste into your existing code.</p>
http://stackoverflow.com/questions/22211/web-framework-programming-mindset/22233#222330Answer by tj9991 for Web framework programming mindsettj99912008-08-22T12:47:09Z2008-08-22T12:47:09Z<p>If you aren't absolutely set on diving into Django and don't mind trying something else as a start, you might want to give <a href="http://www.python.org/dev/peps/pep-0333/" rel="nofollow">WSGI</a> a shot, which allows you to template your application your own way using a <a href="http://pypi.python.org/pypi/Tenjin/0.6.2" rel="nofollow">third party engine</a>, rather than having to go exactly by Django's rules. This also allows you to peek at a lower level of handling requests, so you get a bit better understanding of what Django is doing under the hood.</p>
http://stackoverflow.com/questions/22088/why-do-the-others-think-you-can-fix-their-computer/22097#220974Answer by tj9991 for Why do 'the others' think you can fix their computer?tj99912008-08-22T11:25:42Z2008-08-22T11:25:42Z<p>Most of the people who I've spoken with which suffer from "OH YOU WORK WITH COMPUTERS WELL I'VE BEEN HAVING SOME TROUBLE ACCESSING MY YAHOO ACCOUNT" think that there is some kind of unified computer savvy intellect. By working with computers in your profession, and using them for more than talking with friends and sending E-mails, you become an instant guru who fights bugs and hackers by day and writes "machine code" on coffee binges at night.</p>
<p>Old people suffer from this doublish so.</p>
http://stackoverflow.com/questions/22072/from-desktop-to-web-browser-considerations/22082#220821Answer by tj9991 for From Desktop to Web browser considerationstj99912008-08-22T11:15:14Z2008-08-22T11:15:14Z<p>The only real thing which would help you that comes to mind is using the <a href="http://validator.w3.org/" rel="nofollow">W3 Validator</a> often. Rather than writing everything and then either never trying to get the page to validate, or waiting until the end to write in tons of small fixes to get the page to validate, you can just make sure you are writing HTML in a standard way which will work on nearly all compliant browsers. Plus, you get to put a neat link on your page to show off you took the effort to follow the web standards.</p>
http://stackoverflow.com/questions/22051/free-and-or-open-source-security-software/22064#220641Answer by tj9991 for Free (and/or open source) security softwaretj99912008-08-22T10:53:48Z2008-08-22T10:53:48Z<p>I've used <a href="http://ophcrack.sourceforge.net/" rel="nofollow">Ophcrack</a> before on a few client's computers, and it works wonders. As for a free and decent forensics package for Windows, I've yet to find one. I'll be watching this to see if anyone can dig one up.</p>
http://stackoverflow.com/questions/22015/openid-as-a-single-sign-on-option/22057#220574Answer by tj9991 for OpenID as a Single Sign On option??tj99912008-08-22T10:47:25Z2008-08-22T10:47:25Z<p>I have to say that I absolutely agree with the statements on it being too difficult for the "average" Internet user. I think that OpenID could still be considered "new", even though the original proposal was back in 2005. More high traffic sites are taking it up as just an option for creating an account, rather than requiring users to have an OpenID present.</p>
<p>In my opinion, as long as normal username/password account creation is offered alongside OpenID, average Internet users will naturally begin to try and eventually stick with using OpenID.</p>
<p>The authentication issues apply just as much to OpenID as registering on any website. You put your trust in the website with your password (assuming you do not use a password storage program) so that shouldn't be used against OpenID.</p>
<p>All that aside, the standardization of account creation is absolutely cream gravy to a web developer. I'd just love to not even have to worry about the normal creation process, and rather just drop in an OpenID library and reference it to the database.</p>
http://stackoverflow.com/questions/68323/what-is-the-best-way-to-implement-soft-deletion/68328#68328Comment by tj9991 on What is the best way to implement soft deletion?tj99912008-09-16T00:51:12Z2008-09-16T00:51:12ZThis is what I did with one of my projects. It works well.