This file contains hidden or 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
gm montage -tile 28x19 -background "black" -geometry 300x300+2+2 *.jpg grid.jpg |
This file contains hidden or 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
const fs = require('fs'); | |
const path = require('path'); | |
const parse = require('csv-parse/lib/sync'); | |
const mkdirp = require('mkdirp'); | |
const dataDir = './data/switchboard_conversations/'; | |
const outputDir = './data/clean/'; | |
let topics = fs.readdirSync(dataDir) | |
let data = []; |
This file contains hidden or 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
var last_known_scroll_position = 0; | |
var ticking = false; | |
function doSomething(scroll_pos) { | |
// do something with the scroll position | |
} | |
window.addEventListener('mousemove', function(e) { | |
last_known_position = { |
This file contains hidden or 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
console.log('Hello World 123') |
This file contains hidden or 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
@mixin bp($point) { | |
@if $point==xl { | |
@media (min-width: 85rem) { | |
@content; | |
} | |
} | |
@else if $point==l { | |
@media (min-width: 70rem) { | |
@content; | |
} |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
</head> |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Kat's cool websiteee</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<h1 class='name'>Kat Mcgrath</h1> |
This file contains hidden or 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
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Delectus sit quibusdam rem quaerat, laboriosam voluptas | |
accusantium animi sint et itaque doloremque saepe. Consectetur fugiat ipsa numquam aperiam asperiores aliquam | |
adipisci ad! Velit est nam pariatur eum explicabo perferendis unde nobis.</p> | |
<button class="more">More</button> | |
<div class="hidden"> | |
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Delectus sit quibusdam rem quaerat, laboriosam voluptas | |
accusantium animi sint et itaque doloremque saepe. Consectetur fugiat ipsa numquam aperiam asperiores aliquam | |
adipisci ad! Velit est nam pariatur eum explicabo perferendis unde nobis.</p> |
This file contains hidden or 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
[ | |
{ | |
"elementType": "geometry", | |
"stylers": [ | |
{ | |
"color": "#f5f5f5" | |
} | |
] | |
}, | |
{ |
This file contains hidden or 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
set history=500 | |
filetype plugin on | |
filetype indent on | |
set autoread | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
set showmatch |