This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>jQuery Mini Challenge 3</title> | |
</head> | |
<body> | |
<header> | |
<h1>jQuery Click Events</h1> | |
</header> | |
<section> | |
<article> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>jQuery Mini Challenge 2</title> | |
</head> | |
<body> | |
<header> | |
<h1 class="main-heading">jQuery Methods</h1> | |
</header> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)) ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
NewerOlder