User Ancide - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T07:21:01Z http://stackoverflow.com/feeds/user/130886 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1063266/what-are-the-free-alternatives-to-basecamp-for-managing-projects 7 What are the free alternatives to basecamp for managing projects? Ancide 2009-06-30T11:57:50Z 2009-12-19T17:36:03Z <p>I just started freelancing after being employed. At my previous job we used basecamp to manage time and what to do on projects. I like basecamp a lot but I'm trying to cut costs as much as possible now when I'm starting of. </p> <p>So my question is simple; What are the free alternatives to basecamp for managing projects?</p> http://stackoverflow.com/questions/1120388/good-ways-of-disciplining-yourself-when-freelancing-at-home 34 Good ways of disciplining yourself when freelancing at home? Ancide 2009-07-13T16:04:02Z 2009-12-09T04:28:12Z <p>I have noticed that my self-discipline is very bad when it comes to getting up in the morning, eating regularly and working on fixed hours. When you have a job to go to, it is very different since you have fixed hours. You have a everyday routine.</p> <p>But when you start freelancing and you do it at home, you have so much more freedom. I find it extremely easy to stay up late in the night and then in the morning I'm too tired to get up when I'm supposed to. Same thing with working, it's easy to do everything but work. </p> <p>I might have the worst self-discipline in the world, so what tips do you have for me and everyone else which finds it hard to keep a everyday routine? </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/1721407#1721407 0 Answer by Ancide for In ActionScript 3, how can I pass the current value of an array in a loop to an event listener Ancide 2009-11-12T10:51:44Z 2009-11-12T10:51:44Z <p>Here's the fastest and best structured way to do it (imo):</p> <pre><code>var gospels:Array = ["john", "mark", "matthew", "paul"]; for(var book:String in gospels){ //For is faster than for each var loader:URLLoader = new URLLoader(); //It's good practise to add the event listener before calling the function loader.addEventListener(Event.COMPLETE, loaderComplete(book), false, 0, true); loader.load(new URLRequest("http://example.com/" + name)); } function loaderComplete(book:String):Function{ return function(event:Event):void{ event.target.removeEventListener(Event.COMPLETE, arguments.callee); trace(book); } } </code></pre> http://stackoverflow.com/questions/1069602/how-do-i-install-a-c-library-so-i-can-use-it-windows-mingw 1 How do I install a c++ library so I can use it (Windows MinGW)? Ancide 2009-07-01T14:55:41Z 2009-11-01T08:47:03Z <p>I'm extremely new to c/c++ so I need a push in the right direction. I have this library called <a href="http://www.un4seen.com/" rel="nofollow">BASS</a> which is an audio library which I'm going to use to record with the microphone. I have all the files needed to use it, but I don't know how to install the library. I tried taking the example files and putting them in the same directory as the bass.h file. But I got a bunch of errors saying there are function calls that doesn't exist. </p> <p>So my question is, how do I install it to be able to use it? </p> <p>Thank you</p> http://stackoverflow.com/questions/1079645/are-you-concerned-about-the-aesthetics-of-your-code 11 Are you concerned about the aesthetics of your code? Ancide 2009-07-03T14:38:31Z 2009-10-10T05:12:37Z <p>I don't know if I'm the only person in the world which gets a bad feeling in my stomach if my code isn't "pretty". For example if I get a assignment that another person has been doing before me. I can't help it to clean the code and make it look "pretty". I don't know if it's some kind of OCD. </p> <p>It's like I see the code as some kind of art that has be perfect in my own code convention to look good. I don't know if you understand what I'm trying to explain here. </p> <p>But are you like me, trying always to make my code look good in a aesthetical point of view even though it won't make the code better?</p> http://stackoverflow.com/questions/1107809/as3-how-to-convert-a-vector-to-an-array/1108091#1108091 0 Answer by Ancide for AS3: How to convert a Vector to an Array Ancide 2009-07-10T07:01:06Z 2009-07-10T07:01:06Z <p>There is a function called forEach which both Vector and Array has which you can use. Basically it calls a function for each element in the vector. This is how it works:</p> <pre><code>var myVector:Vector.&lt;Foo&gt; = new Vector(); var myArray:Array = []; myVector.forEach(arrayConverter); function arrayConverter(element:*, index:int, array:Array):void{ myArray[myArray.length] = element; } </code></pre> <p>But I couldn't find a function which just moves all the values from the Vector to an Array. Another solution could be that you create a class which extends the Vector class and then you have a public function called toArray() and then you have that code in that function so you don't have to write it each time you want to convert. </p> <p><a href="http://help.adobe.com/en%5FUS/AS3LCR/Flash%5F10.0/Vector.html" rel="nofollow">Vector documentation</a> </p> http://stackoverflow.com/questions/1072481/how-to-connect-these-3-programming-languages/1080128#1080128 0 Answer by Ancide for How to connect these 3 programming languages? Ancide 2009-07-03T16:51:23Z 2009-07-04T11:08:10Z <p>I would recommend using amfPHP to get information from a MySQL database passed to Flash through php. It is simpler, faster and easier to use than using php to output the database result in xml. Basically what you do with amfPHP is that you can call php functions directly from flash using the LocalConnection class. </p> <p>I'll simplify some code to illustrate how it works: </p> <pre><code>//PHP code //Here's you main php class which all the sql commands will be called class Main{ public function saveUser($username, $password){ //I'll send in the username and password to insert it into the users column $this-&gt;db-&gt;query("INSERT INTO users VALUES ($username, $password)"); //I'm using the MDB2 library for sql queries, //you write less code when doing queries. } } //Actionscript 3 code //To pass parameters to my php function I have to make an array. var amfParameters:Array = []; amfParameters['username'] = "richard"; amfParameters['password'] = "123123"; //Then create a localconnection which will connect to amfphp. var localConnection:LocalConnection = new LocalConnection(); localConnection.connect(gatewayURL); //gatewayURL is the url to the gateway amfphp file localConnection.call("testproject.Main.saveUser", loaderResponder, amfParameters); //testproject.Main.saveUser is the path for our Main.php file and saveUser is the function //loaderResponder is a Responder class which handles the callback from amfphp. </code></pre> <p>So basically you will call the php function in flash, and you can also return data to flash aswell. </p> <p>This is just to illustrate a little bit of how amfphp works. It's not meant to be a complete code sample. Just to give a brief idea. </p> <p>Think about it and if you think it looks interesting go and download amfphp and try it out! You won't be dissappointed. </p> http://stackoverflow.com/questions/1074884/how-can-i-dynamically-load-a-movieclip-in-flash-cs4-and-have-it-share-information/1079919#1079919 1 Answer by Ancide for How can I dynamically load a Movieclip in Flash CS4 and have it share information with a framework? Ancide 2009-07-03T15:48:42Z 2009-07-03T15:48:42Z <p>To load the the swf files you use the <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/Loader.html" rel="nofollow">Loader class</a>. Then to pass variables to the loaded swf file you have to create a setter in the documentclass of that swf file. Here's an simple example: </p> <pre><code>//This is inside the loaded swf document class //____________________________________________________________ public function set testVar(newValue:String):void{ trace(newValue); //This is a setter function which you use to pass parameters into. } public function get testVar():String{ //Here you pass back a variable you want to be able to fetch in the mian class return ""; } //This is inside of the document class //___________________________________________________________ public function Main():void{ var loader:Loader = new Loader(); //Create the loader loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadingComplete); loader.load(new URLRequest(fileURL)); //Load the file } private function loadingComplete(event:Event):void{ var loadedSwf = event.target.content; //Get the loaded swf addChild(loadedSwf); //Add it to the display list if you want to display it loadedSwf.testVar = "I'm testing!"; //This is how you use the setter function } </code></pre> <p>As you can see, you load the file, instansiate it and then pass a variable into it. Now to the other part how to pass variables back I would probably use an event to pass it back. So you have an event listener in the main document class which listens for an event in the loaded swf. When an event is dispatchen the main class either does something or retrives a variable or sets a variable in the loaded swf with the getter or setter function. <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=createevents%5F3.html" rel="nofollow">How to set up a event dispatch</a> is pretty straight forward. </p> <p>I hope I made some sense. Otherwise just comment and I'll try to explain. </p> http://stackoverflow.com/questions/1077254/whats-your-best-tip-on-marketing-your-programming-blog 4 What's your best tip on marketing your programming blog? Ancide 2009-07-02T23:48:57Z 2009-07-03T00:41:15Z <p>I've just started freelancing and with it I have created a blog which I will write about open source projects I'm involved in, tutorials etc. </p> <p>Why I started the blog market myself as a freelance developer. So I'm sitting down now and thinking about ways to market yourself. </p> <p>Here's what I have come up with: Join forces with other bloggers - comment their posts and contribute with ideas and such. In this way people who reads your comment might be interesting reading your blog. The other thing I was thinking about was starting open source projects or contributing to others. </p> <p>That's pretty much what can think of right now. I was thinking about putting my blog's adress here but I thought that would be kind of a "cheap shot". So let's hear it, what is your tip? </p> http://stackoverflow.com/questions/1075486/alternatives-to-create-swf-files-which-has-external-content-loaded-into-them-dy 1 Alternatives to create swf files (which has external content loaded into them) dynamically? Ancide 2009-07-02T16:48:44Z 2009-07-02T17:04:11Z <p>I'm about to start a project where there will be a Flash application where the visitor customizes a profile with externally loaded images and texts. Then the visitor needs to be able to download that profile as a dynamically created swf with all that external content baked into the swf. </p> <p>Any ideas how to achive this? </p> <p>Thank you!</p> http://stackoverflow.com/questions/1062367/running-a-webserver-on-a-virtual-machine-virtualbox-pros-cons-in-terms-of-sec 0 Running a webserver on a virtual machine (VirtualBox) - Pros/Cons in terms of security Ancide 2009-06-30T08:09:43Z 2009-06-30T09:33:12Z <p>I want to sharpen my skills in terms of gnu/linux and get a better understanding of how servers work. So I thought I'd set up an apache webserver with ftp, ssh, svn etc. Since I use Adobe products everyday in my line of work installing a linux dist. straight on my machine isn't an option. Yes, I could probably do a dualboot with linux and vista. But since I am a novice I don't want to risk something happening to my machine. </p> <p>So I thought of start of installing a dist. with a pretty steep learning curve with a lot of manual configuration. To maximize the familiarization of command line operations and such. The goal is to make it working and have a safe setup. </p> <p>So before I write a WOT;</p> <p>I was curious of, what pros and cons there are in terms of security to have a setup like this?</p> <p>Thank you! </p> http://stackoverflow.com/questions/1075486/alternatives-to-create-swf-files-which-has-external-content-loaded-into-them-dy/1075565#1075565 Comment by Ancide on Alternatives to create swf files (which has external content loaded into them) dynamically? Ancide 2009-07-19T12:40:47Z 2009-07-19T12:40:47Z Yes, exactly. I was looking for a answer which answer more specificly how to do it, thought. http://stackoverflow.com/questions/1120388/good-ways-of-disciplining-yourself-when-freelancing-at-home/1121174#1121174 Comment by Ancide on Good ways of disciplining yourself when freelancing at home? Ancide 2009-07-13T19:17:26Z 2009-07-13T19:17:26Z Yes! definately! I have tried, but I could only stay off stack overflow for about an hour :D http://stackoverflow.com/questions/1120388/good-ways-of-disciplining-yourself-when-freelancing-at-home/1120481#1120481 Comment by Ancide on Good ways of disciplining yourself when freelancing at home? Ancide 2009-07-13T16:23:58Z 2009-07-13T16:23:58Z I think the remove distractions is especially important. So I'm going to start with logging out from stackoverflow, hehe. http://stackoverflow.com/questions/1120388/good-ways-of-disciplining-yourself-when-freelancing-at-home/1120450#1120450 Comment by Ancide on Good ways of disciplining yourself when freelancing at home? Ancide 2009-07-13T16:15:51Z 2009-07-13T16:15:51Z This is very true. I think it's really easy to &quot;not leave work&quot; when you're working from home. http://stackoverflow.com/questions/1120388/good-ways-of-disciplining-yourself-when-freelancing-at-home/1120425#1120425 Comment by Ancide on Good ways of disciplining yourself when freelancing at home? Ancide 2009-07-13T16:14:35Z 2009-07-13T16:14:35Z This is some great advice. Thank you! http://stackoverflow.com/questions/1120388/good-ways-of-disciplining-yourself-when-freelancing-at-home/1120408#1120408 Comment by Ancide on Good ways of disciplining yourself when freelancing at home? Ancide 2009-07-13T16:11:33Z 2009-07-13T16:11:33Z Because when you freelance at home you don't HAVE to start working at 8 in the morning. You always know you could sleep 2 extra hours without getting fired. So my question is what's the best tip for encourage yourself to keeping a everyday routine? I find this really hard. http://stackoverflow.com/questions/1107809/as3-how-to-convert-a-vector-to-an-array Comment by Ancide on AS3: How to convert a Vector to an Array Ancide 2009-07-10T12:36:23Z 2009-07-10T12:36:23Z Also, using myArray[myArray.length] = elem; is faster than using push(). http://stackoverflow.com/questions/1107809/as3-how-to-convert-a-vector-to-an-array/1108091#1108091 Comment by Ancide on AS3: How to convert a Vector to an Array Ancide 2009-07-10T12:35:11Z 2009-07-10T12:35:11Z yes, in my opinion it's nicer than using a for/for each loop. It's a function call for each element in the Vector. How much slower exactly is this approach? http://stackoverflow.com/questions/1101312/flash-as3-access-external-swf-on-the-same-domain Comment by Ancide on Flash AS3 - Access external swf on the same domain Ancide 2009-07-10T07:08:20Z 2009-07-10T07:08:20Z what file policy have you set? local or network? http://stackoverflow.com/questions/1074884/how-can-i-dynamically-load-a-movieclip-in-flash-cs4-and-have-it-share-information/1079919#1079919 Comment by Ancide on How can I dynamically load a Movieclip in Flash CS4 and have it share information with a framework? Ancide 2009-07-03T16:26:53Z 2009-07-03T16:26:53Z Yes. For people who doesn't know what Branden is refering to; To load a class which is within a swf's library you have to do the following: var myClass = event.target.applicationDomain.getDefinition(&quot;ClassName&quot;) as Class; myClass = new myClass(); http://stackoverflow.com/questions/1079645/are-you-concerned-about-the-aesthetics-of-your-code/1079665#1079665 Comment by Ancide on Are you concerned about the aesthetics of your code? Ancide 2009-07-03T14:47:44Z 2009-07-03T14:47:44Z Why did you even bother if that's your opinion? http://stackoverflow.com/questions/1079645/are-you-concerned-about-the-aesthetics-of-your-code/1079660#1079660 Comment by Ancide on Are you concerned about the aesthetics of your code? Ancide 2009-07-03T14:44:20Z 2009-07-03T14:44:20Z I definately know what you are talking about here. It can drive you crazy over time. http://stackoverflow.com/questions/1079645/are-you-concerned-about-the-aesthetics-of-your-code/1079654#1079654 Comment by Ancide on Are you concerned about the aesthetics of your code? Ancide 2009-07-03T14:43:32Z 2009-07-03T14:43:32Z I don't mean putting in ascii art that kind of stuff. I'm talking about just pure code which you turn into art by doing it in a certain way. http://stackoverflow.com/questions/1077254/whats-your-best-tip-on-marketing-your-programming-blog/1077259#1077259 Comment by Ancide on What's your best tip on marketing your programming blog? Ancide 2009-07-03T12:09:39Z 2009-07-03T12:09:39Z I agree, if there's no content there's no interest from the visitor to come back either. I'm trying to write as much as possible now in the beginning. I've written like 4 long posts in 2 days or something. Just to get some content into the blog. I'll try the sub-reddit out, thanks for the tip. http://stackoverflow.com/questions/1069602/how-do-i-install-a-c-library-so-i-can-use-it-windows-mingw Comment by Ancide on How do I install a c++ library so I can use it (Windows MinGW)? Ancide 2009-07-02T00:38:05Z 2009-07-02T00:38:05Z @kkaploon, I use eclipse CDT with MinGW as my compiler.