Skip to content

Instantly share code, notes, and snippets.

View HeyMarcy's full-sized avatar

Marcy Montross HeyMarcy

View GitHub Profile
@HeyMarcy
HeyMarcy / horizontal-cards-section.markdown
Created October 23, 2022 17:34
Horizontal Cards Section

Horizontal Cards Section

Horizontal animation of a cards section, where the cards width is not 100%

A Pen by GreenSock on CodePen.

License.

@HeyMarcy
HeyMarcy / sampleREADME.md
Created May 2, 2018 19:57 — forked from FrancesCoronel/sampleREADME.md
A sample README for all your GitHub projects.

FVCproductions

INSERT GRAPHIC HERE (include hyperlink in image)

Repository Title Goes Here

Subtitle or Short Description Goes Here

class LinkedList {
constructor() {
this.length = 0;
this.head = null;
}
insert(index, value) {
if (index < 0 || index > this.length) {
throw new Error('index error');
@HeyMarcy
HeyMarcy / recursion.js
Created April 4, 2017 00:13
Recursive problems
// Count Sheep
var countSheep = function(n){
if (n === 0){
return;
}
console.log("Another sheep jumps over the fence " +n);
countSheep(n-1)
}
// STRING DRILLS
// Wiseperson Generator
https://jsbin.com/nisulo/edit?js,console
//Shouter
https://jsbin.com/yarefu/edit?js,console
//Text Normallizer
https://jsbin.com/lomipi/edit?js,console
@HeyMarcy
HeyMarcy / index.html
Created August 30, 2016 21:06 — forked from anonymous/index.html
Loops Exercises 1 (Arrays) // source http://jsbin.com/nusaxo
<!DOCTYPE html>
<html>
<head>
<link href="http://code.jquery.com/qunit/qunit-git.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/qunit/qunit-git.js"></script>
<meta charset="utf-8">
<title>Loops Exercises 1 (Arrays)</title>
<link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.15.0.css">
</head>
<body>
@HeyMarcy
HeyMarcy / index.html
Created August 20, 2016 16:01 — forked from anonymous/index.html
HTML Tables HTML Tables // source http://jsbin.com/qusijiq
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="HTML Tables">
<meta charset="utf-8">
<title>HTML Tables</title>
<link rel="stylesheet" href="table-style.css"> <style id="jsbin-css">
body {
font-size: 16px;
@HeyMarcy
HeyMarcy / index.html
Created August 19, 2016 01:34 — forked from anonymous/index.html
HTML Tables HTML Tables // source http://jsbin.com/wajoyu
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="HTML Tables">
<meta charset="utf-8">
<title>HTML Tables</title>
<style id="jsbin-css">
body {
font-family: Helvetica, sans-serif;
}