BoltBait

6,422
Reputation
748 views

Registered User

Name BoltBait
Member for 1 year
Seen 6 hours ago
Website
Location US
Age 46
I am a programmer for the Intel Corporation. I wrote the most downloaded dominoes game at download.com.
If you wish to contact me, use ɯoɔ˙ןıɐɯʇoɥ@ʇıɐqʇןoq.

Working on your Civic Duty badge? Vote for this!

I also write plugins for Paint.NET and am the current maintainer of CodeLab which is a free (as in free beer) development environment for writing Paint.NET plugins.

I have a wife, 4 children, and a cat.
And, yes, I drew that picture of me using Paint.
Nov
28
comment Hello world: what did your first ever computer program do ?
Thanks for the negative vote, you ass.
Nov
24
comment I want to write a desktop OSX or Windows app in Javascript — any experiences?
True. Good thing the OP wrote "...or Windows app".
Nov
23
answered image dump from print screen
Nov
23
comment Mouse for programmer
You'd be surprised. As your mouse crosses over window borders, you feel a slight "click" in the mouse.
Nov
20
comment Solitaire game design
My advice: delete this question while you still have some rep left.
Nov
20
comment Solitaire game design
If you have learned nothing in your comp sci courses to this point, I'm not sure we can help you.
Nov
20
revised Solitaire game design
edited tags
Nov
16
comment Restore SQL Server 2008 database to SQL Server 2000
I'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.
Nov
12
answered Excel VBA Colon
Nov
11
answered I need to learn C.
Nov
11
comment Can Go compiler be installed on Windows?
Looks interesting. Call me when there's a Windows version.
Nov
11
answered What’s the purpose of this JavaScript function?
Nov
4
awarded  Notable Question
Nov
4
comment Amazing programming achievements
I downloaded the files before the Geocities went down. I'll move them to BoltBait.com/free/games/256byte when I get a chance.
Oct
23
comment Will the c# compiler perform multiple implicit conversions to get from one type to another?
I 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.
Oct
16
comment Programatically remove <script src=”/unwanted.js”.. /> reference
Sounds 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. :P
Oct
15
comment Converting MovieClips in an fla to bmp
If you want to keep the transparency then you'll want to stay away from the bmp format mentioned in your title.
Oct
12
comment Optimizing AS3 SWF files for size?
Reduce 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.
Oct
9
answered pass a form value to another form on a different page without using url variables (javascript)
Oct
9
comment How long would it take you to Program a Site like Stackoverflow
Why 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.
Oct
7
accepted How universal is the LIMIT statement in SQL?
Oct
6
comment Why is SSE scalar sqrt(x) slower than rsqrt(x) * x?
I have no idea, but that really is interesting.
Oct
6
answered How would you answer the question, What do you do for a living?
Oct
6
revised How universal is the LIMIT statement in SQL?
added 102 characters in body; added 61 characters in body
Oct
6
answered How universal is the LIMIT statement in SQL?
Oct
5
awarded  
Oct
1
comment Jquery Slider spacing fubar on ie7 and i6..
You can also see that issue in IE8 when in "compatibility mode".
Sep
24
awarded  Yearling
Sep
22
awarded  Popular Question
Sep
22
comment What are five things you hate about your favorite language?
@Mauricio, how would you use the language except in a browser?
Sep
15
accepted distance learning course, computing science degree
Sep
10
comment Underused features of Windows batch files
@demoncodemonkey, the size of the variable area is limited.
Sep
10
revised distance learning course, computing science degree
added 73 characters in body
Sep
9
answered distance learning course, computing science degree
Sep
4
comment For this scenario,does a single self-join exist?
I had type that exact same thing when the notification came in. :)
Aug
30
revised Top 10 SQL Server performance bottlenecks
added 138 characters in body
Aug
28
comment running sql code with microsoft sql 2008
Actually, I think that last one should be replaced with " ON [PRIMARY]"
Aug
28
comment Linearly increasing color darkness algorithm
You say that you want to make a "function"... what language would you like this function to be written in?
Aug
27
comment How to validate input using javascript
#include general warnings about always validating data server side.
Aug
26
comment Discovered: Run A Video In An Image
The Print Screen key can not capture images from the video card's overlay buffer.
Aug
26
comment Discovered: Run A Video In An Image
Windows Media Player is running the video using the Windows Overlay buffer which does not use normal screen memory. It is a feature of your video card.
Aug
25
comment Mysql Join query using a group by
I don't think you'll need 'DISTINCT' as the 'group by' should take care of that.
Aug
25
comment What does `@` mean in Python?
Shore seems to be a professional question poster.
Aug
25
answered How can I hide the details within my .NET executable?
Aug
24
comment Web script to click some buttons and save some html pages
Have you looked at wget?
Aug
20
comment Why would Google (or Googlebot) index a page returning a 500 error?
Now that you've put the url on this page, google's crawling all over it!
Aug
20
answered What are the best movies about Geeks/Programmers/Hackers. (for inspiration)
Aug
20
comment Getting “mywebsite.org/” to resolve to “mywebsite.org/index.php”
Shorter URL's rank higher than longer ones, so "mywebsite.org/category/" would rank higher than "mywebsite.org/category/index.php" for the same search terms (all other factors being equal).
Aug
18
comment How to measure software development performance?
Our team does its own estimating, so in that case it would be one and the same.
Aug
18
comment How to deploy a desktop .Net application with custom settings per user
If the data you are looking for doesn't exist, prompt the user for it then save it for next time.