User BoltBait - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T23:35:25Zhttp://stackoverflow.com/feeds/user/20848http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/42805/hello-world-what-did-your-first-ever-computer-program-do/198700#198700-1Answer by BoltBait for Hello world: what did your first ever computer program do ?BoltBait2008-10-13T19:16:07Z2009-11-25T08:22:00Z<p>My first program was typed out of the CBM PET computer manual. It was a <code>BASIC</code> program that dealt out a deck of cards (think text mode) in random order.</p>
<p>I spent the rest of the day modifying that program to learn how BASIC worked.</p>
http://stackoverflow.com/questions/1786567/image-dump-from-print-screen/1786606#17866061Answer by BoltBait for image dump from print screenBoltBait2009-11-23T22:47:26Z2009-11-23T22:47:26Z<p>Short answer: You can't.</p>
<p>Now, that said, if you are using Javascript inside of an HTA file, you should read this thread: <a href="http://stackoverflow.com/questions/60455/take-a-screenshot-of-a-webpage-with-javascript">http://stackoverflow.com/questions/60455/take-a-screenshot-of-a-webpage-with-javascript</a></p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/1725118/excel-vba-colon/1725172#17251723Answer by BoltBait for Excel VBA ColonBoltBait2009-11-12T20:33:04Z2009-11-12T20:33:04Z<p>You can put the statements on separate lines, if you like:</p>
<pre><code>Public Const cdbArea = 1
Public Const cdbDist = 2
Public Const cdbChange1 = 4
</code></pre>
<p>Or, you can separate them with colons as in your example above.</p>
http://stackoverflow.com/questions/1717815/i-need-to-learn-c/1717926#17179262Answer by BoltBait for I need to learn C.BoltBait2009-11-11T20:43:19Z2009-11-11T20:43:19Z<p>Since you'll probably be working with a small to non-existant library, you may also want to check out the book Algorithms in C by Robert Sedgewick.</p>
<p><img src="http://ecx.images-amazon.com/images/I/51Y4PsTtvQL._AA300.jpg"></p>
http://stackoverflow.com/questions/1717482/whats-the-purpose-of-this-javascript-function/1717607#17176071Answer by BoltBait for What's the purpose of this JavaScript function?BoltBait2009-11-11T19:49:16Z2009-11-11T19:49:16Z<p>I'm thinking the developer probably forgot to finish the function so that it would check to see if the new window was being blocked by a popup blocker.</p>
<p>Here, let me finish it for you:</p>
<pre><code>function openBrowserWindow(theURL, winName, features) {
var MyWin = window.open(theURL, winName, features);
if (MyWin==null) {
alert("It appears that a pop-up blocker is preventing me from opening the new window.\r\n\r\nTurn off your pop-up blocker or try Ctrl-Click next time.");
}
}
</code></pre>
<p>You're welcome. ;)</p>
http://stackoverflow.com/questions/1546500/pass-a-form-value-to-another-form-on-a-different-page-without-using-url-variables/1546516#15465160Answer by BoltBait for pass a form value to another form on a different page without using url variables (javascript)BoltBait2009-10-09T23:28:11Z2009-10-09T23:28:11Z<p>You could do it using a cookie, if both pages are on the same web server.</p>
http://stackoverflow.com/questions/1528690/how-would-you-answer-the-question-what-do-you-do-for-a-living/1528728#15287283Answer by BoltBait for How would you answer the question, What do you do for a living?BoltBait2009-10-06T23:45:48Z2009-10-06T23:59:49Z<p><strong>None of your damn business.</strong></p>
<p>(That's pretty much my standard answer for all web based forms.)</p>
http://stackoverflow.com/questions/1528604/how-universal-is-the-limit-statement-in-sql/1528638#15286384Answer by BoltBait for How universal is the LIMIT statement in SQL?BoltBait2009-10-06T23:24:44Z2009-10-06T23:30:21Z<p><a href="http://en.wikipedia.org/wiki/Select_%28SQL%29#Result_limits" rel="nofollow">http://en.wikipedia.org/wiki/Select_%28SQL%29#Result_limits</a> lists all of the major variants of the select command.</p>
<p>I believe the best way to do this is to use the SET ROWCOUNT command before your SELECT statement.</p>
<p>So, for you:</p>
<pre><code>SET ROWCOUNT 1
SELECT %s FROM %s
</code></pre>
http://stackoverflow.com/questions/1359711/distance-learning-course-computing-science-degree/1400750#14007500Answer by BoltBait for distance learning course, computing science degreeBoltBait2009-09-09T16:37:49Z2009-09-10T00:17:19Z<p>While I like the face-to-face classroom experience, I like the convenience of online classes more. I am currently enrolled in National University's master's degree program for database management and find it to be quite good.</p>
<p><a href="http://www.nu.edu" rel="nofollow">http://www.nu.edu</a></p>
<p>They are accredited and offer a ton of online degree programs.</p>
<p>However, for a bachelor's degree program, I'd recommend face-to-face.</p>
http://stackoverflow.com/questions/1267670/top-10-sql-server-performance-bottlenecks/1269540#12695400Answer by BoltBait for Top 10 SQL Server performance bottlenecksBoltBait2009-08-13T01:07:05Z2009-08-30T04:26:22Z<p>Using table data one row at a time instead of one table at a time (i.e. cursors).</p>
<p>Unnecessary (or badly designed) locks.</p>
<p>Logs logging things that don't need to be logged (Delete from table instead of Truncate table, etc.)</p>
<p>Having constraints on when bulk loading data. Seriously slows down the insert. Turn them off, load the data, then turn them back on.</p>
http://stackoverflow.com/questions/1329656/how-can-i-hide-the-details-within-my-net-executable/1329707#13297072Answer by BoltBait for How can I hide the details within my .NET executable?BoltBait2009-08-25T17:24:25Z2009-08-25T17:24:25Z<p>Obfuscation is never the right answer. Maybe you're going about this the wrong way.</p>
<p>There are several ways I can think of so that the connection string is either not available or not important.</p>
<p>You could put your database behind a web service so that the connection string to the database would only be known to the web service. Of course, you'd need another way to restrict access to the web service, such as using login credentials.</p>
<p>Or, you could give each user their own SQL login name/password. That way, they would know their own userid/password but it would be easy to "turn it off" from the database. This also gives you much better control over each person's access to the database itself... like what tables/views they have access to, and what type of access.</p>
http://stackoverflow.com/questions/54607/what-are-the-best-movies-about-geeks-programmers-hackers-for-inspiration/1309316#13093160Answer by BoltBait for What are the best movies about Geeks/Programmers/Hackers. (for inspiration)BoltBait2009-08-20T23:03:50Z2009-08-20T23:03:50Z<p><a href="http://www.imdb.com/title/tt0064177/" rel="nofollow">Colossus: The Forbin Project</a></p>
<p>Computer takes over the world, what's not to love?</p>
http://stackoverflow.com/questions/1296500/what-db-for-big-databases/1296575#12965752Answer by BoltBait for What DB for big databases?BoltBait2009-08-18T21:15:25Z2009-08-18T21:15:25Z<p>One of the tables in my current project has 13 million rows in it. MS SQL Server handles it just fine. Really, 2 million rows is nothing.</p>
<p>But, seriously, if you want a high-end database, look to Oracle, Teradata, and DB2.</p>
http://stackoverflow.com/questions/1296544/what-is-the-acceptable-upper-limit-of-time-allocated-to-a-single-development-task/1296558#12965588Answer by BoltBait for What is the acceptable upper limit of time allocated to a single development task?BoltBait2009-08-18T21:13:20Z2009-08-18T21:13:20Z<p>When we do our planning, we break things up into 4 hour tasks (at the longest). And, we only plan for 4 work days per week. (We figure that the rest of the time is taken up with meetings, etc.)</p>
http://stackoverflow.com/questions/1290786/programming-wall-posters/1290805#12908052Answer by BoltBait for Programming Wall PostersBoltBait2009-08-17T22:21:17Z2009-08-17T22:21:17Z<p>I would just put white boards on all the walls.</p>
http://stackoverflow.com/questions/644099/what-programming-languages-do-the-top-tier-universities-teach/1289593#12895930Answer by BoltBait for What programming languages do the top tier Universities teach?BoltBait2009-08-17T18:27:26Z2009-08-17T18:27:26Z<p><a href="http://nu.edu/OurPrograms/SchoolOfEngineeringAndTechnology/ComputerScienceAndInformationSystems/Programs/BSComputerScience.html" rel="nofollow">National University</a></p>
<p>I was in the last track to learn Pascal in the Intro to Programming class.</p>
<p>Now, they teach:<BR>
C<BR>
C++<BR>
Java<BR>
X86 ASM<BR>
SQL</p>
<p>Before choosing National, I looked into Sac State (Sacramento State University) and they were teaching Cobol on a mainframe computer! I said, "no thanks." :D</p>
http://stackoverflow.com/questions/1269441/user-interface-paradigms-that-need-changing/1269481#12694811Answer by BoltBait for User interface paradigms that need changing?BoltBait2009-08-13T00:43:10Z2009-08-13T00:43:10Z<p>Error messages need a "Just do it!" button.</p>
<p>Seriously, I really don't care about your stupid error message, just DO WHAT I TOLD YOU TO DO!!!</p>
http://stackoverflow.com/questions/1269441/user-interface-paradigms-that-need-changing/1269474#12694741Answer by BoltBait for User interface paradigms that need changing?BoltBait2009-08-13T00:40:17Z2009-08-13T00:40:17Z<p>In my mind, the one thing that really stands out is that USERS need more and easier control over the application's user interface appearance and organization.</p>
<p>So many interfaces can not be modified by the user so that the most used/favorite functions can be grouped together. This ability would make your favorite software even easier for you to get things done.</p>
http://stackoverflow.com/questions/1262836/how-to-deploy-a-desktop-net-application-with-custom-settings-per-user/1262852#12628522Answer by BoltBait for How to deploy a desktop .Net application with custom settings per userBoltBait2009-08-11T20:54:22Z2009-08-11T21:53:48Z<p>You could store that type of information in the App.Config file, in an INI file, or in the registry on the target system.</p>
<p>Depending on the method you decide on, there are lots of sample code available:</p>
<p><a href="http://www.thescarms.com/dotnet/AppSettings.aspx" rel="nofollow">C# App.Config files</a></p>
<p><a href="http://www.codeproject.com/KB/cs/cs%5Fini.aspx" rel="nofollow">C# INI files</a></p>
<p><a href="http://www.devhood.com/tutorials/tutorial%5Fdetails.aspx?tutorial%5Fid=264" rel="nofollow">C# Registry access</a></p>
http://stackoverflow.com/questions/1262963/how-am-i-supposed-to-know-how-many-days-something-will-take/1262991#12629914Answer by BoltBait for How am I supposed to know how many days something will take?BoltBait2009-08-11T21:20:48Z2009-08-11T21:48:16Z<p>Better estimates come from experience.</p>
<p>You could also employ the <a href="http://en.wikipedia.org/wiki/Function%5Fpoint" rel="nofollow">Function Point Analysis</a> method to get a good starting point. Then, give your project manager regular updates. Thus, on Friday when the project needs to slip into next week, your project manager won't be surprised.</p>
http://stackoverflow.com/questions/1247452/can-someone-explain-to-me-what-technet-subscription-is-all-about/1247468#12474680Answer by BoltBait for can someone explain to me what technet subscription is all about?BoltBait2009-08-07T23:36:58Z2009-08-07T23:36:58Z<p>Technet is basically demoware. MSDN is real products.</p>
http://stackoverflow.com/questions/300315/is-there-a-way-to-force-ie-or-ff-into-a-handheld-mode-for-testing-media-handhel0Is there a way to force IE or FF into a handheld mode for testing "@media handheld" stylesheets?BoltBait2008-11-18T22:07:49Z2009-08-06T18:50:43Z
<p>Is there a way to force IE or FF into a handheld mode for testing "@media handheld" stylesheets?</p>
<p>Or, do I have to publish the pages and test with my Blackberry?</p>
<p>I'd prefer to test this without pushing the application to the live server as the application is already in use.</p>
<p>Any ideas for me?</p>
http://stackoverflow.com/questions/1203933/is-there-any-analogue-in-javascript-to-the-file-variable-in-php/1203959#12039590Answer by BoltBait for Is there any analogue in Javascript to the __FILE__ variable in PHP?BoltBait2009-07-30T01:15:08Z2009-07-30T01:15:08Z<p>You can parse the window.location.href value and pass the variables on the path.</p>
<p>Here is an example: <a href="http://www.netlobo.com/url_query_string_javascript.html" rel="nofollow">http://www.netlobo.com/url_query_string_javascript.html</a></p>
http://stackoverflow.com/questions/1203836/switching-to-web-development/1203864#12038641Answer by BoltBait for Switching to web developmentBoltBait2009-07-30T00:43:03Z2009-07-30T00:48:04Z<p>Well, you'll need to master (or atleast be able to use) several languages.</p>
<p>Client side: You'll need a client side language like JavaScript or VBScript (plus expirence with libraries like jquery) and expirence with HTML/CSS for formatting</p>
<p>Server side: You'll need a language like php, perl, C#, etc. to call database functions and format HTML for output</p>
<p>Database: You'll need SQL experience (MySQL, MS SQL, Oracle, etc.) to store your information in a database (and get it out again!)</p>
<p>This is a BIG subject. Read the <a href="http://en.wikipedia.org/wiki/Web%5Fdevelopment" rel="nofollow">Wikipedia article</a> that <a href="http://stackoverflow.com/users/52551/spencer-ruport">Spencer</a> pointed you to, then come back with specific questions.</p>
http://stackoverflow.com/questions/1203759/is-it-good-programming-practice-to-have-a-return-statement-in-all-functions/1203767#12037675Answer by BoltBait for Is it good programming practice to have a return statement in all functions?BoltBait2009-07-30T00:10:52Z2009-07-30T00:10:52Z<p>Your second example hurts my head. It should probably read:</p>
<pre><code>funciton displayApple2($str){
if($str == 'apple')
echo $str;
return;
}
</code></pre>
<p>Personally, I don't use return statements if I am not specifically returning something.</p>
http://stackoverflow.com/questions/1168274/real-world-uses-for-obfuscation/1168298#11682985Answer by BoltBait for Real world uses for obfuscationBoltBait2009-07-22T21:15:09Z2009-07-22T21:15:09Z<p>Let's say you have a contract with a company to produce some software. They are a pain to work with and basically made your life a living hell. Part of the contract says that after the project is done you must turn over all source code... :D</p>
http://stackoverflow.com/questions/1168131/how-to-measure-software-development-performance/1168165#11681651Answer by BoltBait for How to measure software development performance?BoltBait2009-07-22T20:50:44Z2009-07-22T20:50:44Z<p><strong>You would probably do better measuring how well your team tracks to schedules.</strong> If a team member (or entire team) is consistantly late, you will need to work with them to improve performance.</p>
http://stackoverflow.com/questions/1160511/would-you-hire-a-developer-who-doesnt-know-how-to-use-regular-expressions/1160531#11605313Answer by BoltBait for Would you hire a developer who doesn't know how to use regular expressions?BoltBait2009-07-21T17:20:27Z2009-07-21T17:20:27Z<p>It would depend on the situation. Many languages do not support regular expressions (for example MS SQL or MASM) so there would be no point in asking about regular expressions in an interview for an embeded ASM programmer.</p>
http://stackoverflow.com/questions/175994/can-i-embed-an-icon-to-a-hta-file1Can I embed an icon to a .hta file?BoltBait2008-10-06T20:14:32Z2009-07-16T16:59:55Z
<p>I have written an HTML Application (hta file) and am wondering if there is a way to embed an icon file into the hta file itself.</p>
<p>I have seen html emails that include embedded graphic files, is there any way to do this with html applications and icons?</p>
<p>HTA files have an HTA:APPLICATION tag that allows you to specify an icon, but I want to have only a single file for download. I don't want to have an external icon file. Is this possible?</p>
<p>More info on hta files here: <a href="http://msdn.microsoft.com/en-us/library/ms536496(VS.85).aspx" rel="nofollow">HTA files</a>.</p>
http://stackoverflow.com/questions/1111837/how-to-extend-the-timeout-of-a-sql-query1How to extend the timeout of a SQL queryBoltBait2009-07-10T20:32:47Z2009-07-10T22:01:12Z
<p>This is not a connection timeout as a connection to the database is made fine. The problem is that the stored procedure that I'm calling takes longer than, say, 30 seconds and causes a timeout.</p>
<p>The code of the function looks something like this:</p>
<pre><code>SqlDatabase db = new SqlDatabase(connectionManager.SqlConnection.ConnectionString);
return db.ExecuteScalar(Enum.GetName(typeof(StoredProcs), storedProc), parameterValues);
</code></pre>
<p>The ExecuteScalar call is timing out. How can I extend the timeout period of this function?</p>
<p>For quick stored procedures, it works fine. But, one of the functions takes a while and the call fails. I can't seem to find any way to extend the timeout period when the ExecuteScalar function is called this way.</p>
http://stackoverflow.com/questions/223092/i-want-to-write-a-desktop-osx-or-windows-app-in-javascript-any-experiences/223106#223106Comment by BoltBait on I want to write a desktop OSX or Windows app in Javascript -- any experiences?BoltBait2009-11-24T21:10:47Z2009-11-24T21:10:47ZTrue. Good thing the OP wrote "...or Windows app".http://stackoverflow.com/questions/53132/mouse-for-programmer/596799#596799Comment by BoltBait on Mouse for programmerBoltBait2009-11-23T19:26:45Z2009-11-23T19:26:45ZYou'd be surprised. As your mouse crosses over window borders, you feel a slight "click" in the mouse.http://stackoverflow.com/questions/1772791/solitaire-game-designComment by BoltBait on Solitaire game designBoltBait2009-11-20T19:49:38Z2009-11-20T19:49:38ZMy advice: delete this question while you still have some rep left.http://stackoverflow.com/questions/1772791/solitaire-game-designComment by BoltBait on Solitaire game designBoltBait2009-11-20T19:48:11Z2009-11-20T19:48:11ZIf you have learned nothing in your comp sci courses to this point, I'm not sure we can help you.http://stackoverflow.com/questions/1744808/restore-sql-server-2008-database-to-sql-server-2000/1744821#1744821Comment by BoltBait on Restore SQL Server 2008 database to SQL Server 2000BoltBait2009-11-16T21:32:40Z2009-11-16T21:32:40ZI've just finished doing this myself. The only way I found to do it was to script the entire database (including data) and run the script on the target machine. Now, this is a pain, because the 2008 DB may create a script that won't run on 2000 (well, mine did) so you will need to edit the generated script before running in 2000. Stock up on Tylenol before you start. Good luck.http://stackoverflow.com/questions/1717652/can-go-compiler-be-installed-on-windowsComment by BoltBait on Can Go compiler be installed on Windows?BoltBait2009-11-11T20:13:00Z2009-11-11T20:13:00ZLooks interesting. Call me when there's a Windows version.http://stackoverflow.com/questions/225546/amazing-programming-achievements/226907#226907Comment by BoltBait on Amazing programming achievementsBoltBait2009-11-04T18:17:48Z2009-11-04T18:17:48ZI downloaded the files before the Geocities went down. I'll move them to <a href="http://BoltBait.com/free/games/256byte" rel="nofollow">BoltBait.com/free/games/256byte</a> when I get a chance.http://stackoverflow.com/questions/1611083/will-the-c-compiler-perform-multiple-implicit-conversions-to-get-from-one-type-tComment by BoltBait on Will the c# compiler perform multiple implicit conversions to get from one type to another?BoltBait2009-10-23T02:50:15Z2009-10-23T02:50:15ZI had to put the following in my code today: "MyByteVar = (byte)(int)(MyValue * 255.0 / 100.0)" because C# couldn't cast from a float or double to a byte. So, no, sometimes you just need to do the double cast.http://stackoverflow.com/questions/1575742/programatically-remove-script-src-unwanted-js-referenceComment by BoltBait on Programatically remove <script src="/unwanted.js".. /> referenceBoltBait2009-10-16T00:28:55Z2009-10-16T00:28:55ZSounds to me like you're trying to get GeoCities to not put ads on your page. The best way to do that is PAY for hosting. :Phttp://stackoverflow.com/questions/1569888/converting-movieclips-in-an-fla-to-bmpComment by BoltBait on Converting MovieClips in an fla to bmpBoltBait2009-10-15T01:48:39Z2009-10-15T01:48:39ZIf you want to keep the transparency then you'll want to stay away from the bmp format mentioned in your title.http://stackoverflow.com/questions/1557332/optimizing-as3-swf-files-for-sizeComment by BoltBait on Optimizing AS3 SWF files for size?BoltBait2009-10-12T22:59:05Z2009-10-12T22:59:05ZReduce the bit rate of any included sound files. Make them mono instead of stereo. Most of the time you won't notice the difference. Also, reduce the bit depth of included graphics.http://stackoverflow.com/questions/1546504/how-long-would-it-take-you-to-program-a-site-like-stackoverflowComment by BoltBait on How long would it take you to Program a Site like StackoverflowBoltBait2009-10-09T23:25:41Z2009-10-09T23:25:41ZWhy would you care how long it would take me? If you want to code something like SO, perhaps you should be examining your own skills and estimate from there.http://stackoverflow.com/questions/1528727/why-is-sse-scalar-sqrtx-slower-than-rsqrtx-xComment by BoltBait on Why is SSE scalar sqrt(x) slower than rsqrt(x) * x?BoltBait2009-10-06T23:49:29Z2009-10-06T23:49:29ZI have no idea, but that really is interesting.http://stackoverflow.com/questions/1506817/jquery-slider-spacing-fubar-on-ie7-and-i6Comment by BoltBait on Jquery Slider spacing fubar on ie7 and i6.. BoltBait2009-10-01T22:28:42Z2009-10-01T22:28:42ZYou can also see that issue in IE8 when in "compatibility mode".http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282542#282542Comment by BoltBait on What are five things you hate about your favorite language?BoltBait2009-09-22T00:02:21Z2009-09-22T00:02:21Z@Mauricio, how would you use the language except in a browser?