Skip to content

Instantly share code, notes, and snippets.

View Coolfield's full-sized avatar
🛠️
Trying to exit vim

Josh Caulfield Coolfield

🛠️
Trying to exit vim
View GitHub Profile

Keybase proof

I hereby claim:

  • I am coolfield on github.
  • I am coolfield (https://keybase.io/coolfield) on keybase.
  • I have a public key ASAta9siZDLwOk_Xd9nBUifoei01TWLrZM00VkgzwuzMFgo

To claim this, I am signing this object:

import random as r
print("--------------------------------")
print(" Guess the Number")
print("--------------------------------")
print()
height = int(input("What is the max number of the desired range?"))
limit = int(input("Limit guesses? '0' if no."))
num = r.randint(0, height)
import random
the_number = random.randint(0, 10)
guess = -1
while guess != the_number:
guess_text = input('Guess a number between 0 and 10: ')
guess = int(guess_text)
if guess is the_number:
print('You won, it was {}!'.format(guess))

#JS Job Ready Guide By P1XT

Tier 0 - Prep

Goal: Be comfortable with git by midway through Tier 1, and comfortable with Precalculus by midway through Tier 2.

Anything in Tier 0 can be studied before beginning Tier 1, or alongside the rest of the guide as you progress through the other Tiers.

@Coolfield
Coolfield / Full Stack JavaScript.md
Last active April 22, 2019 14:57 — forked from royshouvik/Full Stack JavaScript.md
Learn Full Stack JavaScript Web Development for FREE using resources like YouTube, Udacity and NodeSchool

JavaScript

JavaScript Basics

RegEx