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
| ;; -*- mode: emacs-lisp -*- | |
| ;; This file is loaded by Spacemacs at startup. | |
| ;; It must be stored in your home directory. | |
| (defun dotspacemacs/layers () | |
| "Configuration Layers declaration. | |
| You should not put any user code in this function besides modifying the variable | |
| values." | |
| (setq-default | |
| ;; Base distribution to use. This is a layer contained in the directory |
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"> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="initial-scale=1, width=device-width"> | |
| <title>Defer non-essential stylesheets</title> | |
| <style> | |
| /* Critical above-the-fold styles */ | |
| * { margin: 0; padding: 0 } | |
| :root { background: red } |
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; |