Search Results

1
vote

How do You Come Up With New Ideas?

Look into areas where you or others are experiencing pain in doing something essential or the inability to do something essential or fun and think of ways to make it better. …
2
votes

How do you continue to improve your SQL skills?

I improve by analyzing slow and complex queries and looking for ways to improve them. This can be done in SQL Server by analyzing the Query Plan tools and looking for bottlenecks. Also I find the …
0
votes

What is your least favorite programming language?

Fortran was a pain at the university when you had to wait in line for a punchcard machine, and then wait on the punchcard reader, and then wait on the printout to appear magically at the window to …
1
vote

What do you use to keep notes as a developer?

It would seem that a combination of a Tiddlywiki file and a DropBox would be a good s …
0
votes

What is the best web prototyping tool?

Prototype with simple HTML pages and simple links. Use your favorite HTML editor for this. It's easy to then distribute the HTML pages to the clients. Sometimes I make the initial page based on an …
1
vote

Ways to prepare your mind before coding?

Review the "big picture" on what you are getting ready to code, for example the user story or the use case. It helps refresh the mind on the overall task before getting lost in the nitty-gritty det …
1
vote

Define “production-ready”

As you suggest in the latter part of the question, "Production Ready" is not necessarily a definition of size of deployments, but rather is it fit for it's intended use and requirements. For exampl …
0
votes

Refactoring vs. Rewriting

And here: http://stackoverflow.com/questions/35233/rewrite-or-repair …
2
votes

Computer upgrade cycle

About every two and a half years, although it can be a pain to reinstall everything and realize just how many tools you actually use. This last time was about speeding up by taking advantage of dua …
0
votes

Why do people use Java?

It provides multi-platform, memory management, and wide applicability from console applications to large-scale web applications. It was also the first to provide features such as embedded applets i …
0
votes

Most “large” companies prefer WISA over LAMP? Why?

Many prefer the security of another large company to go to with support issues. That being said there are many successful and high-traffic sites built on LAMP. …
3
votes

Defining moment (or event) when you knew programming was for you.

When the big stack of punch cards didn't return a page of Fortran errors (10 minutes later on a big sheet of green-line printer paper) after I submitted it to the card reader on my second try. That …
2
votes

Does it make sense to set up a wiki at the workplace?

Yes, and for simplicity of setup/maintenance we like to use Dokuwiki. It requires no database and uses PHP as the language. …
1
vote

Javascript clarity of purpose

One good way to do this is to use the principles of Unobtrusive JavaScript to separate concerns. The use of jQuery as suggested by Sebastian used this principle. …
0
votes

What is the best way to send HTTP requests from Windows Powershell?

System.Net.WebClient is the easiest way to do it for simple GET request. However if you need to do a POST request for a form then you will need to use System.Net.HttpWebRequest. …

1 2 next
15 30 50 per page