User Jekke - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T04:00:44Zhttp://stackoverflow.com/feeds/user/5287http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/537689/python-ide-built-into-visual-studio-2008/537755#5377553Answer by Jekke for Python IDE built into Visual Studio 2008?Jekke2009-02-11T16:54:35Z2009-12-15T01:32:19Z<p>Provided that you have Visual Studio 2008 and the VS 2k8 Shell Integrated Redistributable package, IronPython Studio Integrated will plug into the VS 2k8 IDE.</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=40646580-97FA-4698-B65F-620D4B4B1ED7&displaylang=en" rel="nofollow">Visual Studio 2008 Shell (Integrated)</a></p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c6a64e02-6fd6-41e3-a3fd-399d174a84b7&displaylang=en" rel="nofollow">Visual Studio 2010 beta 2 Shell (Integrated)</a></p>
http://stackoverflow.com/questions/202946/missing-componentone-licenses-licx-file1Missing ComponentOne licenses.licx fileJekke2008-10-14T21:38:13Z2009-11-30T21:58:39Z
<p>I'm working on an application that makes extensive use of ComponentOne's C1FlexGrid. Of the dozens we use, three are missing their licenses.licx file and cause the demo splash screen to pop up while I'm starting the application.</p>
<p>Is there any way to determine which forms are causing this behavior. Short of checking hundreds of directories by hand, I don't see a way.</p>
http://stackoverflow.com/questions/513170/choosing-a-technology-stack-for-a-small-budget-conscious-business/513270#51327023Answer by Jekke for Choosing a technology stack for a small 'budget conscious' businessJekke2009-02-04T20:51:20Z2009-09-16T20:22:00Z<p>Let me get this bit off my chest before answering your question:</p>
<p>Any company that's not willing to pay for the technology needed to implement the solutions it demands is invariably also failing to pay its developers enough to put up with that level of bushwah.</p>
<p>Maybe you're at a non-profit whose cause you embrace and get so much job satisfaction that the money doesn't matter. For that matter, maybe you're working at a start-up that is paying you in sweat equity that will potentially make you a millionaire on the IPO. If it's the latter, I'd still be wary. Stinginess on IT is a sure sign of pending failure for a start-up.</p>
<p>One of the reasons the world has not rushed to universally embrace OSS is because of something called "total cost of ownership." If you pay a developer US$20,000 to implement a solution that saves you from spending US$5,000 on a license, that's a bad investment.</p>
<p>The advice that comes next is probably only of limited utility because companies that won't pay for software are rarely generous with the developer hours needed to make the solution fit their budget. We can guide you on what you need to do, but not what your bosses are going to let you get away with.</p>
<p>For scalability on the DB side, I would look towards getting away from SQL Server all together in favor of a free-as-in-beer DBMS like PostgresSQL or Firebird. Of the two, PostgresSQL is probably the best choice based entirely on how many ISPs have come to rely on it.</p>
<p>With ASP.net, you again run into the problem of licensing fees. Any of the free .net tools come with a license restricting how you can distribute the code you create using them. And, as you hinted at, any significant solution will probably require server licenses and the like, which means money. ASP classic is a dying, deprecated technology that will only become harder to use to implement modern solutions. PHP and Ruby-on-Rails, in comparison, are modern, supported, and free.</p>
<p>But, my real advice is this: use the technology that will look best on your resume. Spend the next few months filling in the holes in your knowledge. Then, get out. You're almost certainly a better developer than you've been led to believe and you can do better.</p>
http://stackoverflow.com/questions/1224537/why-is-visual-sourcesafe-viewed-so-poorly7Why is Visual SourceSafe viewed so poorly?Jekke2009-08-03T20:45:23Z2009-08-27T03:56:57Z
<p>I'm interviewing this week for a position at a firm where I would be the sole initial developerplus support the application I am taking over work for. Because positions like this can vary so wildly in the details, I plan to go in advocating a number of specific approaches that would make the job workable.</p>
<p>One thing that I'm considering bringing up is an inclination to move the existing source code out of SourceSafe (where it is currently resident) into a better version control product like Perforce.</p>
<p>I've had a number of bad experiences with SourceSafe causing massive problems like permanent file lock-out and code corruption. Alone, I'm afraid that those anecdotes sound like "I want to change it because I don't like it." If I'm going to bring the subject up, I want to have a slam dunk case.</p>
<p>So, what are the empirical reasons that SourceSafe is viewed as an inferior product?</p>
<p><hr /></p>
<h3>See also:</h3>
<blockquote>
<ul>
<li><a href="http://stackoverflow.com/questions/520926/any-real-life-visual-source-safe-horror-stories">Any Real-Life Visual Source Safe Horror Stories</a></li>
<li><a href="http://stackoverflow.com/questions/115493/how-do-i-convince-my-team-to-drop-sourcesafe-and-move-to-svn">How do I convince my team to drop sourcesafe and move to SVN?</a></li>
</ul>
</blockquote>
http://stackoverflow.com/questions/1246196/what-does-the-runtime-do-with-xaml-namespaces0What does the runtime do with XAML namespaces?Jekke2009-08-07T18:03:50Z2009-08-07T19:46:03Z
<p>In every XAML document, there are one or more namespace declarations. ie:</p>
<pre><code><Window x:Class="WindowsApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1 Height="300">
</code></pre>
<p>The declarations are in the form of a URL, leading me to ask: Does the runtime actually retrieve information from those URLs when the application loads? What happens if no Internet connection is present?</p>
http://stackoverflow.com/questions/1238771/timer-class-and-c/1238782#12387821Answer by Jekke for Timer class and c#Jekke2009-08-06T13:13:12Z2009-08-06T13:13:12Z<p>When the timer fires, check the time and whether the function has run that day. If the time is after 20:00 and the function hasn't been called, call it. Otherwise, exit and wait for the next event.</p>
<p>Also, keep in mind that the forms timer and System.Threading.Timer work slightly differently.</p>
http://stackoverflow.com/questions/1236540/how-do-i-use-pil-with-tkinter1How do I use PIL with Tkinter?Jekke2009-08-06T01:25:27Z2009-08-06T03:40:18Z
<p>I'm missing something at a very basic level when it comes to loading an image using PIL and displaying it in a window created by Tkinter. The simplest form of what I'm trying to do is:</p>
<pre><code>import Tkinter as TK
from PIL import Image, ImageTk
im = Image.open("C:\\tinycat.jpg")
tkIm = ImageTk.PhotoImage(im)
tkIm.pack()
TK.mainloop()
</code></pre>
<p>When I try to run the code above, I get the following:</p>
<pre><code>RuntimeError: Too early to create image
Exception AttributeError: "PhotoImage instance has no attribute
'_PhotoImage__photo'" in <bound method PhotoImage.__del__ of
<PIL.ImageTk.PhotoImage instance at 0x00C00030>> ignored
</code></pre>
<p>I've confirmed the file is present and can be opened in an image editor and also that it can be displayed using im.show(). What am I missing?</p>
http://stackoverflow.com/questions/538551/handling-very-large-numbers-in-python5Handling very large numbers in PythonJekke2009-02-11T20:13:45Z2009-08-05T18:27:36Z
<p>I've been considering fast poker hand evaluation in Python. It occurred to me that one way to speed the process up would be to represent all the card faces and suits as prime numbers and multiply them together to represent the hands. To whit:</p>
<pre><code>class PokerCard:
faces = '23456789TJQKA'
suits = 'cdhs'
facePrimes = [11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 53, 59, 61]
suitPrimes = [2, 3, 5, 7]
</code></pre>
<p>AND</p>
<pre><code> def HashVal(self):
return PokerCard.facePrimes[self.cardFace] * PokerCard.suitPrimes[self.cardSuit]
</code></pre>
<p>This would give each hand a numeric value that, through modulo could tell me how many kings are in the hand or how many hearts. For example, any hand with five or more clubs in it would divide evenly by 2^5; any hand with four kings would divide evenly by 59^4, etc.</p>
<p>The problem is that a seven-card hand like AcAdAhAsKdKhKs has a hash value of approximately 62.7 quadrillion, which would take considerably more than 32 bits to represent internally. Is there a way to store such large numbers in Python that will allow me to perform arithmetic operations on it?</p>
http://stackoverflow.com/questions/1224567/whats-the-state-of-the-art-in-python-programming-in-windows1What's the state-of-the-art in Python programming in Windows?Jekke2009-08-03T20:52:27Z2009-08-03T23:11:47Z
<p>I'm looking to set up my development environment at home for writing Windows applications in Python.</p>
<p>For my first piece, I'm writing a simple, forms-based application that stores data input as XML (and can read that information back.) I do want to set up the tools I'd use professionally, though, having already done a round of didactic programming.</p>
<p>What tools are professional python developers using these days? In order to have a working python environment, what version of the compiler should I be using? What editor is common for professionals? What libraries are considered a must-have for every serious python developer?</p>
<p>Specifically, which Windowing and XML libraries are de rigeur for working in Windows?</p>
http://stackoverflow.com/questions/424952/are-single-threaded-applications-a-dead-technology7Are single-threaded applications a dead technology?Jekke2009-01-08T16:35:49Z2009-07-22T10:43:21Z
<p>I just bought a new, sub-US$1,000 laptop, one aimed squarely at the consumer, non-developer market and, looking over the specs, was surprised to find that it came standard with a dual-core processor.</p>
<p>This led me to the question: with multicore machines becoming the norm, is it <em>ever</em> correct to write a single-threaded application anymore?</p>
<p>Excepting trivial applications, which can reasonably be expected to fit entirely within a single core of a single processor of the weakest system on which it will run, will an application which runs in all one thread be seriously degraded by the way modern OSs spread their execution across cores when no guidance is given by the application as to how to optimize such a split?</p>
http://stackoverflow.com/questions/927937/accessing-world-of-warcraft-data-from-the-web1Accessing World of Warcraft data from the web.Jekke2009-05-29T20:18:29Z2009-06-22T13:39:36Z
<p>This one is a little bit off-center, but SO is probably the best forum for getting a straight answer.</p>
<p>I'm aware of the WoW add-on programming community, but what I can find no documentation on is any API for accessing WoW's databases from the web. I see third-party sites like WoWHeroes.com and Wowhead use game data (item and character databases,) so I know it's possible. But, I can't figure out where to begin. Is there a web service I can use or are they doing some sort of under-the-hood work that requires running the WoW client in their server environment?</p>
http://stackoverflow.com/questions/971772/whats-the-best-way-to-move-to-a-new-perforce-server0What's the best way to move to a new Perforce server?Jekke2009-06-09T18:34:42Z2009-06-14T10:08:47Z
<p>My home Perforce server died. I set up a new one.</p>
<p>The project I set it up to support died in the planning phase. The contents of the depot at that point were some prototype code and we never got to setting up a disaster recovery plan.</p>
<p>The dev machines still have the existing code on them. As much as possible, I'd like the change of servers to be transparent to the developers--use the same depositories and the same directories, just change the name of the server to connect to and get back to work.</p>
<p>What do I need to do in order to make this happen?</p>
http://stackoverflow.com/questions/940678/tips-for-remotely-job-hunting-in-a-new-city5Tips for remotely job hunting in a new city.Jekke2009-06-02T16:59:05Z2009-06-02T17:36:23Z
<p>If you decided to look for a job in a new city where you have no professional contacts, how would you start?</p>
<p>I'm looking to move from New York to Las Vegas, but don't know any professional developers there. I started out trolling DICE for recruiters, but have no idea how to judge the quality of those recruiters or how well-connected they are, since many seem to cover the Los Angeles, Bay Area, and Las Vegas areas, which suggests that Vegas may be an afterthought.</p>
<p>It also occurred to me to contact the head of the local PC user's group's Windows developers' SIG.</p>
<p>Can anyone think of other avenues of exploration?</p>
http://stackoverflow.com/questions/935973/iphone-individual-developer-liability/936004#9360042Answer by Jekke for Iphone Individual Developer LiabilityJekke2009-06-01T18:11:00Z2009-06-01T18:11:00Z<p>This is one of those questions that really belongs on a forum for IP lawyers. I'm not a lawyer, so this is somewhat speculative and should not be taken as legal advice.</p>
<p>A good rule of thumb is that anything you put in the public domain can open you up to legal liability. Whether you put your name on an application or not is irrelevant to whether or not you can be sued.</p>
<p>The open source people often include some boilerplate that amounts to "No express or implied warranty on this application, not even a promise that it will work and not brick your phone." How effective this boilerplate is would need a lawyer's perspective.</p>
http://stackoverflow.com/questions/935827/how-do-you-write-tests-for-code-that-requires-duplicating-the-code-under-test/935844#9358441Answer by Jekke for How do you write tests for code that requires duplicating the code under test?Jekke2009-06-01T17:34:53Z2009-06-01T17:34:53Z<p>Hand calculating and hard-coding are bad in production code, but essential to good unit tests.</p>
<p>You generally want to write one test for each "state" of the code. For example, I often write tests with positive input, negative input, and zero input to make sure the code is working as expected.</p>
http://stackoverflow.com/questions/935378/python-doubt-about-the-difference-beetween-method-and-method/935399#9353990Answer by Jekke for Python: Doubt about the difference beetween "__method__" and "method"Jekke2009-06-01T15:46:23Z2009-06-01T15:46:23Z<p>Methods prefaced and prefixed with the double underscore are generally so marked to indicate that they are part of the Python language specification.</p>
http://stackoverflow.com/questions/935346/bll-errors-best-practise/935387#9353871Answer by Jekke for BLL errors best practiseJekke2009-06-01T15:44:32Z2009-06-01T15:44:32Z<p>The word "returning" is tricky here.</p>
<p>The primary virtue of multi-tier design is orthogonality. You should be able to call the classes in your BLL from an entirely different UI than the one you're currently using and handle logging completely differently.</p>
<p>If an exception is able to be handled without user intervention or notification, you should generally do so within the BLL. If the exception needs to be brought to the user's attention or logged, let it bubble up to the UI, which can implement notification and logging without building such things into the BLL.</p>
http://stackoverflow.com/questions/927884/web-app-or-desktop-app-which-is-easier-to-monetize/927904#9279040Answer by Jekke for Web app or Desktop app, which is easier to monetize?Jekke2009-05-29T20:13:35Z2009-05-29T20:13:35Z<p>If you're looking to make money with your application, I would say that web-based is so much easier because every potential client has access to the application as soon as you public it. Desktop applications require a supply chain that's much more work to create than any programming task I can think of.</p>
http://stackoverflow.com/questions/927031/serious-help-on-maintaining-an-ongoing-project/927066#9270668Answer by Jekke for Serious help on maintaining an ongoing projectJekke2009-05-29T16:59:15Z2009-05-29T16:59:15Z<p>The first step is to gather all the information currently available on their project and make sure it is properly secured--source control, documentation, etc.</p>
<p>If you find that information is missing, I recommend you reach out to the developers who left. Most professional developers have an interest in maintaining the code they've left behind and ones who've left to form their own firm may well have a vested interest in staying on good terms with your company.</p>
<p>Once you have a grasp of the state of the project(s) your previous developers were working on, bring it to management and ask for the necessary resources (new developers, etc.) They know the project took a number of people to support in the past. That number doesn't go down because the people left. In fact, it almost invariably goes up.</p>
http://stackoverflow.com/questions/926839/date-diff-in-asp-net/926876#9268761Answer by Jekke for date diff in asp.netJekke2009-05-29T16:19:46Z2009-05-29T16:19:46Z<p>Based on the comment, I choose that the date-time be stored as number of clock cycles since Jan 1, 1901. Now, it's a matter of simply subtracting one from the other, dividing by clock cycles per second, and further dividing by the coefficient appropriate to the unit of time you want measured (60 for minutes, 3600 for hours, 3600 * 24 for days, etc.)</p>
http://stackoverflow.com/questions/923209/can-i-tilt-an-image-easily-using-html-or-css/923227#9232271Answer by Jekke for can i tilt an image easily using HTML or CSS?Jekke2009-05-28T21:11:40Z2009-05-28T21:11:40Z<p>No. You can't.</p>
<p>Tilting images and text is still JavaScript juju.</p>
http://stackoverflow.com/questions/922722/can-a-web-application-really-be-object-oriented/922746#9227464Answer by Jekke for Can a Web Application really be Object Oriented?Jekke2009-05-28T19:27:36Z2009-05-28T19:27:36Z<p>If you think of objects as constructs for holding state information, the definition of "object oriented" becomes strained by the stateless nature of web requests. However, stateless objects are still objects and web applications can follow OO design principles within that context.</p>
http://stackoverflow.com/questions/922001/what-does-it-mean-for-an-application-to-be-bloated/922044#9220441Answer by Jekke for What does it mean for an application to be bloated?Jekke2009-05-28T17:03:27Z2009-05-28T17:03:27Z<p>"Bloated" for an application usually means "has more features than I personally will use." That's why applications like Microsoft Word get slapped with it all the time. For someone who would never use their word processor to generate a web page, the ability to do so is "bloat." For someone who only uses their word processor to generate web pages, the ability to do mail merge may be "bloat."</p>
<p>There's an argument to be made for smaller, more modular applications. But, for the most part, "bloated" = "feature rich."</p>
http://stackoverflow.com/questions/921471/why-java-people-frequently-consume-exception-silently/921522#9215220Answer by Jekke for Why java people frequently consume exception silently ?Jekke2009-05-28T15:33:40Z2009-05-28T15:33:40Z<p>As pointed out, calling printStackTrace() isn't really silent handling.</p>
<p>The reason for this sort of "swallowing" of the exception is that, if you keep passing the exception up the chain, you still have to handle the exception <strong>somewhere</strong> or let the application crash. So, handling it at the level it occurs with an information dump is no worse than handling it at the top level with an information dump.</p>
http://stackoverflow.com/questions/889560/how-do-i-filter-out-job-postings-especially-when-no-company-name-is-mentioned/889591#8895910Answer by Jekke for How do i filter out job postings? especially when no company name is mentioned?Jekke2009-05-20T18:52:23Z2009-05-20T18:52:23Z<p>The first step would be to avoid craigslist. My experience is that it's worse than useless for seeking programming jobs and crammed full of bottom-feeders, undercutters, and misleading come-ons. I've never heard of anyone getting a programming job they were happy with on Craig's List.</p>
<p>On a site like Dice.com, which is built for programmers and IT professionals, you'll find a much higher basic quality, some attempt at filtering out con artists and a much clearer writing style.</p>
http://stackoverflow.com/questions/889227/do-we-need-a-new-gof-book/889274#8892743Answer by Jekke for Do we need a new GoF book?Jekke2009-05-20T17:41:57Z2009-05-20T17:41:57Z<p>I doubt we need more books on Design Patterns. We just need to be aware that the knowledge available in the field of software construction is immense. I could easily rattle off twenty titles I think every developer should read and another thirty specific to what I do. </p>
<p>It simply take a while to absorb it all. So, it's not unreasonable for a developer who's been in the field for years to be missing certain concepts widely considered fundamental, like what a wrapper is.</p>
http://stackoverflow.com/questions/583708/how-do-you-refactor-a-class-that-is-constantly-being-edited8How do you refactor a class that is constantly being edited?Jekke2009-02-24T21:35:55Z2009-05-20T12:06:35Z
<p>Over the course of time, my team has created a central class that handles an agglomeration of responsibilities and runs to over 8,000 lines, all of it hand-written, not auto-generated.</p>
<p>The mandate has come down. We need to refactor the monster class. The biggest part of the plan is to define categories of functionality into their own classes with a has-a relationship with the monster class.</p>
<p>That means that a lot of references that currently read like this:</p>
<pre><code>var monster = new orMonster();
var timeToOpen = monster.OpeningTime.Subtract(DateTime.Now);
</code></pre>
<p>will soon read like this:</p>
<pre><code>var monster = new Monster();
var timeToOpen = monster.TimeKeeper.OpeningTime.Subtract(DateTime.Now);
</code></pre>
<p>The question is: How on Earth do we coordinate such a change? References to "orMonster" litter every single business class. Some methods are called in literally thousands of places in the code. It's guaranteed that, any time we make such a chance, someone else (probably multiple someone elses) on the team will have code checked out that calls the .OpeningTime property</p>
<p>How do you coordinate such a large scale change without productivity grinding to a halt?</p>
http://stackoverflow.com/questions/884534/copying-large-amounts-of-data-into-a-sql-ce-database1Copying large amounts of data into a SQL CE databaseJekke2009-05-19T19:16:38Z2009-05-20T04:24:36Z
<p>If I have a large amount of data in memory, what is the best way to copy it into a SQL CE table? The current technology stack is C#, ADO.net, and SQL CE.</p>
<p>My initial idea was to do one INSERT statement for each row of data, but this is time-consuming. Is there an easier way?</p>
http://stackoverflow.com/questions/884788/can-a-developer-be-held-responsible-for-a-clients-fradulent-activity-on-a-deliver/884805#8848051Answer by Jekke for can a developer be held responsible for a clients fradulent activity on a delivered websiteJekke2009-05-19T20:17:06Z2009-05-19T20:17:06Z<p>This is a question more appropriate to an attorney. The best a developer can do is guess.</p>
<p>That being said, my guess is that, if you know your work will be used to perpetuate fraud, it wouldn't be unheard of for someone to try to sue you.</p>
http://stackoverflow.com/questions/884732/enumerate-through-a-subset-of-a-collection-in-c/884756#8847560Answer by Jekke for Enumerate through a subset of a Collection in C#?Jekke2009-05-19T20:05:17Z2009-05-19T20:05:17Z<p>If you find that you need to do a fair amount of slicing and dicing of lists and collections, it might be worth climbing the learning curve into <a href="http://www.itu.dk/research/c5/" rel="nofollow">the C5 Generic Collection Library</a>.</p>
http://stackoverflow.com/questions/1224567/whats-the-state-of-the-art-in-python-programming-in-windowsComment by Jekke on What's the state-of-the-art in Python programming in Windows?Jekke2009-08-03T21:01:24Z2009-08-03T21:01:24Z@Ed Swangren I'd be happy to close the question if you point me to an existing thread where it was answered.http://stackoverflow.com/questions/1224567/whats-the-state-of-the-art-in-python-programming-in-windowsComment by Jekke on What's the state-of-the-art in Python programming in Windows?Jekke2009-08-03T20:57:39Z2009-08-03T20:57:39ZThe data is being consumed by another application that uses an XML-based file format.http://stackoverflow.com/questions/1224537/why-is-visual-sourcesafe-viewed-so-poorly/1224560#1224560Comment by Jekke on Why is Visual SourceSafe viewed so poorly?Jekke2009-08-03T20:53:27Z2009-08-03T20:53:27ZBut, why is it considered unreliable and "not up to modern standards?" What is it missing?http://stackoverflow.com/questions/940678/tips-for-remotely-job-hunting-in-a-new-city/940722#940722Comment by Jekke on Tips for remotely job hunting in a new city.Jekke2009-06-02T17:13:16Z2009-06-02T17:13:16ZI've worked with recruiters my whole career as well. I'm more concerned about lock-out from being submitted to the same job by multiple shops (as has happened in New York) than anything else.http://stackoverflow.com/questions/940678/tips-for-remotely-job-hunting-in-a-new-city/940727#940727Comment by Jekke on Tips for remotely job hunting in a new city.Jekke2009-06-02T17:11:37Z2009-06-02T17:11:37ZAwesome suggestion. Thank you.http://stackoverflow.com/questions/940678/tips-for-remotely-job-hunting-in-a-new-city/940723#940723Comment by Jekke on Tips for remotely job hunting in a new city.Jekke2009-06-02T17:10:34Z2009-06-02T17:10:34Z+1 for making me laugh. I think I'll save the advice for more desperate times, however.http://stackoverflow.com/questions/936983/how-do-i-use-a-regular-expression-to-add-linefeedsComment by Jekke on How do I use a regular expression to add linefeeds?Jekke2009-06-01T21:53:30Z2009-06-01T21:53:30ZDo you really want to do so every eighty characters or only do so on word breaks?http://stackoverflow.com/questions/927937/accessing-world-of-warcraft-data-from-the-webComment by Jekke on Accessing World of Warcraft data from the web.Jekke2009-05-29T22:00:32Z2009-05-29T22:00:32ZSo much good information, it's really a shame that I can only mark one answer as "accepted."http://stackoverflow.com/questions/926839/date-diff-in-asp-net/926876#926876Comment by Jekke on date diff in asp.netJekke2009-05-29T20:11:44Z2009-05-29T20:11:44ZI don't see why I'd have to consider time zones. The advantage of count-based date-time systems is that they are completely clock and calendar independent and know the difference between, for example, the first 2 AM and the second 2 AM on clock-back day. (Clock cycles is an extreme example, but one used in real-world OSs.)http://stackoverflow.com/questions/923209/can-i-tilt-an-image-easily-using-html-or-css/923227#923227Comment by Jekke on can i tilt an image easily using HTML or CSS?Jekke2009-05-28T21:50:37Z2009-05-28T21:50:37ZJavascript can. Take a look at instant.js: <a href="http://www.netzgesta.de/instant/" rel="nofollow">netzgesta.de/instant</a>http://stackoverflow.com/questions/889560/how-do-i-filter-out-job-postings-especially-when-no-company-name-is-mentioned/889591#889591Comment by Jekke on How do i filter out job postings? especially when no company name is mentioned?Jekke2009-05-20T21:07:29Z2009-05-20T21:07:29Z@Steve B, in New York, my experience has been that nearly all jobs are found through recruiter spam. Obviously, ymmv.http://stackoverflow.com/questions/889227/do-we-need-a-new-gof-book/889239#889239Comment by Jekke on Do we need a new GoF book?Jekke2009-05-20T17:42:18Z2009-05-20T17:42:18Zagree++ on the Head First book.http://stackoverflow.com/questions/883968/getting-to-an-application-architect-level/883994#883994Comment by Jekke on Getting to an application architect levelJekke2009-05-19T17:37:34Z2009-05-19T17:37:34Z@shahkalpesh, I am. There's very little formality in the naming of software creation jobs. Your title is often the one you choose to grab.http://stackoverflow.com/questions/870741/how-many-users-does-a-shared-hosting-website-scale-for/870758#870758Comment by Jekke on How many users does a shared hosting website scale for?Jekke2009-05-15T20:47:15Z2009-05-15T20:47:15ZTo this, I would add that you can usually get EC2 access for a lot less than US$90/month unless you expect huge throughput.http://stackoverflow.com/questions/865388/what-kind-of-data-is-sizet-holding/865402#865402Comment by Jekke on What kind of data is size_t holding?Jekke2009-05-14T21:29:46Z2009-05-14T21:29:46ZI don't recognize that one off-hand, but you should be able to write uint w = CGImageGetWidth(inImage);. Typedefs like size_t are usually for clarity of purpose, not definition of structure.