Bill the Lizard

46,710
Reputation
9237 views

Moderator ♦

Name Bill the Lizard
Member for 1 year
Seen 9 mins ago
Website
Location Charlotte, NC
Age 35
Computer Programmer (mostly Java and C++ - Perl, Python, and JavaScript as necessary) currently living in Charlotte, NC.

I blog about programming, math, learning, and technology at www.BillTheLizard.com.

If you need to contact me, I'm on twitter @lizardbill. I can't guarantee how fast I'll respond, but I check it a few times per day.
37m
revised stackoverflow optimized for mobile devices
edited tags
37m
comment What kind of Maths should a student Computer Science be familiar with?
@Bedwyr: After some consideration, I agree. This is different enough from the others that it should stay separate.
41m
revised What kind of Maths should a student Computer Science be familiar with?
added tags, removed non-duplicate link; added 321 characters in body
44m
revised Tar a specific folder
edited tags
3h
revised How do I pass a reference to the outer class to a method in an inner class? ( Or how do I pass “this” to an inner class? )
added related links
3h
revised How do I pass a reference to the outer class to a method in an inner class? ( Or how do I pass “this” to an inner class? )
changed title to reflect the real issue; edited title; edited title
6h
comment Checking network status and controlling PPP in a program
@Adam: Rep recalc complete. Sorry for you loss. :(
20h
revised Where to start from in web development?
added related links
20h
revised Application developers wanting to start web development?
deleted 73 characters in body; edited tags
20h
revised ASP .net (IIS 7) web site hanging after reboot
edited title
23h
comment Java: Static Class?
@Asaph: Agreed. I added a bit on that to my answer. Thanks.
23h
revised Java: Static Class?
added 363 characters in body
23h
comment Is there a “fastest way” to construct Strings in Java?
Was he talking about building Strings in a loop, or every String instance?
23h
answered Java: Static Class?
1d
revised getting the same name for the table rows after the 11th row of the uitableview ?
deleted 20 characters in body
1d
comment Programmer Puzzle: Encoding a chess board state throughout a game.
This would absolutely be my first answer to this question in an interview. You want to show that your first instinct is to look for a ready solution. If the interviewer tells you they want to hear what you can come up with on your own, then you can go into a bit-packing solution.
1d
comment What programming hack from your past are you most ashamed of?
"Which game?" All of them did that. :)
2d
comment Get Link Speed - Win32_PerfRawData_Tcpip_NetworkInterface
@Sinan: I recalculated your reputation, as requested. It actually went up a few points! Don't see that often. :)
Dec
2
revised Is it okay to run for loops in functional test methods?
proofread my own edit
Dec
2
revised Is it okay to run for loops in functional test methods?
added an exception to the rule
Dec
1
revised How to add new items to right-click event on Folders and Files in Windows?
added 232 characters in body
Dec
1
revised How to pass in multiple file/folder paths via a rigth-click event(verb) to an executable?
deleted 49 characters in body; edited title
Dec
1
revised SQLServer 2008 BIDS On Windows 7 - 64bit
edited tags
Dec
1
comment When To Use C# vs C++ For Performance (London Stock Exchange)
Thank you, Joe.
Dec
1
comment When To Use C# vs C++ For Performance (London Stock Exchange)
In addition to fixing the title and/or body so they match, can you provide a link for "LSE have decided to bin a .NET application because performance was too low and rewrite this in C++"? You've piqued my curiosity.
Dec
1
comment Does Apple’s iPhone App Review Process use a business or calendar day?
I agree with @dredful. This isn't something an iPhone user is going to know, but an iPhone developer would.
Nov
30
revised “contains(CharSequence s)” method in String class in JDK 1.4.2
tried to make it more clear what was being asked
Nov
29
revised iptables : how to block a user from accessing internet
edited tags
Nov
29
answered Java help. How to draw images
Nov
28
comment what is more important Domain or the technology?
Framework code is transferable knowledge. It's either a common framework, like Struts, Spring, or MVC, that you'll use again, or it's a framework developed in-house, in which case it should be designed to make it easier to write code for the domain that you're in. Either way, it shouldn't be a waste of time to learn.
Nov
28
answered what is more important Domain or the technology?
Nov
28
comment Book Recommendations for Christmas
It's amazing how many books have "PHP and MySQL" in their title. Have there ever been two technologies that were developed entirely separately that have been joined so closely as these two?
Nov
28
answered What should I name a table that maps two tables together?
Nov
28
comment What’s the most challenging algorithm you ever implemented?
@Seb: The camera was made out of parts from various sources, so we had to work with different APIs. We ended up writing our own that wrapped the others. Initially pointing at the target was easy, it was the stabilization that was hard.
Nov
28
answered What’s the most challenging algorithm you ever implemented?
Nov
28
answered Common use cases of erlang
Nov
28
answered Requirements for a game
Nov
26
answered Good ethical hacking book
Nov
26
accepted Is there any harm choosing a large value for varchar in MySQL?
Nov
25
comment What would happen if I re-apply the job that I failed the interview previously?
You can't just tack "developer" on to a sentence and make it about programming. If you fail at an interview and want to re-apply, the fact that it's for a programming job is totally irrelevant.
Nov
25
comment Why is my site uniquely sensitive to certain internet configurations?
Closed as "no longer relevant" to avoid creating a duplicate by migrating.
Nov
25
accepted Pros and cons of MIT Scheme and DrScheme to study SICP?
Nov
25
awarded  Nice Answer
Nov
25
accepted Can I use throws in constructor?
Nov
24
accepted General Exception in Java
Nov
24
answered General Exception in Java
Nov
24
comment Recommended Books for Software Engineering
+1 for Pressman. It's a great book that we used at my university, and I've referred back to often.
Nov
24
comment Can I use throws in constructor?
@Chad: There's not much difference. An exception is thrown because a valid object can't be created.
Nov
24
comment Can I use throws in constructor?
@abyx: Now that you mention it, I totally agree about URL. I changed my answer to use URI as an example instead. Thanks.
Nov
24
comment Is it okay to run for loops in functional test methods?
If each test stands on its own then they technically don't even need to be in the same file. It's a good idea to group tests by what they are testing, (tests for one module should all be in the same test file), but if your test code is getting too unwieldy you can break it up as you see fit.