Forked from Nazmul Hasan Rupok's Pen One Page CSS Navigation.
A Pen by Alain Armand on CodePen.
import express from 'express'; | |
import schema from './data/schema'; | |
import GraphGQLHTTP from 'express-graphql'; | |
import {MongoClient} from 'mongodb'; | |
let app = express(); | |
app.use(express.static('public')); |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
Ctrl+C | copy current line (if no selection) |
Ctrl+X | cut current line (if no selection) |
Ctrl+⇧+K | delete line |
Ctrl+↩ | insert line after |
function pullJSON() { | |
var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
var sheets = ss.getSheets(); | |
var sheet = ss.getActiveSheet(); | |
var url="http://example.com/feeds?type=json"; // Paste your JSON URL here | |
var response = UrlFetchApp.fetch(url); // get feed | |
var dataAll = JSON.parse(response.getContentText()); // |
May 26 16:43:28 Alains-MacBook-Pro syslogd[17775]: --- syslogd restarted --- | |
May 26 16:43:28 Alains-MacBook-Pro syslogd[17775]: Configuration Notice: | |
ASL Module "com.apple.appinstallation" claims selected messages. | |
Those messages may not appear in standard system log files or in the ASL database. | |
May 26 16:43:28 Alains-MacBook-Pro syslogd[17775]: Configuration Notice: | |
ASL Module "com.apple.authkit.asl" claims selected messages. | |
Those messages may not appear in standard system log files or in the ASL database. | |
May 26 16:43:29 --- last message repeated 1 time --- | |
May 26 16:43:28 Alains-MacBook-Pro syslogd[17775]: Configuration Notice: |
Last login: Thu May 26 18:35:02 on ttys000 | |
Alains-MacBook-Pro:react-native-store-locator klik$ npm install | |
npm WARN EPACKAGEJSON [email protected] No repository field. | |
npm WARN EPACKAGEJSON [email protected] No license field. | |
Alains-MacBook-Pro:react-native-store-locator klik$ npm start | |
> [email protected] start /Users/klik/projects/react-native-store-locator | |
> node node_modules/react-native/local-cli/cli.js start | |
┌────────────────────────────────────────────────────────────────────────────┐ |
// array utils | |
// ================================================================================================= | |
const combine = (...arrays) => [].concat(...arrays); | |
const compact = arr => arr.filter(Boolean); | |
const contains = (() => Array.prototype.includes | |
? (arr, value) => arr.includes(value) | |
: (arr, value) => arr.some(el => el === value) |
{ | |
"value": [ | |
{ | |
"@search.action": "upload", | |
"id": 1, | |
"name": "Ahool Ale", | |
"activelyBrewed": "true", | |
"ibu": 33, | |
"abv": 5.4, | |
"flavors": "biscuity", |
{ | |
"value": [ | |
{ | |
"@search.action": "upload", | |
"id": "Ek4mwsBoe", | |
"name": "Southern Hemisphere Brewco", | |
"description": "", | |
"slogan": "", | |
"breweryType": "micro", | |
"latitude": 39.923429, |
## Console output | |
``` | |
Last login: Sat Oct 22 09:41:06 on console | |
klik:~ klik$ cd Projects/ | |
klik:Projects klik$ cd FuseProjects/ | |
klik:FuseProjects klik$ fuse create app sketchimport | |
Created project: 'sketchimport' at '/Users/klik/Projects/FuseProjects/sketchimport' | |
klik:FuseProjects klik$ cd sketchimport/ | |
klik:sketchimport klik$ open . | |
klik:sketchimport klik$ fuse import /Users/klik/Projects/FuseProjects/sketchimport/iOS\ 10\ UI\ Kit\ i6.sketch |