User geocoin - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T10:45:28Z http://stackoverflow.com/feeds/user/379 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/882575/bare-minimum-for-an-independent-developer 8 Bare minimum for an independent developer geocoin 2009-05-19T12:52:54Z 2009-11-06T23:59:59Z <p>I'm currently in the planning stages of starting out on my own* (with a business partner...) and am trying to come up with a list of minimum requirements that I'll need for the early stages of this venture.</p> <p>Leaving out the business craft side of things (sales marketing etc.) at this point - there are plenty of articles here on SO covering that - and focusing on the technical side of things only, I have the following list:</p> <ul> <li><p>development box (obviously! PC or MAC depending on target platform) </p></li> <li><p>dev software (VStudio/eclipse/xcode/notepad) </p></li> <li><p>test box (could be virtual machine)</p></li> <li><p>Source control (anything except VSS!)</p></li> <li><p>onsite backup (external HDD, separate backup box, CD/DVD ROM)</p></li> <li><p>offsite backup(looking for suggestions here amazon S3?)</p></li> <li><p>teleconferencing software (for discussion with Biz partner who may not be local. Skype?)</p></li> <li><p>bug tracking/management (fogbugz?)</p></li> </ul> <p>Have i missed anything and/or included too much? I realize that every venture is different, and technically, the bare minimum is just a dev box and a chair... however assuming serious work with disaster recovery is in order, is this list reasonable?</p> <p>[EDIT] I've created a wiki summary of the answers. I've put the skeleton framework in and intend to fatten it up with links and details etc. Once I can, it will be the accepted answer, in the meantime please vote up the other answers and/or edit the wiki page if you think it's appropriate. BTW, I'm away for a few days so the fattening up will take place after that.</p> http://stackoverflow.com/questions/17670/suitable-alternative-to-cryptencrypt 1 Suitable alternative to CryptEncrypt geocoin 2008-08-20T09:37:02Z 2009-10-30T19:52:07Z <p>We have a situation in our product where for a long time some data has been stored in the application's database as SQL string (choice of MS SQL server or sybase SQL anywhere) which was encrypted via the Windows API function <a href="http://msdn.microsoft.com/en-us/library/aa379924.aspx" rel="nofollow">CryptEncrypt.</a> (direct and decryptable)</p> <p>The problem is that CryptEncrypt can produce NULL's in the output, meaning that when it's stored in the database, the string manipulations will at some point truncate the ciphertext.</p> <p>Ideally we'd like to use an algo that will produce cyphertext that doesn't contain NULLs as that will cause the least amount of change to the existing databases (changing a column from string to binary and code to deal with binary instead of strings) and just decrypt existing data and re-encrypt with the new algo at database upgrade time.</p> <p>The algorithm doesn't need to be the most secure, as the database is already in a reasonably secure environment (not an open network / teh interwebs) but does need to bebetter than ROT13 (which I can almost decrypt in my head now!)</p> <p>Cheers</p> <p>edit: btw, any particular reason for changing ciphertext to cyphertext? ciphertext seems more widely used...</p> http://stackoverflow.com/questions/2256/mapping-stream-data-to-data-structures-in-c 3 Mapping Stream data to data structures in C# geocoin 2008-08-05T13:11:14Z 2009-10-24T11:37:39Z <p>Is there a way of mapping data collected on a stream or array to a data structure or vice-versa? In C++ this would simply be a matter of casting a pointer to the stream as a data type I want to use (or vice-versa for the reverse) eg: in C++</p> <pre><code>Mystruct * pMyStrct = (Mystruct*)&amp;SomeDataStream; pMyStrct-&gt;Item1 = 25; int iReadData = pMyStrct-&gt;Item2; </code></pre> <p>obviously the C++ way is pretty unsafe unless you are sure of the quality of the stream data when reading incoming data, but for outgoing data is super quick and easy.</p> <p><hr /></p> <p>Strange... my previously accepted answer was unaccepted. anyway, while all the given solutions were helpful, the accepted answer is the one I was looking for</p> http://stackoverflow.com/questions/1432336/how-to-find-a-windows-swshow-swhide-status 0 how to find a window's SW_SHOW/SW_HIDE status geocoin 2009-09-16T11:12:23Z 2009-09-16T11:37:18Z <p>I am trying to determine a window control's visibility that has been hidden or enabled with CWnd::ShowWindow(). (or ::ShowWindow(hWnd,nCmdShow))</p> <p>I cannot simply use ::IsWindowVisible(hWnd) as the control is on a tab sheet, which may itself be switched out, causing IsWindowVisible to return FALSE.</p> <p>Is there a way to get the SW_SHOW/HIDE (or others) window status or do I need to use the retun value of ShowWindow() and reset accordingly?</p> <p>edit: as the control is enabled (or disabled) to show, but may not be currently visible, as the tab is switched ot, I would think that it's SW_SHOW status would remain the same, even if the window itself is not actually switched in. If I'm unrealistic in my expectations that that's fine.</p> <p>So really I'm looking for 'can this window/control be shown'</p> http://stackoverflow.com/questions/882575/bare-minimum-for-an-independent-developer/883057#883057 9 Answer by geocoin for Bare minimum for an independent developer geocoin 2009-05-19T14:17:21Z 2009-07-22T09:18:30Z <p>Summary of answers so far: (please vote on individual items and edit this wiki as appropriate)</p> <p><strong>Level 0: before even thinking about doing anything...</strong></p> <ul> <li>whiteboard (infinitely useful, brainstorming, todo's, bugs etc.)</li> <li>an idea of direction so that the level 1 minimum can be more finely defined</li> </ul> <p><strong>Level 1: general minimum for any development from a SOHO</strong></p> <ul> <li>Development machine</li> <li><strong>good</strong> chair</li> <li>internet connection</li> <li>clean (from distractions) environment</li> <li>source control</li> <li>backup regime (something, just keep a separate physical copy)</li> <li>printer (somewhat optional at this level, but useful, especially for billing)</li> <li>IM or teleconference software</li> <li>hosted domain and email</li> <li>SO account</li> <li>as many monitors as you can afford</li> <li>appropriate licenses for dev environment (MS Bizspark as a cheap way of getting M$ products)</li> </ul> <p><strong>Level 2: You have some paying gigs, not just side projects</strong></p> <ul> <li>offsite backup</li> <li>separate clean test box (VM)</li> <li>backup functional development box </li> <li>VM's for as many hardware platforms as you can get away with</li> <li>test server (web apps)</li> <li>hosted server (web apps)</li> <li>remote access software </li> <li>better chair</li> <li>more monitors than L1</li> <li>Clients!</li> </ul> <p><strong>Level 3: lots of serious/high value work to be done</strong></p> <ul> <li>upgrade your chair again</li> <li>improve or add a few more/better/bigger monitors</li> <li>in house production server</li> <li>exact duplicate dev box</li> <li>take regular images of all physical machines</li> <li><strong>specifics more and more dictated by the type of work from here on</strong></li> </ul> http://stackoverflow.com/questions/878376/sql-query-to-join-several-columns 3 SQL query to join several columns geocoin 2009-05-18T15:42:48Z 2009-05-18T16:04:06Z <p>I'm trying to join some data together from 2 tables, but on several columns. here's an example:</p> <blockquote> <p><strong>Source</strong> table</p> <p>ID | Desc| AAAA| BBBB|</p> <p><strong>Table2</strong> table</p> <p>ID | Text| ID1 | ID2 | ID3 |</p> </blockquote> <p>where ID1, ID2 and ID3 in <strong>Table2</strong> are ID's from the <strong>Source</strong> table</p> <p>I'd like to do a query which yields the results:</p> <pre><code>Table2.Text, Source.Desc(ID1), Source.AAAA(ID1), Source.Desc(ID2), Source.AAAA(ID2), Source.Desc(ID3), Source.AAAA(ID3) </code></pre> <p>I'd guess this would be a join, but i can't get the syntax right... or would I be better off with a Union?</p> http://stackoverflow.com/questions/252309/when-should-i-tell-my-boss-that-im-thinking-about-looking-for-another-job/877362#877362 1 Answer by geocoin for When should I tell my boss that I'm thinking about looking for another job? geocoin 2009-05-18T11:58:31Z 2009-05-18T11:58:31Z <p>While I agree with the top answer for 95% of cases, here is one situation where as much notice as possible is more than just professional courtesy:</p> <p><strong>When you need to relocate out of the area because of an external factor</strong></p> <p>This may be related to your spouse or children, or that you just want to get away from the city that you live in, not away from the job per se.</p> <p>This will give your current employer:</p> <ul> <li>A chance to come to a solution that may benefit both of you e.g. telecommuting. As recruiting another person is a major PITA, both in the recruiting time cost and in the time to bring the new person up to speed.</li> <li>if no solution can be agreed, then it gives them ample time to find your replacement and do some sort of handover</li> </ul> <p>I was someone who filled a position of someone who left, but the company at large didn't allow the recruitment process until it was too late (he had already left) and i got no handover time with the old guy. THAT was a PITA...</p> <p>Again, your relationship with your boss/manager will dictate how you'd procedd in this situation, but if you want to keep things amicable, then it's always good not to piss potential contacts off</p> http://stackoverflow.com/questions/868774/what-buzzwords-should-we-be-wary-of/869367#869367 0 Answer by geocoin for What Buzzwords Should We Be Wary Of geocoin 2009-05-15T15:32:21Z 2009-05-15T15:32:21Z <p>Mesh - when used incorrectly</p> http://stackoverflow.com/questions/868759/writing-compiling-a-c-program-under-windows-xp/869301#869301 1 Answer by geocoin for Writing & compiling a C program under Windows XP? geocoin 2009-05-15T15:19:12Z 2009-05-15T15:19:12Z <p>just in case you haven't realised yet, like visual studio, code::blocks also has an editor built in. you don't need to write in notepad++ (unless you actually prefer npp as an editor of course)</p> http://stackoverflow.com/questions/602240/how-to-transition-from-traditional-app-development-to-web-development 2 how to transition from traditional app development to web development? geocoin 2009-03-02T12:55:54Z 2009-03-23T20:02:40Z <p>I'm in a bit of a career quandry here. I currently live in an area of the UK which is reasonably good job wise for C++ desktop application developers (i.e like me) however my wife is being relocated to an area of the country which is near to a major tech hub of the country, but not near enough to commute on a daily basis (i've done 2 hr. commutes before, they really don't fit with my sanity)<br /> As a result there are not many hi-tech places in the new city, but seemingly a neverending supply of Web-App shops.</p> <p>While I have been toying with .net apps in my (already quite sparse) spare time, having never done any web-dev (thanks previous employers with your carrot/infinite stick promises) I don't even know where to begin making a transition to making full blown web app production. without at least some inkling of how web apps work, my CV can't even get a first look, let alone an interview at these places.</p> <p>What are some good resources for people in my situation?</p> <p>EDIT:<strong>Great stuff guys!</strong><br /> so do you have any links to good kick off points? of course i can do a wikipedia lookup on each of the concepts, but finding the really good 'meat' of the tutorials can be a massive rabbit warren...</p> <p>what's the 'webapps for dummies' or the De-Facto source for getting going here?</p> <p>final edit:<br /> OK, guess i should have looked a little closer to home :) plenty here:<br /> <a href="http://stackoverflow.com/questions/tagged/getting-started">http://stackoverflow.com/questions/tagged/getting-started</a></p> http://stackoverflow.com/questions/601321/get-rewarded-for-creativity/638620#638620 0 Answer by geocoin for Get rewarded for creativity. geocoin 2009-03-12T13:25:38Z 2009-03-12T13:25:38Z <p>The short answer is that you need a sponsor. Someone with enough internal political clout to vouch for/support you and your project. without that you'll be going nowhere and/or get fobbed off.</p> <p>You will need to pitch the idea and get support. (as has been previously stated) Unless otherwise, it is very unlikely that your contract will say anything other than "any work produced by you remains the Intelectual Property of the company" (or words to that effect) if you're <strong>REALLY</strong> unlucky, that will include stuff you do in your own personal free time, off the company clock. even weekends. (there are threads about this elsewhere on SO) </p> <p>After all that, <strong>IF</strong> you get buy in from the people with the purse strings, you will most likely get a pat on the back, or maybe a nomination for a company award (which might have some financial benefit) because you have already signed a contract which pays you an agreed salary for your service. </p> <p>The only thing that might get you a bit more out of it is if you pre-negotiate, say to your management something like: if you had a idea/product/service that would contribute significantly to the bottom line of the company, what extra benefits could you expect. Be non-commital though, some management types have a nasty habit of downplaying the idea to the proposer, then passing it off as his/her idea to the higher ups. I've seen this happen many times.</p> <p>This is all dependant on the size of the organization - the smaller it is, the easier it is to do things like this and reap the benefits. </p> <p>Sorry to be so negative about this, but in a lot of places this is how the game is. </p> http://stackoverflow.com/questions/450630/visaul-c-2005-hangs-during-qt-builds 0 Visaul C++ 2005 hangs during qt builds geocoin 2009-01-16T14:57:48Z 2009-01-16T15:39:03Z <p>At my shop, the main product app is a mongrel built on MFC, QT and other random things devs have thrown in over the years. In the current stack, Qt toolkit is on the way out, but still features heavily.</p> <p>If I have SQL 2005 Management studio open and have to do a full build, it usually hangs a CPU (even after the offending process is taken out back and shot...) during the qt specific parts of the build (Moc'ing and UIC'ing)</p> <p>has anyone seen anything like this? any ideas what the problem could be?</p> http://stackoverflow.com/questions/116992/is-there-an-equivalent-to-the-xna-framework-for-consoles-other-than-xbox360/138455#138455 0 Answer by geocoin for Is there an equivalent to the XNA framework for consoles other than XBox360? geocoin 2008-09-26T09:27:51Z 2008-09-26T09:27:51Z <p>as <a href="http://stackoverflow.com/questions/116992/is-there-an-equivalent-to-the-xna-framework-for-consoles-other-than-xbox360#117080">bhinks</a> mentioned, there's the GP2X, but has been around for a bit, and there's a <a href="http://www.gp32x.com/" rel="nofollow">huge community</a> of homebrew game developers for it. the GP2X has now ceased production, and it has 2 successors on the way, the <a href="http://en.wikipedia.org/wiki/GP2X_Wiz" rel="nofollow">WIZ</a> by the same company, Game Park and the <a href="http://en.wikipedia.org/wiki/Pandora_(console)" rel="nofollow">Pandora</a> which is a proper enthusiast device.</p> <p>the beauty is you can do games in <a href="http://en.wikipedia.org/wiki/Simple_DirectMedia_Layer" rel="nofollow">SDL</a> and build for all devices, including the PC</p> http://stackoverflow.com/questions/133214/is-there-a-typical-state-machine-implementation-pattern/133292#133292 3 Answer by geocoin for Is there a typical state machine implementation pattern? geocoin 2008-09-25T13:24:00Z 2008-09-25T13:24:00Z <p>there is also the <a href="http://www.codeguru.com/Cpp/misc/misc/math/article.php/c9629" rel="nofollow">logic grid</a> which is more maintainable as the state machine gets bigger</p> http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/102967#102967 2 Answer by geocoin for What was your first home computer? geocoin 2008-09-19T15:35:51Z 2008-09-23T14:21:46Z <p>Dad had a Franklin ACE1200 (the Apple ][ clone with double full height 5 1/4" drives)</p> <p><img src="http://www.vintage-computer.com/images/ace1200_3.jpg" alt="alt text" /></p> <p>which we wrote a BASIC looping program to 'do' my 'homework' (entire class punishment for something trivial) of 100x "I will not yada yada" given by a lunch monitor.</p> <p>my own first computer was a C64 which i punched a few basic progs from some books into until someone gave me a box of games.... and so endeth my programming life until university!</p> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/119870#119870 2 Answer by geocoin for What are some things that you do to make sure a project is ready to be released? geocoin 2008-09-23T08:37:44Z 2008-09-23T08:37:44Z <p>freeze development of new code in the release version and only fix bugs. </p> http://stackoverflow.com/questions/119559/c-determine-the-number-of-lines-within-a-text-file/119581#119581 1 Answer by geocoin for c# determine the number of lines within a text file geocoin 2008-09-23T07:28:32Z 2008-09-23T07:33:35Z <p>count the carriage returns/line feeds. I believe in unicode they are still 0x000D and 0x000A respectively. that way you can be as efficient or as inefficient as you want, and decide if you have to deal with both characters or not</p> http://stackoverflow.com/questions/32103/how-do-you-programatically-invoke-a-listview-label-edit 1 how do you programatically invoke a listview label edit geocoin 2008-08-28T12:41:04Z 2008-09-20T02:24:50Z <p>in C# I'd like to invoke the label edit of a newly added item to a ListView. basically, if I have a <em>click here to add</em> scenario, as soon as the new item is added, I want the text label to be in a user editable state. Thanks!</p> http://stackoverflow.com/questions/54223/how-do-i-get-started-in-game-development/94307#94307 2 Answer by geocoin for How do I get started in game development? geocoin 2008-09-18T16:42:51Z 2008-09-18T16:42:51Z <p>You may want to consider the employment practices of the cut throat game industry. <a href="http://en.wikipedia.org/wiki/Erin_Hoffman" rel="nofollow">EA spouse</a> happened for a reason, and for all the publicity she has garnered, from what I have seen (I know more than my fair share of game developers in the UK) nothing has really changed much. it's certainly not like <a href="http://en.wikipedia.org/wiki/Jpod" rel="nofollow">jPod</a>.</p> <p>if sweatshop working conditions are a good trade-off for working in a cool industry then go for it (not trying to be a downer - and i'm sure i'll get downvoted, but from what I have seen, it's not worth it. just be sure it's what you really want to do) It certainly has a draw when you can say "yeah, that top rated game that came out last week with the kick ass graphics - I did that" but for every AAA title, there are plenty that get canned at like 80% at which point you effectively have a hole in your CV/resume.</p> <p>do it foe experience, but don't expect to have a family life (if that's your thing) unless you can call the shots, which if you're starting out, you can't.</p> http://stackoverflow.com/questions/94101/how-to-type-faster/94198#94198 0 Answer by geocoin for How to type faster geocoin 2008-09-18T16:32:27Z 2008-09-18T16:32:27Z <p>My hands aren't my bottleneck, so touchtyping doesn't make me any faster. I already don't get enough bitrate out of my head to max out my hunt and peck. some people (me) may never be able to TT effectively.</p> <p>agreed on muscle memory though. common thngs like usr/pass always get boshed out quickly without thinking, but for code, my hands are not the bottleneck</p> http://stackoverflow.com/questions/51687/lightbox-style-dialogs-in-mfc-app/54341#54341 4 Answer by geocoin for Lightbox style dialogs in MFC App geocoin 2008-09-10T15:13:03Z 2008-09-11T11:07:58Z <p>Here's what I did* based on Brian's links<br /> First create a dialog resource with the properties:</p> <ul> <li>border <strong>FALSE</strong></li> <li>3D look <strong>FALSE</strong></li> <li>client edge <strong>FALSE</strong></li> <li>Popup style</li> <li>static edge <strong>FALSE</strong></li> <li>Transparent <strong>TRUE</strong></li> <li>Title bar <strong>FALSE</strong> </li> </ul> <p>and you should end up with a dialog window with no frame or anything, just a grey box. override the Create function to look like this: </p> <pre><code>BOOL LightBoxDlg::Create(UINT nIDTemplate, CWnd* pParentWnd) { if(!CDialog::Create(nIDTemplate, pParentWnd)) return false; RECT rect; RECT size; GetParent()-&gt;GetWindowRect(&amp;rect); size.top = 0; size.left = 0; size.right = rect.right - rect.left; size.bottom = rect.bottom - rect.top; SetWindowPos(m_pParentWnd,rect.left,rect.top,size.right,size.bottom,NULL); HWND hWnd=m_hWnd; SetWindowLong (hWnd , GWL_EXSTYLE ,GetWindowLong (hWnd , GWL_EXSTYLE ) | WS_EX_LAYERED ) ; typedef DWORD (WINAPI *PSLWA)(HWND, DWORD, BYTE, DWORD); PSLWA pSetLayeredWindowAttributes; HMODULE hDLL = LoadLibrary (_T("user32")); pSetLayeredWindowAttributes = (PSLWA) GetProcAddress(hDLL,"SetLayeredWindowAttributes"); if (pSetLayeredWindowAttributes != NULL) { /* * Second parameter RGB(255,255,255) sets the colorkey * to white LWA_COLORKEY flag indicates that color key * is valid LWA_ALPHA indicates that ALphablend parameter * is valid - here 100 is used */ pSetLayeredWindowAttributes (hWnd, RGB(255,255,255), 100, LWA_COLORKEY|LWA_ALPHA); } return true; } </code></pre> <p>then create a small black bitmap in an image editor (say 48x48) and import it as a bitmap resource (in this example IDB_BITMAP1)<br /> override the WM_ERASEBKGND message with:</p> <pre><code>BOOL LightBoxDlg::OnEraseBkgnd(CDC* pDC) { BOOL bRet = CDialog::OnEraseBkgnd(pDC); RECT rect; RECT size; m_pParentWnd-&gt;GetWindowRect(&amp;rect); size.top = 0; size.left = 0; size.right = rect.right - rect.left; size.bottom = rect.bottom - rect.top; CBitmap cbmp; cbmp.LoadBitmapW(IDB_BITMAP1); BITMAP bmp; cbmp.GetBitmap(&amp;bmp); CDC memDc; memDc.CreateCompatibleDC(pDC); memDc.SelectObject(&amp;cbmp); pDC-&gt;StretchBlt(0,0,size.right,size.bottom,&amp;memDc,0,0,bmp.bmWidth,bmp.bmHeight,SRCCOPY); return bRet; } </code></pre> <p>Instantiate it in the DoModal of the desired dialog, Create it like a Modal Dialog i.e. on the stack(or heap if desired), call it's Create manually, show it then create your actual modal dialog over the top of it: </p> <pre><code>INT_PTR CAboutDlg::DoModal() { LightBoxDlg Dlg(m_pParentWnd);//make sure to pass in the parent of the new dialog Dlg.Create(LightBoxDlg::IDD); Dlg.ShowWindow(SW_SHOW); BOOL ret = CDialog::DoModal(); Dlg.ShowWindow(SW_HIDE); return ret; } </code></pre> <p>and this results in something <strong>exactly</strong> like my mock up above </p> <p>*there are still places for improvment, like doing it without making a dialog box to begin with and some other general tidyups.</p> http://stackoverflow.com/questions/51687/lightbox-style-dialogs-in-mfc-app 2 Lightbox style dialogs in MFC App geocoin 2008-09-09T11:53:23Z 2008-09-11T11:07:58Z <p>Has anyone implemented Lightbox style background dimming on a modal dialog box in a MFC/non .net app.<br /> I think the procedure would have to be something like:</p> <p>steps:</p> <ol> <li><p>Get dialog parent HWND or CWnd* </p></li> <li><p>Get the rect of the parent window and draw an overlay with a translucency over that window </p></li> <li>allow the dialog to do it's modal draw routine, e.g DoModal()</li> </ol> <p>Are there any existing libraries/frameworks to do this, or what's the best way to drop a translucent overlay in MFC?<br /> <strong>edit</strong> Here's a mockup of what i'm trying to achieve if you don't know what 'lightbox style' means<br /> <strong>Some App</strong>:<br /> <img src="http://farm4.static.flickr.com/3065/2843243996_8a4536f516_o.png" alt="alt text" /> </p> <p>with a lightbox dialog box<br /> <img src="http://farm4.static.flickr.com/3280/2842409249_4a1c7f5810_o.png" alt="alt text" /></p> http://stackoverflow.com/questions/14279/how-to-estimate-the-length-of-a-programming-task/53582#53582 1 Answer by geocoin for How to estimate the length of a programming task geocoin 2008-09-10T07:57:13Z 2008-09-10T07:57:13Z <p>A technique an old manager of mine used for large tasks was to get everyone on the team (only a few people) in a huddle, count 3-2-1-go and on go everyone had to give their estimate. The highest was then used.</p> <p>the scary part was how extrodinarily accurate it was!</p> http://stackoverflow.com/questions/32103/how-do-you-programatically-invoke-a-listview-label-edit/32113#32113 2 Answer by geocoin for how do you programatically invoke a listview label edit geocoin 2008-08-28T12:44:05Z 2008-08-28T22:25:31Z <p><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.listviewitem.beginedit.aspx" rel="nofollow">found it!</a></p> <pre><code>ListViewItem::BeginEdit(); </code></pre> http://stackoverflow.com/questions/22117/how-do-you-organize-your-online-resources-and-researched-data/22159#22159 2 Answer by geocoin for How do you organize your (online) resources and researched data? geocoin 2008-08-22T12:06:17Z 2008-08-22T12:06:17Z <p>how about set up your own private wiki? edit: Tada - <a href="http://webworkerdaily.com/2007/07/13/15-productive-uses-for-a-wiki/" rel="nofollow">15 productive tips for using a wiki</a>!</p> http://stackoverflow.com/questions/22117/how-do-you-organize-your-online-resources-and-researched-data/22138#22138 0 Answer by geocoin for How do you organize your (online) resources and researched data? geocoin 2008-08-22T11:56:55Z 2008-08-22T11:56:55Z <p>I use foxmarks for my bookmarks - it's just for me, not the world, accessable anywhere, with or without firefox.<br /> however as for other notes, i haven't got a likeable solution apart from using unpublished posts on a blog<br /> maybe someone shoud write one... I wonder where we could find a programmer ;)</p> http://stackoverflow.com/questions/20180/do-you-consider-your-job-evil-neutral-good/20244#20244 1 Answer by geocoin for Do you consider your job evil/neutral/good ? geocoin 2008-08-21T15:30:06Z 2008-08-21T15:30:06Z <p>I have worked for a T-Comms company (neither good nor evil) on data products for Ambulance services (speeded up response times so ultimately good) then did general industrial monitoring stuff (good if it's preventing critical sites going critical) then Formula 1 trackside monitoring (evil depending on your viewpoint but having F1 cars around all the time was seriously cool) and now legal DB GUI stuff... (lawyers are inherrently evil...)</p> http://stackoverflow.com/questions/11464/what-is-the-worst-interview-question/20218#20218 1 Answer by geocoin for What is the worst interview question? geocoin 2008-08-21T15:20:44Z 2008-08-21T15:20:44Z <p>LOL @<a href="http://beta.stackoverflow.com/questions/11464/what-is-the-worst-interview-question#20159" rel="nofollow">Quarrelsome</a><br /> I must admit, I've been to several now where I've been asked <em>fundamental</em> questions and had a similar response. my favourite though was being asked in one interview what freebie defaults you get with a C++ compiler (i.e. don't have to be explicitly declared) and I couldn't answer fully (I got default constructor and destructor). and i didn't get the job (mainly due to thier 5 page long list of programming trivia Q's and I was too expensive - my friend got the job and said it was the worst place he's ever been....<br /> Anyway, the next day I had another interview at another place, and got the same Question.... only this time i knew the answer....</p> <p>along with getting a better design focused interview and a better rapport, I got the job, which I left after 9 months due to bad design practices overall! (they had none - cigarette pack specs would have been a dream...)</p> http://stackoverflow.com/questions/17670/suitable-alternative-to-cryptencrypt/17750#17750 0 Answer by geocoin for Suitable alternative to CryptEncrypt geocoin 2008-08-20T11:16:49Z 2008-08-20T11:16:49Z <p>It seems that the developer handling this is going to wrap the existing encryption with <a href="http://www.yenc.org" rel="nofollow">yEnc</a> to preserve the table integrity as the data needs to be retrievable, and this save all that messy mucking about with infinite-improbab.... uhhh changing column types on entrenched installations. Cheers Guys</p> http://stackoverflow.com/questions/17670/suitable-alternative-to-cryptencrypt/17699#17699 0 Answer by geocoin for Suitable alternative to CryptEncrypt geocoin 2008-08-20T10:06:03Z 2008-08-20T10:06:03Z <p>That's an interesting route OJ. We're looking at the feasability of a non-reversable method (still making sure we don't explicitly retrieve the data to decrypt) e.g. just store a Hash to compare on a submission</p> http://stackoverflow.com/questions/1553707/how-to-overcome-the-external-disturbance-while-coding/1553757#1553757 Comment by geocoin on How to overcome the external disturbance while coding? geocoin 2009-10-12T11:32:56Z 2009-10-12T11:32:56Z perhaps he means a home office. Significant other assuming that because they are at home that they can be called upon for any little trivial task, kids wanting to play etc. http://stackoverflow.com/questions/1432336/how-to-find-a-windows-swshow-swhide-status/1432393#1432393 Comment by geocoin on how to find a window's SW_SHOW/SW_HIDE status geocoin 2009-09-16T11:57:47Z 2009-09-16T11:57:47Z slightly more thorough than Jdehaan's though he was first... http://stackoverflow.com/questions/1432336/how-to-find-a-windows-swshow-swhide-status/1432389#1432389 Comment by geocoin on how to find a window's SW_SHOW/SW_HIDE status geocoin 2009-09-16T11:40:08Z 2009-09-16T11:40:08Z this sounds like what i'm after. (you got in before Kirill) I'll try it out http://stackoverflow.com/questions/1432336/how-to-find-a-windows-swshow-swhide-status/1432402#1432402 Comment by geocoin on how to find a window's SW_SHOW/SW_HIDE status geocoin 2009-09-16T11:38:17Z 2009-09-16T11:38:17Z surely this is the same as IsWindowVisible - which I already said was giving me the wrong result (for this situation) http://stackoverflow.com/questions/185697/the-most-efficient-way-to-find-top-k-frequent-words-in-a-big-word-sequence Comment by geocoin on The Most Efficient Way To Find Top K Frequent Words In A Big Word Sequence geocoin 2009-07-07T12:05:49Z 2009-07-07T12:05:49Z this sounds like an interview question i just had... http://stackoverflow.com/questions/299723/can-i-do-transactions-and-locks-in-couchdb/823509#823509 Comment by geocoin on Can I do transactions and locks in CouchDB? geocoin 2009-06-26T14:18:28Z 2009-06-26T14:18:28Z this point has now been discussed in the SO podcast 59. http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo Comment by geocoin on How do I move the turtle in LOGO? geocoin 2009-06-19T16:06:16Z 2009-06-19T16:06:16Z I like turtles! http://stackoverflow.com/questions/981232/what-are-crystal-reports-for-net/981285#981285 Comment by geocoin on What are Crystal Reports for .NET? geocoin 2009-06-11T16:47:32Z 2009-06-11T16:47:32Z +1 for painful. Just did a whole load of crystal pain myself... it was CR 9.0 tho and not an up to date version http://stackoverflow.com/questions/357219/whats-your-favourite-character/908519#908519 Comment by geocoin on What's your favourite character? geocoin 2009-06-08T08:27:08Z 2009-06-08T08:27:08Z Lol... i broke Stackoverflow beta by setting that smiley as my username for a while... http://stackoverflow.com/questions/950558/am-i-the-only-moron-around-here/950577#950577 Comment by geocoin on Am I the only moron around here? geocoin 2009-06-04T13:26:41Z 2009-06-04T13:26:41Z Lol... I was going to put that... http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/426656#426656 Comment by geocoin on What's your favorite "programmer ignorance" pet peeve? geocoin 2009-06-02T16:02:07Z 2009-06-02T16:02:07Z usually it's sales types who take the customers word as verbatim... then try to tell you(r team) that theirs is OMG THE MOST IMPORTANT FEATURE EVAR!!!111!!!11!one GET IT DONE NOW OMGWTFBBQROFL http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/424433#424433 Comment by geocoin on What's your favorite "programmer ignorance" pet peeve? geocoin 2009-06-02T15:53:48Z 2009-06-02T15:53:48Z I have known 2 female programmers, 1 VERY good and the other may have been good, until she decided not to learn anymore... about 10 years ago... unfortunately she also needs an attitude re-alignment (assumes she is a programming god when in fact just knows the product/business rules very well) and makes even a simple hello sound like a declaration of war... http://stackoverflow.com/questions/882575/bare-minimum-for-an-independent-developer/882666#882666 Comment by geocoin on Bare minimum for an independent developer geocoin 2009-05-29T12:53:33Z 2009-05-29T12:53:33Z accepted, as this TRULY is the bare minimum :) http://stackoverflow.com/questions/882575/bare-minimum-for-an-independent-developer/882640#882640 Comment by geocoin on Bare minimum for an independent developer geocoin 2009-05-29T09:50:05Z 2009-05-29T09:50:05Z Agreed... call it what you will, there are enough people that make thier money off the back of M$ products and still be profitable, if that's the technology stack you've chosen. as many have said, if after 3 years or whatever if your startup is not successful enough for the licensing costs to be noise, then you're probably on to a loser anyway. If M$ is what you know, the time cost of learning the alternatives may be too great. if you already know them backwards then fantastic. Go for it http://stackoverflow.com/questions/882575/bare-minimum-for-an-independent-developer/883613#883613 Comment by geocoin on Bare minimum for an independent developer geocoin 2009-05-19T16:02:24Z 2009-05-19T16:02:24Z That's required on <i>ALL</i> dev jobs, lone or not ;) but at least you have more control of the quality!