User Hooray Im Helping - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T11:23:24Z http://stackoverflow.com/feeds/user/92446 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1868538/flash-vs-flex-why-not-skip-flex-and-use-as3s-urlloader-server-code-entirely/1868618#1868618 0 Answer by Hooray Im Helping for Flash vs. Flex: Why not skip Flex and use AS3's URLLoader + server code entirely? Hooray Im Helping 2009-12-08T17:41:27Z 2009-12-08T17:41:27Z <p>If you're going to be making a lot of round trips to the DB, I think it would be a good idea to consider Flex since you'll be able to use the faster and less verbose AMF protocol rather than HTTP/RESTful protocols, which are generally slow and 'heavyweight.'</p> http://stackoverflow.com/questions/1868365/using-jquery-how-do-i-find-all-instances-of-a-class-that-appear-between-another 0 Using jQuery, how do I find all instances of a class that appear between another class Hooray Im Helping 2009-12-08T17:03:29Z 2009-12-08T17:19:19Z <p>For example:</p> <pre><code>&lt;table&gt; &lt;tr class="highlight" id="click"&gt; &lt;td&gt;Rusty&lt;/td&gt; &lt;/tr&gt; &lt;tr class="indent"&gt; &lt;td&gt;Dean&lt;/td&gt; &lt;/tr&gt; &lt;tr class="indent"&gt; &lt;td&gt;Hank&lt;/td&gt; &lt;/tr&gt; &lt;tr class="highlight"&gt; &lt;td&gt;Myra&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>Say when I click on the hr with the id <code>click</code> how would I find all instances of class <code>indent</code> until the next instance of class <code>highlight</code>?</p> http://stackoverflow.com/questions/1806289/jquery-hidden-elements-general-question/1806299#1806299 0 Answer by Hooray Im Helping for jQuery: hidden elements - general question Hooray Im Helping 2009-11-27T00:44:37Z 2009-11-27T00:44:37Z <p><a href="http://dict.hjenglish.com/pages/b/brandonaaron.net/docs%5Fdimensions.html" rel="nofollow">This dimension plugin</a> says it can get the dimensions of hidden elements.</p> http://stackoverflow.com/questions/1756425/prevent-onclick-action-with-jquery/1756546#1756546 0 Answer by Hooray Im Helping for Prevent onclick action with jQuery Hooray Im Helping 2009-11-18T14:52:17Z 2009-11-18T14:52:17Z <p><code>return false;</code> vs. <code>e.preventDefault();</code> vs <code>e.stopPropagation();</code> discussion found here: <a href="http://stackoverflow.com/questions/1357118/javascript-event-preventdefault-vs-return-false">http://stackoverflow.com/questions/1357118/javascript-event-preventdefault-vs-return-false</a></p> http://stackoverflow.com/questions/1715918/in-actionscript-3-how-can-i-pass-the-current-value-of-an-array-in-a-loop-to-an-e 1 In ActionScript 3, how can I pass the current value of an array in a loop to an event listener Hooray Im Helping 2009-11-11T15:26:40Z 2009-11-12T10:51:44Z <p>Code Example:</p> <pre><code>var gospels : Array = ["john", "mark", "matthew", "paul"]; for each (var book : String in gospels) { var loader : URLLoader = new URLLoader(); loader.load(new URLRequest("http://example.com/" + name)); trace(book) // outputs current value of array loader.addEventListener(Event.COMPLETE, function(e : Event) : void { trace(book); // prints paul 4 times }); } </code></pre> <p>How can I get the event listener to use the value of the array in the loop when the event listener's function was called? I.e. when I call trace inside the event listener's function, how can I get it to output <code>"john"</code>, <code>"mark"</code>, <code>"matthew"</code>, and <code>"paul"</code>?</p> http://stackoverflow.com/questions/1694716/programmer-trying-to-figure-out-a-self-project-using-php/1694765#1694765 1 Answer by Hooray Im Helping for Programmer trying to figure out a self project using PHP Hooray Im Helping 2009-11-07T23:09:45Z 2009-11-07T23:09:45Z <p>Do you play any games? My roommate is a Pokemon nerd (heh) so I set out to create an online Pokedex for him; just a simple site that lists the different pokemon and their abilities. Do you play any RPGs? Create an item database that allows people to upload screenshots of items and list their stats.</p> <p>Play poker? Create a hand/probability database.</p> <p>Since we live in these lovely web 2.0 times, find various sites that publish RESTful web stats. Places like twitter and last.fm are good starting places.</p> http://stackoverflow.com/questions/1684031/how-to-set-up-a-website-with-wordpress/1684048#1684048 0 Answer by Hooray Im Helping for How to set up a website with WordPress ? Hooray Im Helping 2009-11-05T22:20:10Z 2009-11-05T22:20:10Z <p>Best place to start is the <a href="http://codex.wordpress.org/Main%5FPage" rel="nofollow">Wordpress Codex</a>. You can find a lot of information there about how to modify themes and templates for WordPress. <a href="http://codex.wordpress.org/New%5FTo%5FWordPress%5F-%5FWhere%5Fto%5FStart" rel="nofollow">This</a> is probably the best starting point if you're absolutely completely new to it. The easiest way for me to write a theme was to start with the default WordPress theme under wp-content/themes/default and start modifying that.</p> http://stackoverflow.com/questions/1664455/a-road-map-to-learning-flex-for-dummies/1664892#1664892 0 Answer by Hooray Im Helping for A road map to learning Flex for dummies. Hooray Im Helping 2009-11-03T02:30:28Z 2009-11-03T02:30:28Z <p>I like the book <a href="http://rads.stackoverflow.com/amzn/click/0321529189" rel="nofollow">Flex 3 from the Source</a>. After you have a little bit of context for Flex, check out the <a href="http://blog.flexexamples.com/" rel="nofollow">Flex Examples blog</a>.</p> http://stackoverflow.com/questions/1581831/what-should-i-do-next/1581929#1581929 0 Answer by Hooray Im Helping for What should I do next? Hooray Im Helping 2009-10-17T10:41:45Z 2009-10-17T10:41:45Z <p>Since it sounds like you're still in Uni, I'd say hold off on writing 'real world' applications. There will be plenty of time for that in the 'real world.' If it were me, I'd start working on getting more experience with things and developing my coding style. There are plenty of coding <a href="http://sixrevisions.com/resources/10-puzzle-websites-to-sharpen-your-programming-skills/" rel="nofollow">challenges</a> out there that can help not only strengthen your programming skills, but also your math and logic skills as well. There are plenty of open source projects out there who need people willing to sift through other people's code. This would give you a lot of experience very quickly and prepare you for the 'real world' where most of the time you spend will be maintaining other people's code.</p> <p>For me personally, it didn't do much good reading about design patterns or architecture or anything like that in school or even a year or so after I started writing 'real' applications out of work because I had no context in which to place these ideas. It took a couple of years of looking through real applications (including open source apps) before things like architectural and design patterns made sense.</p> http://stackoverflow.com/questions/1499129/one-page-only-javascript-applications/1499573#1499573 0 Answer by Hooray Im Helping for One page only javascript applications Hooray Im Helping 2009-09-30T17:32:15Z 2009-09-30T17:32:15Z <p>I'll add that on slower machines, a con is that a large amount of JavaScript will bring the browser to a screeching halt. Since all the rendering is done client-side, if the user doesn't have a higher-end computer, it will ruin the experience. My work computer is a P4 3.0GHZ with 2 GB of ram and JavaScript heavy sites cause it to chug along slower than molasses, which really kills the user experience for me.</p> http://stackoverflow.com/questions/1494317/using-cfcontent-in-coldfusion-7-how-do-i-output-an-ms-word-doc-in-landscape-mode 1 Using cfcontent in ColdFusion 7, how do I output an MS Word doc in landscape mode? Hooray Im Helping 2009-09-29T18:57:35Z 2009-09-30T02:35:11Z <p>The title is pretty self explanatory. I'm using <a href="http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion%5FDocumentation&amp;file=00000232.htm" rel="nofollow">cfcontent</a> in ColdFusion 7 to output a page as an application/msword file type and I want to know how to make it default to landscape mode without resorting to downloading a third party library.</p> http://stackoverflow.com/questions/1447411/switching-to-coldfusion/1447445#1447445 9 Answer by Hooray Im Helping for Switching to ColdFusion? Hooray Im Helping 2009-09-19T01:28:47Z 2009-09-19T01:28:47Z <p>When I was a youngster who just graduated college without a lick of experience, I learned ColdFusion and had a workable foundation in it at my first job in about a week. It's really easy to learn.</p> <p>Pros of ColdFusion:</p> <ul> <li>Easy to learn</li> <li>Allows for rapid development</li> <li>Easiest language in the world to connect to a database and write SQL in</li> <li>It's an Adobe product so configuration is a snap</li> <li>Just released a new version with plenty of new features</li> <li>You'll always be able to find a job knowing ColdFusion</li> </ul> <p>Cons of ColdFusion:</p> <ul> <li>Expensive (in $ terms)</li> <li>Harder to find a good hosting company</li> <li>A bit outdated, even with its newest update</li> <li>Extremely verbose and cludgy (might describe it as Enterprisey)</li> </ul> <p>I've used Java and ColdFusion with the Flex AMF protocol, and both are pretty easy and work right out of the box - don't rule out Java if you have any interest in that.</p> <p>Although, without knowing everything, I have to ask: if you're building a desktop app, why do you need to connect to a backend when AIR has access to SQL lite?</p> <p>Keep in mind that as Flex/AIR gets more popular, more languages will (in my opinion) likely provide AMF protocols as part of the language. But you may not want to bet on that.</p> <p>Having said all that, I'd say go with ColdFusion. Even though it's not glamorous, it's a good skill to have - it's going to become the COBOL of scripting languages (a few state governments and large chunk of the federal government use it)</p> http://stackoverflow.com/questions/866197/what-are-some-common-3d-game-patterns 6 What are some Common 3D Game Patterns? Hooray Im Helping 2009-05-14T22:29:46Z 2009-09-10T17:23:54Z <p>What are some of the more common design patterns used when developing 3D games? Are there any high-level architectural design patterns that are commonly used? What about general software patterns within the architecture?</p> http://stackoverflow.com/questions/1405253/what-is-the-normal-of-a-tetrahedron-surface-for/1405296#1405296 0 Answer by Hooray Im Helping for What is the normal of a tetrahedron surface for ? Hooray Im Helping 2009-09-10T13:24:59Z 2009-09-10T13:24:59Z <p><a href="http://mathcentral.uregina.ca/QQ/database/QQ.09.03/joseph1.html" rel="nofollow">The volume of a tetrahedron</a></p> http://stackoverflow.com/questions/1311762/design-patterns-and-interview-question/1311858#1311858 1 Answer by Hooray Im Helping for Design patterns and interview question Hooray Im Helping 2009-08-21T13:12:38Z 2009-08-21T13:12:38Z <p>I personally think that expecting people to talk about how they've misused design patterns is a bit silly. Like you said, you know, either from reading up on Singleton patterns, seeing other people's code that misuses a singleton, or just understanding intuitively that a singleton has the potential to be abused as a global data object, that a singleton shouldn't be used as a substitute for global data. Misusing a pattern yourself isn't necessary to understand that it can be misused.</p> <p>Having said that however, I think it's equally silly not to 'play the game' so to speak. When you go in to an interview, the interviewer is looking for certain responses to his questions. It's your task, as someone who is trying to secure a job, to answer those questions truthfully and honestly, but to answer them in a way that the interviewer is looking for. I guess the thing to do now, is to own up to how bad of a software developer you are and how much you've messed up. Some people need to mess up a few times before they 'get it,' while others seem to just 'get it.' Personally, I'm in the former, you seem to be in the latter. The Catch-22 is, if you haven't misused a pattern because you've seen other people do misuse it, or you just 'get it,' and you say that, you come off as arrogant, and no one wants to hire that one arrogant guy who (in his own mind) never makes a mistake.</p> <p>I agree with you, though: most interview questions I've been asked weren't very well thought-out, and didn't do a good job of separating the stellar candidates from everyone else. But wishing that people would ask better interview questions is like wishing that our bodies didn't age: you can't do anything about it. So smile, accept it, and answer the question the way the interviewer is looking for. The goal of an interview is to get them to make you an offer, right? So get them to make you an offer, and put yourself in a position to say no to them if you don't like them cause of their interview questions.</p> http://stackoverflow.com/questions/1228255/trying-to-understand-the-asynctoken-in-flex-actionscript/1228394#1228394 1 Answer by Hooray Im Helping for Trying to understand the AsyncToken in Flex/Actionscript. Hooray Im Helping 2009-08-04T16:03:55Z 2009-08-04T18:16:33Z <p>If I'm reading your question correctly, you're trying to figure out how to access the actual data returned by the <code>ResultEvent</code> ?</p> <p>If so, assuming you've made the call correctly and you've gotten data back in a format you're expecting:</p> <pre><code>private function _handleTestResult( event:ResultEvent ) : void { // you get the result from the result property on the event object // edit: assuming the class Person exists with a property called name // which has the value "John" var person : Person = event.result as Person; if (person.name == "John") { Alert.show("John: " + person.name); } else { Alert.show("Not John: " + person.name); } } private function _handleTestFault( event:FaultEvent ) : void { // Maybe you know the type of the returned fault var expectedFault : Object = event.fault as MyPredefinedType if (expectedFault.myPredefinedTypesPredefinedMethod() == "BAR") { // something here } } </code></pre> <p>The ResultEvent has a property called result which will hold an instance of the object returned by the result (it might be the output of an XML file if using a web service, or a serialized object if using AMF, for example). This is what you want to access. Similarly, FaultEvent has a fault property that returns the fault information.</p> <p>Edit: Changed code in <code>_handleTestResult()</code> in response to Gordon Potter's comment.</p> http://stackoverflow.com/questions/1206683/testing-for-existance-of-form-scope-struct-in-coldfusion/1206762#1206762 3 Answer by Hooray Im Helping for Testing for existance of FORM scope / struct in ColdFusion Hooray Im Helping 2009-07-30T13:53:11Z 2009-07-30T13:53:11Z <p>You could also <code>cfparam</code> the variable you're looking for then just change your logic a little (assuming resetAppVars is a boolean:</p> <pre><code>&lt;cfparam name="form.resetAppVars" default="false" /&gt; ... &lt;cfif form.resetAppVars&gt; &lt;cfset OnApplicationStart() /&gt; &lt;/cfif&gt; </code></pre> <p>Edit: I'm not sure if the above code could be considered a hack, but it seems pretty standard CF, to me.</p> http://stackoverflow.com/questions/1191639/what-is-the-status-of-coldfusion-today/1204062#1204062 0 Answer by Hooray Im Helping for What is the status of ColdFusion today? Hooray Im Helping 2009-07-30T01:45:59Z 2009-07-30T01:45:59Z <p>I work with ColdFusion every day, and it's the scripting language I first took to on the web after I graduated from college. I've loved it like my own. Like everyone has said - CF9 is coming out soon, as is CFBuilder - both extremely exciting events for the ColdFusion community. But I feel like all the things that made the language great - it's ability to rapidly and easily build sites, the community which was so strong before, it's lightweight pick-me-up feel, are slowing and steadily being sucked out of it in favor of more 'enterprisey' concepts. It's certainly not outdated <em>now</em>, but it's trying its damndest to become so.</p> <p>The state of the CF community is pretty fractured right now: Of the people who are vocal, the guys who blog and talk about this, it seems like there is a great divide: on one side are the OO purists who feel that OO is the savior of everything and the coolest thing to come along since sliced bread. On the other side are the people who favor the old-school procedural approach and think that OO in ColdFusion is silly and inefficient (partly true) and that OO is some newfangled kids' toy. And then there's everyone else, who is stuck in the trenches working with these concepts every day, just trying to write the best apps they can. A lot of very smart people who grew up with the language have since moved on - the OO/Procedural evangelicals are the ones who've stayed. However, the people who have stuck around are <em>extremely</em> passionate.</p> <p>It feels more and more that ColdFusion is being used by Adobe as a strategic way to push the Flex platform. It seems, to me, that it is falling by the wayside, even with all the great changes being brought about in CF9. It's still competitive and it's hanging on, but it's got a feeling about it that it knows it's on its way out. Adobe claims that people are continuously adopting it, but the general attitude seems to be that Adobe is full of shit in that regard.</p> <p>However, to really answer your question, it becoming ever more outdated doesn't make it any harder or less enjoyable to use. I also want to reiterate that it's having trouble keeping current - it doesn't mean it's a currently outdated technology. It's also still the easiest and cleanest language when it comes to connecting to a database, running a query and manipulating the results.</p> http://stackoverflow.com/questions/1166680/how-do-i-sort-a-query-object-in-coldfusion-7 1 How do I sort a query object in ColdFusion 7? Hooray Im Helping 2009-07-22T16:59:01Z 2009-07-25T13:32:44Z <p>I have a query object, with, say, fifteen rows returned. For all intents and purposes, I can't modify the SQL which generates the query object, but I need to sort this query object by column. Is there a way to do this in ColdFusion 7 without resorting to an external library?</p> <p>Edit: I should add: I've run a query on this query object, and done an <code>ORDER BY</code> clause in this query of the query. Is there another way of doing this?</p> http://stackoverflow.com/questions/1147685/what-are-the-pros-and-cons-of-using-a-mac-for-web-development/1154638#1154638 1 Answer by Hooray Im Helping for What are the pros and cons of using a Mac for web development? Hooray Im Helping 2009-07-20T16:45:48Z 2009-07-20T16:45:48Z <p>I really enjoy using my MacBook Pro for all kinds of development, not just web development, but not for any of the reasons anyone has mentioned. Sure it has nice Unix underpinnings, and is very pretty to look at. The main reason I use the Mac and OS X for development is how well and consistently it works. The keyboard shortcuts are consistent across all applications, and the keyboard is laid out in a way that makes it very natural to use the operating system's commands. For me, it's much easier and faster to use the Mac Keyboard in conjunction with OS X for development, even on a laptop, than it is to use a mouse/keyboard on a desktop. I also don't have to worry about drivers or programs working, like I do with Linux (e.g. Adobe Flex).</p> http://stackoverflow.com/questions/1149856/help-in-choosing-a-3d-game-engine/1150913#1150913 2 Answer by Hooray Im Helping for Help in choosing a 3D game engine Hooray Im Helping 2009-07-19T21:06:53Z 2009-07-19T21:06:53Z <p>A couple of people have said <a href="http://www.ogre3d.org/" rel="nofollow">Ogre3D</a>, I'll offer up <a href="http://irrlicht.sourceforge.net/" rel="nofollow">Irrlicht</a> as an alternative.</p> http://stackoverflow.com/questions/1143993/what-are-the-schools-of-oop/1144071#1144071 2 Answer by Hooray Im Helping for What are the schools of OOP ? Hooray Im Helping 2009-07-17T15:38:42Z 2009-07-17T15:38:42Z <p>I would say statically typed and dynamically typed OOP are two separate disciplines within the same school of OOP.</p> http://stackoverflow.com/questions/1138902/jquery-each-trouble/1138951#1138951 1 Answer by Hooray Im Helping for jQuery.each() trouble Hooray Im Helping 2009-07-16T17:03:58Z 2009-07-16T17:03:58Z <p>As mgroves said, your scope is getting all jacked up by using each(). See <a href="http://remysharp.com/2007/04/12/jquerys-this-demystified/" rel="nofollow">this</a> for more information.</p> http://stackoverflow.com/questions/976528/why-cant-i-include-a-blog/976562#976562 1 Answer by Hooray Im Helping for Why Can't I Include A Blog? Hooray Im Helping 2009-06-10T16:03:02Z 2009-06-10T16:03:02Z <p>This is a pretty complicated topic, and one that isn't very apparent from the start. <a href="http://dmiessler.com/blog/how-to-include-wordpress-components-in-your-custom-web-pages" rel="nofollow">This</a> page should help you get started. The key is to include the WordPress blog header - explained on the linked page. You'll probably also want to check out the <a href="http://codex.wordpress.org/Main%5FPage" rel="nofollow">WordPress Codex</a> for resources on using the WordPress engine's API.</p> http://stackoverflow.com/questions/976476/which-is-more-similar-to-as3-java-or-c/976515#976515 1 Answer by Hooray Im Helping for Which is more similar to AS3, Java or C++? Hooray Im Helping 2009-06-10T15:56:39Z 2009-06-10T15:56:39Z <p>Well, AS3 more closely resembles JavaScript - they both follow the <a href="http://en.wikipedia.org/wiki/ECMAScript" rel="nofollow">ECMAScript</a> specification.</p> <p>But to answer your question, I would say learning Java will be more beneficial and easier for you. Java supports Interfaces, and single inheritance, like Flex, whereas C++ supports multiple inheritance and lacks a formal notion of Interfaces. Java and Flex both manage memory for you, whereas C++ forces you to manage your own memory. Both Java and Flex have large helper libraries out of the box, and both have native String types, whereas C++ forces you to find a library to use and doesn't support native String types.</p> <p>This may be my own bias, but it also seems more likely that you'll find a job that is looking for a Flex/Java developer, rather than a Flex/C++ developer. Java and Flex seem to work well together, with Flex as a front end and Java as a middle and back end.</p> http://stackoverflow.com/questions/966272/apart-from-ui-flair-what-do-you-use-jquery-for/966329#966329 2 Answer by Hooray Im Helping for Apart from UI "flair", what do you use jQuery for? Hooray Im Helping 2009-06-08T18:45:56Z 2009-06-08T18:45:56Z <p>Usability. For instance, you <em>always</em> validate on the server side, but if you can use JavaScript to save a long (relatively) wait for sever side validation, you can improve usability. Instead of making the user wait for the server side validation to tell them that their email address is not valid, check it first with the JavaScript, then when it appears they've entered it correctly, check it again on the server.</p> <p>Similarly, you can add hints to your forms. For instance, say you have a date field where the user needs to enter their birthday. Using jQuery (or any JavaScript for that matter), you can pre-populate the field with the format you want them to enter their date in, say in a lighter text color, and in italics. When the birthday form field gets focus, you can use jQuery (or any JavaScript) to clear out the hint and accept their real input.</p> <p>I also like how simple jQuery makes Ajax - which can also make your site more usable. Don't make the user wait for another request and page load when you can use Ajax to give the user the information they want on the page they're currently on.</p> <p>I've been finding that the best use of jQuery for me personally, has been to increase the usability of the site by trying to minimize wait times, page requests, and just general annoyances, like having to fill out the form again after it didn't validate successfully.</p> http://stackoverflow.com/questions/952558/what-kinds-of-tools-do-you-use-for-conceptual-design-of-your-software/952628#952628 3 Answer by Hooray Im Helping for What kinds of tools do you use for conceptual design of your software? Hooray Im Helping 2009-06-04T19:28:58Z 2009-06-04T19:28:58Z <p>Plenty of alcohol and coffee ;)</p> http://stackoverflow.com/questions/952351/splitting-up-the-drawing-of-a-gui-element/952488#952488 1 Answer by Hooray Im Helping for Splitting up the drawing of a GUI Element Hooray Im Helping 2009-06-04T19:07:22Z 2009-06-04T19:07:22Z <p>Since you tagged this with design-patterns and you seem to be looking for a pattern-oriented approach, I'd suggest taking a look at the <a href="http://en.wikipedia.org/wiki/State%5Fpattern" rel="nofollow">state pattern</a>. The example on the wikipedia page even mentions keeping state while drawing a GUI. Unfortunately, this would mean you'd have to create another class with subclasses and overridden methods.</p> <p>Is this going to be something that is likely to change? I.e. do you realistically think you're going to be adding new behavior to the drawing (e.g. if the user double clicks, draw a different type of border; if the user right clicks, change the color of the border), or is this it? If you see more behavior being added, I think going ahead and taking a more OO approach is wise. If it's just these two cases, I'd say just add and <code>else if</code> statement.</p> http://stackoverflow.com/questions/948132/where-to-find-a-mac-virtual-machine-which-i-can-run-on-windows-to-test-my-website/948230#948230 1 Answer by Hooray Im Helping for where to find A mac virtual machine which i can run on windows to test my websites? Hooray Im Helping 2009-06-04T01:48:52Z 2009-06-04T01:48:52Z <p>I've found that <a href="http://www.xenocode.com/browsers/" rel="nofollow">Xenocode</a> works best for me; I like using it much more than browsershots.</p> http://stackoverflow.com/questions/937684/how-do-i-load-an-image-using-sdl-and-xcode-on-os-x-10-5 0 How do I load an image using SDL and Xcode on OS X 10.5? Hooray Im Helping 2009-06-02T02:31:53Z 2009-06-02T16:07:46Z <p>Edit: After using a bmp at toastie's suggestion, I'm still having problems loading the image:</p> <p>I'm using SDL and OpenGL with Xcode and I'm trying to load an image to use as a texture on a cube. The image is a 256x256 RBG jpeg. The image is in the same directory as all of my source code, and it's under the Resources folder in the Xcode project. The file is named texture.bmp</p> <pre><code>if (textureSurface = SDL_LoadBMP("texture.bmp")) { // ... } else printf("%s", SDL_GetError()); </code></pre> <p>I keep running it and getting the console error: <code>Couldn't open texture.bmp</code> </p> <p>What is the path, or proper syntax for loading a file under these conditions?</p> http://stackoverflow.com/questions/1868365/using-jquery-how-do-i-find-all-instances-of-a-class-that-appear-between-another/1868401#1868401 Comment by Hooray Im Helping on Using jQuery, how do I find all instances of a class that appear between another class Hooray Im Helping 2009-12-08T17:16:09Z 2009-12-08T17:16:09Z This seems to work, thanks. http://stackoverflow.com/questions/362226/whats-your-next-programming-language-and-why/362237#362237 Comment by Hooray Im Helping on What's your next programming language? And why? Hooray Im Helping 2009-11-27T02:01:44Z 2009-11-27T02:01:44Z +1 for Haskell. http://stackoverflow.com/questions/1749496/first-jquery-script-simple-form-focus-any-problems/1749536#1749536 Comment by Hooray Im Helping on First jQuery script, simple Form Focus, any problems? Hooray Im Helping 2009-11-17T15:18:53Z 2009-11-17T15:18:53Z Isn't $(document).ready(function() {}) the preferred jQuery way of doing it since $(function()) just calleds the document ready handler? It's certainly more communicative of the intent of the script. http://stackoverflow.com/questions/58640/great-programming-quotes/116747#116747 Comment by Hooray Im Helping on Great programming quotes Hooray Im Helping 2009-11-14T17:34:38Z 2009-11-14T17:34:38Z I never get tired of reading a joke like this, and then seeing humorless comments like SHODAN's explaining a concept we all understand but don't take so seriously that we can't laugh at the joke. http://stackoverflow.com/questions/1715918/in-actionscript-3-how-can-i-pass-the-current-value-of-an-array-in-a-loop-to-an-e/1716075#1716075 Comment by Hooray Im Helping on In ActionScript 3, how can I pass the current value of an array in a loop to an event listener Hooray Im Helping 2009-11-11T20:35:30Z 2009-11-11T20:35:30Z I agree with what Lior said, including the +1 :) http://stackoverflow.com/questions/1715918/in-actionscript-3-how-can-i-pass-the-current-value-of-an-array-in-a-loop-to-an-e/1716010#1716010 Comment by Hooray Im Helping on In ActionScript 3, how can I pass the current value of an array in a loop to an event listener Hooray Im Helping 2009-11-11T15:59:44Z 2009-11-11T15:59:44Z Tanks Lior, worked like a champ. http://stackoverflow.com/questions/1715918/in-actionscript-3-how-can-i-pass-the-current-value-of-an-array-in-a-loop-to-an-e Comment by Hooray Im Helping on In ActionScript 3, how can I pass the current value of an array in a loop to an event listener Hooray Im Helping 2009-11-11T15:54:12Z 2009-11-11T15:54:12Z Edited loader.load() method to correctly use a new URLRequest() object http://stackoverflow.com/questions/1694716/programmer-trying-to-figure-out-a-self-project-using-php/1694765#1694765 Comment by Hooray Im Helping on Programmer trying to figure out a self project using PHP Hooray Im Helping 2009-11-08T06:34:52Z 2009-11-08T06:34:52Z You and me both ;) http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/76466#76466 Comment by Hooray Im Helping on What is the single most effective thing you did to improve your programming skills? Hooray Im Helping 2009-11-05T22:32:00Z 2009-11-05T22:32:00Z Heh, wasn't the question the SINGLE most effective thing you've done? OMG -1 FOR NOT PAYING ATTENTION THE QUESTION!!!! ;) http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/333713#333713 Comment by Hooray Im Helping on What is your best programmer joke? Hooray Im Helping 2009-11-04T03:37:04Z 2009-11-04T03:37:04Z I spent my last vote of the day upvoting this :) http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234732#234732 Comment by Hooray Im Helping on What is your best programmer joke? Hooray Im Helping 2009-11-04T03:28:07Z 2009-11-04T03:28:07Z ColdFusion: You build the gun, fire it, and shoot yourself in the foot, but no one thinks the gun exists because it happened behind a corporate intranet. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/236770#236770 Comment by Hooray Im Helping on What is your best programmer joke? Hooray Im Helping 2009-11-04T03:18:42Z 2009-11-04T03:18:42Z @Jason. It's. A. Freaking. Joke. We know what C was designed for. Don't take it too seriously. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234894#234894 Comment by Hooray Im Helping on What is your best programmer joke? Hooray Im Helping 2009-11-04T03:12:58Z 2009-11-04T03:12:58Z I read it out loud and still didn't get it. Can someone please explain it to a dumb guy? http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234599#234599 Comment by Hooray Im Helping on What is your best programmer joke? Hooray Im Helping 2009-11-04T03:09:09Z 2009-11-04T03:09:09Z Note: does not apply to MMOs. http://stackoverflow.com/questions/915587/when-calling-a-javascript-function-how-do-i-set-a-custom-value-of-this/915602#915602 Comment by Hooray Im Helping on When calling a Javascript function, how do I set a custom value of "this"? Hooray Im Helping 2009-10-27T23:33:05Z 2009-10-27T23:33:05Z @Jason: please, I beg of you, have pity on the poor knaves who don't grok JavaScript like you do. I can assure you everyone is in awe of your vast knowledge of the correct, non-tail-wagging way to do things. I know it must be frustrating seeing the legion of ignorant buffoons on Stack Overflow who have the choice to vote the way they want, rather than the way you know deep down inside your heart of hearts is correct. I can understand your frustration, it's not as if Cletus' way works or anything. Sad how there is just no justice in the world, isn't it?