User widgisoft - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T23:02:11Zhttp://stackoverflow.com/feeds/user/24525http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1833719/replace-a-trac-site-with-a-basic-redirect-page0Replace a trac site with a basic redirect pagewidgisoft2009-12-02T15:42:10Z2009-12-02T16:30:07Z
<p>We have trac site set up to listen on /tracproj/, this swiftly passes control onto mod_python and does some python magic (I'm a php coder :-p);</p>
<p>anyway. I have a project at /tracproj/{projectname} and I'd like to replace all requests to that url with another page that redirects them elsewhere (We're migrating one trac to anotehr bug tracking system)</p>
<p>The easiest method is to add a new entry in the httpd.conf to listen for that dir and redirect but it's a little messy :-D; I also don't seem to be able to get it to work :-p.</p>
<p>Is there any way - inside or as part of trac - to do what I'm after?</p>
<p>Many thanks,
Chris</p>
http://stackoverflow.com/questions/1688281/programming-game-in-flash-as30Programming game in flash/as3widgisoft2009-11-06T15:21:54Z2009-11-17T10:02:32Z
<p>Hi,</p>
<p>I have a bunch of ideas for different games (for programmers) where you have to write some program to complete the puzzle; The language shouldn't be too complicated and I even started thinking about a graphical language like Scratch (<a href="http://scratch.mit.edu/" rel="nofollow">http://scratch.mit.edu/</a>).</p>
<p>Anyway, I wanted to explore what people had done already porting various scripting languages to as3; BASIC would be a good start, or some tinyc derivative, however - I'm not sure how to search for this using google; the words "flash" and "as3" just dilute the resulsts and trying to use another programming language in there was well just breaks the resulsts even further - so I was hoping somebody has looked into this already and has further details on their experience.</p>
<p>The games essentialy control a vehicle of sorts, using turn and move commands and reading sensors to determine what to do; etc etc.</p>
<p>Many thanks,
Chris</p>
http://stackoverflow.com/questions/1519068/how-does-the-preloader-work-in-as31How does the preloader work in as3?widgisoft2009-10-05T09:36:52Z2009-11-13T22:33:02Z
<p>I've read multiple examples on this, but I just don't get how it works.</p>
<ul>
<li>How does the class know it's <em>THE</em> pre-loader?</li>
<li>How does flash know to load one class but not another?</li>
<li>How much can I do in a preloader? :-p</li>
</ul>
<p>I'm using FlashDevelop atm and it's generating the project for me - however, from all the examples I checked they didn't explain how it worked either.</p>
http://stackoverflow.com/questions/1649415/calling-a-method-once-all-the-script-processing-has-completed1Calling a method once all the script processing has completedwidgisoft2009-10-30T12:04:34Z2009-10-30T12:21:31Z
<p>I'm trying to do a bit of "fancy"/"experimental" php so that you can include a header script (called crt0 :-p) that defines a basic application class that you can inherit.</p>
<p>It then provides a function that checks your classes and finds one that is subclassing it's application class and calls the "Main" function. This way you include the header, create a class that subclasses the default application class and ensure you provide a static main function and voila - you application magically picks up inside the main function (similar to java/c#, etc with lots of pre-defined application functionality).</p>
<p>The only issue I'm having is "waiting" until the users application class is defined; Because the include that defines the application class has to come before your user implementation the "check" is also being called within the same script and before the user defines their function so isn't finding the users class as it hasn't yet been defined.</p>
<p>The "trick" i was using was cuasing the application to run inside the register_shutdown_function function to then find the class and run it; It works fine as by this point all the classes have been defined but I'm not sure what state the system/script/process is in during this shutdown process and whether it's safe to start running code here :-p.</p>
<p>Here's an example of the code I had so far:</p>
<pre><code>class Application {
static $_instance = null;
public static function getInstance(){
if ( $this->_instance == null ){
$this->_instance = new get_called_class();
}
return $this->_instance;
}
}
function findApplicationClass(){
$classes = get_declared_classes();
foreach ( $classes as $class ){
$c = new ReflectionClass ($class);
if ( $c->isSubclassOf("Application")
&& $c->hasMethod("Main") ){
call_user_func($class . '::Main');
}
}
}
function runApplication(){
findApplicationClass();
}
register_shutdown_function('runApplication');
</code></pre>
<p>And then your application is simply:</p>
<pre><code>include "../lib/com/crt0/crt0.php";
class MyApplication extends Application {
static public function Main ( ){
echo "Main function";
}
}
</code></pre>
http://stackoverflow.com/questions/1578255/templates-for-as3-like-c1Templates for AS3 (like c++)widgisoft2009-10-16T14:03:49Z2009-10-17T21:30:01Z
<p>How do I define C++-like templates in AS3?; I have a map class (2d array) that I want to re-use across projects but the cell data is a different class depending on the project or implementation;</p>
<p>There are a bunch of other reasons regarding sharing code accross different implementations, but I'd hope for somthing like:</p>
<pre><code>map = new MyMap<MyCell>();
</code></pre>
<p>Doesn't matter if it's Flash 10 only :-p</p>
<p>Cheers,
Chris</p>
http://stackoverflow.com/questions/1573068/passing-extra-argument-to-an-event-complete-listener-function/1578323#15783230Answer by widgisoft for Passing extra argument to an event.COMPLETE listener functionwidgisoft2009-10-16T14:15:17Z2009-10-16T14:15:17Z<p>Associate each loader with the tab (tab has a link to loader), then use the .target member from the event to get the loader that completed and then loop over your tabs to find the tab that has that loader associated. </p>
<p>You'd probably have to create your own tab class if you haven't already to give it a properly to hold the reference to the loader.</p>
<p>I did a similar example of this loading external resources and tracking their progress.</p>
http://stackoverflow.com/questions/1554333/creating-a-large-2d-array-and-populating-it-in-as3/1559136#15591361Answer by widgisoft for Creating a large 2D array and populating it in AS3.widgisoft2009-10-13T09:30:44Z2009-10-16T10:39:30Z<p>I always use a single dimentional array and write my own get/set functions to work out the location in the array for the (x,y) point:</p>
<p>i.e, Getting an element:</p>
<pre><code>return array[x+(y*_width)];
</code></pre>
<p>To reset the array or set it (once it's been allocated)</p>
<pre><code>for(var i:uint=0;i<array.length;i++)
array[i] = 1;
</code></pre>
<p>Main points are:</p>
<ul>
<li>You only need to allocate a single array</li>
<li>You can reset or set or copy elements really fast</li>
<li>I assume flash uses "less" memory or there is less overhead overall as only a single array exists</li>
</ul>
<p>One down side is making sure you accessor and setter functions do range checking as your results may "work" but not be accurate. (I.e. if x is greater than width but still within the bounds of the array)</p>
<p>I "grew up" on C (the language :-p) so this just always seems the logical way of doing things; Allocate a block of memory and divide it up how you want.</p>
http://stackoverflow.com/questions/1524282/pasting-bitmaps-into-as3-app2Pasting bitmaps into as3 appwidgisoft2009-10-06T08:27:39Z2009-10-07T20:10:10Z
<p>Hi,</p>
<p>Is it possible to paste (as in copy/paste from the clipboard) a bitmap into a flash application?</p>
<p>I'm thinking about a level editor that lets you edit the tile images but wanted to allow copying or some quick way of syncing from an external file without them having to upload it etc etc.</p>
<p>Cheers,
Chris</p>
http://stackoverflow.com/questions/1447071/determine-when-flash-component-not-visible/1519081#15190810Answer by widgisoft for Determine when Flash component not visiblewidgisoft2009-10-05T09:39:22Z2009-10-05T09:39:22Z<p>I'd also start the player paused and only start once the window recieves focus - this means anyone randomly opening lots of tabs doesn't start the movie playing until they get to the tab with the video - It's nice for the user and also saves your bandwidth.</p>
http://stackoverflow.com/questions/1383702/simulating-engine-noise-in-flash-101Simulating engine noise in Flash 10widgisoft2009-09-05T16:21:21Z2009-09-29T16:44:30Z
<p>I'm working on a "retro" motorbike game in flash, similar to the Road rash series on the mega drive and after having a long play with the sound sampling capabilities of flash I can't manage to find the "right" way to generate the noise.</p>
<p>I've been trying to basically change the frequency on a sine wave in line with the revs, so as the revs increase so does the frequency - it sorta works but sounds nothing like a real engine (I've been a biker for a while and I ride to work on my bike every day so I "know" what it should sound like :-p).</p>
<p>I'm not so much after a realistic sound, just somthing that sounds "okay", or good enough that most people playing the game wouldn't notice and be happy that the sound actually relates to the revs and speed as apposed to just a flat mp3.</p>
<p>I can't seem to search on google as I can't find the right words, "engine" just dilutes all of the results with game engines and what not.</p>
<p>The majority of articles I find also suggest using sampling - but there are 2 major issues with this:</p>
<ul>
<li>Even though I have a bike and <em>could</em> record the sounds; recording samples of the rpm - say 15 if I do samples at 1000 intervals (my gsxr revs all the way to 16k :-p) I'd then have to also sample each one at various loads, i.e. 0mph, 10mph, 20mph, 30mph, 40mph as the engine noise varies greatly depending on load - which totals a whopping 80 samples - although I'm not sure if the load can be simulated somehow on top of the rpm samples?</li>
<li>All those samples add up to bytes that have to be downloaded before you can play.</li>
</ul>
<p>Cheers,
Chris</p>
http://stackoverflow.com/questions/261958/c-game-server-flash-client2(C++) Game Server, (Flash) Clientwidgisoft2008-11-04T13:53:03Z2009-08-25T16:23:46Z
<p>I'm interested in putting together my first online game using Flash as the client and writing a back-end application in C++ where the actual game state is kept.</p>
<p>I've done lots of games in C++ before using SDL, SFML, Allegro, etc etc but never gotten around to using the network libraries. I was just interested in some helpful direction for which libraries are best suited to game servers where the actual server doesn't have any graphical display (or doesn't need to but could have). In all honesty I think the answer will be <em>any</em> and once I get the hang of sockets it'll become a breeze sending data back and forth... but it can't help to ask first.</p>
<p>I have very little experience in flash or as3 but like the idea of being able to access the game through a browser - learning flash is obvisouly going to be an obstical that I'll have to overcome but my main interest again is any tips on libraries, or sources, or tutorials that are good for sending/recieving data via sockets or whichever method works best.</p>
<p>I've read about the arguments between TCP/UDP so I don't want to start a war like that here; just general helpful advice please - I'm only looking for something simple to get me up and running :-p</p>
<p>As a side note, the reason I'm choosing C++ is because the players are actually robots with minature virtual-machines and everything will run on the server so as the player count rises so will the need to emulate each and every vm :-p</p>
<p>Update:</p>
<p>The game world is intended to be real-time, but the interaction of the player doesn't have to be. The basis of the game is that you program little robots that interact in a persistent world and have goals and challenges to meet on a daily/weekly basis to earn points.</p>
<p>I was thinking that buffering the display data would be possible as the player doesn't need real-time visual as they have no direct control of their robots. The server would buffer up 10 seconds or so of data for each connection and then ship it out in one go - this way while the data is being played back in the client the server is busy buffering some more.</p>
<p>The general interactions the player will have with the server will be uploading new code and getting statistics, there may also be other one off commands to move your robot around or reset it to a starting position. Any remote control is done through a communications channel and thus is delayed by the buffer. This could easily be explained by the fact that the persistent world is somewhere like Mars (the planet) and the signal takes a while to go back and forth.</p>
<p>I was planning on having a "lab" whereby you could set up the robots and test them in realtime on the client, this has nothing to do with the actual game world and thus shouldn't require any networking - although I don't fancy writing a VM in both languages :(</p>
<p>I'm completely comfortable in C++ and have some working prototypes of the persistent world in place already - I'm just a complete newbie when it comes to networking so figured it'd be best to get advice first.</p>
http://stackoverflow.com/questions/343356/how-can-i-run-multiple-versions-of-ie-with-different-sesions1How can I run multiple versions of IE with different sesions...widgisoft2008-12-05T09:56:09Z2009-07-30T21:21:43Z
<p>I'm developing a web application that is targeted at IE and during testing would like to log in as a number of different users and test their interactions with each other.</p>
<p>At present I have to log in and out to switch users; Opening another window just overrides the cookies/session.</p>
<p>Is there any way to get IE to run completely seperate; I can run firefox or chrome and get another session but the app isn't supported in these browsers.</p>
<p>Cheers,
Chris</p>
http://stackoverflow.com/questions/969350/mixing-zend-and-old-procedural-code0Mixing Zend and Old Procedural codewidgisoft2009-06-09T10:52:39Z2009-06-10T14:57:42Z
<p>We have a really old legacy code base that uses globals like they're going out of fashion - nearly all of the inter-page communication is done via globals and sessions or both. This <em>could</em> be changed as a last resort but ideally I don't want to touch any of it as everything I touch could introduce more bugs :-p.</p>
<p>Anyway, We're incorporating a new "module" into the application which was written completely in zend and is really nice and modular. My aim is to get zend running as the backbone and the old legacy code to run as a sort of module/controller within zend and once it has control just execute normally and do whatever it wants.</p>
<p>The 2 issues I have:</p>
<ul>
<li><p>I need to get Zend to see that I'm using legacy URL's (login.php, show.php, etc) and pass execution to a specific controller;</p></li>
<li><p>I'm embedding an entire application inside a function of another and this breaks the default behavuour of variables appearing in the global scope as globals - i.e. they're now just local variables of this method and thus can't be seen without first specifying that they are globals.</p></li>
</ul>
<p>If there's another way this could be done I'd be happy to hear it :-p</p>
<p>Cheers,<br />
Chris</p>
http://stackoverflow.com/questions/969350/mixing-zend-and-old-procedural-code/976123#9761230Answer by widgisoft for Mixing Zend and Old Procedural codewidgisoft2009-06-10T14:57:42Z2009-06-10T14:57:42Z<p>Turns out I was being way too ambitious;</p>
<p>I realised the new "module" was mostly just JavaScript and a little PHP controller (CRUD) backed up by a mass of ZF and all I really wanted was to port was the JS front end - no one actually cares how the back end is implemented.</p>
<p>I decided to simply transplant the JS front end and just provide a similar interfaces as before and now don't need to worry about Zend and just code in some alternate functionality in the legacy app.</p>
<p>Yay.</p>
<p>Strangely I realised this while putting sugar in my cup while making a cup of tea; Instead of moving the spoon over to the cup (from the sugar jar and spilling it everywhere (i.e. lots of code to re-write)) move them both over the cup and remove the sugar jar from underneath - you get the same result with less mess, the sugar was the JS and the Jar was the big ZF framework :-p</p>
http://stackoverflow.com/questions/225030/how-to-stop-ie-asking-which-debugger-to-choose-when-trying-to-debug5How to stop IE asking which debugger to choose when **trying** to debug?widgisoft2008-10-22T09:32:42Z2009-05-25T16:36:12Z
<p>When debugging in Internet Explorer; I first get an alert box with extremely limited if not useless information (sorry IE) and choice to debug it; After selecting yes; I get another option <em>every time</em> to chose between 'New instance of Microsoft script debugger' and 'New instance of Visual studio'. I'm fed up of having to click the yes button again after having clicking it once already on the alert box.</p>
<p>Update: I found that you can disable the microsoft script debugger from within its own options; just disabling the JIT debugger from Tools -> Options, and JIT. This stops it appearing on the menu but now I get the dialog box asking me which one to choose and it only displays the one Visual Studio - WHY? If there's only one option and you've already asked me if I want to debug, why ask again?!?! Bleh.</p>
<p>can you tell I'm getting sick of clicking, "yes" twice? Lol.</p>
http://stackoverflow.com/questions/265476/gui-framework-for-flash-as34GUI Framework for flash (as3)widgisoft2008-11-05T15:26:26Z2009-04-13T01:29:54Z
<p>I can't seem to find any GUI framework's for as3 that are as good as any the applications I already see out on the web; Is this something most people code themselves or am I missing something in flash itself?</p>
<p>I'm looking for dialogs/windows, buttons, text boxes, combos, drop downs, menus, etc etc and the ability to extend the components to make new ones.</p>
<p>I'd also prefer it to be as3 but any others will do also.</p>
<p>May need to elaborate a little.. I'm actually looking for a framework to allow me to create my own GUIs in flash, custom skins, colors, styles, etc.</p>
http://stackoverflow.com/questions/552960/disable-ie-script-debugging-via-ie-control1Disable IE script debugging via IE controlwidgisoft2009-02-16T11:06:14Z2009-02-17T13:27:35Z
<p>Bleh; Knowing how to ask the question is always the hardest so I explain a little more.</p>
<p>I'm using CAxWindow to create an IE window internally and passing in the URL via the string class argument:</p>
<pre><code>CAxWindow wnd;
m_hwndWebBrowser = wnd.Create(m_hWnd, rect, m_URI, WS_CHILD|WS_DISABLED, 0);
</code></pre>
<p>It's part of an automated utility for anyone to get images from their "internal" javascript-based apps; the issue is that some people try getting images from their apps that have lots of errors; The errors fire off the IE debug window and my capture utility sits waiting for input.</p>
<p>Initially I thought I could disable the debugging ability via IE in windows however the process that Apache runs in and hence my App is via the SYSTEM account; not sure how I'd change the debugging options without hacking the registry.</p>
http://stackoverflow.com/questions/552960/disable-ie-script-debugging-via-ie-control/556779#5567790Answer by widgisoft for Disable IE script debugging via IE controlwidgisoft2009-02-17T13:27:35Z2009-02-17T13:27:35Z<p>I found some projects on CodeProject that does something similar...</p>
<p><a href="http://www.codeproject.com/KB/shell/popupblocker.aspx?fid=15235&df=90&mpp=25&noise=3&sort=Position&view=Quick&fr=51&select=646577" rel="nofollow">http://www.codeproject.com/KB/shell/popupblocker.aspx?fid=15235&df=90&mpp=25&noise=3&sort=Position&view=Quick&fr=51&select=646577</a></p>
<p><a href="http://www.codeproject.com/KB/shell/popupblocker2.aspx?df=100&forumid=15709&fr=51&select=548519#xx548519xx" rel="nofollow">http://www.codeproject.com/KB/shell/popupblocker2.aspx?df=100&forumid=15709&fr=51&select=548519#xx548519xx</a></p>
<p>And also an MSDN article regarding web browser customisation:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa770041" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa770041</a>(VS.85).aspx</p>
<p>I found that what I was after was two interfaces called: IOleCommandTarget and IDocHostUIHandler; I needed to override the UI handler and interpret the Script exception messages and respond with a "false" to indicate I didn't care about the error; </p>
<p>Unfortunately I spent waaaaay too much time getting my head back into COM and trying to get their god awful system set up that I wasn't able to finish it and after a discussion with my bos regarding spending more time trying to get this working or just disabling debug in IE; we chose the later.</p>
<p>3 Words; I hate COM :-p (the smilie doesn't count)</p>
<p>I think the path I was on would solve the issue I had and my response can contribute as an "answer"; sorry if it's not what you're looking for.</p>
http://stackoverflow.com/questions/229324/mac-windows-switching1Mac/Windows Switchingwidgisoft2008-10-23T11:02:41Z2009-01-15T09:53:02Z
<p>About 2 years ago I dropped windows from my home PC and switched 100% to linux (fedora, then ubuntu) - The missus wasn't too happy but she got used to it and learned a thing or two. Then about 6 months ago I got myself a shiny new Macbook and since moving to OSX have never looked back; Unfortunately I've not been successful in getting my employer to buy me one for work (and I can't be carrying mine back and forth) so I have to "put up" with windows.</p>
<p>I started out with windows over 8 years ago so I have a really good understanding of how it works and have done my fair share of Win32/MFC/.NET development.</p>
<p>My question is; Who else has to use a windows box at work (and have a mac at home) And how do you cope - what windows apps/configurations do they use that let them work in a similar fashion to OSX? - I was just thinking how cool it would be if I could get some sort of keymapping app that re-mapped my windows keys to the OSX variants (Apple+W, Apple+Q, Apple+Left, Apple+Right, etc etc).</p>
<p>I miss expose (TopDesk is nice but not free)...
I miss the simplicity of finder...
I miss the nice smooth dialogs and windows and shadows (YzShadow can juuuuust cope)
I miss the underlying unix framework (I run andLinux at work)
I miss OSX :(</p>
<p>Unfortunately 90% of our clients use IE so windows is a must; They also can't justify the expense of a mac for a developer; Especially a Mac Pro :-p</p>
<p>Ah well.</p>
http://stackoverflow.com/questions/243494/profiling-vba-code-for-microsoft-word2Profiling VBA code for microsoft wordwidgisoft2008-10-28T14:17:52Z2009-01-14T18:17:19Z
<p>I have some legacy code that uses VBA to parse a word document and build some XML output; </p>
<p>Needless to say it runs like a dog but I was interested in profiling it to see where it's breaking down and maybe if there are some options to make it faster.</p>
<p>I don't want to try anything until I can start measuring my results so profiling is a must - I've done a little searching around but can't find anything that would do this job easily. There was one tool by brentwood? that requires modifying your code but it didn't work and I ran outa time.</p>
<p>Anyone know anything simple that works?</p>
<p>Update: The code base is about 20 or so files, each with at least 100 methods - manually adding in start/end calls for each method just isn't appropriate - especially removing them all afterwards - I was actually thinking about doing some form of REGEX to solve this issue and another to remove them all after but its just a little too intrusive but may be the only solution. I've found some nice timing code on here earlier so the timing part of it isn't an issue.</p>
http://stackoverflow.com/questions/442714/how-do-you-organize-desk-allocation/442756#4427560Answer by widgisoft for How do you organize desk allocation?widgisoft2009-01-14T12:24:21Z2009-01-14T12:24:21Z<p>Try to make each desk as equal as the next; Usually I have preference over desks due to their location within a room; it's direction to the door (i.e. random strangers coming in to see what's on your screen); the amount of light; noise levels, etc.</p>
<p>Then if you still have conflicts try to find out why they want that particular desk and see if its possible to reproduce those requirements elsewhere or try to arrange the other desks to best fit this pattern.</p>
<p>You're never going to suit everybodies needs but I think asking what people need and want and arranging the desks to suit that may be more helpful than trying to determine the order in which people get to choose.</p>
http://stackoverflow.com/questions/374239/why-doesnt-python-have-a-switch-statement/374614#374614-3Answer by widgisoft for Why doesn't Python have a switch statement?widgisoft2008-12-17T14:05:29Z2008-12-17T14:05:29Z<p>I say if they won't include it they should stop using it in the source code to python itself; then see who needs it :-p</p>
<p>I've heard of keeping your language pruned but seriously; switch is good :-p</p>
http://stackoverflow.com/questions/374322/being-specialised-and-keeping-up1Being specialised and keeping upwidgisoft2008-12-17T11:54:24Z2008-12-17T13:12:35Z
<p>One of the things mentioned recently maybe in the SO podcast or Joel was that the best way to succeed at business when you start out is to start specialised and concentrate on one thing only.</p>
<p>If you say you're the jack of all trades; you're just another jack! If you say you're a specialist in - I think joels example was some type of faucets - then even though you think you've just removed most of your market; you've actually increased the odds of getting business in a specific marked as you'll stand out more against the rest; somebody somewhere will want what you more than if you just say you do everything.</p>
<p>So anyway, my question is; I'd like to specialise myself in something. I've been doing C/C++ for a long time but never really pegged myself as either win32, mfc, directx, wxWidgets, qt, boost, sdl, allegro, etc etc. I've tried everything and done different things in each; I've also started moving into actually writing for linux (and now osx) as apposed to just using it so my opportunities have grown even further.</p>
<p>My view was that the more I know the less likely I am to become stagnant and stuck; if I know bits of each I can get a job anywhere and then learn more as I need it.</p>
<p>Over the last couple years I also took on .NET and then PHP/LAMP; I feel quite comfortable in either but I guess in my heart I'm still a C++ guy (although I think I've learned more commercial things in PHP than I have done with c++).</p>
<p>The other issue I feel is that the world is becoming highly web-based, and technologies such as C++ are becoming less and less used (ignoring Google's new tool - can't remember the name) and other things like flash and flex are becoming more popular. I do agree that the tools we use to view the web are written in C++/like but in terms of market share I think all the bases are already covered.</p>
<p>I was wondering how people decide what peg to eventually pick and why; and is this for business reasons (i.e. it makes more money) or for selfish reasons (i.e. I feel complete by writing things in C++ as apposed to PHP).</p>
<p>Maybe i'm asking the wrong question; maybe I should by specialising in a specific product rather than a language as a service; Didn't think of that...</p>
<p>Cheers,
Chris</p>
http://stackoverflow.com/questions/12633/what-is-the-easiest-way-to-parse-an-ini-file-in-c/371977#3719770Answer by widgisoft for What is the easiest way to parse an INI File in C++?widgisoft2008-12-16T17:13:30Z2008-12-16T17:13:30Z<p>Have you tried <a href="http://www.hyperrealm.com/libconfig/" rel="nofollow">libconfig</a>; very JSON-like syntax. I prefer it over XML configuration files.</p>
http://stackoverflow.com/questions/344104/whats-quicker-an-array-lookup-including-array-build-or-an-if-stack1What's quicker, an array lookup (including array build) or an IF stack?widgisoft2008-12-05T15:09:49Z2008-12-05T18:35:29Z
<p>I was wondering which was better:</p>
<pre><code>$lookup = array( "a" => 1, "b" => 2, "c" => 3 );
return $lookup[$key];
</code></pre>
<p>or</p>
<pre><code>if ( $key == "a" ) return 1
else if ( $key == "b" ) return 2
else if ( $key == "c" ) return 3
</code></pre>
<p>or maybe just a nice switch...</p>
<pre><code>switch($key){
case "a": return 1;
case "b": return 2;
case "c": return 3;
}
</code></pre>
<p>I always prefer the first method as I can separate the data from the code; At this scale it looks quite silly but on a larger scale with thousands of lines of lookup entries; How much longer is PHP going to take building an array and then only checking maybe 1 or 2 entries per request.</p>
<p>I think it'd have to be tested and clocked, but I'd say the bigger and more complicated the array the slower it's going to become.</p>
<p>PHP Should be able to handle lookups faster than I can in PHP-code, but building the array in the first place surely takes up a lot of time.</p>
http://stackoverflow.com/questions/344104/whats-quicker-an-array-lookup-including-array-build-or-an-if-stack/344365#3443650Answer by widgisoft for What's quicker, an array lookup (including array build) or an IF stack?widgisoft2008-12-05T16:18:32Z2008-12-05T16:18:32Z<p>So I did a bit of testing with <em>this</em> example and got the following results:</p>
<pre><code>emptyfunction: 0.00000087601416110992430969503855231472755349386716
lookuparray: 0.00000136602194309234629100648257538086483009465155
makearrayonly: 0.00000156002373695373539708814922266633118397294311
makearray: 0.00000174602739810943597796187489595842734502184612
ifblock: 0.00000127001986503601083772739543942265072473674081
switchblock: 0.00000131001937389373773757957151314679222764425504
</code></pre>
<p>Each was inside a method, so I also included the time for an empty method. They were ran 1,000,000 times each and then averaged out.</p>
<p>Just doing a lookup (without the building of the array) is actually slower than an if block (uses a global lookup the same as my code) and just by a fraction slower than a switch block.</p>
<p>I can't be bothered scaling this up to hundreds of if statements but it just shows that the if statement is faster even at this level against a single lookup.</p>
http://stackoverflow.com/questions/301448/optimizing-windows-xp-for-visual-studio/301500#3015001Answer by widgisoft for Optimizing windows XP for Visual Studiowidgisoft2008-11-19T10:37:27Z2008-11-19T10:37:27Z<p>Not related to VS, but in Eclipse I remember being able to specify the core count and it would fire off a gcc process for as many cores as you specified. The linking process still has to be done on one core (until the linker actually works multithreaded).</p>
<p>It actually felt a lot faster (maybe 2x as fast??) with just hyper-threading. Again; I'd guess that the drives were to blame;</p>
<p>Never thought of splitting each process's file (source, temp, build, intermediate) onto different hard drives; but if that's the way you like it you'd actually be better creating a RAM disk (maybe 128-256mb) and use that for the intermediate files. Obviously you could keep your source files on a real disk (if you wanted); But I'd be happy leaving everything in ram and just committing back to SVN every half hour or so or making a copy out to the real disk.</p>
<p>The ram disk would be perfect for the temp, intermediate and build files. You can always copy the build files off the ram disk once you're happy.</p>
<p>The ram disk I use is the Microsoft Windows 2000 one; Its not "officially" supported but it works fine on XP and has been running without issues for the past year. It's a little annoying setting the sizes of the drive and restarting and what not but once its up and running you pretty much just treat it like a disk.</p>
http://stackoverflow.com/questions/265073/php-background-processes/265221#2652212Answer by widgisoft for PHP Background Processeswidgisoft2008-11-05T14:13:24Z2008-11-10T11:15:07Z<p>I had lots of issues with this sort of process under windows; My situation was a little different in that I didn't care about the response of the "script"- I wanted the script to start and allow other page requests to go through while it was busy working away.</p>
<p>For some reason; I had issues with it either hanging other requests or timing out after about 60 seconds (both apache and php were set to time out after about 20 minutes); It also turns out that firefox times out after 5 minutes (by default) anyway so after that point you can't know what's going on through the browser without changing settings in firefox.</p>
<p>I ended up using the process open and process close methods to open up a php in cli mode like so:</p>
<p><code>pclose(popen("start php myscript.php", "r"));</code></p>
<p>This would ( using start ) open the php process and then kill the start process leaving php running for however long it needed - again you'd need to kill the process to manually shut it down. It didn't need you to set any time outs and you could let the current page that called it continue and output some more details.</p>
<p>The only issue with this is that if you need to send the script any data, you'd either do it via another source or pass it along the "command line" as parameters; which isn't so secure.</p>
<p>Worked nicely for what we needed though and ensures the script always starts and is allowed to run without any interruptions.</p>
http://stackoverflow.com/questions/229257/what-do-project-managers-do-all-day/229342#2293425Answer by widgisoft for What do project managers do all day?widgisoft2008-10-23T11:10:47Z2008-11-07T04:20:02Z<p>My old boss used to sit with his feet in the window-sill; Laid back on his chair on the phone to his wife; He was like this every time I walked into his office.</p>
<p>I once asked him how it was going - he said he was bored and didn't have anything to do. He'd apparently been sat there all morning staring out of the window.</p>
<p>After a while he started coming to see us (Initially he delegated tasks through someone else - usually the last person to enter his office); he'd come and tell us he was bored and didn't have anything to do.</p>
<p>Apparently he was on £80,000 a year - He'd had a conversation not long after he started with the network guy exlaiming how he couldn't believe they were paying him so much money to sit around and be bored.</p>
<p>Nice for some.
He was an asbolutely terrible manager; The thing is - his boss (previously our boss) was fantastic; he was so productive and so helpful - he just had too much to do so hired this guy to offload the work onto... makes me wonder what happened to all that work...</p>
http://stackoverflow.com/questions/265846/small-risc-emulator0Small RISC emulator.widgisoft2008-11-05T16:57:36Z2008-11-05T17:49:08Z
<p>I'm looking to build a VM into a game and was wondering if anyone knew of any really simple VM's (I was thinking RISC/PIC was close to what I wanted) that are usually used for embedded projects such as controlling robots, motors, sensors, etc. My main concern is having to write a compiler/assembler if I roll my own. I'd be nice to use the tools that are already out there or in its simplest form just a C compiler that can compile for it :-p.</p>
<p>I really don't want to re-invent the wheel here but I also need thousands of these running around a virtual world so they have to be as simple and as fast as possible. As one person has already mentioned I also don't care about real world issues such a timing and buses and all that fun stuff. I think their virtual clocks will be limited to somthing quite slow; and eventually I'll probably have to look into native compiling to make them run even faster but for now I'm just putting together prototypes to get a general proof of concept.</p>
<p>As input, I'm planning on distance, light, material and touch sensors mounted around the cylindrical body (16, maybe 32 of them), then simply 2 motors for directional output to control a sort of wheel on each side. essentially the processing won't be too strenuous and the world will be simple enough so that the machine's don't have to throw lots of processing power at simple tasks.</p>
<p>In terms of memory, I'd like them to be able to store enough data to be left alone for a couple of days without intervention for building maps and gathering stats. I don't like 8bit would cut it for processing or memory but 16bit would definitely be a contender. 32 and 64bit would just be pushing it and there's no way they'll have any more than 1mb each of memory - probably closer to 256-512k. (Bill one said 640k would be enough so why can't I!!)</p>
http://stackoverflow.com/questions/836835/actionscript-3-0-best-option-for-subclassing-vector-class-flash-player-10/1283044#1283044Comment by widgisoft on Actionscript 3.0 Best Option for Subclassing Vector Class (Flash Player 10)widgisoft2009-11-17T20:31:09Z2009-11-17T20:31:09ZLooks like flash 10 :-phttp://stackoverflow.com/questions/1649415/calling-a-method-once-all-the-script-processing-has-completedComment by widgisoft on Calling a method once all the script processing has completedwidgisoft2009-10-30T12:15:30Z2009-10-30T12:15:30ZPlus it looks cool :-phttp://stackoverflow.com/questions/1649415/calling-a-method-once-all-the-script-processing-has-completedComment by widgisoft on Calling a method once all the script processing has completedwidgisoft2009-10-30T12:07:15Z2009-10-30T12:07:15ZI realise you could just use MyApplication::Main() to the bottom of the main script but this way I can do extra functionality "around" the main function without having to explicity define it in each application :-phttp://stackoverflow.com/questions/1578255/templates-for-as3-like-c/1583275#1583275Comment by widgisoft on Templates for AS3 (like c++)widgisoft2009-10-19T09:49:46Z2009-10-19T09:49:46ZAh ah, perfect :-Dhttp://stackoverflow.com/questions/1569385/how-do-i-setup-a-game-room-in-pure-actionscript/1572418#1572418Comment by widgisoft on How do I setup a game room in pure actionscript?widgisoft2009-10-16T14:17:56Z2009-10-16T14:17:56Zlivedocs good: <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/" rel="nofollow">livedocs.adobe.com/flash/9.0/…</a>
http://stackoverflow.com/questions/1569385/how-do-i-setup-a-game-room-in-pure-actionscript/1576236#1576236Comment by widgisoft on How do I setup a game room in pure actionscript?widgisoft2009-10-16T14:17:19Z2009-10-16T14:17:19ZYou wrote the whole thing!! :-p Considering the OP's question, I don't know if this is helpful but you get points for writing the whole thing :-phttp://stackoverflow.com/questions/1553707/how-to-overcome-the-external-disturbance-while-coding/1553757#1553757Comment by widgisoft on How to overcome the external disturbance while coding?widgisoft2009-10-12T11:33:49Z2009-10-12T11:33:49ZAssuming @Home as in working from home; I'd say make sure your family know your working hours and try and get them into the routine of you "being" at work - BUT, once your hours stop switch off the computer, close the door and give them the time they need.http://stackoverflow.com/questions/1550245/how-to-erase-an-area-in-a-bitmapdata-object/1550501#1550501Comment by widgisoft on How to erase an area in a BitmapData object?widgisoft2009-10-12T11:23:31Z2009-10-12T11:23:31ZOoohhh... nice. I didn't know you could do that :-phttp://stackoverflow.com/questions/1935/best-way-to-learn-flash/7155#7155Comment by widgisoft on Best way to learn flash?widgisoft2009-10-06T08:38:38Z2009-10-06T08:38:38ZI started using Flash Develop a couple months back and it's great; I've yet to set up my build process but FD does such a great job at getting you started all you'll want to do is learn as3!
AS3 is so capable (never tried as2 but it just looked ugly) that you can forget drawing things by hand and do everything procedurally - you'll have a lot more control and you can animate your characters a lot easier, I tend to build things up using sprites and use offsets and rotations to pull it all together. FD is definately a good place to start! :-p http://stackoverflow.com/questions/1512197/image-upload-progress-using-urlloader-as3/1516800#1516800Comment by widgisoft on Image Upload progress using URLLoader AS3widgisoft2009-10-06T08:24:58Z2009-10-06T08:24:58ZCan you not create a dummy file reference once you've resized the image or even create a temporary file (if it's possible?)http://stackoverflow.com/questions/1519068/how-does-the-preloader-work-in-as3/1520720#1520720Comment by widgisoft on How does the preloader work in as3?widgisoft2009-10-05T15:51:22Z2009-10-05T15:51:22ZNow that I realise FD is doing the magic behind the scenes I can investigate a little further; I love how as3 lets you control everything but I was just a little confused as to where this "magic" was coming from and whether or not it was configurable - mainly just to know how it works :-phttp://stackoverflow.com/questions/1519068/how-does-the-preloader-work-in-as3/1520720#1520720Comment by widgisoft on How does the preloader work in as3?widgisoft2009-10-05T15:42:20Z2009-10-05T15:42:20ZComing from a purely procedural stand point and not having a real copy of flash I've heard of the time line but never used it :-phttp://stackoverflow.com/questions/1519068/how-does-the-preloader-work-in-as3/1520720#1520720Comment by widgisoft on How does the preloader work in as3?widgisoft2009-10-05T15:40:19Z2009-10-05T15:40:19ZYep - Looks like "Always compile" is a bit misleading - You can only select a single file to be always compiled :-phttp://stackoverflow.com/questions/1519068/how-does-the-preloader-work-in-as3/1519941#1519941Comment by widgisoft on How does the preloader work in as3?widgisoft2009-10-05T15:37:17Z2009-10-05T15:37:17ZYep, I understand how this method works - it's what FD/flash is doing in the example where it's a single swf that I can't seem to fathom :-phttp://stackoverflow.com/questions/1447071/determine-when-flash-component-not-visible/1519081#1519081Comment by widgisoft on Determine when Flash component not visiblewidgisoft2009-10-05T09:39:27Z2009-10-05T09:39:27ZI have to admit I'm terrible for just clicking all the links in a page as I go - "just in case" I might need to read it later - then I don't have to wait for it to load, 9 times out of 10 I just close the window with all the tabs and waste all that lovely bandwidth :-p