A quick list of tools for building HTML/CSS/JS apps that work well offline. Ping me at @nolanlawson if I missed anything!
Tools for bundling your HTML/CSS/JS into a native app.
| var gulp = require('gulp'), | |
| sass = require('gulp-sass'), | |
| browserify = require('gulp-browserify'), | |
| concat = require('gulp-concat'), | |
| embedlr = require('gulp-embedlr'), | |
| refresh = require('gulp-livereload'), | |
| lrserver = require('tiny-lr')(), | |
| express = require('express'), | |
| livereload = require('connect-livereload') | |
| livereloadport = 35729, |
A quick list of tools for building HTML/CSS/JS apps that work well offline. Ping me at @nolanlawson if I missed anything!
Tools for bundling your HTML/CSS/JS into a native app.
| import java.util.*; | |
| class AList{ | |
| public static void main(String args[]){ | |
| /* Array list extends Abstract List implements List interface. | |
| * Array list supports dynamic Arrays that can grow as needed | |
| * Array list can dynamically increase and decrease in size | |
| * It is of variable length | |
| */ | |
| //Array list declaration |
| 'use strict'; | |
| var babel = require('babel-core'); | |
| var fs = require('fs'); | |
| // borrowed from https://github.com/babel/babel-jest/blob/master/index.js | |
| require.extensions['.jsx'] = function (module, filename) { | |
| var src = fs.readFileSync(filename, 'utf8'); | |
| // Allow the stage to be configured by an environment | |
| // variable, but use Babel's default stage (2) if |
| https://github.com/flyway/flyway | |
| https://github.com/mattes/migrate | |
| https://bitbucket.org/liamstask/goose | |
| https://github.com/tanel/dbmigrate | |
| https://github.com/BurntSushi/migration | |
| https://github.com/DavidHuie/gomigrate | |
| https://github.com/rubenv/sql-migrate |
This is unmaintained, please visit Ben-PH/spacemacs-cheatsheet
SPC q q - quitSPC w / - split window verticallySPC w - - split window horizontallySPC 1 - switch to window 1SPC 2 - switch to window 2SPC w c - delete current windowMake writing asynchronous code easier by having a consistent way of propagating "context" across related asynchronous operations. Have the "context" be responsible for async-local-storage, allowing the execution before and after hooks, and "context"-local error handling. Finally make sure that the "context"s are composable.
This feature needs to be part of the platform so that library and framework authors can relay on a common well know API, otherwise adoption will be limited.
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Redux rocket launcher example</title> | |
| <script src="https://npmcdn.com/redux@latest/dist/redux.min.js"></script> | |
| <script src="https://npmcdn.com/[email protected]/dist/redux-saga.js"></script> | |
| </head> | |
| <body> | |
| <p> | |
| Example created to compare Redux + redux-saga implementation with |
| SPC s c remove highlight | |
| **** Files manipulations key bindings | |
| Files manipulation commands (start with ~f~): | |
| | Key Binding | Description | | |
| |-------------+----------------------------------------------------------------| | |
| | ~SPC f c~ | copy current file to a different location | | |
| | ~SPC f C d~ | convert file from unix to dos encoding | | |
| | ~SPC f C u~ | convert file from dos to unix encoding | |