writing code today isn't quite like it used to be...

By jason on 08/05/2013

Some handy resources out there for software development, and google will get you in touch with them...I've never coded on puchcards, or relied on books for helping me code on projects, however I would like to appreciate those circumstances.

I usually manage projects, clients, and focus my time and energy on business development tasks. It wasn't that long ago, that I actually had to code..like, every day. That was a great time, and an important part of the progression of Nerdy Dragon.

While neededing to spend a day coding yesterday, I took advantage of some great resources:

How to tell if a javascript variable value is numeric:
function isNumber(n) {
return !isNaN(parseFloat(n)) && isFinite(n);
}
http://stackoverflow.com/questions/18082/validate-numbers-in-javascript-...
How to format a javascript variable as currency:
function formatCurrency(num) {
num = num.toString().replace(/\$|\,/g, '');
if (isNaN(num)) num = "0";
sign = (num == (num = Math.abs(num)));
num = Math.floor(num * 100 + 0.50000000001);
cents = num % 100;
num = Math.floor(num / 100).toString();
if (cents for (var i = 0; i num = num.substring(0, num.length - (4 * i + 3)) + ',' + num.substring(num.length - (4 * i + 3));
return (((sign) ? '' : '-') + '$' + num + '.' + cents);
}
http://www.selfcontained.us/2008/04/22/format-currency-in-javascript-sim...

If you're writing a calculator, the above 2 javascript functions could come in quite handy :)
some EXPLAINING and tuning of MySQL - big data requires resources to work with. The less work you ask the database to do, the less you'll need to spend on those resources.

It's good to be developing software today, and even better to share the tools, methods, and experiences.

writing code