Install the client:
apt-get install git
git clone https://github.com/letsencrypt/letsencrypt
cd letsencrypt
Generate certificates using manual mode:
[ | |
{ "keys": ["ctrl+v"], "command": "paste_and_indent" }, | |
{ "keys": ["ctrl+shift+v"], "command": "paste" }, | |
{ "keys": ["ctrl+shift+c"], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["ctrl+alt+p"], "command": "prompt_select_workspace" } | |
] |
let styles: [UIFont.TextStyle] = [ | |
// iOS 17 | |
.extraLargeTitle, .extraLargeTitle2, | |
// iOS 11 | |
.largeTitle, | |
// iOS 9 | |
.title1, .title2, .title3, .callout, | |
// iOS 7 | |
.headline, .subheadline, .body, .footnote, .caption1, .caption2, | |
] |
'use strict'; | |
/* global intel */ | |
const DeviceOrientation = intel.realsense.DeviceOrientation; | |
const StreamType = intel.realsense.StreamType; | |
const SenseManager = intel.realsense.SenseManager; | |
let sense; | |
let faceModule; | |
let faceConfig; |
Install the client:
apt-get install git
git clone https://github.com/letsencrypt/letsencrypt
cd letsencrypt
Generate certificates using manual mode:
{ | |
"ecmaFeatures": { | |
"jsx": true | |
}, | |
"env": { | |
"browser": true, | |
"node": true, | |
"es6": true | |
}, | |
"plugins": [ |
{ | |
"color_scheme": "Packages/Monokai Extended/Monokai Extended.tmTheme", | |
"detect_indentation": false, | |
"font_size": 13, | |
"ignored_packages": | |
[ | |
"Markdown", | |
"Vintage" | |
], | |
"theme": "Soda Dark 3.sublime-theme", |
<div class="list"> | |
<div>Item 1</div> | |
<div>Item 2</div> | |
<div>Item 3</div> | |
<div>Item 4</div> | |
<div>Item 5</div> | |
</div> | |
<div class="list"> | |
<div>Item 1</div> |
var browserify = require('browserify'); | |
var uglify = require('uglify-js'); | |
var extract = require('convert-source-map'); | |
var SourceMapGenerator = require('source-map').SourceMapGenerator; | |
var SourceMapConsumer = require('source-map').SourceMapConsumer; | |
browserify( | |
'./src/index.js', |
var mdeps = require('module-deps'); | |
var JSONStream = require('JSONStream'); | |
var md = mdeps({ | |
// "transformKey" allows it to find the transforms (e.g. JSX or ES6 precompilation) from package.json | |
transformKey: ['browserify', 'transform'] | |
}); | |
md.pipe(JSONStream.stringify()).pipe(process.stdout); | |
md.end({file: './src/index.js'}); |
var path = require('path'); | |
var gulp = require('gulp'); | |
var through2 = require('through2'); | |
var File = require('vinyl'); | |
function generate_two_text_files_from_one_json(){ | |
'use strict'; | |
return through2.obj(function(file, enc, next){ | |
var mydata = JSON.parse(file.contents.toString('utf8')); |