1,103 reputation
923
bio website shanestillwell.com
location Duluth, MN
age 36
visits member for 3 years, 8 months
seen 2 days ago
stats profile views 95

Node.js and Appcelerator Titanium I dance with most days. I have vast experience in developing websites with AngularJS, Node.js, ExpressJS, and MongoDB. In the not so distant past much of work was in PHP on sites using Zend Framework, Magento, Drupal, jQuery, and MySQL.

A rabid user of Vim.

See http://goscouter.com for my latest creation.

Just an ordinary guy, living in extraordinary times.


Apr
19
accepted How do I show a block of HTML only on the index page with AngularJS
Apr
19
asked How do I show a block of HTML only on the index page with AngularJS
Mar
26
awarded  Notable Question
Feb
23
awarded  Notable Question
Feb
12
comment How do I have foreman reload node.js when a file is changed?
@Guard can you post some of your files in a gist so we can see what you're doing? I think by default rerun only watches for certain types of files.
Feb
7
comment Error: Cannot find module './proto' on Heroku
The solution was to remove node_modules from .gitignore and push up my node_modules folder to Heroku. This solved the problem and compile is much faster too.
Jan
24
awarded  Notable Question
Jan
17
comment What is a smoke testing and what will it do for me?
True, but we are getting to the point where almost anything can be automated. Be lazy, automate.
Dec
31
awarded  Notable Question
Dec
13
accepted How to print to stdout from system command in Rake?
Dec
13
comment How to print to stdout from system command in Rake?
puts mocha did the job. Thanks.
Dec
12
asked How to print to stdout from system command in Rake?
Dec
9
accepted How do I have foreman reload node.js when a file is changed?
Dec
9
answered How do I have foreman reload node.js when a file is changed?
Dec
7
comment Reuse Supertest tests on a remote URL
I think you're on to something. Let me do some testing and if it works out, I'll accept. Thanks.
Dec
6
asked Reuse Supertest tests on a remote URL
Dec
5
comment How would I rewrite without __proto__
I'm curious why you set exports = module.exports = CustomException? What does this do? I thought you either used exports or module.exports in a file, not both.
Dec
5
comment How do I have foreman reload node.js when a file is changed?
That's what I currently do, but supervisor does not support loading environment vars from a file.
Dec
5
comment How do I have foreman reload node.js when a file is changed?
Just need it for local development so I don't have to manually Ctl-C the running node.js app.
Dec
5
comment Can I tell foreman to reload the web app every time a request is made so I can develop decently?
I currently use supervisor to this, it's not really a big deal to restart the app on every file update. It's very convenient.