User Steven Adams - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T10:46:50Zhttp://stackoverflow.com/feeds/user/3716http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1877147/searching-through-an-arraylist/1877263#18772631Answer by Steven Adams for Searching through an ArrayList Steven Adams2009-12-09T22:08:06Z2009-12-09T22:08:06Z<p>should you be checking if the whole note matches your searchstring, or if the note contains your searchstring?</p>
<p>i.e. given notes "foobar","baz","spam", should a search on "foo" return "foobar" or not match on anything?</p>
<p>so in pseudocode:</p>
<pre><code>for each note in notes
{
if searchstring in note
{
print "Found :"+note
}
}
</code></pre>
http://stackoverflow.com/questions/1633934/designing-a-simple-network-packet/1635005#16350051Answer by Steven Adams for Designing a simple network packetSteven Adams2009-10-28T03:09:51Z2009-10-28T03:09:51Z<p>I suggest plain text to begin with - it is easier to debug. The format that your text takes depends on what you're doing, how many commands, arguments, etc. Have you fleshed out how your commands will look? Once you figure out what that looks like it'll likely suggest a format all on its own.</p>
<p>Are you using TCP or UDP? TCP is easy since it is a stream, but if you're using UDP keep in mind the maximum size of UDP packets and thus how big your message can be.</p>
http://stackoverflow.com/questions/1628377/create-a-social-networking-site/1628392#16283921Answer by Steven Adams for Create A Social NetWorking SiteSteven Adams2009-10-27T02:05:04Z2009-10-27T02:05:04Z<p>6 to 8 weeks</p>
<p>(seriously though, there isn't any definitive answer for this. I don't want to be 'that guy' who says it, but IMHO this question isn't right for Stackoverflow)</p>
http://stackoverflow.com/questions/1601518/nservicebus-vs-mass-transit-vs-rhino-service-bus-vs-other/1611540#16115402Answer by Steven Adams for nServiceBus vs Mass Transit vs Rhino Service Bus vs other?Steven Adams2009-10-23T05:30:20Z2009-10-23T05:30:20Z<p>a potential con of anything MSMQ based is the restriction on maximum message size. IIRC it is approximately 4MB, which you might easily run into if you're dealing with large files and storing the file content within the message.</p>
http://stackoverflow.com/questions/1588074/is-msmq-the-right-choice-for-this-scenario/1591525#15915250Answer by Steven Adams for Is MSMQ the right choice for this scenario...Steven Adams2009-10-19T22:36:43Z2009-10-19T22:36:43Z<p>Yes, that sounds viable. </p>
<p>At an MS event I went to a few years ago, and scenario was almost exactly the case study one of the presenters used (i.e. major site had a tightly coupled process that couldn't scale and crashed during Valentines day ordering period - they then changed to use MSMQ so orders could be always be taken/queued up, and then processed later as the other machines were able to)</p>
<p>Only thing to remember with MSMQ is that it can't store messages over a certain size (~4MB if I recall). It doesn't sound like it'll matter to you, but was a hurdle I ran into building a system that had to take big reports along with purchase order messages.</p>
http://stackoverflow.com/questions/1463842/should-i-keep-a-copy-in-memory-of-the-information-being-displayed/1463956#14639561Answer by Steven Adams for Should I keep a copy in memory of the information being displayed?Steven Adams2009-09-23T04:27:47Z2009-09-23T04:27:47Z<p>whether you will run into memory troubles on client depends on how much data you will be holding at a time. Consider limiting the information returned to a certain number of records and paging through, you can then limit the amount of data to be held in memory or on the page.</p>
<p>I would expect that holding a information in-memory will give a better user experience than requiring constant calls back to a server, or into the DOM. It is probably easier from a programming perspective also</p>
http://stackoverflow.com/questions/317777/synchronisable-crm-system/441470#4414700Answer by Steven Adams for Synchronisable CRM SystemSteven Adams2009-01-14T00:38:38Z2009-01-14T00:38:38Z<p>First off - if the CRM is going to be a product you sell, by all measn build it - if it is for internal use I'd say let soemone else endure the pain of solving these questions and just buy a CRM.</p>
<p>Other than database level replication, which I don't think is sufficient for solving everything, you'll really need to 'roll your own'.</p>
<p>I came into a team planning some CRM-like components of a system, and initially they'd planned to use database replication because it looked easy - until you hit the conflict resolution.</p>
<p>In the end we changed to using GUIDs as unique identifiers because it made the handling of new records created by the users much simpler - otherwise you end up with these awkward numeric ID partitioning schemes for each client system. Road to Hell.</p>
<p>Nothing helps with conflict resolution where changes get made between syncs, its an application level concern. The database might get a list of transactions to replay from Bob, but if he edited the same stuff as Alice - which version should it use? timestamps aren't enough because what if Alice fills hers out as she goes and has an early timestamp, but Bob waits till he's having lunch and gets a later timestamp.</p>
<p>I'd really suggest reading all the articles/blog entries you can on synchronisation and conflict resolution - sync is simple from a height of 10,000ft where you can be all hand wavy, but its a different story when you're down in the muck.</p>
http://stackoverflow.com/questions/416070/adding-a-license-to-your-net-web-application/416378#4163780Answer by Steven Adams for Adding a License to your .Net Web ApplicationSteven Adams2009-01-06T12:45:12Z2009-01-06T12:45:12Z<p>unless you obfuscate it in some way so it is more effort than it is worth, or you precompile I don't see how you could prevent them from just isolating the license checking code - and removing it.</p>
<p>You can run an obfuscator over the source code and distribute the obfuscated version, there are numerous examples of this around, particularly for javascript.</p>
http://stackoverflow.com/questions/305684/how-can-i-prevent-database-being-written-to-again-when-the-browser-does-a-reload/311222#3112221Answer by Steven Adams for How can I prevent database being written to again when the browser does a reload/back?Steven Adams2008-11-22T11:14:12Z2008-11-22T11:14:12Z<p>I'd not rely on POST warnings from the browser. Users just click OK to make messages go away.</p>
<p>Anytime you'll have a request that needs to be one time only e.g 'make a payment', send a unique token down, that gets submitted back with the request. Throw the token out after it comes back, and so you can now tell when something is a valid submission (anything with a token that isn't 'active'). Expire active tokens after X amount of time, e.g. when a user session ends.</p>
<p>(alternately track the tokens that have come back, and if you have received it before then it is invalid.)</p>
http://stackoverflow.com/questions/294688/make-an-incoming-call-on-my-mobile-trigger-an-action-on-my-pc/294873#2948731Answer by Steven Adams for Make an incoming call on my mobile trigger an action on my pcSteven Adams2008-11-17T04:15:03Z2008-11-17T04:15:03Z<p>'depends'</p>
<p>you'd need to check the SDK for the phones you're targetting - but Symbian and certainly WindowsCE phones can do that (NFI about the iPhone).</p>
<p>Calling into Dynamics would be easy from a webservice, you could expose that either internally or externally and thus use either WiFi in the area (be it your own corporate network, or a hotspot) or data over the mobile phone network.</p>
<p>From days working in Microsoft CRM (hellish days of v 1.*) there were mods to do what you talk about using either Skype or regular landline phones then, I'm sure writing stuff for it has improved since when it was craptacular.</p>
http://stackoverflow.com/questions/112028/what-was-the-biggest-lesson-you-learned-in-your-career-as-an-it-professional/112349#11234913Answer by Steven Adams for What was the biggest lesson you learned in your career as an IT professional?Steven Adams2008-09-21T22:24:35Z2008-11-04T18:12:46Z<p>Manage expectations, learn to say "no".</p>
<p>When you're designing a system people will continually ask for more and more. If you try and please them you will go nuts. Set the expectation that they are getting X, and X only - and if the Y that they're asking for is possible then it will be considered for the next update.</p>
http://stackoverflow.com/questions/252592/has-web-development-overtaken-desktop-development/252722#2527221Answer by Steven Adams for Has web development overtaken desktop development?Steven Adams2008-10-31T06:08:34Z2008-10-31T06:08:34Z<p>It depends on where you're looking.</p>
<p>Most of the world will never see 99% of the code that gets written, because it is inhouse software.</p>
<p>At my work I'm the one building the web accessible line of business app for our clients, but on the desks next to me are the guys doing the Pocket PC app, and the series of cubes next to me are the guys doing the desktop stuff. But unless you work for us, or are a client, you'll never see it - so you can't tell just what is being done 'behind the firewall'.</p>
<p>I'd pick an area you're interested in working in, and become good at it. Dabble in other areas so you have a broad knowledge. But desktop apps are always going to be developed, just like web apps will - the barrier to entry, the 'sexyness', and the ease of getting a web app in yoru face just makes it seem like they're where all the development is going right now.</p>
http://stackoverflow.com/questions/210270/software-patents-or-can-i-write-a-rsvp-program-for-my-mobile-device/214853#2148530Answer by Steven Adams for Software patents or Can I write a RSVP program for my mobile device?Steven Adams2008-10-18T10:18:04Z2008-10-18T10:18:04Z<p>the devil is in the details.</p>
<p>I'd suggest you write down what your program will do - in a more detailed way than "it does RSVP".</p>
<p>Print out the patents appropriate, go through the claims made in the paents and see if you are doing what they're claiming. I don't think they're claiming a patent on RSVP, just on certain ways of using it.</p>
<p>Make your own judgement call on whether it is worth continuing, if so, consult a lawyer that is an expert in that area of law before going further.</p>
http://stackoverflow.com/questions/213212/managing-projects-what-do-you-think-about-axosoft-ontime/214848#2148482Answer by Steven Adams for Managing Projects - What do you think about AxoSoft OnTime?Steven Adams2008-10-18T10:12:17Z2008-10-18T10:12:17Z<p>same bugbears as everyone else is having with it. We use it for internal bug tracking and logging our time.</p>
<p>It seems very capable, and can handle what you throw at it, but I find the UI sucks, tabs flitting about the place and creating a new incident seems a case of fill in what it asks for, OK, then it'll error at you saying you need to fill in extra fields - some of which aren't on the tab it shows you. /whinge</p>
http://stackoverflow.com/questions/206880/printing-to-a-specific-printer-from-a-web-app/206932#2069321Answer by Steven Adams for Printing to a specific printer from a web appSteven Adams2008-10-15T23:47:06Z2008-10-15T23:57:13Z<p>if you created an application that hosted the web browser control (rather than using a web browser directly) you could control the printing process much more directly.</p>
<p>(assuming using Windows + IE is possible)</p>
<p>here are some example articles that might help:</p>
<p><a href="http://en.csharp-online.net/Configure_a_WebBrowser_Control" rel="nofollow">Configure a WebBrowser Control</a></p>
<p><a href="http://ryanfarley.com/blog/archive/2004/12/23/1330.aspx" rel="nofollow">Using the Web Browser Control in your C# Applications</a></p>
<p>and the ever changing MSDN docs for the WebBrowser class, which has the Print method.</p>
<p>From the print method remarks: "You can use this method to implement a Print button similar to the one in Internet Explorer. This method prints the current document without requiring further user input."</p>
http://stackoverflow.com/questions/197135/getting-notifications-when-the-user-tries-sending-an-sms/201072#2010720Answer by Steven Adams for Getting notifications when the user tries sending an SMSSteven Adams2008-10-14T13:04:59Z2008-10-14T13:04:59Z<p>edit: oops, missed that it was users creating the message, not incoming.</p>
<p>Are you targetting windows mobile 5+?</p>
<p>I think what you're looking for is the MessageInterceptor class in the Microsoft.WindowsMobile.PocketOutlook.MessageInterception Namespace.</p>
<p>Here is a link to some example code:
<a href="http://www.knowdotnet.com/articles/smartphonesms.html" rel="nofollow">http://www.knowdotnet.com/articles/smartphonesms.html</a></p>
<p>Peter Foot has included a similar function in His In the Hand libraries, they might allow you to do the same on earlier version of pocket pc.</p>
http://stackoverflow.com/questions/200599/whats-the-best-way-to-store-simple-user-settings-in-python/201020#2010200Answer by Steven Adams for What's the best way to store simple user settings in Python?Steven Adams2008-10-14T12:50:27Z2008-10-14T12:50:27Z<p>Is there are particular reason you're not using the database for this? it seems the normal and natural thing to do - or store a pickle of the settings in the db keyed on user id or something.</p>
<p>You haven't described the usage patterns of the website, but just thinking of a general website - but I would think that keeping the settings in a database would cause much less disk I/O than using files.</p>
<p>OTOH, for settings that might be used by client-side code, storing them as javascript in a static file that can be cached would be handy - at the expense of having multiple places you might have settings. (I'd probably store those settings in the db, and rebuild the static files as necessary)</p>
http://stackoverflow.com/questions/196726/hashes-vs-numeric-ids/196756#1967560Answer by Steven Adams for Hashes vs Numeric id'sSteven Adams2008-10-13T05:07:08Z2008-10-13T05:07:08Z<p>will your users have to remember/use the value? or are you looking at it from a security POV?</p>
<p>From a security perspective, it shouldn't matter - since you shouldn't just be relying on people not guessing a different but valid ID of something they shouldn't see in order to keep them out.</p>
http://stackoverflow.com/questions/195651/any-open-sourced-websites/195690#1956900Answer by Steven Adams for Any open sourced websites?Steven Adams2008-10-12T16:54:16Z2008-10-12T16:54:16Z<p>phpbb.org
django
joomla
dotnetnuke</p>
http://stackoverflow.com/questions/189645/how-to-break-out-of-multiple-loops-in-python/189696#1896962Answer by Steven Adams for How to break out of multiple loops in Python?Steven Adams2008-10-10T00:29:37Z2008-10-10T01:10:01Z<pre><code>
keeplooping=True
while keeplooping:
#Do Stuff
while keeplooping:
#do some other stuff
if finisheddoingstuff(): keeplooping=False
</code></pre>
<p>or something like that. You could set a variable in the inner loop, and check it in the outer loop immediately after the inner loop exits, breaking if appropriate. I kinda like the GOTO method, provided you don't mind using an April Fool's joke module - its not Pythonic, but it does make sense.</p>
http://stackoverflow.com/questions/189644/what-are-some-common-things-to-consider-when-developing-a-web-based-application-t/189736#1897361Answer by Steven Adams for What are some common things to consider when developing a web-based application to be soldSteven Adams2008-10-10T00:43:58Z2008-10-10T00:43:58Z<p>Abarax gave a great answer, I'd emphasise that you should consider Localisation - both for spoken languages (english, french, german, etc) and the Organisation's language e.g. some places may call it a Timesheet, Docket or Work Order, and each one will whine and whine and whine if everything doesn't match up with what they've always called something.</p>
http://stackoverflow.com/questions/182932/how-you-manage-your-daily-tasks-as-a-programmer/183069#1830690Answer by Steven Adams for How you manage your daily tasks as a programmer?Steven Adams2008-10-08T14:31:29Z2008-10-08T14:31:29Z<p>Post-It notes.</p>
<p>I keep them in order of priority on either the cube wall or stuck on the shelf-edge. Simple to reshuffle them, or add new items. When I'm done they go into the bin. Easy.</p>
http://stackoverflow.com/questions/114692/reportviewer-localreport-merge-reports/119296#1192960Answer by Steven Adams for ReportViewer - LocalReport - Merge reports?Steven Adams2008-09-23T05:45:29Z2008-09-23T05:45:29Z<p>Do you need to display the 2 reports as 1 in the reportViewer control or would having them both exported to PDF and showing a single PDF containing both reports be satisfactory?</p>
<p>I was looking for that but using the Web ReportViewer and found examples exporting the reports to several PDFs, then concatenating the PDFs into 1 using PDFtk (free)</p>
<ul>
<li><a href="http://spacefold.com/lisa/post/A-Tad-More-About-PDF-and-Reports-as-Document-Sections.aspx" rel="nofollow">Blog post about using PDFtk and Reporting Services</a></li>
<li><a href="http://social.msdn.microsoft.com/Forums/en-US/vsreportcontrols/thread/add116eb-b907-4f34-a190-3127a3cc531c/" rel="nofollow">Multiple RDLC reports displayed at the same time</a></li>
<li><a href="http://www.accesspdf.com/pdftk/index.html" rel="nofollow">PDFtk web site</a></li>
</ul>
http://stackoverflow.com/questions/111426/did-you-apply-computational-complexity-theory-in-real-life/116223#1162230Answer by Steven Adams for Did you apply computational complexity theory in real life?Steven Adams2008-09-22T17:23:01Z2008-09-22T17:23:01Z<p>@<a href="#116024" rel="nofollow">Martin</a>: Can you please elaborate on the thought processes behind it?</p>
<p>it might not be so explicit as sitting down and working out the Big-O notation for a solution, but it creates an awareness of the problem - and that steers you towards looking for a more efficient answer and away from problems in approaches you might take. e.g. O(n*n) versus something faster e.g. searching for words stored in a list versus stored in a trie (contrived example)</p>
<p>I find that it makes a difference with what data structures I'll choose to use, and how I'll work on large numbers of records.</p>
http://stackoverflow.com/questions/26799/how-do-you-back-up-your-development-machine/64652#646520Answer by Steven Adams for How do you back up your development machine?Steven Adams2008-09-15T16:53:42Z2008-09-15T16:53:42Z<p>My development machine is backed up using Retrospect and Acronis. These are nightly backups that run when I'm asleep - one to an external drive and one to a network drive.</p>
<p>All my source code is in SVN repositories, I keep all my repositories under a single directory so I have a scheduled task running a script that spiders a path for all SVN repositories and performs a number of hotcopies (using the hotcopy.py script) as well as an svndump of each repository.</p>
<p>My work machine gets backed up however they handle it, however I also have the same script running to do hotcopies and svndumps onto a couple of locations that get backed up.</p>
<p>I make sure that of the work backups, one location is NOT on the SAN, yes it gets backed up and managed, but when it is down, it is down.</p>
http://stackoverflow.com/questions/60484/whats-the-best-way-to-write-javascript-ruby-applications-on-windows-mobile-devic/60992#609920Answer by Steven Adams for What's the best way to write JavaScript/Ruby applications on Windows Mobile device?Steven Adams2008-09-13T23:44:37Z2008-09-13T23:44:37Z<p>This is n old port of Ruby to WinCE, but from what I've read it doesn't work all that well - who knows, give it a try, YMMV</p>
<p><a href="http://uema2.s8.xrea.com/ruby-mswince/" rel="nofollow">http://uema2.s8.xrea.com/ruby-mswince/</a></p>
<p>As for Javascript, WinMo devices have Pocket Internet Explorer - it isn't very good, but runs some Javascript. If you want something that is a bit closer to a desktop you could install Opera.</p>
http://stackoverflow.com/questions/60939/the-best-way-to-start-a-project/60986#609861Answer by Steven Adams for The best way to start a project...Steven Adams2008-09-13T23:35:53Z2008-09-13T23:35:53Z<p>It depends on the project - how big is it?</p>
<p>If I'm writing the next Notepad clone I might just dive in, if I wanted to roll my own operating system it'd take a lot more non-coding work.</p>
<p>I like to do a lot of diagrams, the tool I use for most development is clean A4 paper and a pencil. Draw out the UI, workflow, basic classes, and how you're going to store any data - then the coding is just a computer readable way of writing what you drew already.</p>
<p>Source control le.g. SVN is a couple of keystrokes/clicks, so the overhead is low and the benefit is high, its handy to try stuff and just revert to an earlier state if they don't work.</p>
<p>Then just make the most basic protoype that will work - once something is actually going it is much easier to get enthused and add more. If it is overwhelming I'll find I think the problem is solved in my head, and thats enough.</p>
http://stackoverflow.com/questions/49196/storing-third-party-libraries-in-source-control/49229#492290Answer by Steven Adams for Storing third-party libraries in source controlSteven Adams2008-09-08T06:18:44Z2008-09-08T06:18:44Z<p>store everything you'll need to build the project, so you can check it out and build without doing anything.</p>
<p>(and, as someone who has experienced the pain - please keep a copy of everything needed to get the controls installed and working on a dev platform. I once got a project that could build - but without an installation file and reg keys, you couldn't make any alterations to the third-party control layout. That was a fun rewrite)</p>
http://stackoverflow.com/questions/48446/scheduling-windows-mobile-apps-to-run/48466#484664Answer by Steven Adams for Scheduling Windows Mobile apps to runSteven Adams2008-09-07T14:23:52Z2008-09-07T14:23:52Z<p>the function you need is:</p>
<p><code>CeRunAppAtTime( appname, time )</code></p>
<p>that isn't the exact signature, there is also <code>CeRunAppAtEvent</code>, they should both be in the MSDN docs (but linking is useless the way MSDN urls always change)</p>
<p>The normal way to use these (and <code>RunAppAtTime</code> in the managed world via <code>OpenNETCF.Win32.Notify</code> ) is that for periodic execution, every time your app runs, it will rescedule itself for its next run-time.</p>
<p>If your app is running, the new instance should bring up the already running process. If it isn't running, then it is just like starting up normally - from mmory it passes some argument to the process so it can tell it is being scheduled and not started some other way.</p>
http://stackoverflow.com/questions/37819/software-and-electronic-engineering/37910#379101Answer by Steven Adams for Software and Electronic EngineeringSteven Adams2008-09-01T13:05:45Z2008-09-01T13:05:45Z<p>what do you mean by 'computer scientist'? A lot of computer science can be very theoretical and in order to do well you're more closely aligned with mathematics - because thats really what it is.</p>
<p>I think it depends on the level you're working too, but a basic idea of what is happening e.g. registers, cache hits, memory space, etc would be useful in understanding why you might take one approach over another.</p>
http://stackoverflow.com/questions/1870952/disabling-disallowing-items-in-combobox-to-be-selected-depending-on-selection-cComment by Steven Adams on Disabling/Disallowing items in ComboBox to be selected depending on selection ( C# )Steven Adams2009-12-09T03:58:22Z2009-12-09T03:58:22Zit would clarify your code if you moved teh checking if bookings are valid out of that e.g. isValidAppointmentTime(date,start,finish)->Boolean instead of all those ifs. I might be reading it incorrectly, but check your braces on the third if statementhttp://stackoverflow.com/questions/1636138/have-i-overextended-myself-with-this-project/1641722#1641722Comment by Steven Adams on Have I overextended myself with this project?Steven Adams2009-10-29T05:25:51Z2009-10-29T05:25:51Zthis might not be the answer you wanted to hear, but I think David gave the perfect answer. Access front end connected to SQL Server, with SourceSafe for version control is the setup at my work (though not what I work on directly). Is there a solid business case for taking what you already have, and giving back essentially that (but with New Technology Compliance(TM) )?http://stackoverflow.com/questions/1634224/how-can-i-start-designing-my-program-on-paper-without-over-engineering-things/1634236#1634236Comment by Steven Adams on How can I start designing my program on paper without over engineering things?Steven Adams2009-10-28T00:16:46Z2009-10-28T00:16:46Z@James: by dot points I'm assuming theraven means lists of points, with a dot or bullet at the start. Like the default look of an HTML <ul> type list.http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/102781#102781Comment by Steven Adams on What was your first home computer?Steven Adams2009-10-15T04:31:50Z2009-10-15T04:31:50Zthat was my first too, good times searching for all those game books, keying in the 'draw and animate shapes' BASIC programs. I had the Zx Spectrum+ it had a different keyboard: <a href="http://bit.ly/DQ8ox" rel="nofollow">bit.ly/DQ8ox</a>http://stackoverflow.com/questions/1463513/move-one-form-to-another-winforms-c/1463560#1463560Comment by Steven Adams on Move one form to another winforms - C#Steven Adams2009-09-24T00:45:24Z2009-09-24T00:45:24ZShowDialog() would block until the form shown as a dialog has been closed. So you'd show the new form, then as soon as it closed the original form would hide itself.http://stackoverflow.com/questions/305117/what-are-your-working-hours-pollComment by Steven Adams on What are your working hours? [poll]Steven Adams2008-11-20T12:33:10Z2008-11-20T12:33:10Zor people could just not up-vote it to the moon like happens on some 'poll' type questions.http://stackoverflow.com/questions/294688/make-an-incoming-call-on-my-mobile-trigger-an-action-on-my-pc/294768#294768Comment by Steven Adams on Make an incoming call on my mobile trigger an action on my pcSteven Adams2008-11-17T04:18:40Z2008-11-17T04:18:40Zwhy not just use the regular TCP/IP networking? if you had to use an Activesynce connected model, I think you could build something more elegant 'talking' via RAPI than writing to files (or use the TCP/IP network setup between desktop and PocketPC to talk).http://stackoverflow.com/questions/289779/calculating-a-boundary-around-several-linked-rectanglesComment by Steven Adams on Calculating a boundary around several linked rectangles.Steven Adams2008-11-14T12:06:33Z2008-11-14T12:06:33Zare the lines always going to be vertical or horizontal? can there be overlapping?http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/238191#238191Comment by Steven Adams on Worst UI You've Ever UsedSteven Adams2008-10-26T21:37:08Z2008-10-26T21:37:08Zhaha, even the frustration in that photoshopped splash screen is putting a positive spin on how bad Notes is. (I only checked into this thread to writes about Notes)http://stackoverflow.com/questions/237448/what-are-the-most-common-problems-you-are-asked-to-solve-as-a-programmer/237860#237860Comment by Steven Adams on What are the most common problems you are asked to solve as a programmer?Steven Adams2008-10-26T12:08:47Z2008-10-26T12:08:47Zalong with the extra caveat that they have no idea of a good heuristic on narrowing down what data the user might need to be loaded, but "everything would be nice"... by monday, cause you've already written it once for the desktop versionhttp://stackoverflow.com/questions/210829/what-is-an-np-complete-problem/210888#210888Comment by Steven Adams on What is an NP-complete problem?Steven Adams2008-10-17T03:37:08Z2008-10-17T03:37:08ZI have discovered a truly marvellous proof of this, which this comment is too narrow to contain ;)http://stackoverflow.com/questions/206440/best-way-to-check-when-a-specified-date-occurs/206487#206487Comment by Steven Adams on Best way to check when a specified date occursSteven Adams2008-10-16T01:50:44Z2008-10-16T01:50:44Zwill a thread sleeping for a long time get killed cleanly when your app is told to exit (if the exit occurs before the time happens)?http://stackoverflow.com/questions/189645/how-to-break-out-of-multiple-loops-in-pythonComment by Steven Adams on How to break out of multiple loops in Python?Steven Adams2008-10-10T01:13:21Z2008-10-10T01:13:21Z@Kibbee: Python does have GOTO, it was added as an April Fools joke.
@monoxide: are you after an answer for this specific case, or the general nested loops' case?http://stackoverflow.com/questions/189645/how-to-break-out-of-multiple-loops-in-python/189685#189685Comment by Steven Adams on How to break out of multiple loops in Python?Steven Adams2008-10-10T01:11:31Z2008-10-10T01:11:31Zagreed in this specific case, but in the general case of 'I have nested loops, what do I do' refactoring may not make sense.http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184807#184807Comment by Steven Adams on What is the best comment in source code you have ever encountered?Steven Adams2008-10-09T04:06:23Z2008-10-09T04:06:23Zpretty sure that is what the nameless school teacher at a funadamentalist school Bart goes to says as he chases him with a paddle after Bart sang a song about beans or something.