Skip to content

Instantly share code, notes, and snippets.

View jssee's full-sized avatar
🤝
Building, destroying

Jesse Hoyos jssee

🤝
Building, destroying
View GitHub Profile
{
"name": "www",
"version": "1.0.0",
"description": "www",
"main": "index.html",
"author": "_",
"license": "MIT",
"repository": "_",
"browserslist": ["last 2 versions"],
"scripts": {
/*!
// ███ █ ████▄ ▄▄▄▄▀ ▄▄▄▄▀ ▄███▄ █▄▄▄▄
// █ █ █ █ █ ▀▀▀ █ ▀▀▀ █ █▀ ▀ █ ▄▀
// █ ▀ ▄ █ █ █ █ █ ██▄▄ █▀▀▌
// █ ▄▀ ███▄ ▀████ █ █ █▄ ▄▀ █ █
// ███ ▀ ▀ ▀ ▀███▀ █
// ▀
// The MIT License
//
// Copyright © 1986 - ∞, Blotter / Bradley Griffith / http://bradley.computer
@jssee
jssee / .hyper.js
Last active February 8, 2018 05:55
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: "stable",
@jssee
jssee / index.js
Last active January 21, 2018 23:51
Choo first app
const extend = require("xtend");
const choo = require("choo");
const html = require("choo/html");
const app = choo();
app.use({
state: {
todos: []
},
reducers: {
@jssee
jssee / code.json
Last active November 17, 2017 03:41
vscode
{
"workbench.colorTheme": "Panda Syntax",
"workbench.colorCustomizations": {
"activityBar.background": "#0b0b0c",
"editor.background": "#141416",
"sideBar.background": "#141416",
"editorGroupHeader.tabsBackground": "#141416",
"tab.activeBackground": "#141416",
"tab.inactiveBackground": "#141416"
},
@jssee
jssee / sublime.json
Created September 19, 2017 04:12
sublime-pref
{
"color_scheme": "Packages/Colorsublime - Themes/Facebook.tmTheme",
"ensure_newline_at_eof_on_save": true,
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
"node_modules"
{
"color_scheme": "Packages/Colorsublime - Themes/Facebook.tmTheme",
"font_face": "Input Mono",
"font_size": 10,
"tab_size": 2,
"translate_tabs_to_spaces": true,
"line_padding_bottom": 5,
"ensure_newline_at_eof_on_save": true,
"scroll_speed": 4.0,
"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS", "node_modules"],
@jssee
jssee / gallery.css
Created June 28, 2017 04:21
responsive gallery
@jssee
jssee / .gitignore
Created June 4, 2017 20:12
.gitignore
# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
@jssee
jssee / fetchshot.js
Last active June 7, 2017 16:06
Use fetch to get your dribbble shots.
const url = 'https://api.dribbble.com/v1/users/USERNAME/shots?access_token=TOKEN&callback';
fetch(url)
.then(response => response.json())
.then(function(data) {
[].forEach.call(data, function(post) {
let list = document.querySelector('#dribbble');
let html = `
<li>
<a href="${post.html_url}" target="_blank">