Debugging JavaScript in Chrome
Not sure how I missed this for so long (feeling kind of lame right now for not even knowing about it), but today I ran across using breakpoints in Chrome Developer ToolsRead More…
Not sure how I missed this for so long (feeling kind of lame right now for not even knowing about it), but today I ran across using breakpoints in Chrome Developer ToolsRead More…
The documentation for orderBy uses a function to rearrange the order of the result set, but I wanted to order my results by multiple fields, and the documentation didn’t seem to mentionRead More…
Today I had an import script to pull data from Oracle into a MySQL instance, but the script returned an “undefined index” error for one of the fields in the result set. Read More…
Resetting all commits At one point, for various reasons that seemed perfectly logical at the time, I had several half completed commits, commits that included files that should have been ignored (likeRead More…
Config files and dev/staging/prod If you’re using any kind of framework in your development, you’ll most likely have database and api/route configuration files somewhere in the mix of things. Since most frameworksRead More…
What you expect it to do Normally, you expect .gitignore to keep files from uploading to your repository, and it is, of course, especially useful for holding on to local configuration files.Read More…
So today I did something fun. I wrote a script to parse out data from a CSV file and push the various data into several different (and mostly unrelated) tables in theRead More…
I just started working on an Angular app and needed to get my environment set up. If I want to use Yeoman, I need Node.js, which means installing it first. I followedRead More…
These coding standards are technically for the Framework Interop Group, but the requirements for coding seem quite useful. I’ll definitely be attempting to keep my own framework to these requirements, but moreRead More…
Occasionally you need to transfer data between two servers, and you need to have it happen in the background – that is, when you’re not around to type in the password forRead More…