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
{ | |
"name": "www", | |
"version": "1.0.0", | |
"description": "www", | |
"main": "index.html", | |
"author": "_", | |
"license": "MIT", | |
"repository": "_", | |
"browserslist": ["last 2 versions"], | |
"scripts": { |
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
/*! | |
// ███ █ ████▄ ▄▄▄▄▀ ▄▄▄▄▀ ▄███▄ █▄▄▄▄ | |
// █ █ █ █ █ ▀▀▀ █ ▀▀▀ █ █▀ ▀ █ ▄▀ | |
// █ ▀ ▄ █ █ █ █ █ ██▄▄ █▀▀▌ | |
// █ ▄▀ ███▄ ▀████ █ █ █▄ ▄▀ █ █ | |
// ███ ▀ ▀ ▀ ▀███▀ █ | |
// ▀ | |
// The MIT License | |
// | |
// Copyright © 1986 - ∞, Blotter / Bradley Griffith / http://bradley.computer |
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
// 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", |
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 extend = require("xtend"); | |
const choo = require("choo"); | |
const html = require("choo/html"); | |
const app = choo(); | |
app.use({ | |
state: { | |
todos: [] | |
}, | |
reducers: { |
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
{ | |
"workbench.colorTheme": "Panda Syntax", | |
"workbench.colorCustomizations": { | |
"activityBar.background": "#0b0b0c", | |
"editor.background": "#141416", | |
"sideBar.background": "#141416", | |
"editorGroupHeader.tabsBackground": "#141416", | |
"tab.activeBackground": "#141416", | |
"tab.inactiveBackground": "#141416" | |
}, |
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
{ | |
"color_scheme": "Packages/Colorsublime - Themes/Facebook.tmTheme", | |
"ensure_newline_at_eof_on_save": true, | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS", | |
"node_modules" |
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
{ | |
"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"], |
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
ul#dribbble { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
flex-direction: column; | |
@media (--above-m) { | |
flex-direction: row; | |
flex-wrap: wrap; | |
width: 100vw; |
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
# OS generated files # | |
###################### | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db | |
Thumbs.db |
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 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"> |