This file contains 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
.tree-view { | |
font-size: 115%; | |
font-family: 'mono'; | |
background: rgba(18, 19, 22, 0) !important; | |
overflow-y: auto; | |
.selected::before { | |
display: none; | |
} |
This file contains 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
.overlay.from-top { | |
transform: translate(-50%, 0); | |
width: 80%; | |
bottom: 10%; | |
margin-left: 0; | |
overflow-y: auto; | |
ol { | |
max-height: 100%; | |
display: flex; |
This file contains 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 model = require('component/model'); | |
var superagent = require('visionmedia/superagent'); | |
var supercouch = require('qualiancy/supercouch'); | |
var transforms = require('./transforms.js'); | |
var state = require('./state.js'); | |
var apiSpec = { | |
user: { | |
register: register, |
This file contains 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
duo --use ./plugins.js --development app.js | |
using : babel | |
using : handlebars | |
building : app.js | |
using : compatibility | |
using : stoj | |
[BABEL] Note: The code generator has deoptimised the styling of "/home/dsont/dev/microgrid/client/components/[email protected]/lodash.js" as it exceeds the max of "100KB". | |
[BABEL] Note: The code generator has deoptimised the styling of "/home/dsont/dev/microgrid/client/components/[email protected]/d3.js" as it exceeds the max of "100KB". | |
installed : [email protected] |
This file contains 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
[dsont@dsont-pc client]$ tree -I node_modules\|components | |
. | |
├── app.css | |
├── app.js | |
├── build | |
│ ├── app.css | |
│ ├── app.js | |
│ ├── browser-polyfill.js | |
│ └── index.html | |
├── config |
This file contains 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
Section "Module" | |
Load "dbe" | |
SubSection "extmod" | |
Option "omit xfree86-dga" | |
EndSubSection | |
Load "type1" | |
Load "speedo" | |
Load "freetype" |
This file contains 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 first commented line is your dabblet’s title | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; | |
div { | |
background: red; |
This file contains 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
#!/bin/bash | |
# | |
# production | |
# | |
if [ "$NODE_ENV" = "production" ]; then | |
export PORT=8080; | |
export MONGODB='localhost/test'; | |
export ASSETS='/code/klouds.io/build'; |
This file contains 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
{ | |
"items": [ | |
{ | |
"name": "Quip", | |
"description": "Document and spreadsheet collaboration", | |
"url": "https://quip.com/" | |
}, | |
{ | |
"name": "Trello", | |
"description": "Project Management", |
This file contains 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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |