Skip to content

Instantly share code, notes, and snippets.

@vapidbabble
vapidbabble / index.html
Created January 27, 2018 17:41
Lesson 8 Exercise
<html>
<head>
<meta charset="utf-8">
<title>Buster's Work History</title>
<link href="https://fonts.googleapis.com/css?family=Anton|Josefin+Slab|Raleway" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
@vapidbabble
vapidbabble / class-4-lesson-4-part-bonus-bonus.markdown
Created January 23, 2018 02:33
Class 4 lesson 4 part bonus bonus
@vapidbabble
vapidbabble / index.html
Created January 19, 2018 02:55
jQuery 101 - Mini Challenge 3
<html>
<head>
<title>jQuery Mini Challenge 3</title>
</head>
<body>
<header>
<h1>jQuery Click Events</h1>
</header>
<section>
<article>
@vapidbabble
vapidbabble / index.html
Created January 19, 2018 02:39
jQuery 101 - Mini Challenge 2
<html>
<head>
<title>jQuery Mini Challenge 2</title>
</head>
<body>
<header>
<h1 class="main-heading">jQuery Methods</h1>
</header>
@vapidbabble
vapidbabble / index.html
Created January 19, 2018 02:38
jQuery 101 - Mini Challenge 1
<html>
<head>
<title>jQuery Mini Challenge 1</title>
</head>
<body>
<header>
<h1 id ="main-heading">Introducing jQuery</h1>
</header>
<section class = "first-section">
<h3>What is jQuery?</h3>
@vapidbabble
vapidbabble / index.html
Created January 19, 2018 01:29
jQuery 101 - Mini Challenge 1
<html>
<head>
<title>jQuery Mini Challenge 1</title>
</head>
<body>
<header>
<h1 id ="main-heading">Introducing jQuery</h1>
</header>
<section class = "first-section">
<h3>What is jQuery?</h3>
@vapidbabble
vapidbabble / bootstrap-mini-challenge-2.markdown
Created January 19, 2018 01:01
Bootstrap - Mini Challenge 2
1.
function=lambda{|x| Math.sin(x)}
(1..50).to_a.shuffle.take(5).map {|x| function[x]}
2.
function=fn(x)-> :math.sin(x) end
(1..50) |> Enum.take_random(5) |> Enum.map function
3.
(def function(fn [ele] (Math/sin ele)) )
import Color exposing (..)
import Graphics.Collage exposing (..)
import Graphics.Element exposing (..)
hexagon : Color -> Form
hexagon clr = outlined (solid clr) (ngon 6 150)
hex_on_a_point : Float -> Color -> Form
hex_on_a_point deg clr = rotate (degrees deg) (hexagon clr)