mycodebytes.com
My Code Bytes – Classes for Winter 2013
http://mycodebytes.com/classes-for-winter-2013
Classes for Winter 2013. January 5, 2013. 8216;Library, University of Washington, Bothell campus’ by Curtis Cronn. Despite a much needed and wonderfully relaxing winter break, it’s time to get back to business. Monday is the first day of classes for the new term! Here are the courses I’ll be taking this quarter:. CSS 343: Data Structures and Algorithms. CSS 350: Management Principles for Computing Professionals. CSS 370: Analysis and Design. Methods and tools to capture and communicate requirements, prop...
mycodebytes.com
My Code Bytes – Classes for Spring 2013
http://mycodebytes.com/classes-for-spring-2013
Classes for Spring 2013. April 1, 2013. CSS 371: The Business of Technology. Methods for aiding software development, communicating progress to customers/management, and developing marketing strategies for the product. Incorporates social, psychological, and ethical issues. CSS 390: Scripting Languages. This 5-credit university-level course explores the role of scripts and scripting languages in the software development cycle. Additional topics may include: Emacs/Lisp/Guile, Tcl/Tk, PHP, Lua. In case you...
mycodebytes.com
Archive for 2012 July
http://mycodebytes.com/2012/07
Archive for July, 2012. Hosting a Flask project on WebFaction. The goal of this post is to outline my process for setting up a Flask app on a WebFaction hosting account. I am sure there are better ways to do this, but this is the process that has worked for me so far. This guide is mostly for my own recollection, but perhaps it will […]. July 3, 2012. Read more ». I love how seriously the Unicode Consortium takes its emoji mandate http:/ t.co/A7uFztb0fi. That moment when @chancetherapper.
mycodebytes.com
Archive for 2012 August
http://mycodebytes.com/2012/08
Archive for August, 2012. Classes for Fall 2012. Photo: ‘University of Washington, Bothell campus’ by Curtis Cronn I met with my program advisor at UWB on Monday to plan out the courses for my Junior year. Here’s what I’ll be taking this Fall: CSS 301: Technical Writing for Computing Professionals Explores methods for writing effective system specifications, user documentation and requests for proposals […]. August 30, 2012. Read more ». Computing & Software Systems. August 18, 2012. Read more ». How to ...
mycodebytes.com
My Code Bytes – Projects
http://mycodebytes.com/projects
A simplistic, cooperative turn-based Twitter game written in Python. It is part social experiment and part goofy twitter fun. Python, Continuous Integration, Git deployment, Twitter API. A Django app for comparing Mario Kart 8 kart configurations. Python, Django, Continuous Integration, Git deployment, jQuery, Twitter Bootstrap, responsive design. Producer/Consumer design pattern, Queueing, Multithreading, Sockets, Peer-to-peer networking. A social web gallery showcasing community-contributed pet photos.
mycodebytes.com
Archive for 2013 January
http://mycodebytes.com/2013/01
Archive for January, 2013. Classes for Winter 2013. Photo: ‘Library, University of Washington, Bothell campus’ by Curtis Cronn Despite a much needed and wonderfully relaxing winter break, it’s time to get back to business. Monday is the first day of classes for the new term! Here are the courses I’ll be taking this quarter: CSS 343: Data Structures and Algorithms Develops competencies associated […]. January 5, 2013. Read more ». That moment when @chancetherapper. What’s On My Whiteboard.
mycodebytes.com
Archive for Programming
http://mycodebytes.com/category/programming
Project Watermelon: State Machine Diagrams. Photo: ’Watermelon’ by Harsha K R Work on #ProjectWatermelon, my retro side-scrolling pygame project, has stalled the past few months, but I’ve spent this week trying to get things back on track. Rather than just jumping right back into code, I’ve decided to take a step back and take another look at some big picture […]. September 3, 2015. Read more ». How to build a dev community using twitter (even if you don’t know any developers). July 1, 2015. July 3, 2012.
mycodebytes.com
Archive for 2012 February
http://mycodebytes.com/2012/02
Archive for February, 2012. Finding list combinations recursively. I’ve spent the past few hours trying to find a way to recursively search a list for all possible combinations of size n and I think I finally have it: def combinations(n, list, combos=[]): # initialize combos during the first pass through if combos is None: combos = [] if len(list) = n: # when […]. February 25, 2012. Read more ». February 22, 2012. Read more ». February 22, 2012. Read more ». This is code I came across while browsing thro...
mycodebytes.com
Archive for 2012 March
http://mycodebytes.com/2012/03
Archive for March, 2012. Goodreads & Library Mashup. I finally have a working publicly-available version of the Goodreads Library Lookup project I’ve been working on for the past few weeks. This tool retrieves a Goodreads member’s “to-read” shelf and checks to see if the books are available to check out from the Kindle Owner’s Lending Library and the King County Library System‘s eBook […]. March 20, 2012. Read more ». Moving your virtualenvs directory. March 3, 2012. Read more ». March 3, 2012. Here is a...