User CodingWithoutComments - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T09:01:04Z http://stackoverflow.com/feeds/user/25 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/11350/what-questions-should-be-asked-to-a-potential-future-employer-during-an-interview 22 What questions should be asked to a potential future employer during an interview for a programming position? CodingWithoutComments 2008-08-14T17:15:08Z 2009-12-15T20:10:41Z <p>I'm going to start interviewing again over the next couple of months. I'm about three years out of school, got some good programming experience under my belt that I can boast about, and finally feel like I can call some of the shots. A question that has been bouncing around in my head for awhile is what <em>are</em> the best questions I should ask my potential future employer to find out if they are on the up-and-up and worthy of my talent (Ha!). </p> <p>I realize that a good place to start is to rattle off <a href="http://www.joelonsoftware.com/articles/fog0000000043.html" rel="nofollow">the Joel Test</a>, but what other questions/resources can I gleam from the SO hive mind? </p> http://stackoverflow.com/questions/1731807/how-do-i-use-the-highlight-jquery-effect-without-temporarily-hiding-the-backgro 1 How do I use the "highlight" jquery effect without temporarily hiding the background-image? CodingWithoutComments 2009-11-13T20:46:30Z 2009-11-13T21:21:18Z <p>Hello All,</p> <p>I am trying to use the jquery ui "highlight" effect on an input html element with a background image set in the CSS (A search bar with a magnifying glass). During the "highlight" animation, however, the background image temporarily goes away and then appears once the highlight animation is over. I would like the image to remain throughout the animation. Any ideas?</p> <p>HTML:</p> <pre><code>&lt;input class="searchInput" id='searchInputWithMap' type="text" tabindex="100" name="searchStructures" /&gt; </code></pre> <p>CSS:</p> <pre><code>.searchInput { font-family:Trebuchet MS,Helvetica,sans-serif; background:transparent url(/images/search4.png) no-repeat scroll 8px 6px; height:22px; line-height:28px; padding-left:32px; padding-right:3px; padding-top:5px; padding-bottom:5px; margin:5px 0; border:1px solid #999999; font-size:130%; height: 32px; width: 400px; vertical-align:center; color:#BBBBBB; } </code></pre> http://stackoverflow.com/questions/363591/why-do-programmers-have-such-ridiculously-prickly-personalities 25 Why do programmers have such ridiculously prickly personalities? [closed] CodingWithoutComments 2008-12-12T17:47:51Z 2009-11-05T18:03:29Z <p>Originally asked on Reddit <a href="http://www.reddit.com/r/programming/comments/7j2mw/why_do_programmers_have_such_ridiculously_prickly/" rel="nofollow">here</a>, I found this question interesting. Since I've started programming 10 years or so ago, my personality has gotten <strong>more</strong> prickly as I pack on more and more years as a programmer. Why is this?</p> <p>I'll post glomek's answer on Reddit to start the conversation. It was the answer most modded up.</p> <blockquote> <p>I suppose that you might have just been unlucky enough to hang out with the wrong programmers, but I'll give the ones you know the benefit of the doubt and assume that they are more or less normal.</p> <p>Programmers are detail oriented. If we leave out one character by mistake we can introduce a subtle data corruption bug or a crashing bug.</p> <p>We work very hard to say exactly what we mean. When interacting with us, it is easy to get the sense that we are pedantic assholes because we are frequently asking for clarification on trivial points that you haven't thought about or correcting what seem like unimportant mistakes in what you say.</p> <p>What you need to understand is that all of those annoying pedantic points are things that we need to understand, and that we need to understand correctly, if we are to have any hope of giving you anything useful.</p> <p>So try to be patient with us. If we seem to be demanding unreasonable levels of detail, please remember that it is because we need them in order to give you what you want.</p> <p>The typical computer program cannot have judgment. It cannot "understand" much of anything. It mindlessly follows a bunch of instructions, no matter how sensible or stupid those instructions are. Getting those instructions right is our job, but in order to do it we need to understand the task at hand. We need to understand it completely, unambiguously, down to every last decision, without any "rules of thumb" or "do what makes sense" type of steps, not even any trivially insignificant ones.</p> <p>Also, we tend to complain when you change your mind about what you want after we have written it. This is because programs are delicate things. They tend to only be easy to change in ways that they were designed to be changed. Changes that were not anticipated in the initial design can be very difficult and time consuming, and are dangerous as they can introduce subtle bugs. If you think over your experiences, I'll bet that most of the time when a program took longer to deliver than you wanted, you changed your mind about something after development had started.</p> <p>Now you might have thought that the change was a small one, but it probably wasn't small at all to the programmer.</p> <p>So, if you want to get along with programmers, I can offer these two pieces of advice that will make it much easier:</p> <ul> <li>Figure out what you want. Completely.</li> <li>Don't change your mind once development begins.</li> </ul> <p>Obviously, these cannot be done all the time, but do your best, and whenever you fail, understand that it is your fault, and not the programmer's, that the conversation is difficult or the product is being delayed.</p> </blockquote> http://stackoverflow.com/questions/596921/how-do-i-automatically-find-a-users-location 2 How do I automatically find a user's location? CodingWithoutComments 2009-02-27T22:28:12Z 2009-10-27T12:57:42Z <p>I am currently working on a show listing website. I am going to display show information by location for the user sorted in a variety of different ways. </p> <p>I <strong>know</strong> I could ask the user where they are located when they first sign into the site, but I've seem to notice that many sites have this capability built-in to detect location automatically? (Ex. see <a href="http://www.last.fm/" rel="nofollow">Last.fm</a> "Events: Concert Listings in your area").</p> <p>Anyone have any idea how they do this? I'm currently building my website in Rails.</p> http://stackoverflow.com/questions/1561521/turn-off-zooming-in-uiscrollview 0 Turn off Zooming in UIScrollView CodingWithoutComments 2009-10-13T16:53:46Z 2009-10-13T17:17:32Z <p>Does anyone know a way to temporarily turn off zooming when using a UIScrollView? </p> <p>I see that you can disable scrolling using the following:</p> <pre><code>self.scrollView.scrollEnabled = false; </code></pre> <p>but I'm not seeing a similar command for zooming. Any thoughts?</p> http://stackoverflow.com/questions/1561521/turn-off-zooming-in-uiscrollview/1561677#1561677 1 Answer by CodingWithoutComments for Turn off Zooming in UIScrollView CodingWithoutComments 2009-10-13T17:17:32Z 2009-10-13T17:17:32Z <p>Following fbrereto's advice above, I created two functions lockZoom and unlockZoom. When locking Zoom i copied my max and min zoom scales to variables then set the max and min zoom scale to 1.0. Unlocking zoom just reverses the process.</p> <pre><code>-(void)lockZoom { maximumZoomScale = self.scrollView.maximumZoomScale; minimumZoomScale = self.scrollView.minimumZoomScale; self.scrollView.maximumZoomScale = 1.0; self.scrollView.minimumZoomScale = 1.0; } -(void)unlockZoom { self.scrollView.maximumZoomScale = maximumZoomScale; self.scrollView.minimumZoomScale = minimumZoomScale; } </code></pre> http://stackoverflow.com/questions/6811/how-can-i-encode-xml-files-to-xfdl-base64-gzip 0 How can I encode xml files to xfdl (base64-gzip)? CodingWithoutComments 2008-08-09T15:20:45Z 2009-10-08T19:28:39Z <p>Before reading anything else, please take time to read the original thread.</p> <p>A quick simple overview: A .xfdl file is a is a gzipped .xml file which has then been encoded in base64. I wish to de-encode the .xfdl into xml which I can then modify and then re-encode back into a .xfdl file.</p> <p>xfdl > xml.gz > xml > xml.gz > xfdl</p> <p>I have been able to take a .xfdl file and de-encode it from base64 using uudeview:</p> <pre><code>uudeview -i yourform.xfdl </code></pre> <p>Then decommpressed it using gunzip</p> <pre><code>gunzip -S "" &lt; UNKNOWN.001 &gt; yourform-unpacked.xml </code></pre> <p>The xml produced is 100% readable and looks wonderful. Without modifying the xml then, i should be able to re-compress it using gzip:</p> <pre><code>gzip yourform-unpacked.xml </code></pre> <p>Then re-encoded in base-64:</p> <pre><code>base64 -e yourform-unpacked.xml.gz yourform_reencoded.xfdl </code></pre> <p>If my thinking is correct, the original file and the re-encoded file should be equal. If I put yourform.xfdl and yourform_reencoded.xfdl into beyond compare, however, they do not match up. Also, the original file can be viewed in an .xfdl viewer. The viewer says that the re-encoded xfdl is unreadable. </p> <p>I have also tried uuenview to re-encode in base64, it also produces the same results. Any help would be appreciated.</p> <p>If you want to try it, Click Here to download a sample .xfdl file.</p> http://stackoverflow.com/questions/1446098/define-statements-in-asp 1 Define statements in ASP CodingWithoutComments 2009-09-18T18:13:27Z 2009-09-18T19:57:02Z <p>Working in ASP classic (not .NET) is frustrating. I really need a define statement akin to the define statements in C, C++. Is this possible?</p> http://stackoverflow.com/questions/1213137/is-there-a-way-to-remove-the-separator-line-from-a-single-cell-in-uitableview 1 Is there a way to remove the separator line from a single cell in UITableView? CodingWithoutComments 2009-07-31T15:19:17Z 2009-09-15T12:44:07Z <p>I know I can change the UITableView property separatorStyle to UITableViewCellSeparatorStyleNone or UITableViewCellSeparatorStyleSingleLine to change all the cells in the TableView one way or the other. </p> <p>I'm interested having some cells with a SingleLine Separator and some cells without. Is this possible?</p> http://stackoverflow.com/questions/1099614/how-do-i-set-the-font-of-an-ui-element-to-the-system-font-in-ib 1 How do I set the font of an UI element to the "System" font in IB? CodingWithoutComments 2009-07-08T17:57:00Z 2009-09-08T19:00:09Z <p>How do I set the font of an UI element (ex. UILabel) to the "System" font in IB?</p> <p>In code, I know I can do the following:</p> <pre><code>UIFont * tempFont = [[UIFont systemFontOfSize:24] retain]; </code></pre> <p>But what about doing the same thing in IB? What is the default system font on the IPhone?</p> http://stackoverflow.com/questions/2232/calling-bash-commands-from-ruby 15 Calling Bash Commands From Ruby CodingWithoutComments 2008-08-05T12:56:52Z 2009-08-19T10:13:11Z <p>How do I call console/bash commands from inside of a Ruby Program? Also, how do I get output from these commands back into my program?</p> http://stackoverflow.com/questions/1176/open-source-ruby-projects 6 Open Source Ruby Projects CodingWithoutComments 2008-08-04T12:11:55Z 2009-07-26T09:17:07Z <p>I have just recently started to study Ruby, and in lieu of Jeff's advice over the weekend...</p> <ol> <li>Stop theorizing.</li> <li>Write lots of software.</li> <li>Learn from your mistakes. </li> </ol> <p>...I was interested in honing my skills while helping out the Open Source Community the process so I thought I'd ask if anyone have any suggestions for cool/interesting Open Source Projects written in Ruby that you know of or are involved in.</p> http://stackoverflow.com/questions/994376/fast-scrolling-in-tweetie-with-uitableview 0 Fast Scrolling in Tweetie with UITableView CodingWithoutComments 2009-06-15T03:09:46Z 2009-07-11T08:38:23Z <p>On December 12th 2008, the maker of the Tweetie IPhone App posted a <a href="http://blog.atebits.com/2008/12/fast-scrolling-in-tweetie-with-uitableview/" rel="nofollow">great example</a> how he accomplishes UITableView scrolling without the jagged/raggedness that normally entails. His <a href="http://atebits.cachefly.net/blog/FastScrolling/FastScrolling.zip" rel="nofollow">example code</a> works great with version 2.2 of the SDK, however, when I compile for 3.0 I cannot get the click-highlight to work on an individual cell. Anyone have any idea what needs to be updated from 2.2 -> 3.0 to get his code to (fully) work?</p> http://stackoverflow.com/questions/1080004/calling-streetview-in-iphone-maps-app-from-external-application 0 Calling StreetView in IPhone Maps App from External Application CodingWithoutComments 2009-07-03T16:12:02Z 2009-07-03T17:25:00Z <p>I'm trying to make an external call to the google maps application on the iphone from my application and send it straight to "streetview" mode from two lat, lon coordinates. I've tried a variety of combinations, but each one just sends me to the safari browser on the iPhone and not to the maps application.</p> <p>Here is one of those tries:</p> <pre><code>NSString * latlonString = [[NSString alloc] initWithFormat:@"http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;layer=c&amp;cbll=%@,%@&amp;cbp=12,261.11,,0,5", lat, long]; </code></pre> <p>For the record, I've successfully been able to call the external maps application to get driving directions.</p> <p>Has anyone been successful in calling street view mode from an external app? </p> http://stackoverflow.com/questions/24310/programming-a-simple-irc-internet-relay-chat-client 3 Programming a simple IRC (Internet-Relay-Chat) Client. CodingWithoutComments 2008-08-23T15:49:06Z 2009-06-30T12:49:48Z <p>I started using IRC at a young age, and I have always been fascinated with it. As a language exercise, I was thinking about programming a simple IRC client in Ruby with <a href="http://www.shoooes.net/" rel="nofollow">Shoes</a> as a graphical front-end. My question to you, kind-sirs, what do I need to become familiar with to start on this great adventure (besides shoes and Ruby of course)? I imagine there is some-sort of specification on IRC Protocol. Any pointers?</p> http://stackoverflow.com/questions/994376/fast-scrolling-in-tweetie-with-uitableview/1002912#1002912 2 Answer by CodingWithoutComments for Fast Scrolling in Tweetie with UITableView CodingWithoutComments 2009-06-16T17:35:49Z 2009-06-16T17:35:49Z <p>In drawContentView, change self.selected to self.highlighted</p> <pre><code>- (void)drawContentView:(CGRect)r { CGContextRef context = UIGraphicsGetCurrentContext(); UIColor *backgroundColor = [UIColor whiteColor]; UIColor *textColor = [UIColor blackColor]; if(self.highlighted) { backgroundColor = [UIColor clearColor]; textColor = [UIColor whiteColor]; } ... code continues ... } </code></pre> http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea 15 When is multi-threading not a good idea? CodingWithoutComments 2008-09-18T15:54:28Z 2009-06-08T18:17:51Z <p>I was recently working on an application that sent and received messages over Ethernet and Serial. I was then tasked to <strong>add</strong> the monitoring of DIO discretes. I throught, </p> <blockquote> <p>"No reason to interrupt the main thread which is involved in message processing, I'll just create <strong><em>another thread</em></strong> that monitors DIO."</p> </blockquote> <p>This decision, however, proved to be <strong>poor</strong>. Sometimes the main thread would be interrupted between a Send and a Receive serial message. This interruption would disrupt the timing and alas, messages would be lost (forever). </p> <p>I found another way to monitor the DIO <em>without using another thread</em> and Ethernet and Serial communication were restored to their correct functionality.</p> <p>The whole fiasco, however, got me thinking. <strong>Are their any general guidelines about when <em>not</em> to use multiple-threads and/or does anyone have anymore examples of situations when using multiple-threads is not a good idea?</strong></p> <p>**EDIT:Based on your comments and after scowering the internet for information, I have composed a blog post entitled <a href="http://www.codingwithoutcomments.com/2008/09/21/when-is-multi-threading-not-a-good-idea/" rel="nofollow">When is multi-threading not a good idea?</a></p> http://stackoverflow.com/questions/840386/gravatar-for-iphone-how-do-i-generate-a-hexadecimal-md5-hash 0 Gravatar for Iphone? How do I generate a hexadecimal MD5 hash? CodingWithoutComments 2009-05-08T15:26:44Z 2009-05-08T23:59:25Z <p>I'd like to use <a href="http://en.gravatar.com/site/implement/url" rel="nofollow">gravatar</a> in my iPhone application. Is there anyway to generate a hexadecimal MD5 hash in Objective-C for iPhone? Using openssl on iPhone is a no-go.</p> http://stackoverflow.com/questions/758906/how-would-i-implement-stackoverflows-hovering-dialogs 9 How would I implement stackoverflow's hovering dialogs? CodingWithoutComments 2009-04-17T03:34:50Z 2009-05-08T20:02:57Z <p>I am in <strong><em>love</em></strong> with stackoverflow's single-color "click-to-close' hovering dialog boxes that greet a user when they try to vote and aren't logged in or use the site incorrectly. Any idea how and/or what technology Jeff used to implement these neat little devices?</p> <p><strong>EDIT: I'm specifically talking about the SQUARE dialog boxes that say "Click To Close" on them. I know how to implement the rectangular strip on the top of the screen.</strong></p> http://stackoverflow.com/questions/2898/text-editor-for-linux-besides-vi 4 Text Editor For Linux (Besides Vi)? CodingWithoutComments 2008-08-05T21:42:37Z 2009-05-06T12:08:02Z <p>Let me preface this question by saying I use TextMate on Mac OSX for my text needs and I am in love with it. Anything comparable on the Linux platform? I'll mostly use it for coding python/ruby.</p> <p>Doing a google search yielded outdated answers.</p> <p>Edit: Since there has been some concern about the 'merit' of this question. I am about to start a new Ruby Programming Project in Linux and before I got started I wanted to make sure I had the right tools to do the job.</p> <p>Edit #2: I use VIM on a daily basis -- all . the . time. I enjoy using it. I was just looking for some alternatives.</p> http://stackoverflow.com/questions/768729/how-do-i-get-the-uitoolbar-font-to-match-uinavigation-controller 1 How do I get the UIToolbar font to match UINavigation Controller? CodingWithoutComments 2009-04-20T15:16:22Z 2009-05-03T09:37:19Z <p>Using <a href="http://stackoverflow.com/questions/333441/adding-a-uilabel-to-a-uitoolbar">the following post</a>, I was able to add a UILabel to a UIToolbar, however, it looks crappy. Anyone know how to get the text size / color / shadow to match the title for a UINavigationController?</p> <p>Navigation Controller<br><br> <img src="http://www.codingwithoutcomments.com/uploads/Picture1.png" alt="alt text" /></p> <p>UIToolbar with UILabel<br><br> <img src="http://www.codingwithoutcomments.com/uploads/Picture2.png" alt="alt text" /></p> <p>What steps do I need to take to make them match?</p> http://stackoverflow.com/questions/1615/how-can-i-modify-xfdl-files-update-1 1 How can I modify .xfdl files? (Update #1) CodingWithoutComments 2008-08-04T21:42:37Z 2009-04-28T13:50:45Z <p>The .XFDL file extension identifies XFDL Formatted Document files. These belong to the XML-based document and template formatting standard. This format is exactly like the XML file format however, contains a level of encryption for use in secure communications.</p> <p>I know how to view XFDL files using a file viewer I found <a href="http://www.e-publishing.af.mil/viewerdownload.asp" rel="nofollow">here</a>. I can also modify and save these files by doing File:Save/Save As. I'd like, however, to modify these files on the fly. Any suggestions? Is this even possible?</p> <p>Update #1: I have now successfully decoded and unziped a .xfdl into an XML file which I can then edit. Now, I am looking for a way to re-encode the modified XML file back into base64-gzip (using Ruby or the command line)</p> http://stackoverflow.com/questions/742700/rails-active-record-findall-order-issue 4 Rails Active Record find(:all, :order => ) issue. CodingWithoutComments 2009-04-13T00:25:30Z 2009-04-21T08:33:03Z <p>I seem to be unable to use :order_by for more than one column at a time. </p> <p>For example, I have a "Show" model with date and attending columns.</p> <p>If I run the following code:</p> <pre><code>@shows = Show.find(:all, :order =&gt; "date") </code></pre> <p>I get the following results:</p> <pre><code>[#&lt;Show id: 7, date: "2009-04-18", attending: 2&gt;, #&lt;Show id: 1, date: "2009-04-18", attending: 78&gt;, #&lt;Show id: 2, date: "2009-04-19", attending: 91&gt;, #&lt;Show id: 3, date: "2009-04-20", attending: 16&gt;, #&lt;Show id: 4, date: "2009-04-21", attending: 136&gt;] </code></pre> <p>If I run the following code: </p> <pre><code>@shows = Show.find(:all, :order =&gt; "attending DESC") [#&lt;Show id: 4, date: "2009-04-21", attending: 136&gt;, #&lt;Show id: 2, date: "2009-04-19", attending: 91&gt;, #&lt;Show id: 1, date: "2009-04-18", attending: 78&gt;, #&lt;Show id: 3, date: "2009-04-20", attending: 16&gt;, #&lt;Show id: 7, date: "2009-04-18", attending: 2&gt;] </code></pre> <p>But, if I run:</p> <pre><code>@shows = Show.find(:all, :order =&gt; "date, attending DESC") </code></pre> <p>OR </p> <pre><code>@shows = Show.find(:all, :order =&gt; "date, attending ASC") </code></pre> <p>OR </p> <pre><code>@shows = Show.find(:all, :order =&gt; "date ASC, attending DESC") </code></pre> <p>I get the same results as only sorting by date:</p> <pre><code> [#&lt;Show id: 7, date: "2009-04-18", attending: 2&gt;, #&lt;Show id: 1, date: "2009-04-18", attending: 78&gt;, #&lt;Show id: 2, date: "2009-04-19", attending: 91&gt;, #&lt;Show id: 3, date: "2009-04-20", attending: 16&gt;, #&lt;Show id: 4, date: "2009-04-21", attending: 136&gt;] </code></pre> <p>Where as, I want to get these results:</p> <pre><code>[#&lt;Show id: 1, date: "2009-04-18", attending: 78&gt;, #&lt;Show id: 7, date: "2009-04-18", attending: 2&gt;, #&lt;Show id: 2, date: "2009-04-19", attending: 91&gt;, #&lt;Show id: 3, date: "2009-04-20", attending: 16&gt;, #&lt;Show id: 4, date: "2009-04-21", attending: 136&gt;] </code></pre> <p>This is the query being generated from the logs:</p> <pre><code>[4;35;1mUser Load (0.6ms)[0m [0mSELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1[0m [4;36;1mShow Load (3.0ms)[0m [0;1mSELECT * FROM "shows" ORDER BY date ASC, attending DESC[0m [4;35;1mUser Load (0.6ms)[0m [0mSELECT * FROM "users" WHERE ("users"."id" = 1) [0m </code></pre> <p>Finally, here is my model:</p> <pre><code> create_table "shows", :force =&gt; true do |t| t.string "headliner" t.string "openers" t.string "venue" t.date "date" t.text "description" t.datetime "created_at" t.datetime "updated_at" t.decimal "price" t.time "showtime" t.integer "attending", :default =&gt; 0 t.string "time" end </code></pre> <p>What am I missing? What am I doing wrong?</p> <p><strong>UPDATE: Thanks for all your help, but it seems that all of you were stumped as much as I was. What solved the problem was actually switching databases. I switched from the default sqlite3 to mysql.</strong> </p> http://stackoverflow.com/questions/768729/how-do-i-get-the-uitoolbar-font-to-match-uinavigation-controller/769614#769614 0 Answer by CodingWithoutComments for How do I get the UIToolbar font to match UINavigation Controller? CodingWithoutComments 2009-04-20T18:51:00Z 2009-04-20T18:51:00Z <pre><code>UILabel * itemLabel = [[UILabel alloc] initWithFrame:rectArea]; itemLabel.text = @"Item"; itemLabel.textColor = [UIColor whiteColor]; itemLabel.font = [UIFont boldSystemFontOfSize:22.0]; </code></pre> http://stackoverflow.com/questions/762485/how-do-i-push-grouped-tables-down-in-the-view-on-the-iphone 0 How do I push grouped tables down in the view on the Iphone? CodingWithoutComments 2009-04-17T22:51:53Z 2009-04-18T04:33:11Z <p>Below shows the default position when you add a grouped table to a view? How do I push the entire grouped table down in the view?</p> <p><img src="http://pessoal.org/blog/wp-content/uploads/2009/02/standard-200x300.png" alt="alt text" /></p> http://stackoverflow.com/questions/758892/mfc-like-easy-to-use-tool-for-linux/758901#758901 9 Answer by CodingWithoutComments for MFC like easy to use tool for Linux CodingWithoutComments 2009-04-17T03:29:18Z 2009-04-17T03:29:18Z <p>If you are used to MFC, you will LOVE QT. </p> <p><a href="http://www.qtsoftware.com/products/" rel="nofollow">http://www.qtsoftware.com/products/</a></p> http://stackoverflow.com/questions/162042/are-there-any-viable-alternatives-to-the-gof-singleton-pattern 16 Are there any viable alternatives to the GOF Singleton Pattern? CodingWithoutComments 2008-10-02T12:38:46Z 2009-03-20T18:54:10Z <p>Let's face it. The Singleton Pattern is <a href="http://stackoverflow.com/questions/11831/singletons-good-design-or-a-crutch#11839">highly controversial</a> topic with hordes programmers on <em>both</em> sides of the fence. There are those who feel like the Singleton is nothing more then a glorified global variable, and others who swear by pattern and use it incessantly. I don't want the <a href="http://code.google.com/p/google-singleton-detector/wiki/WhySingletonsAreControversial" rel="nofollow">Singleton Controversy</a> to lie at the heart of my question, however. <strong>Everyone can have a tug-of-war and battle it out and see who wins for all I care</strong>. What I'm trying to say is, I don't believe there is a single correct answer and I'm not intentionally trying inflame partisan bickering. I am simply interested in <em>singleton-alternatives</em> when I ask the question:</p> <p><strong>Are their any specific alternatives to the GOF Singleton Pattern?</strong></p> <p>For example, many times when I have used the singleton pattern in the past, I am simply interested in preserving the state/values of one or several variables. The state/values of variables, however, can be preserved between each instantiation of the class using <strong>static variables</strong> instead of using the singleton pattern.</p> <p>What other idea's do you have?</p> <p><strong>EDIT:</strong> I don't really want this to be another post about "how to use the singleton correctly." Again, I'm looking for ways to avoid it. For fun, ok? I guess I'm asking a purely academic question in your best movie trailer voice, "In a parallel universe where there is no singleton, what could we do?"</p> http://stackoverflow.com/questions/564/what-is-the-difference-between-an-int-and-an-integer-in-java-c 11 What is the difference between an int and an Integer in Java/C#? CodingWithoutComments 2008-08-02T21:47:34Z 2009-02-05T06:58:19Z <p>I was just sitting at my local Borders sipping coffee and reading (for free) 'More Joel on Software' when I came across Joel saying something about a particular type of programmer knowing the difference between an int and an Integer in Java/C# (Object Oriented Programming Languages). After a quick 'brain check,' I realized, to my dismay, that I didn't know the answer. Please help.</p> http://stackoverflow.com/questions/12516/expression-evaluation-and-tree-walking-using-polymorphism-ala-steve-yegge 11 Expression Evaluation and Tree Walking using polymorphism? (ala Steve Yegge) CodingWithoutComments 2008-08-15T17:31:39Z 2009-01-23T22:00:02Z <p>This morning, I was reading <a href="http://steve.yegge.googlepages.com/when-polymorphism-fails" rel="nofollow">Steve Yegge's: When Polymorphism Fails</a>, when I came across a question that a co-worker of his used to ask potential employees when they came for their interview at Amazon.</p> <blockquote> <p>As an example of polymorphism in action, let's look at the classic "eval" interview question, which (as far as I know) was brought to Amazon by Ron Braunstein. The question is quite a rich one, as it manages to probe a wide variety of important skills: OOP design, recursion, binary trees, polymorphism and runtime typing, general coding skills, and (if you want to make it extra hard) parsing theory.</p> <p>At some point, the candidate hopefully realizes that you can represent an arithmetic expression as a binary tree, assuming you're only using binary operators such as "+", "-", "*", "/". The leaf nodes are all numbers, and the internal nodes are all operators. Evaluating the expression means walking the tree. If the candidate doesn't realize this, you can gently lead them to it, or if necessary, just tell them.</p> <p>Even if you tell them, it's still an interesting problem.</p> <p>The first half of the question, which some people (whose names I will protect to my dying breath, but their initials are Willie Lewis) feel is a Job Requirement If You Want To Call Yourself A Developer And Work At Amazon, is actually kinda hard. The question is: how do you go from an arithmetic expression (e.g. in a string) such as "2 + (2)" to an expression tree. We may have an ADJ challenge on this question at some point.</p> <p>The second half is: let's say this is a 2-person project, and your partner, who we'll call "Willie", is responsible for transforming the string expression into a tree. You get the easy part: you need to decide what classes Willie is to construct the tree with. You can do it in any language, but make sure you pick one, or Willie will hand you assembly language. If he's feeling ornery, it will be for a processor that is no longer manufactured in production.</p> <p>You'd be amazed at how many candidates boff this one.</p> <p>I won't give away the answer, but a Standard Bad Solution involves the use of a switch or case statment (or just good old-fashioned cascaded-ifs). A Slightly Better Solution involves using a table of function pointers, and the Probably Best Solution involves using polymorphism. I encourage you to work through it sometime. Fun stuff!</p> </blockquote> <p>So, let's try to tackle the problem all three ways. How do you go from an arithmetic expression (e.g. in a string) such as "2 + (2)" to an expression tree using cascaded-if's, a table of function pointers, and/or polymorphism? </p> <p>Feel free to tackle one, two, or all three.</p> <p>[update: title modified to better match what most of the answers have been.]</p> http://stackoverflow.com/questions/20731/in-c-how-do-you-clear-a-stringstream-variable 9 In C++, how do you clear a stringstream variable? CodingWithoutComments 2008-08-21T18:35:57Z 2008-12-15T11:16:15Z <p>I've tried several things already,</p> <pre><code>std::stringstream m; m.empty(); m.clear(); </code></pre> <p>both of which don't work.</p> http://stackoverflow.com/questions/1731807/how-do-i-use-the-highlight-jquery-effect-without-temporarily-hiding-the-backgro/1732005#1732005 Comment by CodingWithoutComments on How do I use the "highlight" jquery effect without temporarily hiding the background-image? CodingWithoutComments 2009-11-13T21:24:16Z 2009-11-13T21:24:16Z also a good answer. thxxx. http://stackoverflow.com/questions/1731807/how-do-i-use-the-highlight-jquery-effect-without-temporarily-hiding-the-backgro/1731991#1731991 Comment by CodingWithoutComments on How do I use the "highlight" jquery effect without temporarily hiding the background-image? CodingWithoutComments 2009-11-13T21:22:49Z 2009-11-13T21:22:49Z awesome dude. thanks. http://stackoverflow.com/questions/1099614/how-do-i-set-the-font-of-an-ui-element-to-the-system-font-in-ib/1099644#1099644 Comment by CodingWithoutComments on How do I set the font of an UI element to the "System" font in IB? CodingWithoutComments 2009-07-08T18:19:49Z 2009-07-08T18:19:49Z i just found that site. Thanks! http://stackoverflow.com/questions/1080004/calling-streetview-in-iphone-maps-app-from-external-application/1080242#1080242 Comment by CodingWithoutComments on Calling StreetView in IPhone Maps App from External Application CodingWithoutComments 2009-07-03T19:13:41Z 2009-07-03T19:13:41Z thats the link i was looking for thanks. yep -- doesn't look possible and very disappointing -- and doesn't really make sense -- the capability is already built in..... http://stackoverflow.com/questions/994376/fast-scrolling-in-tweetie-with-uitableview/994478#994478 Comment by CodingWithoutComments on Fast Scrolling in Tweetie with UITableView CodingWithoutComments 2009-06-15T04:42:18Z 2009-06-15T04:42:18Z yeah. i just realized that when I posted the question, but decided to post anyway. http://stackoverflow.com/questions/351954/accessing-iphone-wifi-information-via-sdk Comment by CodingWithoutComments on Accessing iPhone WiFi Information via SDK CodingWithoutComments 2009-05-19T19:52:41Z 2009-05-19T19:52:41Z Any idea how to use these calls? http://stackoverflow.com/questions/497974/changing-the-uibackbuttonitem-title/498089#498089 Comment by CodingWithoutComments on Changing the UIBackButtonItem title CodingWithoutComments 2009-05-05T14:47:04Z 2009-05-05T14:47:04Z This doesn't work. http://stackoverflow.com/questions/768729/how-do-i-get-the-uitoolbar-font-to-match-uinavigation-controller Comment by CodingWithoutComments on How do I get the UIToolbar font to match UINavigation Controller? CodingWithoutComments 2009-04-20T18:37:31Z 2009-04-20T18:37:31Z I guess I wondered if someone knew the font and colour specs for a UILabel that matches the Navigation Controller font and colour specs for &quot;Item&quot; http://stackoverflow.com/questions/768729/how-do-i-get-the-uitoolbar-font-to-match-uinavigation-controller Comment by CodingWithoutComments on How do I get the UIToolbar font to match UINavigation Controller? CodingWithoutComments 2009-04-20T18:14:04Z 2009-04-20T18:14:04Z I amended my question. See changes. http://stackoverflow.com/questions/758748/best-book-or-article-to-learn-iphone-development/758775#758775 Comment by CodingWithoutComments on Best Book or Article to learn iphone development CodingWithoutComments 2009-04-18T05:43:04Z 2009-04-18T05:43:04Z Pretty good book, although I would have liked it more if they had combined different views -- tabs, with regular view, with navigation view all into one sample project so I could see how they all worked together. http://stackoverflow.com/questions/762485/how-do-i-push-grouped-tables-down-in-the-view-on-the-iphone/762587#762587 Comment by CodingWithoutComments on How do I push grouped tables down in the view on the Iphone? CodingWithoutComments 2009-04-18T05:19:46Z 2009-04-18T05:19:46Z This totally worked. Thanks. http://stackoverflow.com/questions/762485/how-do-i-push-grouped-tables-down-in-the-view-on-the-iphone/762550#762550 Comment by CodingWithoutComments on How do I push grouped tables down in the view on the Iphone? CodingWithoutComments 2009-04-18T04:52:28Z 2009-04-18T04:52:28Z I didn't think you could build a grouped table in Interface Builder. Am I wrong? http://stackoverflow.com/questions/762485/how-do-i-push-grouped-tables-down-in-the-view-on-the-iphone/762893#762893 Comment by CodingWithoutComments on How do I push grouped tables down in the view on the Iphone? CodingWithoutComments 2009-04-18T04:48:23Z 2009-04-18T04:48:23Z I didn't think you could build a &quot;grouped&quot; table in Interface Builder. Correct me if I'm wrong... http://stackoverflow.com/questions/761324/why-does-stack-overflow-require-a-two-day-wait-on-bounties Comment by CodingWithoutComments on Why does stack overflow require a two day wait on bounties? CodingWithoutComments 2009-04-17T20:12:15Z 2009-04-17T20:12:15Z I agree. I think 4 to 8 hours is long enough. http://stackoverflow.com/questions/758906/how-would-i-implement-stackoverflows-hovering-dialogs/759062#759062 Comment by CodingWithoutComments on How would I implement stackoverflow's hovering dialogs? CodingWithoutComments 2009-04-17T05:33:37Z 2009-04-17T05:33:37Z this is great. thanks!