User Kibbee - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T14:37:52Z http://stackoverflow.com/feeds/user/1862 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/51054/batch-file-to-delete-files-older-than-n-days 4 Batch file to delete files older than N days Kibbee 2008-09-09T01:05:28Z 2009-12-14T16:44:47Z <p>I am looking for a way to delete all files older than 7 days in an MS-DOS batch file. I've search around the web, and found some examples with hundreds of lines of code, and others that required installing extra command line utilities to accomplish the task. Similar things can be <a href="http://beta.stackoverflow.com/questions/25785/delete-all-but-the-most-recent-x-files-in-bash" rel="nofollow">done in BASH</a> in just a couple lines of code. It seems that something at least remotely easy could be done for batch files windows. I'm looking for a solution that works in a standard windows command prompt, without any extra utilities. Please no PowersHell or Cygwin either.</p> http://stackoverflow.com/questions/57068/good-databases-with-sample-data 11 Good Databases with sample data Kibbee 2008-09-11T16:43:10Z 2009-11-27T22:12:26Z <p>Does anybody know of any sample databases I could download, preferably in CSV or some similar easy to import format so that I could get more practice in working with different types of data sets? The Canadian Department of Environment has <a href="http://www.climate.weatheroffice.ec.gc.ca/Welcome_e.html" rel="nofollow">historical weather data</a> that you can download. Unfortunately it's not in a format I can import into any other database, and you can only query it based on the included program which is actually quite limited in what kind of data it can provide. Does anybody know of any interesting data sets that are freely available?</p> http://stackoverflow.com/questions/1777519/how-much-should-i-stretch-the-truth-on-my-resume/1777621#1777621 2 Answer by Kibbee for How much should I "stretch the truth" on my resume? Kibbee 2009-11-22T02:27:27Z 2009-11-22T02:27:27Z <p>A point specifically about listing Ruby, even though you don't remember it, and the job doesn't even specify Ruby. Don't do it. Focus on what you do know, and try to only list stuff that's applicable to the job. I've seen a lot of resumes, especially with new grads, where they list every computer programming language they've written a single line of code in, along with every program they've ever used on a computer. From VS.Net, Eclipse, on through to 3DS Max, Photoshop, and MS Word. There's such an overabundance of information that it's hard to pick up what their real skills are, if any. Granted I was a little guilty of this type of thing when I first gradualted, although not as badly as I've seen others do it. I think it's natural to want to make yourself out to look like you have a lot of experience and skills. However, if you are right out of university, nobody really expects you to have that much. So, make it clear what your real strenghts are, and make it clear what important projects you have worked on. Don't pad your resume with a million things. List things important to the position being applied to. I'd much rather see a resume with less things on it, but that showed the the person was sincere, and had a real interest in programming, than to see a resume with 100 things, which would make me wonder if they even knew what programming was. </p> http://stackoverflow.com/questions/1738379/how-to-select-records-from-sql-db-that-contain-the-same-id-as-a-net-datatable-re/1738423#1738423 0 Answer by Kibbee for How to select records from SQL DB that contain the same ID as a .NET datatable records Kibbee 2009-11-15T18:49:08Z 2009-11-15T18:49:08Z <p>Going along with what Lasse said, you can use <a href="http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlbulkcopy.aspx" rel="nofollow">SQLBulkCopy</a> to do a bulk insert from your local data table directly into SQL Server. </p> http://stackoverflow.com/questions/1671403/how-to-store-sql-query-results-for-fast-access/1671412#1671412 3 Answer by Kibbee for How to store SQL query results for fast access ? Kibbee 2009-11-04T02:36:39Z 2009-11-04T02:51:58Z <p>Most likely depending on what your query is, you can speed up the query by creating missing indexes on your table(s). Put <a href="http://dev.mysql.com/doc/refman/5.0/en/using-explain.html" rel="nofollow">EXPLAIN EXTENDED</a> in front of your query to see which indexes it is using, and try to figure out which columns should be indexed. The columns that should be indexed are those in your where statement, as well as any fields used in joins. If you provide the query, and the table schema, we may be able to help recommend some indexes.</p> <p>While there probably are quite a few ways to run a process every 5 minutes to fill a temp table (cron job, scheduled task, run a thread from your app), you would probably be better off exhausting the indexing option before taking drastic measures such as this, which may just use more resources. and may not necessarily increase the performance of your application.</p> http://stackoverflow.com/questions/42934/whats-with-the-love-of-dynamic-languages 42 What's with the love of dynamic Languages Kibbee 2008-09-04T00:46:36Z 2009-11-02T00:52:22Z <p>It seems that everybody is jumping on the dynamic, non-compiled bandwagon lately. I've mostly only worked in compiled, static typed languages (C, Java, .Net). The experience I have with dynamic languages is stuff like ASP (Vb Script), JavaScript, and PHP. Using these technologies has left a bad taste in my mouth when thinking about dynamic languages. Things that usually would have been caught by the compiler such as misspelled variable names and assigning an value of the wrong type to a variable don't occur until runtime. And even then, you may not notice an error, as it just creates a new variable, and assigns some default value. I've also never seen intellisense work well in a dynamic language, since, well, variables don't have any explicit type.</p> <p>What I want to know is, what people find so appealing about dynamic languages? What are the main advantages in terms of things that dynamic languages allow you to do that can't be done, or are difficult to do in compiled languages. It seems to me that we decided a long time ago, that things like uncompiled asp pages throwing runtime exceptions was a bad idea. Why is there is a resurgence of this type of code? And why does it seem to me at least, that Ruby on Rails doesn't really look like anything you couldn't have done with ASP 10 years ago?</p> http://stackoverflow.com/questions/1622592/atomic-delete-for-large-amounts-of-files/1622610#1622610 5 Answer by Kibbee for Atomic delete for large amounts of files Kibbee 2009-10-26T00:32:36Z 2009-10-26T00:32:36Z <p>I think what you are really looking for is the ability to have a transaction. Because the disc can only write one sector at a time, you can only delete the files one at a time. What you need is the ability to roll back the previous deletions if one of the deletes doesn't happen successfully. Tasks like this are usually reserved for databases. Whether or not your file system can do transactions depends on which file system and OS you are using. NTFS on Windows Vista supports <a href="http://en.wikipedia.org/wiki/Transactional_NTFS" rel="nofollow">Transactional NTFS</a>. I'm not too sure on how it works, but it could be useful. </p> <p>Also, there is something called <a href="http://en.wikipedia.org/wiki/Shadow_Copy" rel="nofollow">shadow copy</a> for Windows, which in the Linux world is called an <a href="http://tldp.org/HOWTO/LVM-HOWTO/snapshots_backup.html" rel="nofollow">LVM Snapshot</a>. Basically it's a snapshot of the disc at a point in time. You could take a snapshot directly before doing the delete, and on the chance that it isn't successfully, copy the files back out of the snapshot. I've created shadow copies using WMI in VBScript, I'm sure that similar apis exist for C/C++ also. </p> <p>One thing about Shadow Copy and LVM Snapsots. The work on the whole partition. So you can't take a snapshot of just a single directory. However, taking a snapshot of the whole disk takes only a couple seconds. So you would take a snapshot. Delete the files, and then if unsucessful, copy the files back out of the snapshot. This would be slow, but depending on how often you plan to roll back, it might be acceptable. The other idea would be to restore the entire snapshot. This may or may not be good as it would roll back all changes on the entire disk. Not good if your OS or other important files are located there. If this partition only contains the files you want to delete, recovering the entire snapshot may be easier and quicker.</p> http://stackoverflow.com/questions/1566933/mysql-select-continued-help-please/1566956#1566956 0 Answer by Kibbee for mysql SELECT continued help please Kibbee 2009-10-14T15:10:43Z 2009-10-14T15:10:43Z <p>For the like statement, you must use the % character as a wildcard character. So if you wan all descriptions starting with foobar, you would use</p> <pre><code>SELECT * FROM db WHERE description LIKE 'foobar%' OR headline LIKE 'foobar%' </code></pre> <p>If you want all descriptions containing foobar, you would use </p> <pre><code>SELECT * FROM db WHERE description LIKE '%foobar%' OR headline LIKE '%foobar%' </code></pre> <p>Be careful when using %foobar% as it's usually very inefficient, especially if you have a lot of records. Because the text could be anywhere in the string, the database engine is unable to use indexes. If you have a lot of data, you may want to consider using fulltext indexing.</p> http://stackoverflow.com/questions/1566852/datetime-adddays-or-new-datetime/1566930#1566930 0 Answer by Kibbee for DateTime.AddDays or new DateTime Kibbee 2009-10-14T15:06:36Z 2009-10-14T15:06:36Z <p>I agree with Mark. Test both methods yourself and see which one is faster. Use the Stopwatch class to get accurate timings of how long each method takes to run. My first guess is that since both end up creating new structures anyway, that any speed difference will be negligible. Also, with only generating a month's worth of dates (31 days maximum), I don't think either method will be that much slower than the other. Perhaps is you you were generating thousands or millions of dates, it would make a difference, but for 31 dates, it's probably premature optimization.</p> http://stackoverflow.com/questions/1563792/do-events-break-interfaces/1563826#1563826 0 Answer by Kibbee for Do Events break Interfaces? Kibbee 2009-10-14T01:32:36Z 2009-10-14T01:32:36Z <p>I think that what you are missing is that events are completely optional. There is no rule that says when you instantiate a class that you have to handle all events that it raises. You can (if your implementation calls for it) just completely ignore any events called raised by an object. Also, just definining and event says nothing about when or if it will actually be raised. So putting an event in an interface would be useless because there would be no way defining when or if the event was raised when the interface was implemented in a object.</p> http://stackoverflow.com/questions/1545835/replacement-for-yes-no-cancel-messagebox-c/1545953#1545953 0 Answer by Kibbee for Replacement for yes/no/cancel MessageBox (C#) Kibbee 2009-10-09T20:41:09Z 2009-10-09T20:41:09Z <p>I agree with Frank. It wouldn't be too difficult to create your own generic form that handles this for you. Without getting into code, the form should do the following</p> <p>1) Have a property to set the message you want to show to the user.</p> <p>2) Have a method for adding buttons, with 2 arguments, one for the button text, and one for the dialog result</p> <p>3) When the form is displayed, it should be in modal dialog mode so that the rest of the application is inactive while until one of the options is clicked.</p> <p>So, to create a Save As/Don't Save/Cancel, you would add 3 buttons in step 2, all with the appropriate button text and dialog result.</p> <p>Using Flow layout, you should be able to get it to display properly regardless of the size of the message, or the number of buttons.</p> http://stackoverflow.com/questions/1535234/where-can-i-learn-the-sql-way-to-get-data-out/1535300#1535300 1 Answer by Kibbee for Where can I learn the SQL way to get data out Kibbee 2009-10-08T02:25:31Z 2009-10-08T02:25:31Z <p>Jeff Atwood (one of the creaters of this site), has a <a href="http://www.codinghorror.com/blog/archives/000976.html" rel="nofollow">visual explaination</a> of the various SQL Joins you can do. Visualizing what the joins do is a big step to understanding how to use them.</p> http://stackoverflow.com/questions/1529072/a-better-way-to-construct-a-datetime-with-higher-precision-than-milliseconds/1529091#1529091 1 Answer by Kibbee for A better way to construct a datetime with higher precision than milliseconds Kibbee 2009-10-07T01:45:29Z 2009-10-07T01:45:29Z <p>If you want to use this date time to time how long it takes to run your code, you'd be much better off using the <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.stopwatch.aspx" rel="nofollow">Stopwatch</a> stopwatch class. It uses a high precision timer that isn't available to the DateTime object. If you aren't timing how long something takes between 2 points, and just want the current time, to something more precise than milliseconds, I think that you are going a bit overboard, and may not need all that precision, or that you the extra precision is meaningless.</p> http://stackoverflow.com/questions/1529025/migrating-ms-access-data-to-mysql-character-encoding-issues/1529058#1529058 0 Answer by Kibbee for Migrating MS Access data to MySQL: character encoding issues Kibbee 2009-10-07T01:29:04Z 2009-10-07T01:29:04Z <p>It's most likely due to the fact that the data in the Access file is UTF, and MDB Tools is trying to convert it to ascii/latin/is0-8859-1 or some other encoding. Since these encodings don't map all the UTF characters properly, you end up with question marks. The <a href="http://farismadi.wordpress.com/2008/07/13/encoding-of-mdb-tool/" rel="nofollow">information here</a> may help you fix your encoding issues by getting MDB Tools to use the correct encoding.</p> http://stackoverflow.com/questions/1513552/is-base64-considered-encryption-in-an-iphone-app/1513556#1513556 1 Answer by Kibbee for Is base64 considered encryption in an iPhone app? Kibbee 2009-10-03T11:48:28Z 2009-10-03T11:48:28Z <p>I would assume that something like base64 would not be considered encryption, because it is a known encoding algorithm, and has nothing to do with encryption. Base64 encoding is used for lots of different things including encoding things in email. I don't see how anybody would interpret this as encryption.</p> <p>But then again, Apple has rejected apps for some pretty weird reasons, so if you can disclose to them clearly that you are using base64 to encode data, then it's probably safer to do so upfront, so you can say they were aware of it all along.</p> http://stackoverflow.com/questions/1512442/httprequest-using-curl-or-pear-php-on-xml-page/1512455#1512455 0 Answer by Kibbee for HTTP_Request using cURL or Pear (PHP) on XML Page Kibbee 2009-10-03T00:51:15Z 2009-10-03T00:51:15Z <p>You can do a request in curl using the following code</p> <pre><code>$url = "http://heywatch.com/encoded_video/1850189.xml"; $request = curl_init(); curl_setopt($request,CURLOPT_URL,$url); curl_setopt($request, CURLOPT_RETURNTRANSFER, 1); $response = curl_exec($request); curl_close($request); </code></pre> <p>The text will then be held in $response. I would recommend using <a href="http://ca3.php.net/simplexml" rel="nofollow">simple XML</a> to parse the XML document to pick out the information you need. It's very easy to use. If you don't want to use curl at all, and you don't have to, you can load the document directly with SimpleXML using <a href="http://ca3.php.net/manual/en/function.simplexml-load-file.php" rel="nofollow">simplexml_load_file</a>, and passing in the URL.</p> http://stackoverflow.com/questions/471929/whats-the-coolest-startup-programmer-job-title/1480113#1480113 0 Answer by Kibbee for What's the coolest startup programmer job title? Kibbee 2009-09-26T00:49:44Z 2009-09-26T00:49:44Z <p>Cowboy Coder. Because I want to work in the <a href="http://en.wikipedia.org/wiki/JPod" rel="nofollow">JPod</a>.</p> http://stackoverflow.com/questions/1473393/what-makes-a-language-readable-or-not-readable/1473471#1473471 1 Answer by Kibbee for What makes a language readable or not readable? Kibbee 2009-09-24T18:43:48Z 2009-09-24T18:43:48Z <p>I think it has more to do with the person writing the code rather than the actual language itself. You can write very readable code in any language, and unreadable code in any language. Even a complex Regular expression can be formatted and commented so as to make it easy to read. </p> http://stackoverflow.com/questions/1466461/recommended-movies-on-history-of-computers-programming/1466485#1466485 6 Answer by Kibbee for Recommended movies on history of computers/programming? Kibbee 2009-09-23T14:46:33Z 2009-09-23T14:46:33Z <p>Wargames.</p> <p>While it's probably not completely accurate, it does show a lot of older computer technology, and is actually interesting to watch. </p> http://stackoverflow.com/questions/1466408/difference-between-and-in-php/1466428#1466428 1 Answer by Kibbee for Difference between "," and "." in PHP? Kibbee 2009-09-23T14:39:45Z 2009-09-23T14:39:45Z <p><a href="http://ca3.php.net/echo" rel="nofollow">echo</a> is actually a function (not really but let's say it is for argument) that takes any number of parameters and will concatenate them together. While return is not a function, but rather a keyword, that tells the function to return the value, and it is trying to interpret "," as some kind of operator. You should be using "." as the concatenation operator in the case when you are using the return statement.</p> http://stackoverflow.com/questions/1463363/how-do-i-rename-an-index-in-mysql 2 How do I rename an Index in MySQL Kibbee 2009-09-23T00:36:38Z 2009-09-23T01:29:52Z <p>I would like to rename an index. I've looked at the <a href="http://dev.mysql.com/doc/refman/5.1/en/alter-table.html" rel="nofollow">alter table</a> documentation, but I can't figure out the syntax to simply rename an index. When doing it through the MySQL GUI, it drops the index, and creates a new one. While this works, I would like to avoid rebuilding the entire index just to change the name of an index.</p> <p>[ADDITIONAL INFO]</p> <p>In the alter table documentation it states</p> <blockquote> <p>Alterations that modify only table metadata and not table data can be made immediately by altering the table's .frm file and not touching table contents. The following changes are fast alterations that can be made this way:</p> <pre><code>* Renaming a column or index. </code></pre> </blockquote> <p>However, when I tried to rename the index by editing the .frm file (on a test database) and restarting the server, it now states "Could not fetch columns" in the UI when trying to list the columns, and when trying to run a query, it returns the error "Unknown table engine ''". The .frm file has a lot of binary content. Is there a good tool for editing the binary info.</p> http://stackoverflow.com/questions/1445492/how-much-can-you-infer-about-the-programmers-at-a-company-based-on-the-test-inter/1445510#1445510 4 Answer by Kibbee for How much can you infer about the programmers at a company based on the test/interview? Kibbee 2009-09-18T16:07:13Z 2009-09-18T16:07:13Z <p>Well, you can post from one ASPX page to another ASPX page by setting the "action" attribute of the form tag to the aspx page you want to post it to. I think in this and other cases, you may have been mistaken, and the question was actually valid. </p> <p>It's hard for those that are hiring to make up test that are both hard enough so that they adequately test the skill of the programmer, and don't let bad programmers slip through, and also write tests that don't aren't so hard, that nobody could pass. </p> http://stackoverflow.com/questions/1440837/mysql-convert-latin1-data-to-utf8 0 MySQL Convert latin1 data to UTF8 Kibbee 2009-09-17T19:20:01Z 2009-09-18T12:54:45Z <p>I imported some data using LOAD DATA INFILE into a MySQL Database. The table itself and the columns are using the UTF8 character set, but the default character set of the database is latin 1. Because the default character type of the database is latin1, and I used LOAD DATA INFILE without specifying a character set, it interpreted the file as latin1, even though the data in the file was UTF8. Now I have a bunch of badly encoded data in my UTF8 colum. I found <a href="http://www.mysqlperformanceblog.com/2007/12/18/fixing-column-encoding-mess-in-mysql/" rel="nofollow">this article</a> which seems to address a similar problem, which is "UTF8 inserted in cp1251", but my problem is "Latin1 inserted in UTF8". I've tried editing the queries there to convert the latin1 data to UTF8, but can't get it to work. Either the data comes out the same, or even more mangled than before. Just as an example, the word Québec is showing as Québec.</p> <p>[ADDITIONAL INFO]</p> <p>When Selecting the data wrapped in HEX(), Québec has the value 5175C383C2A9626563.</p> <p>The Create Table (shortened) of this table is.</p> <pre><code>CREATE TABLE MyDBName.`MyTableName` ( `ID` INT NOT NULL AUTO_INCREMENT, ....... `City` CHAR(32) NULL, ....... `)) ENGINE InnoDB CHARACTER SET utf8; </code></pre> http://stackoverflow.com/questions/1433101/upload-files-outside-of-webroot/1433154#1433154 0 Answer by Kibbee for Upload files outside of webroot Kibbee 2009-09-16T13:59:12Z 2009-09-16T13:59:12Z <p>It would probably be easiest, in terms of securing the file, to save the files outside your webroot. When somebody wants to download it, you can use <a href="http://ca.php.net/manual/en/function.http-send-file.php" rel="nofollow">http_send_file</a> to send the file back out to them.</p> http://stackoverflow.com/questions/1430282/is-an-algorithm-to-judge-the-age-of-person-in-a-photo-feasible/1430597#1430597 1 Answer by Kibbee for Is an algorithm to judge the age of person in a photo feasible? Kibbee 2009-09-16T02:17:20Z 2009-09-16T02:17:20Z <p>I don't think it's something that a computer could do with any degree of accuracy. It's even really hard for people to do. I mean, have you been the the liquor store lately, they are supposed to ask for ID from anybody who looks under 25 (drinking age is 19 here). Apparently some <a href="http://www.shortnews.com/start.cfm?id=76178" rel="nofollow">40 year olds</a> don't look old enough. Telling somebody's age just by looking at them is a very hard thing to do. Especially when you get into to erotic picture arena, where they are trying to make models seem younger than they really are. </p> http://stackoverflow.com/questions/1430515/having-trouble-with-this-simple-sql-select-statement/1430525#1430525 4 Answer by Kibbee for Having trouble with this simple SQL Select statement. Kibbee 2009-09-16T01:53:12Z 2009-09-16T01:53:12Z <p>You could use the EXISTS clause</p> <pre><code>SELECT * FROM TableA WHERE NOT Exists ( SELECT Column1 FROM TableB WHERE TableA.Column1 = Table2.Column1 AND TableA.Column2 = Table2.Column2 .... ) </code></pre> <p>Replace .... with the rest of the columns in the two tables.</p> http://stackoverflow.com/questions/1430381/trouble-getting-an-enum-to-cooperate-with-me/1430406#1430406 0 Answer by Kibbee for Trouble getting an Enum to cooperate with me. Kibbee 2009-09-16T01:05:25Z 2009-09-16T01:05:25Z <p>Looks to me like you aren't instantiating your list object. </p> <pre><code>System.Collections.Generic.List&lt;System.Drawing.KnownColor&gt; ColorList; </code></pre> <p>Should be</p> <pre><code>System.Collections.Generic.List&lt;System.Drawing.KnownColor&gt; ColorList; ColorList = New System.Collections.Generic.List&lt;System.Drawing.KnownColor&gt;(); </code></pre> http://stackoverflow.com/questions/28999/favorite-ide-feature/29418#29418 0 Answer by Kibbee for Favorite IDE feature? Kibbee 2008-08-27T02:56:28Z 2009-09-16T00:09:09Z <p>In Visual Studio 2008 (might have been available before), you have the ability to "rewind" the code to the point before the exception occurred. You can also change the code while it's paused in the debugger, and continue on running. It's really nice to almost never have to do the stop, fix, build, run scenario every time you find a tiny problem in your programming logic.</p> http://stackoverflow.com/questions/1423589/does-row-exist-is-another-table/1423642#1423642 0 Answer by Kibbee for Does row exist is another table? Kibbee 2009-09-14T20:08:30Z 2009-09-14T20:08:30Z <p>You can't do "GROUP BY id" and then select the rest of the columns. This doesn't make sense. Any other DB than MySQL would throw an error if you tried to select columns that weren't either in the Group By, or contained within an aggregate statement like SUM(ColName).</p> http://stackoverflow.com/questions/1417366/display-circle-in-listbox-in-asp-net/1419218#1419218 1 Answer by Kibbee for Display circle in Listbox in asp.net Kibbee 2009-09-14T00:30:26Z 2009-09-14T00:30:26Z <p>It depends on what kind of circle you want. Although what Gidon said was right, there are a couple text characters that may just do the job. These characters you may want to look at are:</p> <p>&#x25CF; = Black Circle </p> <p>accessble by using the sequence &amp;#x25CF; in your option text;</p> <p>&#x25CB; = White Circle </p> <p>accessble by using the sequence &amp;#x25CB; in your option text;</p> http://stackoverflow.com/questions/1627989/avoid-gmail-threading Comment by Kibbee on avoid gmail threading Kibbee 2009-10-27T00:02:09Z 2009-10-27T00:02:09Z I'm voting for a move to superuser. http://stackoverflow.com/questions/1622592/atomic-delete-for-large-amounts-of-files/1622623#1622623 Comment by Kibbee on Atomic delete for large amounts of files Kibbee 2009-10-26T00:56:28Z 2009-10-26T00:56:28Z What if something happens which causes one of the files to be undeleteable, like one of them being in use by another process. You could just wait for it to be freed, but that might take a while. How would you roll back in the case where not everything could be deleted? http://stackoverflow.com/questions/1566379/crash-course-in-web-development-phphtml/1567312#1567312 Comment by Kibbee on Crash Course in Web Development (PHP+HTML) Kibbee 2009-10-14T16:07:13Z 2009-10-14T16:07:13Z I have to agree with this. If you want to learn about web development, do it on your own time, not as part of a school project. You'll be giving yourself a lot of extra work, for what won't result in extra marks. That being said, based on the current job climate, you should learn web development before you get out of school, as a large number of jobs are based around web development. However, don't make the learning experience part of this particular project, as it will just make it much harder to do, without resulting in any added benefit. http://stackoverflow.com/questions/1563749/visual-studio-copy-to-clipboard-ide-freezes Comment by Kibbee on visual studio copy to clipboard IDE freezes Kibbee 2009-10-14T01:34:55Z 2009-10-14T01:34:55Z Which version of VS.Net are you using? http://stackoverflow.com/questions/630602/what-made-programming-easier-in-the-last-couple-of-years/630638#630638 Comment by Kibbee on What made programming easier in the last couple of years? Kibbee 2009-10-09T19:54:52Z 2009-10-09T19:54:52Z Very much agree with you yar. I usually work in VB.Net, and the thing I miss most when using languages like PHP and Ruby is really good auto completion. http://stackoverflow.com/questions/1540232/reference-to-the-iteration-number-in-javas-foreach/1540259#1540259 Comment by Kibbee on Reference to the iteration number in Java's foreach Kibbee 2009-10-08T20:36:31Z 2009-10-08T20:36:31Z Best answer. Basically, you can't but there's no problem in creating your own counter. http://stackoverflow.com/questions/1535076/how-can-i-use-a-switch-statement-to-convert-from-a-numeric-to-a-letter-grade Comment by Kibbee on How can I use a switch() statement to convert from a numeric to a letter grade? Kibbee 2009-10-08T01:36:00Z 2009-10-08T01:36:00Z Wow. You have to love arbitrary rules such as &quot;you must use a switch statement&quot;. That really reflects the real world. I mean, wouldn't it have been better if the teacher actually came up with a question more suited to actually using a switch statement. I mean, you could probably write a solution using just while loops, but you never would. http://stackoverflow.com/questions/1532851/how-to-solve-987654321-a-123456789-b-c-a-b-c Comment by Kibbee on How to solve 987654321 * a + 123456789 * b + c = ( a + b + c )³ ? Kibbee 2009-10-07T18:06:12Z 2009-10-07T18:06:12Z I have discovered a truly marvellous proof of this, which this comment is too short to contain. http://stackoverflow.com/questions/1526688/get-table-column-names-in-mysql/1526722#1526722 Comment by Kibbee on Get table column names in mysql? Kibbee 2009-10-07T01:49:23Z 2009-10-07T01:49:23Z I would vote for the Information_Schema version, since this syntax is supported by most major databases. Best to only learn 1 way if you have to. http://stackoverflow.com/questions/1513552/is-base64-considered-encryption-in-an-iphone-app/1513555#1513555 Comment by Kibbee on Is base64 considered encryption in an iPhone app? Kibbee 2009-10-05T12:37:54Z 2009-10-05T12:37:54Z Not the original poster, but here's my take. Apple has rejected some apps for some really arguable reasons. If you are using base64 encoding and apple says that it qualifies as encryption. then it qualifies as encryption. Most people wouldn't say it is, but I've known some people who used it to obfuscate what was being sent over the network, or stored in files. Sure it's not real encryption, but it will stop some people. It will bring the level of reading the text from 1 to 3, whereas real encryption would bring the it up to a level of 100. http://stackoverflow.com/questions/262238/are-there-disadvantages-to-using-a-generic-varchar255-for-all-text-based-fields/1262494#1262494 Comment by Kibbee on Are there disadvantages to using a generic varchar(255) for all text-based fields? Kibbee 2009-09-30T20:10:17Z 2009-09-30T20:10:17Z Canadian postal codes actually have 7 digits, the space in the middle is important, and should be shown on mailing labels. North american phone numbers may have more than 10 digits if there is an extention. If you are OK not being able to store phone number extensions, then 10 digits is fine, but you will probably regret it. http://stackoverflow.com/questions/471929/whats-the-coolest-startup-programmer-job-title/478159#478159 Comment by Kibbee on What's the coolest startup programmer job title? Kibbee 2009-09-26T00:47:17Z 2009-09-26T00:47:17Z I have an iron ring, took software engineering in university. Still I'm not a software engineer. I don't think most companies want engineered software. I don't even know if I'd want to work as a software engineer. Too much paperwork and bureacracy to get any really intesting coding done. Also, the field is too young, and we aren't even sure how to assure quality yet. http://stackoverflow.com/questions/1466461/recommended-movies-on-history-of-computers-programming/1466485#1466485 Comment by Kibbee on Recommended movies on history of computers/programming? Kibbee 2009-09-24T00:04:38Z 2009-09-24T00:04:38Z I was thinking accurate in terms of dialing all the numbers until you find a modem listening, or dialing into your schools computer. Sure the whole idea of a computer controlling the nuclear weapons is far fetched, but a lot of the other stuff is pretty realistic. http://stackoverflow.com/questions/1463363/how-do-i-rename-an-index-in-mysql/1463376#1463376 Comment by Kibbee on How do I rename an Index in MySQL Kibbee 2009-09-23T01:35:06Z 2009-09-23T01:35:06Z Yeah, that's pretty much what happened. Even made MySQL crash when editing the file incorrectly. Marking this as correct. Ideally you could just rename the index, because it's just metadata, but it looks like that functionalily doesn't exist. http://stackoverflow.com/questions/1447441/common-pre-mature-optimizations-and-micro-optimizations/1447455#1447455 Comment by Kibbee on common pre-mature optimizations and micro-optimizations Kibbee 2009-09-19T02:17:03Z 2009-09-19T02:17:03Z I've heard that using shorts instead of ints can actually be slower. The native data type of your processor is an int, and is therefore quicker to work with, and check for overflow. With shorts, the processor has to do extra work.