Fire Crow

396
reputation
201 views

Registered User

name Fire Crow
member for 8 months
seen 9 hours ago
website
location US
age
Dec
1
awarded  Civic Duty
Nov
27
comment How to clear the scrollback in the screen command?
simple enough misunderstanding, but do read the questions for details
Nov
1
comment How to programmatically determine the current checked out Git branch
+ 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
Oct
26
comment How to move files from one git repo to another (not a clone), preserving history
+1, I've been looking for a solution along this lines, gitmmodule could be just what I'm looking for, many thanks...
Oct
22
answered How do I view ‘git diff’ output with visual diff program?
Oct
14
comment Combine Local Git Commits into One Commit with git-svn
this is totally cool, this completely changes my workflow, many thanks
Oct
14
answered Git: Post-update hook that runs a script that needs access to all files in the repository
Oct
14
answered Share folder including Eclipse workspace with Git between WinXP and Mac OS X
Oct
9
answered Animation and logic
Oct
9
comment What’s with the love of dynamic Languages
@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.
Oct
5
comment Career planning – any tips ?
+1 great blogs thanks for sharing
Oct
4
comment Python as your main language. Possible?
+ for encouraging to do something your good at
Oct
4
comment Java or Python for an intermediate PHP guy. Career advice.
?really I've heard of programmers who's entire career is focused on django expertise
Sep
28
answered AS3: Audio activity level of a NetStream
Sep
28
comment AS3: Export a MovieClip or Canves to swf
yes you have made your solution clear above...
Sep
28
answered Calling a Flex/AS3 Callback from Javascript
Sep
28
answered AS3: Export a MovieClip or Canves to swf
Sep
28
answered As3 OOP game structure (class architecture)
Sep
23
revised Why do singletons pervade ActionScript culture?
added 789 characters in body; added 35 characters in body
Sep
23
answered Can we improve the Joel Test?
Sep
23
comment Can we improve the Joel Test?
Where do you work, I want in.
Sep
23
comment Can we improve the Joel Test?
I respectfully disagree, "Testing" 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.
Sep
23
comment Can we improve the Joel Test?
+1, lack of peer review has been the largest indication of problems at a company during my career
Sep
23
answered What’s the best way to vet a potential software consulting firm you might work for?
Sep
23
comment What’s the best way to vet a potential software consulting firm you might work for?
+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.
Sep
23
comment What’s the best way to vet a potential software consulting firm you might work for?
+1 turnaround is also an indication of a developer unfriendly environment
Sep
21
comment How to match a decimal letter and blank in vim?
+1,this global search feature is very interesting, ":s" has done everything I needed so I never looked further into the search features
Sep
20
answered as3 RollOver movieclip menu
Sep
19
comment What are some of the best programming practices?
+1 walking through = good, but printing out = get a better IDE
Sep
19
comment What are some of the best programming practices?
I understand what and why, but not how...
Sep
19
comment How to go about getting a job at an Agile shop?
I disagree, the "at an Agile" shop is a crucial part of the posting
Aug
26
comment How can I wrap text to some length in Vim?
+1 for the gq key command from visual mode, thats awsomely useful
Aug
19
comment Actionscript Angle of a Line Trig
I ran into the 0 in the denominator, filtering out with if statements for now but atan2 is much more elegent
Aug
19
comment Actionscript Angle of a Line Trig
very cool, I'll look into that
Aug
19
asked Actionscript Angle of a Line Trig
Aug
19
comment if a mysql databases table is going to hold two to four values should i use a varchar?
I use this technique more and more, and use enums less and less, as I learn (the hard way), that applications need to be flexible.
Aug
10
answered Background images disappearing in IE6
Jul
27
answered Flash trace output in firefox, linux
Jul
23
answered What transcoding services can people recommend?
Jul
23
comment Programmatically transcode MPEG-2 videos
I've been looking for a service like this EVERYWHERE, thanks Brandon
Jul
23
comment What transcoding services can people recommend?
I'm totally interested in this topic as well, sad to see no answers yet
Jul
23
revised How to unescape html in javascript?
deleted 4 characters in body
Jul
22
comment vim getting the current value of vim foldmarker
awsome that's perfect
Jul
22
asked vim getting the current value of vim foldmarker
Jul
20
answered php arrays with only one type
Jul
7
comment Accessing the JavaScript Table DOM in a Java Servlet
I don't understand, is there a question in here?
Jul
7
answered How to unescape html in javascript?
Jun
16
accepted What is the equivalent of foreach (with keys) in ActionScript
Jun
16
revised Why do singletons pervade ActionScript culture?
cleaning up a few things; deleted 139 characters in body
Jun
16
comment Why do singletons pervade ActionScript culture?
Yes I thoroughly test each unit of my programs individually as they are developed. usually I have a 'spoofer' version of the main script that runs each module through a workflow for me to ensure it is functioning property. I do however do this process manually it is not automated.