User Fire Crow - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T20:44:33Z http://stackoverflow.com/feeds/user/80479 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1876905/why-is-python-reusing-a-class-instance-inside-in-function 2 why is python reusing a class instance inside in function Fire Crow 2009-12-09T21:11:02Z 2009-12-09T21:28:46Z <p>I'm running a for loop inside a function which is creating instances of a class to test them. instead of making new classes it appears to be reusing the same two over and over.</p> <p>Is there something I'm missing about how classes and variables are handled in python methods?</p> <p>how can I generate a new object for each iteration of the loop</p> <pre><code>class CollectionSetImages(unittest.TestCase): def test_keywordset(self): """Testing keyword queries by images equality """ for keyword in ['a','b','c','d','e','f','g']: images_by_keyword = Image.keyword_query([keyword]) collection = Collection([keyword]) class_images = collection.images print('colleciton: %s id: %s' % (collection,id(collection))) self.assertEqual(images_by_keyword, class_images,) </code></pre> <p>here is the output</p> <pre><code>colleciton: &lt;tests.fakeimages._FakeCollection object at 0xb7c656cc&gt; id: 3083228876 colleciton: &lt;tests.fakeimages._FakeCollection object at 0xb7c656ec&gt; id: 3083228908 colleciton: &lt;tests.fakeimages._FakeCollection object at 0xb7c656cc&gt; id: 3083228876 colleciton: &lt;tests.fakeimages._FakeCollection object at 0xb7c656ec&gt; id: 3083228908 colleciton: &lt;tests.fakeimages._FakeCollection object at 0xb7c656cc&gt; id: 3083228876 colleciton: &lt;tests.fakeimages._FakeCollection object at 0xb7c656ec&gt; id: 3083228908 colleciton: &lt;tests.fakeimages._FakeCollection object at 0xb7c656cc&gt; id: 3083228876 </code></pre> <p>when I use seperate variable names I get seperate ids for each instance as expected:</p> <pre><code>collectionA = Collection(['a']) print('collection: %s id: %s' % (collectionA,id(collectionA))) collectionB = Collection(['f']) print('collection: %s id: %s' % (collectionB,id(collectionB))) collectionC = Collection(['f']) print('collection: %s id: %s' % (collectionC,id(collectionC))) </code></pre> <p>outputs:</p> <pre><code>collection: &lt;tests.fakeimages._FakeCollection object at 0xb7cbc8ac&gt; id: 3083585708 collection: &lt;tests.fakeimages._FakeCollection object at 0xb7cbccec&gt; id: 3083586796 collection: &lt;tests.fakeimages._FakeCollection object at 0xb7cbcd2c&gt; id: 3083586860 </code></pre> http://stackoverflow.com/questions/255202/how-do-i-view-git-diff-output-with-visual-diff-program/1607200#1607200 0 Answer by Fire Crow for How do I view 'git diff' output with visual diff program? Fire Crow 2009-10-22T13:28:44Z 2009-10-22T13:28:44Z <p>For a linux version of how to configure a diff tool on git versions prior to 1.6.3 (1.6.3 added difftool to git) <a href="http://technotales.wordpress.com/2009/05/17/git-diff-with-vimdiff/" rel="nofollow">this</a> is a great concise tutorial,</p> <p>in brief:</p> <p>Step 1: add this to your .gitconfig</p> <pre><code>[diff] external = git_diff_wrapper [pager] diff = </code></pre> <p>Step 2: create a file named git_diff_wrapper, put it somewhere in your $PATH</p> <pre><code>#!/bin/sh vimdiff "$2" "$5" </code></pre> http://stackoverflow.com/questions/1558036/git-post-update-hook-that-runs-a-script-that-needs-access-to-all-files-in-the-re/1568848#1568848 0 Answer by Fire Crow for Git: Post-update hook that runs a script that needs access to all files in the repository Fire Crow 2009-10-14T20:38:57Z 2009-10-14T20:38:57Z <p>If your remote repsitory is a bare shared repo, then there is no copy of the files. you can change this, and then you'll just have to run an auto checkout.</p> <p>if your packaging hte files, best to have the repo in a seperate directory too</p> <p>I use the following for the exact purpose you've named</p> <p>here is the blog post that showed me how to set it up <a href="http://toroid.org/ams/git-website-howto" rel="nofollow">http://toroid.org/ams/git-website-howto</a></p> <p>here are my abbrieviated notes below</p> <p>make a directory outside the repo and put the working tree there, then make it no longer a bare repo so there is a copy of the files, then run a before you run your packaging script</p> <pre><code> # create the repo with files that live in a seperate folder cd /share/proj/all/$1/repo git --bare init --shared git config core.worktree ../actual git config core.bare false git config receive.denycurrentbranch ignore # add a hook to checkout the repo into the files directory automatically on push echo "#!/bin/sh" &gt; hooks/post-receive echo "git checkout -f" &gt;&gt; hooks/post-receive chmod +x hooks/post-receive </code></pre> http://stackoverflow.com/questions/1567394/share-folder-including-eclipse-workspace-with-git-between-winxp-and-mac-os-x/1568715#1568715 0 Answer by Fire Crow for Share folder including Eclipse workspace with Git between WinXP and Mac OS X Fire Crow 2009-10-14T20:17:08Z 2009-10-14T20:17:08Z <p>I'd set up the machines to ignore any OS specific information</p> <p>this can be acomplished with putting a file named .gitignore in the root of the working directory of the repository.</p> <p>in .gitignore</p> <pre><code>/path/not/to/share/* </code></pre> http://stackoverflow.com/questions/680695/animation-and-logic/1544140#1544140 0 Answer by Fire Crow for Animation and logic Fire Crow 2009-10-09T14:30:55Z 2009-10-09T14:30:55Z <p>I try as much as possible to keep callbacks out of child animations. Animations should indicate that they are complete, the actions taken on an animations completion should be called from the controller level of the application.</p> <p>In Actionscript this is the beauty of event dispatching/listening - The controller object can create the aimation and then assign a handler for an event which the animation dispatches when it is complete.</p> <p>I've used the pattern for several things in Flash projects and it helps keep code independent far better than callbacks.</p> <p>Especially if you write custom event objects which extend Event to carry the kind of information you need. such as teh MouseEvent that carries localX, localY, and stageX and stageY. I use a custom I've named NumberEvent to broadcast any kind of numerical information around my applications. </p> <p>in actionscript controler object:</p> <pre><code>var animObj:AwsomeAnim = AwsomeAnim(); animObj.start(); animObj.addEventListener(AwsomeAnim.COPLETE,_onAnimFinish); function _onAnimFinish():void { // actions to take when animation is complete here } </code></pre> <p>In javascript where custom events do not exist. I just have a boolean variable in the animation object, and check it on a timer from the controller. </p> <p>in javascript controller object:</p> <pre><code>var animObj = new animObj();// among other things must set this.isComplete = false animObj.start(); function checkAnimComplete() { if(animObj.isComplete == true) { animCompleteActions(); }else{ setTimeout(checkAnimComplete,300); } } checkAnimComplete(); function animCompleteActions() { // anim complete actions chere } </code></pre> http://stackoverflow.com/questions/1442913/as3-audio-activity-level-of-a-netstream/1488966#1488966 0 Answer by Fire Crow for AS3: Audio activity level of a NetStream Fire Crow 2009-09-28T19:39:10Z 2009-09-28T19:39:10Z <p>I've seen Flex examples that displays an eq bar.</p> <p>the code uses two objects</p> <p>SoundTransform and flash.media.SoundChannel</p> <p>it functions by dispatching a custom event that has a property which is the SoundChannel object containing the EQ of the playing audio stream.</p> <p>not sure exactly how the doe works cause it's bundled up in flex, or how to get from the NetStream to the audio based SoundChannel. </p> <p>The example is in chapter 15 "Building your own components" of the book "Flex 3 component solutions" by jack herrington. published by friends of ed (the pink spine books).</p> <p>hope that helps.</p> http://stackoverflow.com/questions/1484861/calling-a-flex-as3-callback-from-javascript/1488806#1488806 0 Answer by Fire Crow for Calling a Flex/AS3 Callback from Javascript Fire Crow 2009-09-28T19:08:17Z 2009-09-28T19:08:17Z <p>I notice two things right away</p> <p>firstly it appears your ExternalInterface will die if the ExternalInterface is not ready.</p> <pre><code>public function initApp():void { if (ExternalInterface.available) { ExternalInterface.addCallback("foobar", foobar); } } </code></pre> <p>I would add a timout and then try again so that it tries again until Externalinterface is ready.</p> <p>Also I don't see the function "foobar" in your javascript code. I see callback passed in as a variable but without varifying that it is in fact 'foobar' this is hte kind of thing that can make testing a misserable event.</p> <pre><code>function testAPICallbackFromGWT(callback){ $clinit_26(); //added by the GWT compiler alert('callback to be launched 3 2 1'); callback(); } </code></pre> <p>I would simplify your testing example so that there are less moving parts.</p> <pre><code>// e.g. run just flash to javascript only ExternalInterface.call("alert", "hello out there"); </code></pre> <p>if that works</p> <pre><code>// establish the call from flash ExternalInterface.addCallback("hello_out_there", foobar); // and in javascript alert(typeof('hello_out_there')); // will be 'function' if exists or undefined if ExternalInterface did not work </code></pre> <p>This way you can get a handle bit for bit what is working and where it breaks down.</p> <p>Pay atention to the timing, if you can tigger your flash from button actions and your javascript from links you can illiminate a number of loading issues as well. of course you'll need to solve an autoload version for your launch but for testing manually triggered events can simplify things significantly.</p> <p>also because it's javascript the browser is relevant.</p> <p>I've seen consistent results in Firefox and Internet explorer that break down in safari and sometimes IE is the odd browser out.</p> <p>Sometimes Firefox is the only one that breaks. </p> <p>you just have to test them all.</p> http://stackoverflow.com/questions/1482053/as3-export-a-movieclip-or-canves-to-swf/1488720#1488720 0 Answer by Fire Crow for AS3: Export a MovieClip or Canves to swf Fire Crow 2009-09-28T18:50:22Z 2009-09-28T18:50:22Z <p>server side flex sdk compiles actionscript or flex from the command line on any linux/unix/windows machine</p> <p>I use the flex command line compiler to develop flash apps from my linux desktop, will work great on a server and is scriptable from your web app.</p> <p>here are the steps</p> <p>1.) download the flex sdk from adobe, and unzip it on the server</p> <p>2.) generate the actionscript *.as file or flex *.mxml file for the card</p> <p>3.) run this in a linux shell on the server to generate the SWF</p> <pre><code>SOURCE_FILE=/dir/with/flex_sdk/ OPTS='-use-network=false' # note this is a relative path to the flex sdk CONFIG_FILE='flex-config.xml' if [ -f $CONFIG_FILE ]; then OPTS=$OPTS' -load-config='$CONFIG_FILE fi OPTS=$OPTS' -output /path/to/ouput/swf' /path/to/flex_sdk/bin/mxmlc $OPTS $SOURCE_FILE </code></pre> <p>the sdk works on windows also but I'm not sure what the command line arguments are</p> http://stackoverflow.com/questions/1486032/as3-oop-game-structure-class-architecture/1488644#1488644 1 Answer by Fire Crow for As3 OOP game structure (class architecture) Fire Crow 2009-09-28T18:37:18Z 2009-09-28T18:37:18Z <p>umm... I'm assuming your question is "What is a better structure for managing a game than what I have here" Though that's not explicitly stated that's what I'll try to answer</p> <p>I don't think polymorphism is the best solution for what your doing. OOP is more than just a series of objects. It's grouping the functionality into useful objects.</p> <p>I would suggust moving more functionality into the Controller</p> <pre><code>1.) a main object with all the following functionality that will be present throuhout the game a.) go to level (next/previous) b.) keep track of score c.) controll the state of the game d.) anything else that exists throughout the game 2.) level objects that handle level specific information a.) interactivity of the questions such as buttons etc. b.) managing the correct answer and the impact it has on the score in main </code></pre> http://stackoverflow.com/questions/998179/why-do-singletons-pervade-actionscript-culture/999227#999227 0 Answer by Fire Crow for Why do singletons pervade ActionScript culture? Fire Crow 2009-06-16T01:19:32Z 2009-09-23T01:29:09Z <p>I've since changed my position in this regard.</p> <p>Using objects in actionscript3 haas served me well to increase modulatiry.</p> <p>I'd speculate that like me, the benefits of OOP are consusing and hard to come by for most begining flash developers.</p> <p>I think there are really two reasons for this.</p> <p>1.) talking about the basics is boring, so most information is so overcomplicated. OOP is really just breaking a system into understandable reusable parts.</p> <p>2.) procedural programming is similar to the workflow, it locks you into a certain work flow, but for begining programmers that makes it easier to comprehend</p> <p>3.) Alot of flash is about managing the state of the flash widget, so it makes some level of sense to manage the information in one central place.</p> <p>---------------- original response ----------------</p> <p>I'm part of that AS community that likes (and uses) singletons.</p> <p>I'm relatively new to programming (3 years PHP/MySQL/Javascript/Actionscript proffesionally).</p> <p>I think there is a clear distinction between modular programming and classical class based inheritance OOP. </p> <p>Modular programming, which from what I understand is large part of OOP, is an extremely important part of effective program design.</p> <p>Anything used more than once can be moved into a seperate function. Groups of operations that share similar functionality or attributes can be seperated into their common parts and then the different parts uniqe to thier instance.</p> <p>However, I find it more effective to do this with a collection of interrelated modules</p> <p>In my opinion most of inheritance base OOP is just hot air. Modules interacting with each other is a much more efficient way to model the activities of a program that 15 versions of basically the same thing.</p> <p>I make a core and make modules to atatch to the core, but never have the sub-object be an extension of the core. I think extending a class is cumbersome and stagnates development by removing necessary flexibility from it.</p> <p>One of the reasons I've often read (and heard behind inheritence based OOP) is that it increases readability and maintainablity. To me all this means is that programmers would rather use a system that's easy for them, than a system effective for the program.</p> <p>I am all for writing as clean and understandable code as possible but only up to and not past the point where it inhibits the creativity and flexibility of a program.</p> <p>I'm for OOP but I prefer a singleton, prototype, or module based aproach.</p> http://stackoverflow.com/questions/411201/can-we-improve-the-joel-test/1463458#1463458 0 Answer by Fire Crow for Can we improve the Joel Test? Fire Crow 2009-09-23T01:09:43Z 2009-09-23T01:09:43Z <p>I think the best thing about the joel test is that it is concrete facts that usually indicate problems in a development firm.</p> <p>In an interview where candidates and companies are presenting there best face, it's nice to have simple yes or no factual questions that can indicate if there are problems with thier development process.</p> <p>I would second AtariPete's suggustion and add to the list.</p> <p>"Does your company do code peer reveiws on a regular basis"</p> http://stackoverflow.com/questions/1442322/whats-the-best-way-to-vet-a-potential-software-consulting-firm-you-might-work-fo/1463429#1463429 0 Answer by Fire Crow for What's the best way to vet a potential software consulting firm you might work for? Fire Crow 2009-09-23T00:56:15Z 2009-09-23T00:56:15Z <p>I would figure out what specifically you're looking for in a company, and then find out what simple question can help you judge that.</p> <p>If you like to work in well organized companies.</p> <p>"What portion of your timeline is spent on planning" ... now they will talk about their planning process</p> <p>If you like creative development where you'll be given wide leway to devise solutions.</p> <p>"How is work asigned and who decides what role each developer plays in the process" ... now they will talk about what decisions, if any, will be made for you</p> <p>Remember, you will always be presented with the positive side of a firm in the interview. Figure out what unbiased facts indicate a good company to you.</p> <p>Regardless of your feelings on the <a href="http://www.joelonsoftware.com/articles/fog0000000043.html" rel="nofollow">Joel Test</a>, it is wonderfully factual, a firm uses source control or it does not. These are the kind of questions you must ask to properly vet a firm.</p> http://stackoverflow.com/questions/1451683/as3-rollover-movieclip-menu/1451764#1451764 0 Answer by Fire Crow for as3 RollOver movieclip menu Fire Crow 2009-09-20T19:13:19Z 2009-09-20T19:13:19Z <p>Here is a quick and dirty trick originaly from javascript technique</p> <p>1.) build extra logic into the clipA rollout which waits a small period of time and then checks if the mouse is on the menu or not before closing it.</p> <pre><code>// define a boolean value for the moust beeing on the menu public var menuOver:Boolean = false; public function onMenuOver( event:MouseEvent ):void { menuOver = true; // other menu code here } public function onMenuOut( event:MouseEvent ):void { menuOver = false; // other menu code here } public function onMainClipOver( event:MouseEvent ):void { // show menu code here } public function onMainClipOut( event:MouseEvent ):void { setTimeout(execMainClipOut,100); } /** * close the menu only if the mouse is not over the menu */ public function execMainClipOut() { if(!menuOver){ // close the menu } } </code></pre> http://stackoverflow.com/questions/1300690/actionscript-angle-of-a-line-trig 1 Actionscript Angle of a Line Trig Fire Crow 2009-08-19T15:25:33Z 2009-08-20T14:44:48Z <p>How can I find the Angle of a line between two points in actionscript 3.</p> <p>I have an object that dynamically animates out arrows, given the points that represent start, elbows, and then end point.</p> <p>I need the angle of the line to rotate the arrow at the tip to accurately point with the current segment being drawn</p> <p>I can easily get the angle for right angled lines by detecting if one axis is 0 but need the angle of any line between two points.</p> <p>I'm familiar with getting the Points for a line e.g. draw a 100px line at 47 degrees:</p> <pre><code>var length:Number = 100; var angle:uint = 48 graphics.lineTo(Math.cos(angle) * length, Math.sin(angle) * length); </code></pre> <p>but am struggling to get the angle from the line:</p> <p>what I need is</p> <p>given start point and end point of a line, what is the angle of the line.</p> <p>many thanks for any and all suggustions</p> http://stackoverflow.com/questions/1167199/background-images-disappearing-in-ie6/1255486#1255486 0 Answer by Fire Crow for Background images disappearing in IE6 Fire Crow 2009-08-10T15:18:49Z 2009-08-10T15:18:49Z <p>Make the position 'relative' for the element if possible.</p> <p>I just had this same issue, the problem is not just the background, it's a screen redrawing problem, scrolling the element off the screen and then back on the screen, had the effect of showing/hiding the background.</p> <p>for some reason setting the elements position to relative causes IE to render it differently, and much more consistently.</p> http://stackoverflow.com/questions/825316/flash-trace-output-in-firefox-linux/1190093#1190093 0 Answer by Fire Crow for Flash trace output in firefox, linux Fire Crow 2009-07-27T19:22:53Z 2009-07-27T19:22:53Z <p>I use the flex compiler on linux to build actionscript files, [embed(source="file")] for all my assets including images and fonts, I find actionscript development on linux very developer friendly.</p> <p>Then again, I'm most interested in that flash has become Unix Friendly as aposed to the other way around :)</p> http://stackoverflow.com/questions/1019109/what-transcoding-services-can-people-recommend/1174693#1174693 0 Answer by Fire Crow for What transcoding services can people recommend? Fire Crow 2009-07-23T21:46:54Z 2009-07-23T21:46:54Z <p>I'm currently looking at services for this as well, </p> <p>just found encoding.com from an answer to <a href="http://stackoverflow.com/questions/404322/programmatically-transcode-mpeg-2-videos">this question</a></p> <p>I also have been looking at CDN's becuase I also need to ensure that the videos don't overwhelm my servers, not sure but I thought some of them said full service media including transcoding. if you need a CDN to deliver the video too it may come with transcoding.</p> <p>Now I'm getting into server stuff, maybe this should topic should move to server fault?</p> http://stackoverflow.com/questions/1090056/how-to-unescape-html-in-javascript/1090254#1090254 2 Answer by Fire Crow for How to unescape html in javascript? Fire Crow 2009-07-07T03:37:07Z 2009-07-23T16:06:10Z <p>Some guesswork for what it's worth.</p> <p>innerHTML is literally the browser interpretting hte html.</p> <p>so &lt; becomes the less than symbol becuase that's what would happen if you put &lt; in the html document.</p> <p>The largest security risk of strings with &amp; is an eval statement, any JSON could make the application insecure. I'm no security expert but if strings remain strings than you should be ok.</p> <p>This is another way innerHTML is secure the unescaped string is on it's way to becoming html, so theres no risk of it running the javascript.</p> http://stackoverflow.com/questions/1162611/vim-getting-the-current-value-of-vim-foldmarker 0 vim getting the current value of vim foldmarker Fire Crow 2009-07-22T01:30:46Z 2009-07-22T01:37:44Z <p>How do you find the value of vim variables that are set with one word commands</p> <p>such as :set foldmarker={,}</p> <p>I'm writing a simple custom function for foldtext() to set a custom one line summary of the folded region</p> <p>it works great but looks funny when I open a documents with any fold marker other than what I've hard coded into the function</p> <p>here is the function</p> <pre><code>set foldtext=GetCustomFoldText() function GetCustomFoldText() let foldClose = '}' let foldTtl = v:foldend - v:foldstart return getline(v:foldstart) . ' (+) ' . foldTtl . ' lines... ' . foldClose endfunction </code></pre> <p>which makes this:</p> <pre><code>function myAwsomeFunction() { // awsomeness here // awsomeness here // awsomeness here } </code></pre> <p>folded becomes this:</p> <pre><code>function myAwsomeFunction() { (+) 5 lines... } </code></pre> <p>Which is great until I edit a document with a different foldmarker</p> <p>I'm trying to determine foldClose dynamically from the foldmarker </p> http://stackoverflow.com/questions/1153074/php-arrays-with-only-one-type/1153952#1153952 1 Answer by Fire Crow for php arrays with only one type Fire Crow 2009-07-20T14:31:29Z 2009-07-20T14:31:29Z <p>PHP as a lanugage is very flexible in terms of type handling and type conversion. You will probably have to put a manual check in if you want any kind of strong type checking, a simple if statement will do.</p> <p>The array object is designed to be especially flexible (lazy key assignment, automatic increment, string or integer keys, etc.) so you should probably use a custom object of your own.</p> http://stackoverflow.com/questions/982239/what-is-the-equivalent-of-foreach-with-keys-in-actionscript/999286#999286 0 Answer by Fire Crow for What is the equivalent of foreach (with keys) in ActionScript Fire Crow 2009-06-16T01:55:13Z 2009-06-16T01:55:13Z <pre><code>for(var i:String in myArray) // loops through the items in the array myArry[i] += 'new message will show' for each(var i:String in myArray) // creates a copy of the array as it loops myArray[i] += 'this change will not show outside the loop'; </code></pre> <p>The later is great for if you need to minipulate the variables during the loop but want to preserve the original object for the rest of your program. Especially handy for formatting or translating values for a specific part of your program.</p> http://stackoverflow.com/questions/940964/could-a-page-display-diferrent-content-if-the-url-hash-changes/940999#940999 1 Answer by Fire Crow for Could a page display diferrent content if the URL hash changes? Fire Crow 2009-06-02T17:57:32Z 2009-06-02T17:57:32Z <p>I just built a system to do this a few weeks ago</p> <p>depeding on the browser you need to detect the hash, heres how to do that</p> <pre><code>// test all possible places hash could be on different browsers if(window.location.hash){ hash = window.location.hash; else if (document.location.hash){ hash = document.location.hash; else if(location.hash){ hash = location.hash; } // some browsers start the hash with #, remove it for consistency if(hash.substring(0,1) = '#'){ hash = hash.substring(1,hash.length); } </code></pre> <p>Then handle the value of the hash variable to trigger page changes as you please.</p> <p>for example: <a href="http://www.example.com#pageA" rel="nofollow">http://www.example.com#pageA</a></p> <pre><code>if(hash = 'pageA'){ document.getElementById('mainContentDiv').innerHTML = '&lt;p&gt; content for the page displayed when the hash sais pageA&lt;/p&gt;'; } </code></pre> http://stackoverflow.com/questions/790054/exec-in-php-on-windows-without-opening-up-cmd-exe-security-weakness/790101#790101 1 Answer by Fire Crow for Exec() in PHP on Windows without opening up cmd.exe Security weakness ? Fire Crow 2009-04-26T01:50:08Z 2009-04-26T01:50:08Z <p>Filter the variables you feed to exec() very carefully. </p> <p>use integers only for numerical information</p> <p>if it's a filename use file_exists() to confirm it's a real filename</p> <p>if it's a string use regex and remove characters like ' and " and \ and ; so any commands in it wont run.</p> http://stackoverflow.com/questions/789987/i-dont-want-to-learn-php-should-i-avoid-learning-it/790094#790094 0 Answer by Fire Crow for I don't want to learn PHP. Should I avoid learning it? Fire Crow 2009-04-26T01:44:19Z 2009-04-26T01:44:19Z <p>I think it says more about <em>you</em> than about <em>PHP</em> as a language, it's important to be uncomfortable and get used to learning things you don't want to. After all that's what learning is isn't it.</p> <p>And it's especially important to learn how to develop without a framework, in order to truly utalize a framework you must know the kind of programming it is composed of.</p> <p>So my answer is two fold, 1.) Yes learn PHP, and 2.) PHP is the least of your problems when it comes to being employable, get ready for your first job out of school because they things you will need to learn will make learning PHP the least of your concerns.</p> http://stackoverflow.com/questions/717992/how-to-find-an-entry-level-job-after-you-already-have-a-graduate-degree/769812#769812 1 Answer by Fire Crow for How to find an entry-level job after you already have a graduate degree? Fire Crow 2009-04-20T19:42:37Z 2009-04-20T19:42:37Z <p>Let me tell you something that was very hard for me to hear and has made all the difference in my job search:</p> <p>you don't know what your talking about</p> <p>I mean that in the kindest of ways. Your better off than you think because what you think is not true. You don't know what people will/wont wont in a job search, because every company is different, don't prejudge yourself.</p> <p>you can speculate and as a highly educated person argue well thought out reasons for why you can't find a job to yourself. But, realistically, it's your responsability to represent your value to companies, regardless of your situation.</p> <p>Go out and put your Ph.D to work regardless of your experience, the economy, or whatever else. It will take alot of effort to get over the innertia of renetering the job market but it's worth it.</p> http://stackoverflow.com/questions/500304/am-i-too-young-to-be-worrying-about-college-right-now/765761#765761 0 Answer by Fire Crow for Am I too young to be worrying about college right now? Fire Crow 2009-04-19T17:28:44Z 2009-04-19T18:07:07Z <p>1.) what people say about college doesn't matter.</p> <p>2.) college matters</p> <p>What people say about college doesn't matter because you will always find a job because of your own initiative and accomplishments.</p> <p>College matters in large part because it is habit forming. Stamina, Stress management, and intellectual rigor in the chosen field are extremely valuable. This conditioning must be part of your character before you begin climbing the career ladder as the workplace will do more to distract you than help you focus.</p> <p>That said, college will mean more to you, as it does to me, when you are ready for it. I've spent 6 years working before going to college. It's easier to invest in your education when you've had some thrills. But if you want to be a key player, you will eventually need formal education. It's just the most efficient way to grow beyond a certain point.</p> http://stackoverflow.com/questions/764973/finding-the-right-people-for-web-work/764983#764983 1 Answer by Fire Crow for Finding the right people for web work Fire Crow 2009-04-19T06:59:00Z 2009-04-19T14:16:30Z <p>My guess is that good programmers are saying the same thing about companies like you. And your solution is the same as theirs, you must take on a dedicated sales effort to identify and pursue your intended audience.</p> <p>The simple fact is that it takes a lot of effort to span the gap between people who can do work and companies that need that work done. </p> <p>On average, I expect 1 response for every 50 applications, and from those responses, 5 lead to an interview and 1 leads to a contract or job.</p> <p>I think it's the same for interviewing applicants: it takes a lot of raw effort to search through enough applications to find good workers.</p> <p>When I held interviews to subcontract out some of my work, it was the same numbers: 40+ applicants, 10 were interesting and after emailing them, only 5 remained interesting; after interviewing those 5, one was fit to hire.</p> <p>Or you could hire an agency that does this for a living, but you'll pay for it.</p> http://stackoverflow.com/questions/744149/virtual-pc-2007-cant-access-host-using-nat/745862#745862 1 Answer by Fire Crow for Virtual PC 2007 Can't Access Host Using NAT Fire Crow 2009-04-14T00:05:46Z 2009-04-14T00:05:46Z <p>Make a domain name in the windows hosts file on the Vista Host system:</p> <pre><code> C:\WINDOWS\system32\drivers\etc\hosts 172.16.16.4 localserver </code></pre> <p>Here is the blog that explains it:</p> <p><a href="http://blog.flexuous.com/2007/02/04/virtual-pc-ip-routing-enabling-vpc-nat-loopback-connector-at-the-same-time/" rel="nofollow">http://blog.flexuous.com/2007/02/04/virtual-pc-ip-routing-enabling-vpc-nat-loopback-connector-at-the-same-time/</a></p> http://stackoverflow.com/questions/734002/javascript-syntax-problems-finding-it/734080#734080 1 Answer by Fire Crow for Javascript syntax problems -- finding it. Fire Crow 2009-04-09T12:52:27Z 2009-04-09T12:52:27Z <p>Double, Triple, Quadruple checks are good but not enough. Comment out lines of code at a time to pinpoint the line with the error.</p> <p>and remember this "The computer is never wrong" and get used to it.</p> <p>e.g. </p> <p>first test:</p> <pre><code>/* function blah(do){ line 1 line 2 line 3 } */ </code></pre> <p>then:</p> <pre><code>function blah(do){ /* line 1 line 2 line 3 */ } </code></pre> <p>then:</p> <pre><code>function blah(do){ line 1 /* line 2 line 3 */ } </code></pre> <p>until the error shows itself</p> http://stackoverflow.com/questions/723242/how-to-value-and-put-a-price-on-software-license/723272#723272 2 Answer by Fire Crow for How to value and put a price on software (license) Fire Crow 2009-04-06T21:13:17Z 2009-04-06T21:13:17Z <p>I value my product as a fraction of it's value for the client. My venture sells web apps so it's slightly different, but if a web app would streamline 75K worth of overhead out of an office's budget, I charge 25K for it.</p> <p>If it's a one time sale you have the option to examine the client and what value it will deliver to them. If it's a publicly sold product, the options are very different.</p> <p>The basic formula is to sell it for around 30% of what it's worth to clients/end users. If you can deliver better quality than the next company, pricing in step with them is a big mistake because you can make more and take a better market share by promoting the features that justify the cost.</p> http://stackoverflow.com/questions/1876905/why-is-python-reusing-a-class-instance-inside-in-function/1877020#1877020 Comment by Fire Crow on why is python reusing a class instance inside in function Fire Crow 2009-12-11T15:52:42Z 2009-12-11T15:52:42Z very nice, thanks for digging this up http://stackoverflow.com/questions/1876905/why-is-python-reusing-a-class-instance-inside-in-function Comment by Fire Crow on why is python reusing a class instance inside in function Fire Crow 2009-12-09T21:19:15Z 2009-12-09T21:19:15Z @Jarret, good point, posting output of the test objects shortly http://stackoverflow.com/questions/113427/how-to-clear-the-scrollback-in-the-screen-command/113462#113462 Comment by Fire Crow on How to clear the scrollback in the screen command? Fire Crow 2009-11-27T18:24:56Z 2009-11-27T18:24:56Z simple enough misunderstanding, but do read the questions for details http://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch/1593487#1593487 Comment by Fire Crow on How to programmatically determine the current checked out Git branch Fire Crow 2009-11-01T03:02:15Z 2009-11-01T03:02:15Z + for $(git symbolic-ref -q HEAD), I'm using this for an automation script # head_sha1=$(cat .git/$(git symbolic-ref HEAD)); # echo $head_sha1 9ed68f221e158ce90f8a36832d981befa6e75179 works great, many thanks http://stackoverflow.com/questions/1365541/how-to-move-files-from-one-git-repo-to-another-not-a-clone-preserving-history/1366093#1366093 Comment by Fire Crow on How to move files from one git repo to another (not a clone), preserving history Fire Crow 2009-10-26T21:17:20Z 2009-10-26T21:17:20Z +1, I've been looking for a solution along this lines, gitmmodule could be just what I'm looking for, many thanks... http://stackoverflow.com/questions/1408381/combine-local-git-commits-into-one-commit-with-git-svn/1408404#1408404 Comment by Fire Crow on Combine Local Git Commits into One Commit with git-svn Fire Crow 2009-10-14T21:27:11Z 2009-10-14T21:27:11Z this is totally cool, this completely changes my workflow, many thanks http://stackoverflow.com/questions/42934/whats-with-the-love-of-dynamic-languages/42951#42951 Comment by Fire Crow on What's with the love of dynamic Languages Fire Crow 2009-10-09T13:41:32Z 2009-10-09T13:41:32Z @baash05, I think you've thoroughly missed hte point of this answer, 1.means you can run code as you right it faster no need to wait for a compiler to see the effects of every small change. 2. weather you agree with the effect of it or not there will be less code to write and to read no arguing this fact. http://stackoverflow.com/questions/11313/career-planning-any-tips/11354#11354 Comment by Fire Crow on Career planning – any tips ? Fire Crow 2009-10-05T15:26:10Z 2009-10-05T15:26:10Z +1 great blogs thanks for sharing http://stackoverflow.com/questions/476261/python-as-your-main-language-possible/476319#476319 Comment by Fire Crow on Python as your main language. Possible? Fire Crow 2009-10-04T22:43:42Z 2009-10-04T22:43:42Z + for encouraging to do something your good at http://stackoverflow.com/questions/1505266/java-or-python-for-an-intermediate-php-guy-career-advice/1505321#1505321 Comment by Fire Crow on Java or Python for an intermediate PHP guy. Career advice. Fire Crow 2009-10-04T22:37:21Z 2009-10-04T22:37:21Z ?really I've heard of programmers who's entire career is focused on django expertise http://stackoverflow.com/questions/1482053/as3-export-a-movieclip-or-canves-to-swf/1488720#1488720 Comment by Fire Crow on AS3: Export a MovieClip or Canves to swf Fire Crow 2009-09-28T19:25:22Z 2009-09-28T19:25:22Z yes you have made your solution clear above... http://stackoverflow.com/questions/411201/can-we-improve-the-joel-test/411262#411262 Comment by Fire Crow on Can we improve the Joel Test? Fire Crow 2009-09-23T01:03:07Z 2009-09-23T01:03:07Z Where do you work, I want in. http://stackoverflow.com/questions/411201/can-we-improve-the-joel-test/411226#411226 Comment by Fire Crow on Can we improve the Joel Test? Fire Crow 2009-09-23T01:02:00Z 2009-09-23T01:02:00Z I respectfully disagree, &quot;Testing&quot; is it's own discipline, if in a small firm employees where many hats, the lead developer could also where the sales hat, then it can be one of the many hats. but it must be designated as it's own discipline. Assuming the coders will run unbiased test amidst thier dev schedule is far reaching and irresponsible. http://stackoverflow.com/questions/411201/can-we-improve-the-joel-test/411213#411213 Comment by Fire Crow on Can we improve the Joel Test? Fire Crow 2009-09-23T00:57:50Z 2009-09-23T00:57:50Z +1, lack of peer review has been the largest indication of problems at a company during my career http://stackoverflow.com/questions/1442322/whats-the-best-way-to-vet-a-potential-software-consulting-firm-you-might-work-fo/1442325#1442325 Comment by Fire Crow on What's the best way to vet a potential software consulting firm you might work for? Fire Crow 2009-09-23T00:46:07Z 2009-09-23T00:46:07Z +1, I like the joel test and I feel it's relavant, it's practical evidence of larger problems, e.g. when employees don't write code in an interview you end up working with idiots, when you write new code before fixing bugs you end up working on a mess before you know it. I don't see how agile changes things like this.