Transparency, Inspection, and Adaptation
-
console.log anywhere
Aug 5, 2012 -
1 min read
My current assingment for Improving has me writing much more client-side javascript. I’m not a javascript ninja, so I lean on the console window to confirm that the script is doing what I expected it to do. This approach works great until I view a page in IE, which has no clue what “console” means and acosts me with script error popups. This finally got annoying enough that I started looking for a universal solution. Read More…
-
Doesn't Play Well...
Apr 30, 2012 -
1 min read
I’ve been working on some “prototypes” for a new Improving client. One of our UX people told us to use Twitter Bootstrap and don’t look back. These prototypes are for a data entry focused application, so we’ve been using the Autocomplete Combobox to help speed things along. I tried to also use the bootstrap-buttons plugin in conjunction with it, but the buttons weren’t working as expected. I changed the markup to load the button plugin prior to the jquery ui script and the radio buttons looked and behaved as expected, but the auto complete comboboxes looked funky and were no longer acting like text boxes and default to select boxes. Read More…
-
Adding CoderWall Badges
Apr 22, 2012 -
2 min read
I’ve picked up a few badges via CoderWall and I wanted to include them on the blog with the rest of the information in the right side column. CoderWall has instructions under the sub heading “Official blog badge” that detail how to interact with their web api for retrieving badges. My main investigation was how and where to include these snippets within the octopress templates. The comments included in the Octopress _config. Read More…
-
Fixed Navigation Bar With Twitter Bootstrap
Apr 18, 2012 -
2 min read
Twitter Bootstrap has many very interesting features available. I really liked their fixed sub navigation menus for the feature pages. As you scroll past the subnavigation, it docs with the top of the scroll window and stays there. It also enables click navigation to other feature sections. I wanted to have the same functionality for my own html pages, so I started digging around. Looking at the page source, I saw an include for “/js/application. Read More…
-
Everything Old is New Again
Apr 16, 2012 -
1 min read
I spent some time over the weekend dragging along old posts from my tumblr blog that deal with programming. I didn’t bother with the instagram pictures or the four square checkins. After a few failed attempts to get the tumblr posts where the were suposed to be, I opted to stash them in a working directory and move them by hand. Now all of my <scarcasm>glorious code related posts</sarcasm> are in one place, it’s time to dust up some posts about my shiny new play things Twitter Bootstrap Octopress and Markdown. Read More…
-
Programming & Barriers to Entry
Feb 27, 2012 -
3 min read
A fellow learner has posted “Programming & Barriers to Entry”. Cori has much to say in this article concentrated around command line tools, vim and Ruby. I’d like to comment on some of the perceptions and share my own opinions. I picked up on some discord with regard to this type of interaction. …Intellisense (or lack thereof). Ctrl-spacebar is my friend. It’s what I’ve grown to love. Typing /?—>enter—>up-arrow—>space—>command-I-really-need is a bit of a PITA. Read More…
-
treetrim: Trims source code trees
Jan 21, 2012 -
1 min read
Treetrim: I’ve used this spiffy utility many times. Every time I see a need for it, I’m working on a PC that doesn’t have it installed and I can never remember the magic incantation that allowed Google to reveal it to me. So, since I’m starting to suffer from old-timers, I’ll keep a handy link for it right here ;-)
-
EF Code First & AppHarbor
Aug 25, 2011 -
2 min read
Since my employer, Improving lined me up a new gig that uses Entity Framework Code First, I thought I kick off a learning side project with MVC3 and deploy it to AppHarbor. Everything seemed simple enough. Use Nuget to install the code first bits, hammer out a couple of model and a datacontext and BOOM! data goes into a database. It wasn’t anything pretty, but I was ready to deploy it to AppHarbor. Read More…
-
Javascript Programming Patterns
Aug 21, 2011 -
1 min read
Javascript Programming Patterns Nice reference material that I got from JR Garcia I’ve been away from web development for just a bit too long and have a lot of catching up to do with respect to all of the great work going on in the javascript space.
-
Css for Developers from Dallas TechFest
Aug 16, 2011 -
1 min read
Here are some of my take aways from Eric Sowell’s presentation at theDallas Tech Fest Semantic markup makes reading html simpler Modernizer of Html5Shim make older browsers work with semantic tags Using a “css reset” can save you lots of grief and frustration The css reset Eric used came from Eric Meyer’s site. I’ve seen settings in the Blueprint Css style sheets. I also heard the phrase “In general, you should be more specific;. Read More…