Author: KC

  • Let this inspire a website or two. Is it a title/caption generating app? Does it find random photos and feature one a day with this caption? Does it secretly hack into your computer and take a picture of you?(Don’t do that last one.) When you’re ready, make a website.

  • Things I might want to fork and install GFBOOM! | Jennifer Dewalt  – google font browser Color Jam | Jennifer Dewalt -instrument app Paths | Jennifer Dewalt -make drawings with words Chatty Room | Jennifer Dewalt -meet someone at a site, chat them up. Pollsie | Jennifer Dewalt -easy to make one question anonymous polls Moment Of Peace |…

  • The Initial Idea It would be connected to a gmail account– (could modify it to a facebook account?). App will have access to friend’s list and calendar. The user selects friends they want to always keep on their social calendar and then give them frequency (regular intervals of time the user wants to see them.).…

  • First: Download the Google App Engine SDK – App Engine — Google Cloud Platform Then open Google App Engine Launcher. This is the simplest app and it’s all created by naming it “helloworld.” However, making an app that actually does stuff is something else. Continue to follow this blog for more details.

  •   Joe Parente and Joey Perrott are doing afternoon sessions with the Web Coding Bootcamp. I’m learning a lot and transcribing my notes down below. In our first python project, we’re working on a quote database using The Python NDB Datastore API. Methods As started the day before, the afternoon session continued on with fleshing out…

  •   A couple of days ago, I painted this. It was an afternoon where I had a friend over and thought it would be a fun time to break out the acrylics. I call this painting “Leaf falling under bridge in a small town.” I was talking to Ryan, as we were trying to name…

  • Joe Parente and Joey Perrott are doing afternoon sessions with the Web Coding Bootcamp. I’m learning a lot and transcribing my notes down below. Python is an interpreted¹ programming language. It supports multiple programming paradigms, but the instructors mostly focused on the object oriented (OO) style. Everything can be understood as an object. Functions (methods²) and…

  • Why am I seeing “hover” “mouseenter/mouseleave” and “mouseover”? .mouseover(): source Bind an event handler to the “mouseover” JavaScript event, or trigger that event on an element. .hover(): source Bind one or two handlers to the matched elements, to be executed when the mouse pointer enters andleaves the elements. Calling $(selector).hover(handlerIn, handlerOut) is shorthand for: $(selector).mouseenter(handlerIn).mouseleave(handlerOut);…