User eviljack - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T21:27:48Z http://stackoverflow.com/feeds/user/750 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1503535/how-to-set-the-default-file-permissions-on-all-newly-created-files-in-linux 0 How to set the default file permissions on ALL newly created files in linux [closed] eviljack 2009-10-01T11:56:45Z 2009-11-29T02:57:08Z <p>My question is similar to this:</p> <p><a href="http://stackoverflow.com/questions/228534/linux-default-file-permission">http://stackoverflow.com/questions/228534/linux-default-file-permission</a></p> <p>but there is no scp/ftp client involved and that question looks abandoned. Simply put: I want to be able to, at some global level decree that all newly created files will never have world writable permissions (0775). </p> <p>I tried putting a umask 02 in /etc/profile then in my bash_profile but it only works for scripts or new files that I create in a shell. It doesn't work for files that another binary creates. Is there anyway to have all new files that are created?</p> http://stackoverflow.com/questions/1378925/coding-brain-teaser-to-update-an-array-language-agnostic 1 Coding brain teaser to update an array (language agnostic) eviljack 2009-09-04T12:29:00Z 2009-11-18T18:11:18Z <p>All,</p> <p>I need a clever way to implement this algorithm (for work) as quickly and cleanly as possible: I think I've removed all the language specific issues and boiled it down to this:</p> <p>I have two arrays: A and B. </p> <p>A has a list of names in it {Apple, Apple, Banana, Banana, Banana, Carrot, ...} each i-th value has no upper limit on the number of times it can appear in A. There can be just one "Apple" or a zillion. </p> <p>Each entry in A has a matching entry in B. (many to many mapping). For example:</p> <pre><code>A[0] = "Apple" B[0] = "0027" A[1] = "Apple" B[1] = "0028" A[2] = "Banana" B[2] = "0073" A[3] = "Banana" B[3] = "0041" A[4] = "Banana" B[4] = "0069" </code></pre> <p>If there are 100 or fewer instances of an entry in A, (if there are &lt;= 100 Bananas) then they must all share the same initial "B" value. If there are more than 100, then the first 100 must share the same B values, but the next 100 will have the B[i + 100] th value.</p> <p>Example if there are 102 apples</p> <pre><code>A[0] = "Apple" B[0] = "0027" A[1] = "Apple" B[1] = "0028" ... A[99] = "Apple" B[99] = "0073" A[100] = "Apple" B[100] = "0041" A[101] = "Apple" B[101] = "0069" A[102] = "Banana" B[102] = "0123" </code></pre> <p>Then the result that I want is this:</p> <pre><code>A[0] = "Apple" B[0] = "0027" A[1] = "Apple" B[1] = "0027" ... A[99] = "Apple" B[99] = "0027" A[100] = "Apple" B[100] = "0041" A[101] = "Apple" B[101] = "0041" A[102] = "Banana" B[102] = "0123" </code></pre> <p>I'm sure there are some super brains out there that can come up with the crappy algorithm I've devised, so let's see it!</p> <p>Edit: Guess I should point out that this <em>was</em> for work. I thought this was a fun challenge that someone might want to look at and possibly come up with a better solution than the one I came up with.</p> <p>Edit: thanks to daniel for pointing out my dumb mistakes.</p> <p><strong>My solution just for comparison:</strong></p> <h2>(pseudo code)</h2> <p>first make a hash/dictionary of B, called d where d[ "Apple" ] = number of instances of Apple in A.</p> <pre><code>while (i &lt; A.count) { string cmp = A[i]; int v = d[cmp]; int j=i; while (v--) { B[j++] = B[i]; if (j %100 == 0) i += j } i+= d[cmp]; } </code></pre> <p>doing this from memory, hope I didn't screw up an indexes...</p> http://stackoverflow.com/questions/1731723/how-to-convert-weird-varchar-time-to-real-time-in-mysql 1 how to convert weird varchar "time" to real time in mysql? eviljack 2009-11-13T20:33:05Z 2009-11-13T21:10:16Z <p>All, </p> <p>I have a time value being stored in a database as a varchar(4) and I need to convert it to real time. </p> <p>for example, if the time is "23:59" I want 11:59PM returned. </p> <p>The problem is that there is no ":" between the hours and minutes. So when I run this query SELECT TIME_FORMAT('2359', '%h:%i'); -- 12:23, wtf??</p> <p>However if I ran this: SELECT TIME_FORMAT('23:59', '%h:%i'); -- returns 11:59 as expected.</p> <p>So, to sum up: 1. the time is stored as a varchar(4) in the database. Example: 1200, 1201, 0153, 1364, 1923 2. I want time returned as 12 hr time with a colon in it.</p> <p>my brain hurts and this is prb much easier than I realize...</p> <p>like this, but for mysql <a href="http://stackoverflow.com/questions/1509977/convert-varchar-into-datetime-in-sql-server">http://stackoverflow.com/questions/1509977/convert-varchar-into-datetime-in-sql-server</a> <a href="http://stackoverflow.com/questions/986058/mysql-12-hr-to-24-hr-time-conversion">http://stackoverflow.com/questions/986058/mysql-12-hr-to-24-hr-time-conversion</a></p> http://stackoverflow.com/questions/1731723/how-to-convert-weird-varchar-time-to-real-time-in-mysql/1731875#1731875 0 Answer by eviljack for how to convert weird varchar "time" to real time in mysql? eviljack 2009-11-13T20:57:33Z 2009-11-13T20:57:33Z <p>nevermind, this works:</p> <p>TIME_FORMAT(CONCAT(SUBSTRING(THE_TIME, 1,2), ':', SUBSTRING(THE_TIME, 3,4)), '%h%i')</p> http://stackoverflow.com/questions/9846/performance-critical-gui-application-windows-linux 4 Performance critical GUI application (windows,linux) eviljack 2008-08-13T14:00:55Z 2009-11-09T08:50:29Z <p>All,</p> <p>I've been tasked with updating a series of applications which are performance critical VB.NET apps that essentially just monitor and return networking statistics. I've only got three requirements: <em>convert it to C#, make it fast, and make it stable</em></p> <p>One caveat is that we <em>"may"</em> migrate from a .NET platform to linux <em>"soon"</em></p> <p>I will be responsible for maintaining these apps in the future so I'd like to do this right. I have decided to refactor these apps according to the MVP pattern so that I can properly unit test the hell out of this bad boy. But I was also thinking since I was using MVP that I could also do the computationally expensive stuff in native C/C++ code while the GUI would be done with .NET forms, or Qt or whatever.</p> <p>questions: </p> <p>1) does it make sense to do a GUI in winforms but the expensive stuff in native, unmanaged C/C++ ?</p> <p>2) any recommendations for a good cross platform windowing kit that would fit for the scenario described above? </p> <p>advTHANKSance</p> http://stackoverflow.com/questions/887404/whats-the-best-way-to-manage-code-snippets-on-xcode 2 Whats the best way to manage code snippets on Xcode? eviljack 2009-05-20T11:33:18Z 2009-11-07T15:27:44Z <p>I have fallen in love with visual studio's code snippets toolkit. Is there anything similar on Xcode?</p> http://stackoverflow.com/questions/5989/whats-the-best-way-to-kick-ass-in-programming 7 What's the best way to kick ass in programming? eviljack 2008-08-08T14:24:17Z 2009-11-07T04:13:06Z <p>I've been programming since college, was a hobbyist programmer as a kid, but never got serious until I was a freshman. That was almost a decade and a half ago. One thing I've noticed is that when people reach a certain point in their skills they never really move beyond that. That is if they suck as a developer when you hire them, they will always suck. 10 years of C# experience doesn't necessarily make you a better developer than someone with 6 months of experience. (yeah, yeah, some people will get angry at reading this, but it's true, live with it).</p> <p>So my question is, just how the hell do you get to be one of those super programming freaks that everyone worships? I've been doing coding puzzles as often as I can -- example: reverse a string in place using no swap buffers. (that is a fun one) and I've noticed myself get a little sharper. I'm not improving as fast as I wish I could so I would love to hear some tips from people here.</p> http://stackoverflow.com/questions/1369361/how-can-i-programatically-create-read-write-an-excel-without-having-office-inst 4 How can I programatically create, read, write an excel without having office installed? eviljack 2009-09-02T18:24:54Z 2009-10-22T15:31:24Z <p>I'm confused as hell with all the bazillion ways to read/write/create excel files. VSTO, OLEDB, etc, but they all <em>seem</em> to have the requirement that office must be installed.</p> <p>Here is my situation: I need to develop an app which will take an excel file as input, do some calculations and create a new excel file which will basically be a modification of the first excel file. All with the constraint that the machine that runs this may not have office installed. (Don't ask why...)</p> <p>Any ideas?</p> <p>I need to support <em>all</em> excel formats. The only saving grace is that the formats spreadsheets themselves are really simple. Just a bunch of columns and values, nothing fancy. And unfortunately no CSV as the end user might not even know what a CSV file is.</p> http://stackoverflow.com/questions/1427348/how-do-you-get-the-name-of-the-first-page-of-an-excel-workbook 1 How do you get the name of the first page of an excel workbook? eviljack 2009-09-15T13:58:06Z 2009-09-16T13:26:19Z <p>Suppose you don't know the name of the first worksheet in an excel workbook. And you want to find a way to read from the <em>first</em> page. This snippet sometimes works, but not always. Is it just me? Or is there a no brainer way to do this?</p> <pre><code> MyConnection = new System.Data.OleDb.OleDbConnection("provider=Microsoft.Jet.OLEDB.4.0;Data Source='" + inputFile + "';Extended Properties=Excel 8.0;"); String[] excelSheets = new String[tbl.Rows.Count]; int i = 0; foreach (DataRow row in tbl.Rows) { excelSheets[i] = row["TABLE_NAME"].ToString(); i++; } string pageName = excelSheets[0]; OleDbDataAdapter myAdapter = new System.Data.OleDb.OleDbDataAdapter("SELECT * FROM [" + pageName + "]", MyConnection); </code></pre> <p>Note: I am looking for the <strong><em>name</em></strong> of the first worksheet.</p> http://stackoverflow.com/questions/1164698/using-excel-oledb-to-get-sheet-names-in-sheet-order/1428501#1428501 0 Answer by eviljack for Using Excel OleDb to get sheet names IN SHEET ORDER eviljack 2009-09-15T17:21:35Z 2009-09-15T17:21:35Z <p>This worked for me. Stolen from here: <a href="http://stackoverflow.com/questions/1427348/how-do-you-get-the-name-of-the-first-page-of-an-excel-workbook">http://stackoverflow.com/questions/1427348/how-do-you-get-the-name-of-the-first-page-of-an-excel-workbook</a></p> <pre><code> object opt = System.Reflection.Missing.Value; Excel.Application app = new Microsoft.Office.Interop.Excel.Application(); Excel.Workbook workbook = app.Workbooks.Open(WorkBookToOpen, opt, opt, opt, opt, opt, opt, opt, opt, opt, opt, opt, opt, opt, opt); Excel.Worksheet worksheet = workbook.Worksheets[1] as Microsoft.Office.Interop.Excel.Worksheet; string firstSheetName = worksheet.Name; </code></pre> http://stackoverflow.com/questions/1410820/how-to-split-a-really-long-mysql-result-set-into-two-lines 0 How to split a really long mysql result set into two lines? eviljack 2009-09-11T13:19:27Z 2009-09-11T14:56:47Z <p>Suppose you have a result that is 100 chars long but you only have a 50 char width. How do you split a MYSQL result into two rows of 50 chars each?</p> <p><em>Could you clarify the question a bit? Are you looking to insert 100 chars of data into a 50 char column? Or do you have 100 chars in the database but only have space in your app to display 50 chars?</em></p> <p>I have 100 chars in the database result set but I want the result set string to have a break after the 50th char and continue onto the next line.</p> <p>Example</p> <pre><code>SELECT * FROM FOO </code></pre> <p>returns 1 2 3 4 5 6 7 8 9...50 51 52 53..98 99 100</p> <p>but I want 1 2 3 4 5 6 7 8 9...50 51 52... 99 100</p> <p>Is this possible?</p> http://stackoverflow.com/questions/1091895/best-unit-testing-framework-for-old-school-qnx 1 Best unit testing framework for old school QNX ? eviljack 2009-07-07T11:52:08Z 2009-07-07T12:02:44Z <p>I'm working on an old variant of unix (qnx 4.x to be exact). I'm trying to shoe-horn in modern software methodologies atop 20+ year old technology. In short I need a unit testing framework for QNX. </p> <p>Keep in mind we've got a bare bones C compiler and that's pretty much it. Anyone got any suggestions on how I can unit test this beast?</p> http://stackoverflow.com/questions/334123/regex-matching-alpha-character-followed-by-4-alphanumerics 2 regex matching alpha character followed by 4 alphanumerics. eviljack 2008-12-02T14:37:05Z 2009-06-30T16:14:46Z <p>Ok, </p> <p>I need a regex for the following pattern:</p> <p>-Total of 5 characters (alpha and numeric, nothing else).</p> <p>-first character must be a letter (A,B,C only)</p> <p>-the remaining 4 characters can be number or letter.</p> <p>clarifcation: the first letter can only be A,B, or C. Example: A1234 is valid but D1234 is invalid.</p> http://stackoverflow.com/questions/282876/how-to-enable-debugging-of-stored-procedures-in-visual-studio 2 How to enable debugging of stored procedures in visual studio? eviljack 2008-11-12T03:01:16Z 2009-06-03T16:44:28Z <p>Ok, this is driving me nuts.</p> <p>I've done just about everything I can to enable step through debugging of stored procedures of a sql server 2005 database.</p> <p><a href="http://arjunachith.blogspot.com/2007/05/debugging-stored-procedures-debug.html" rel="nofollow">http://arjunachith.blogspot.com/2007/05/debugging-stored-procedures-debug.html</a></p> <p><a href="http://msdn.microsoft.com/en-us/library/zefbf0t6(vs.71).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/zefbf0t6(vs.71).aspx</a></p> <p>My currents setup:</p> <ol> <li>visual studio 2008 SP1</li> <li>SQL server 2005 express database (yes you can debug on this)</li> <li>DEV database on my localmachine with "root" login as sysadmin</li> </ol> <p>All I want to do is right click on a stored proc in my server explorer in VS 2008 and see "step into stored procedure". I've done all I can and I can't see that. I'm just trying to access a local database on my local machine, I've created an account</p> http://stackoverflow.com/questions/829642/whats-the-easiest-way-to-grab-a-web-page-in-c-via-https 1 What’s the easiest way to grab a web page in C ? (via https) eviljack 2009-05-06T13:45:01Z 2009-05-10T20:20:01Z <p>Almost the same question as this one here: <a href="http://stackoverflow.com/questions/825327/whats-the-easiest-way-to-grab-a-web-page-in-c">http://stackoverflow.com/questions/825327/whats-the-easiest-way-to-grab-a-web-page-in-c</a></p> <p>however the conditions have changed and I need to connect via https, this is a bit more tricky, anyone got any snippets?</p> <p>I am on a qnx platform, building and compiling additional libraries and rolling it out onto our product is very, very hard given the contraints. <strong><em>So things like libcurl are not possible.</em></strong></p> <p><strong>Results:</strong> It turns out I had to install libcurl on QNX after all. This involved installing perl and openSSL to build libcurl, but once that was built it was good to go. This was the least desirable option but it ended up being worth it.</p> http://stackoverflow.com/questions/825327/whats-the-easiest-way-to-grab-a-web-page-in-c 2 What's the easiest way to grab a web page in C ? eviljack 2009-05-05T15:08:47Z 2009-05-05T18:09:38Z <p>I'm working on an old school linux variant (QNX to be exact) and need a way to grab a web page (no cookies or login, the target URL is just a text file) using nothing but sockets and arrays.</p> <p>Anyone got a snippet for this?</p> <p>note: I don't control the server and I've got very little to work with besides what is already on the box (adding in additional libraries is not really "easy" given the contraints -- although I do love libcurl)</p> http://stackoverflow.com/questions/105434/is-it-better-to-be-paid-by-the-project-or-hourly 22 Is it better to be paid by the project or hourly? eviljack 2008-09-19T20:40:35Z 2009-03-20T15:32:26Z <p>I've recently gotten offers from several clients who are throwing consulting/contract work at me. (this is what we call a high quality problem). The problem is the most interesting ones will take an unknown amount of time and typically clients get upset when stuff doesn't get done FAST. </p> <p>This goes into the fact that consulting/contract charge by the hour. I am thinking about moving to a pay per project model where I look over a project, look over the specs and give an estimate on the time needed. This way its less stressful on both sides as there is a set price point. Provided I don't get last minute additions for new features the price shouldn't change too much.</p> <p>I've already read this: <a href="http://www.1099.com/c/ar/ta/HowToCharge_t042.html" rel="nofollow">http://www.1099.com/c/ar/ta/HowToCharge_t042.html</a></p> <p>But I'd like some actual war stories. Maybe I'm being foolishly naive but I think the pay per project model is superior to by the hour. What do you guys think? Is it better to be paid by the hour or by the project?</p> http://stackoverflow.com/questions/642768/how-to-debug-a-remote-linux-binary 0 How to debug a remote linux binary ? eviljack 2009-03-13T13:43:31Z 2009-03-14T11:53:33Z <p>Here is the situation:</p> <p>I've got a linux binary that is crashing. No log files, trace files, etc. I need to be able to attach a debugger to it (I have the source locally) and track down the error.</p> <p>Whats the easiest, best way to approach this problem?</p> http://stackoverflow.com/questions/591031/how-to-maintain-productivity-in-the-middle-of-the-day 1 How to maintain productivity in the middle of the day? [closed] eviljack 2009-02-26T15:32:02Z 2009-02-26T15:49:32Z <h3>Duplicate:</h3> <blockquote> <p><a href="http://stackoverflow.com/questions/514213/daily-motivation-tips-closed">Daily Motivation Tips</a></p> <p><a href="http://stackoverflow.com/questions/256592/how-do-you-keep-focus-reduce-interruptions-at-the-workplace">How do you keep focused and reduce interruptions at the workplace?</a></p> <p><a href="http://stackoverflow.com/questions/555968/what-keeps-you-motivated-at-your-job">What keeps you motivated at your job?</a></p> <p><a href="http://stackoverflow.com/questions/507967/tricks-to-avoid-productivity-rabbit-holes">Tricks to avoid productivity rabbit holes</a></p> <p><a href="http://stackoverflow.com/questions/475482/what-time-of-day-are-you-most-proficient-at-programming">What time of day are you most proficient at programming?</a></p> </blockquote> <p>I've definitely noticed that I am much more productive in the morning and my productivity declines throughout the day -- but the worst is during the middle of the day. Unfortunately management loves to schedule most meetings at lunchtime or towards the end of the day.</p> <p>I am sure I'm not the only one whose mood is affected by time of day. Especially around noon.</p> <p>Does anyone have a silver bullet for maintaining productivity through this mid day slump?</p> http://stackoverflow.com/questions/541368/are-technology-workers-safer-in-this-economic-downturn/541458#541458 0 Answer by eviljack for Are Technology Workers Safer in this Economic Downturn? eviljack 2009-02-12T14:24:18Z 2009-02-12T14:24:18Z <p>I don't think I ever remember any of my more talented peers ever being out of work. </p> <p>I do however know of many, many of "McProgrammers" (graduates of McSoftware school X) who seemed to be out of work almost every time the economy took a turn for the worse.</p> http://stackoverflow.com/questions/12276/what-are-the-most-common-things-you-should-be-able-to-do-in-a-programming-languag -5 What are the most common things you should be able to do in a programming language? eviljack 2008-08-15T14:10:20Z 2009-01-30T15:09:23Z <p>I want to make a basic list of the most common <em>basic</em> skills and concpets one should have when claiming "mastery" of a language. </p> <p><em>Funny anecdote: I once worked with a dude who said he knew java inside and out. I was suspicious when we were discussing inheiritance vs interface design --- turns out he knew javascript but seriously thought that meant he also knew java.</em></p> <p>so, what are some things one should be able to do? My list:</p> <p>1) string kung-fu: trim, truncate, concatenate, tokenize should all be skills needed</p> <p>2) file processing: read, write, open, close files</p> <p>3) bit manipulation </p> <p>4) casting between types</p> <p>Your list?</p> http://stackoverflow.com/questions/492091/c-scanner-string-fu 1 C++ scanner (string-fu!) eviljack 2009-01-29T15:36:43Z 2009-01-29T16:38:32Z <p>I'm writing a scanner as part of a compiler.</p> <p>I'm having a major headache trying to write this one portion:</p> <p>I need to be able to parse a stream of tokens and push them one by one into a vector, ignoring whitespace and tokenizing special symbols (simple case, lets just consider parentheses and braces)</p> <p>Example: <code>int main(){ } </code></p> <p>should parse into 6 different tokens:</p> <ol> <li>int </li> <li>main </li> <li>( </li> <li>) </li> <li>{ </li> <li>}</li> </ol> <p>How would you go about solving this? I'm writing this in C++, but a java/C# solution would be appreciated as well.</p> <p>Some points:</p> <ol> <li><p>and no, I can't use Boost, I can't guarantee that the libraries will be available to me. (don't ask...)</p></li> <li><p>I don't want to use lex, or any other special tools. I've never done this before and just want to try this once to say I've done it.</p></li> </ol> http://stackoverflow.com/questions/458065/if-you-had-one-month-to-work-on-anything-you-wanted-what-would-you-do 5 If you had one month to work on anything you wanted, what would you do? eviljack 2009-01-19T15:53:03Z 2009-01-19T18:58:18Z <p>Here's the scenario:</p> <p>You've just quit your last job and you've got another one lined up in one month. You want to improve yourself as a raw coder, not so much to learn <code>&lt;insert latest hot technology here</code>> but you want to do something that will benefit you in your software career. What do you do?</p> <p>This is exactly the scenario I find myself in. I'm currently working on writing my own compiler but I think that will only last me a week or so. I am looking for something that will help me move from average coder to grand-master. As I currently am not among the 'elite' I would like something that will take me one step closer.</p> <p>Any suggestions? Let me clarify I'm primarily looking to crank up my coding skills. The business stuff is a good call, as well as the 'have more sex', I'd like to keep this software oriented.</p> <p>Responses:</p> <p>Write a game: Good idea, but I've already done that. It was actually disappointing in terms of how much game coding skills actually transferred over to "real world" work. But it was fun nonethe less.</p> <p>MBA/Business: Great idea. That's on my list.</p> http://stackoverflow.com/questions/413155/thinking-techniques/413169#413169 1 Answer by eviljack for Thinking Techniques eviljack 2009-01-05T14:01:39Z 2009-01-05T14:01:39Z <p>First question that goes into my mind is "what is the first question my boss is going to ask me about what I've done on my current project".</p> <p>Then after that its: "How much longer will it take to finish the project".</p> <p>Usually these two questions are good enough to cover a good chunk of the meetings.</p> http://stackoverflow.com/questions/403135/how-to-catch-a-sql-server-hacker 1 How to catch a SQL server hacker? eviljack 2008-12-31T14:53:20Z 2008-12-31T15:43:35Z <p>Quick synopsis:</p> <p>The guys on my team have been working on a production database (sql server 2005). We've added various things such as constraints, added triggers, etc.</p> <p>Now we've found that someone or something has been rolling back our changes at various times. Problem is we all share a common admin login. (dumb, yeah I know, we're fixing this). Its causing tons of frustration, at this point we just want to find out whodunnit.</p> <p>How would you go about tracking down the guilty party?</p> <p>NOTE: I'm NOT looking for a way to fix this, that's already being done. I'm looking for a way to track down the culprit.</p> http://stackoverflow.com/questions/403135/how-to-catch-a-sql-server-hacker/403153#403153 0 Answer by eviljack for How to catch a SQL server hacker? eviljack 2008-12-31T15:03:41Z 2008-12-31T15:03:41Z <p>Asking everyone isn't useful, people lie and/or don't know they are screwing this up. We assume it's malicious but hope it's not.</p> http://stackoverflow.com/questions/399627/where-do-you-go-to-discuss-programming-stuff-outside-of-work 6 Where do you go to discuss programming stuff outside of work? eviljack 2008-12-30T06:19:51Z 2008-12-30T14:18:56Z <p>I've been wanting to brush up on my raw coding/algorithms skills but most of the people at my job aren't all that interested in that side of coding. I've been wanting to find a group of people who could help me take my coding skills to the next level. I've thought about joining the local programming team (university) to kind of pick up whatever I can but the thought of getting my ass kicked by kids not old enough to drink is painful.</p> <p>I truly want to become a bad ass coder, but I find that I get stuck on many things and need someone to talk it through with. I had a horrible time tonight trying to refresh my breadth first search implementation. This is something I could have done with someone in 1 hr or less, but it took me oh so long to remember and understand.</p> <p>My question is, when you guys are looking to improve and work with others to become a "grandmaster" where do you go? </p> <p>clarification: I am looking to get face to face mentoring/teaming. I have noticed when working with people face to face, its much more productive. Mailing lists are nice, but not as responsive as having a warm body with a warm brain.</p> http://stackoverflow.com/questions/394707/pharmacological-enhancement-for-job-performance/394806#394806 3 Answer by eviljack for Pharmacological enhancement for job performance eviljack 2008-12-27T08:27:01Z 2008-12-27T08:27:01Z <p>I have experimented with adderall for the past few months. Initially it was fantastic, I had boundless energry and felt like I could code all night. The problem was, it doesn't make up for having a core group of friends around you that can help you when you get stuck on a problem. It's hard to describe but if you have all the energy in the world, that doesn't mean you are going to derive the theory of relativity.</p> <p>I always caution people to be very very careful with these brain drugs, as they won't make up for knowledge that isn't there. Sure, it'll help you get over your energy/focus lapses but if you truly don't grok something, drugs won't help that much.</p> http://stackoverflow.com/questions/389133/how-do-you-truly-get-an-abstract-concept 4 How do you truly 'get' an abstract concept? eviljack 2008-12-23T15:21:47Z 2008-12-23T20:09:29Z <p>Sorry for the "hippie" question, but I've noticed recently in working with my more experienced colleagues that they will work on 3 simultaneous projects and be able to pickup where they left off and explain minute details to others, whereas I will work on 1-2 things and have trouble remembering basic details. In these cases we are talking about algorithms and how the architecture of enterprise software works.</p> <p>I've been asking around about this and its frustrating seeing people just pickup things much, much faster and more deeply. I have tried different things, visualizing them, thinking in patterns, coding bits and pieces but I'm at my wits end. I know some people will respond "hard work, and experience" but I've also seen guys much more senior than me who are still struggling as much as I am but some guys younger than me who are kicking my ass. </p> <p>Any thoughts, advice, input will be greatly appreciated.</p> http://stackoverflow.com/questions/389133/how-do-you-truly-get-an-abstract-concept/389183#389183 1 Answer by eviljack for How do you truly 'get' an abstract concept? eviljack 2008-12-23T15:36:09Z 2008-12-23T15:36:09Z <p>Thanks for all the replies, however the notion that a truly great developer/pianist/dancer is born and not made is becoming increasingly debunked.</p> <p><a href="http://www.sciam.com/article.cfm?id=the-expert-mind" rel="nofollow">http://www.sciam.com/article.cfm?id=the-expert-mind</a></p> <p>maybe its just wishful thinking on my part but I truly believe hard work >> innate talent.</p> <p>Now can someone tell me what it is the geniuses do?</p> http://stackoverflow.com/questions/1731723/how-to-convert-weird-varchar-time-to-real-time-in-mysql/1731842#1731842 Comment by eviljack on how to convert weird varchar "time" to real time in mysql? eviljack 2009-11-13T20:53:25Z 2009-11-13T20:53:25Z the field is varchar(4), I'll never have 235900 http://stackoverflow.com/questions/228534/linux-default-file-permission/228564#228564 Comment by eviljack on Linux default file permission eviljack 2009-09-30T20:02:17Z 2009-09-30T20:02:17Z this didn't work for me. I put it in my .bash_profile and still have the same problem http://stackoverflow.com/questions/1427348/how-do-you-get-the-name-of-the-first-page-of-an-excel-workbook/1427536#1427536 Comment by eviljack on How do you get the name of the first page of an excel workbook? eviljack 2009-09-15T17:19:24Z 2009-09-15T17:19:24Z sorry, I downvoted you till I worked out the &quot;otherarguments&quot; then realized it worked. Trying to upvote but it won't let me. http://stackoverflow.com/questions/1427348/how-do-you-get-the-name-of-the-first-page-of-an-excel-workbook/1427536#1427536 Comment by eviljack on How do you get the name of the first page of an excel workbook? eviljack 2009-09-15T17:18:39Z 2009-09-15T17:18:39Z holy crap that actually worked! http://stackoverflow.com/questions/1164698/using-excel-oledb-to-get-sheet-names-in-sheet-order/1165281#1165281 Comment by eviljack on Using Excel OleDb to get sheet names IN SHEET ORDER eviljack 2009-09-15T16:50:23Z 2009-09-15T16:50:23Z This won't work unless you know the name of the first sheet. http://stackoverflow.com/questions/1164698/using-excel-oledb-to-get-sheet-names-in-sheet-order Comment by eviljack on Using Excel OleDb to get sheet names IN SHEET ORDER eviljack 2009-09-15T16:44:39Z 2009-09-15T16:44:39Z I got the EXACT same problem and I'm banging my head on this. http://stackoverflow.com/questions/158706/how-to-properly-clean-up-excel-interop-objects-in-c/158751#158751 Comment by eviljack on How to properly clean up Excel interop objects in C# eviljack 2009-09-15T15:38:27Z 2009-09-15T15:38:27Z nice! clean and easy! http://stackoverflow.com/questions/1427348/how-do-you-get-the-name-of-the-first-page-of-an-excel-workbook/1427536#1427536 Comment by eviljack on How do you get the name of the first page of an excel workbook? eviljack 2009-09-15T15:18:54Z 2009-09-15T15:18:54Z I need to use an OleDbConnection. VSTO while nice, is not allowed for this project. thanks http://stackoverflow.com/questions/1410820/how-to-split-a-really-long-mysql-result-set-into-two-lines/1410883#1410883 Comment by eviljack on How to split a really long mysql result set into two lines? eviljack 2009-09-11T13:34:09Z 2009-09-11T13:34:09Z I want the result set in MYSQL http://stackoverflow.com/questions/1378925/coding-brain-teaser-to-update-an-array-language-agnostic Comment by eviljack on Coding brain teaser to update an array (language agnostic) eviljack 2009-09-04T13:17:55Z 2009-09-04T13:17:55Z B has no duplicates. And every 100 values should have a new &quot;B&quot; value. That is A[0..99] has B[0], A[100..199] =&gt; B[100], A[200..299] = B[200] http://stackoverflow.com/questions/1378925/coding-brain-teaser-to-update-an-array-language-agnostic Comment by eviljack on Coding brain teaser to update an array (language agnostic) eviljack 2009-09-04T12:57:19Z 2009-09-04T12:57:19Z mikhail, yes It's always sorted. And yes I know it's probably easy for the geniuses out there, I just want to see how a genius would solve this since I'm not one of them. Daniel -- I was wrong. thanks for pointing it out. http://stackoverflow.com/questions/1378925/coding-brain-teaser-to-update-an-array-language-agnostic Comment by eviljack on Coding brain teaser to update an array (language agnostic) eviljack 2009-09-04T12:43:13Z 2009-09-04T12:43:13Z dude, I've already solved it. I just thought others might have something better. And some people actually do like these types of puzzles/challenges -- at least I do. http://stackoverflow.com/questions/1369361/how-can-i-programatically-create-read-write-an-excel-without-having-office-inst/1369413#1369413 Comment by eviljack on How can I programatically create, read, write an excel without having office installed? eviljack 2009-09-02T19:25:42Z 2009-09-02T19:25:42Z you're freaking kidding me. http://stackoverflow.com/questions/5989/whats-the-best-way-to-kick-ass-in-programming/1083806#1083806 Comment by eviljack on What's the best way to kick ass in programming? eviljack 2009-07-07T11:48:00Z 2009-07-07T11:48:00Z malcolm gladwell's book: outliers, pretty much slices and dices the theory that some people are &quot;just born with it&quot;. http://stackoverflow.com/questions/825327/whats-the-easiest-way-to-grab-a-web-page-in-c/825363#825363 Comment by eviljack on What's the easiest way to grab a web page in C ? eviljack 2009-05-06T13:42:56Z 2009-05-06T13:42:56Z PLEASE post your snippet that also supports SSL