Tag: tlah

  • Teach like a hacker – Atari version from #neotech2014

    I forgot to upload my presentation from the Neotech 2014 conference!

  • Teach Like a Hacker presentation at #l21conf

    Here is my presentation from the Learn 21 Conference today!

  • Beaver Local waiver day #bltlap

    On Wednesday I had the distinct pleasure of
    attending Beaver Local’s professional development waiver day. It was a
    twofer for me, I not only got a chance to see how they ran their waiver
    day PD, but I also had the
    chance to present and converse with the staff in the district. This was
    invaluable to me, and I was very appreciative to have the chance to
    attend.

    Since the Ohio eTech Conference I’ve been trying to screencast everytime
    I teach or present. Here are the 5 presentions from Wednesday:

    My apologizes for all the recycled jokes throughout the day. 🙂

    p.s. Picture courtesy of Eric Lowe

  • Teach Like a Hacker presentation at #oetc14

    I’m finally getting a chance to post my presentation and supplemental materials from the OETC14 conference!

    Presentation Link

    “Ryan is a hottie” .mp3

    “Ryan is a hottie” .m4r

    Backchannel log

    And you know, for all the flack I get about trying to promote IRC, the back channel log is the most dialogue I’ve ever seen happen in a session! 🙂

  • Learn HTML with Mozilla Thimble

    Although learning html has fallen out of fashion in recent years, I believe it is a skill that is important to know. Even if you’ll never be a professional web developer, there are times when knowing a little html is beneficial. Today I stumbled across Mozilla Thimble.

    It allows you to write html online in the left pain and immediately see the results in the right pane. Once you have completed your masterpiece you can post the page publicly and share the link for all to bask in your gloriousness. What’s more, your masterpiece is available for others to use as a learning tool and remix.

    Thimble is a part of Mozilla Webmaker a “global community dedicated to teaching digital skills and web literacy.” If you don’t know where to start, they have a ton of various projects that you can load directly into Thimble and use to learn html.

  • #OhioITSCO Leadership Symposium – Teach Like a Hacker

    Why hack?

    Teach like a hacker is the epitome of “work smarter, not harder”. Figure out clever solutions to tough problems.

    Coding

    Examples in the classroom

    Math

    Students can write programs to solve the type of problems being studied in Math. For example, write a program in your favorite language (spreadsheet, Ruby, Python, etc.) that can add fractions.

    English Language Arts and Social Studies

    Use interactive fiction to put your students into the mindset characters in literature or in history. Inklewriter can be used as a starting point, advanced students can move to Inform. Both can be published on the web for others to play. (Inform can be hosted in Google Drive.)

    Science

    For this year’s Nobel Prize in Chemistry, the three scientests used computers to model molecules and reactions.

    As a news release explained it, “Chemists used to create models of molecules using plastic balls and sticks,” but “today the modeling is carried out in computers,” thanks in part to work done in the 1970s by the three new laureates.

    A lot of modeling of processes can now happen in the computer, and the students can modify the model to see what happens.

  • #tlah Managing your class list in a spreadsheet, part 2

    When we last visited our spread sheet, we used formulas to cut apart a list of names in our class that resulted in the following spreadsheet:

    Our great class

    Today, we will learn some more programming techniques in our quest to create another column in our spreadsheet which would have the students full name in the format Firstname Lastname. To create this full name column, you might try:

    =B2+C2
    

    Ugh, what’s this #VALUE! result? In this instance, it is because you tried to use the + operand on data which cannot be added. This means we need to talk about data types. We’ll touch on two today, number and string (for those that know, a number data type can be a very complex beast, but we’re trying to keep it simple!). A number data type is basically anything numeric. 19 and 87 are two numbers. We can add those two numbers and get 106. A string is a data type that can encompass letters, numbers, and symbols. Luke is a string as is I am your father. But, 19 and 87 can also be strings, it just depends on what you want to do with them.

    With strings, you don’t add, you concatenate (yes, that’s a real word, go look it up!). When you concatenate Luke and I am your father you get LukeI am your father (no space between Luke and I because the original strings don’t have a space). You can also concatenate 19 and 87 to get 1987. The operand to concatenate is &. So for our example in Column D we will use the & to concatenate the two fields:

    =B2&C2
    

    Oh, so close! But now we have LukeSkywalker, we want a space between them. To add the space, we just concatenate a " " in between the two cell references:

    =B2&" "&C2
    

    And violà! We have a new column with the users Firstname Lastname:

    mygreatclass-firstname-lastname-l.png (640×292)

    How would you write the formula to create a username which consists of the last two digits of the grad year, last name, firstname?

    p.s. All posts in the series – Managing your class list in a spreadsheet

  • Command line tool for Twitter

    sferik/t · GitHub

    A command-line power tool for Twitter.

    The CLI takes syntactic cues from the Twitter SMS commands, however it offers vastly more commands and capabilities than are available via SMS.

    I have been using TTYtter: an interactive console text-based command-line Twitter client and Perl platform (whew!) but t looks like it could be a pretty powerful tool in scripts.

  • #tlah Pancake hacking

    Last night we stayed at a Holiday Inn Express which offers a continental breakfast. My 9 year old daughter was fascinated with the automatic pancake maker.

    Pancake Maker

    Simple as can be, press OK and less than a minute later a pancake pops out. I was curious. What if I wanted more than one? As the maker worked its magic, I noticed it said Making pancake 01 of 01. Ok, so it must be possible.

    Examining the front of the device made it apparent that the aluminum was covering up something. After I waited for the Holiday Inn Express employee to leave, I pulled on the cover, revealing a control panel with a number pad. I hit 3 and OK and the pancake maker came to life, working on pancake 01 of 03. Very cool. The 9 year old was, in her words, a little impressed.

  • #tlah Getting started with virtualization using VirtualBox

    Do you want to check out Linux on your current machine safely, leaving your current set up untouched? Virtualization allows you to do this using VirtualBox. We are investigating this method to integrate BYOD with our 1 to 1 program. Wikihow has a nice write up on how to install Ubuntu on VirtualBox. Keep in mind that you want to have at least 2GB of memory (4 would be better) and 10-20GB of disk space free.

    Once you have it set up, play around with Ubuntu and see what all the fuss is about!