Skip to content

Instantly share code, notes, and snippets.

View rjohnson4444's full-sized avatar

Ryan Johnson rjohnson4444

  • Love to Code
  • United States
View GitHub Profile
@rjohnson4444
rjohnson4444 / covid19apps.md
Last active October 30, 2020 15:53 — forked from greggles/covid19apps.md
Some information on covid19 apps in the USA

List of Coronavirus Apps

  • State
  • App links with rating + number of reviews
  • Consulting provider, if known
  • Technologies (GPS, GAEN, TCN, etc.)
  • Date launched
  • Screenshots (followup)
  • What is their diagnosis key server?

Keybase proof

I hereby claim:

  • I am rjohnson4444 on github.
  • I am ryguy4444 (https://keybase.io/ryguy4444) on keybase.
  • I have a public key ASCdqDcHsSn0eoU2AwmjkspzTUbGoDx9-_iCD9vFxwmzFgo

To claim this, I am signing this object:

@rjohnson4444
rjohnson4444 / side_hustle.md
Created March 10, 2016 06:29
Side Hustle Projects

Side Hustle

Some side hustle ideas

  • A on-demand trash/recycle application
  • A weather station using arduino/raspberry pi
  • An in-home security monitoring system
Trash/Recycle App
  • An 'MVP' for this app would be a real-time application (primarily for condos/apartments) that a user could
@rjohnson4444
rjohnson4444 / Goals.md
Last active March 10, 2016 04:30
Goals Assignment

Goals

Here are a couple goals that I would like to accomplish by the end of the year.

  1. Build a real-time application using Meteor.js

  2. Become extremely competent user of VIM

  3. Build something (some kind of home automation system) for IoT with arduino, photon, and raspberry pi.

@rjohnson4444
rjohnson4444 / do-droplet-serving-rails-app.md
Last active March 4, 2016 22:55
Serving a Rails application on a Digital Ocean droplet

First lets serve sqllite db on your droplet

ssh into your droplet ssh root@<ip-address>

rails new <appname> cd <appname> rails s

command-d to open slip window

@rjohnson4444
rjohnson4444 / recursion.markdown
Last active February 26, 2016 21:51 — forked from rrgayhart/recursion.markdown
Recursion and Generators Homework
  • Watch Recursion

  • Fork this gist

  • Answer the following questions in your fork

    • Do you pronounce 'babel' in the same way?

    • Haha! No I don't. And I though that I was the only one that caught that!

      • Follow Up Question: Will you now?
      • I don't think I could get away with pronouncing it like that. Although I would if I could get away with it :)
  • What is an example of why/where you might use recursion

Step One: Watch Mary Rose Cook Live Codes Space Invaders from Front-Trends. (The second worst conference name ever?)

Step Two: Fork this gist.

Step Three: Respond to this question in your fork: What is one approach you can take from this Mary's code and implement in your project?

  • The approach that we took out of Mary's video is to break every "object" used in our game into objects. Then let those objects be in control of rendering themselves and updating themselves. I really liked the way that every object was responsible for its own actions. Object oriented programming at its finest!

Step Four: Totally Optional: take a look at some of the other forks and comment if the spirit moves you.

**Step One**: Watch [Sorting Algorithms in JavaScript](https://www.youtube.com/watch?v=uRyqlhjXYQI)
**Step Two**: Fork this gist.
**Step Three**: Respond to this question in your fork: "What are some of the balances and trade offs between different sorting algoritms?"
**Step Four**: _Totally Optional_: take a look at some of the other forks and comment if the spirit moves you.

Array Prototype Methods

I understand that functions in JavaScript can take any number of arguments.

Yes

I can describe the similarity between blocks in Ruby and anonymous functions in JavaScript.

Yes

@rjohnson4444
rjohnson4444 / index.html
Last active September 16, 2016 21:28
Omg, drawing!
<!DOCTYPE html>
<html>
<head>
<title>Smiley Face</title>
</head>
<body>
<canvas id="a" width="800" height="800">
This text is displayed if your browser does not support HTML5 Canvas.
</canvas>