Kibbee
|
Registered User
|
I'm a .Net web developer.
|
|
Nov 25 |
awarded | ● Popular Question |
|
Nov 24 |
accepted | How much should I “stretch the truth” on my resume? |
|
Nov 22 |
answered | How much should I “stretch the truth” on my resume? |
|
Nov 20 |
awarded | ● Popular Question |
|
Nov 18 |
awarded | ● Famous Question |
|
Nov 15 |
answered | How to select records from SQL DB that contain the same ID as a .NET datatable records |
|
Nov 5 |
accepted | How to store SQL query results for fast access ? |
|
Nov 4 |
revised |
How to store SQL query results for fast access ? added 57 characters in body |
|
Nov 4 |
answered | How to store SQL query results for fast access ? |
|
Oct 27 |
awarded | ● Favorite Question |
|
Oct 27 |
comment |
avoid gmail threading I'm voting for a move to superuser. |
|
Oct 26 |
comment |
Atomic delete for large amounts of files 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? |
|
Oct 26 |
answered | Atomic delete for large amounts of files |
|
Oct 15 |
awarded | ● Great Answer |
|
Oct 14 |
comment |
Crash Course in Web Development (PHP+HTML) 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. |
|
Oct 14 |
answered | mysql SELECT continued help please |
|
Oct 14 |
answered | DateTime.AddDays or new DateTime |
|
Oct 14 |
comment |
visual studio copy to clipboard IDE freezes Which version of VS.Net are you using? |
|
Oct 14 |
answered | Do Events break Interfaces? |
|
Oct 13 |
awarded | ● Nice Question |
|
Oct 9 |
answered | Replacement for yes/no/cancel MessageBox (C#) |
|
Oct 9 |
comment |
What made programming easier in the last couple of years? 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. |
|
Oct 9 |
awarded | ● Enlightened |
|
Oct 8 |
comment |
Reference to the iteration number in Java’s foreach Best answer. Basically, you can't but there's no problem in creating your own counter. |
|
Oct 8 |
answered | Where can I learn the SQL way to get data out |
|
Oct 8 |
comment |
How can I use a switch() statement to convert from a numeric to a letter grade? Wow. You have to love arbitrary rules such as "you must use a switch statement". 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. |
|
Oct 7 |
comment |
How to solve 987654321 * a + 123456789 * b + c = ( a + b + c )³ ? I have discovered a truly marvellous proof of this, which this comment is too short to contain. |
|
Oct 7 |
comment |
Get table column names in mysql? 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. |
|
Oct 7 |
answered | A better way to construct a datetime with higher precision than milliseconds |
|
Oct 7 |
answered | Migrating MS Access data to MySQL: character encoding issues |
|
Oct 5 |
comment |
Is base64 considered encryption in an iPhone app? 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. |
|
Oct 3 |
accepted | Is base64 considered encryption in an iPhone app? |
|
Oct 3 |
answered | Is base64 considered encryption in an iPhone app? |
|
Oct 3 |
accepted | HTTP_Request using cURL or Pear (PHP) on XML Page |
|
Oct 3 |
answered | HTTP_Request using cURL or Pear (PHP) on XML Page |
|
Sep 30 |
comment |
Are there disadvantages to using a generic varchar(255) for all text-based fields? 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. |
|
Sep 26 |
answered | What’s the coolest startup programmer job title? |
|
Sep 26 |
comment |
What’s the coolest startup programmer job title? 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. |
|
Sep 24 |
answered | What makes a language readable or not readable? |
|
Sep 24 |
comment |
Recommended movies on history of computers/programming? 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. |
|
Sep 23 |
answered | Recommended movies on history of computers/programming? |
|
Sep 23 |
answered | Difference between “,” and “.” in PHP? |
|
Sep 23 |
comment |
How do I rename an Index in MySQL 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. |
|
Sep 23 |
revised |
How do I rename an Index in MySQL added 732 characters in body |
|
Sep 23 |
asked | How do I rename an Index in MySQL |
|
Sep 19 |
comment |
common pre-mature optimizations and micro-optimizations 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. |
|
Sep 18 |
comment |
How much can you infer about the programmers at a company based on the test/interview? The problem with that is that easy is in the eyes of the beholder. Somebody might know a lot about certain things that others may think are difficult, and less about things that people think are easy. |
|
Sep 18 |
comment |
T-SQL: Convert datatime2 to datetime for all columns of type datetime2 Why are you joining three tables when all that information can be obtained from information_schema.columns? |
|
Sep 18 |
comment |
Why would a language NOT use Short-circuit evaluation? VB uses the same concept, except that VB has AndAlso, and OrElse if you want short circuiting. |
|
Sep 18 |
comment |
Why would a language NOT use Short-circuit evaluation? I really like that VB gives the choice to the programmer about whether or not to short circuit. |
