Manual Install:
- SkyFonts
- 7zX
- AirDroid
- Android Studio
- AnyBar
- aText
- Atom
- Better Window Manager
storage_postgres: | |
container_name: storage_postgres | |
image: ubuntu | |
volumes: | |
- /var/lib/postgresql/data | |
command: echo | |
postgres: | |
container_name: db_postgres | |
image: postgres:9.4 |
{ | |
"level": "info", | |
"message": "Server listening on port: 3001" | |
} | |
{ | |
"level": "error" | |
} | |
{ | |
"tags": [ | |
"express", |
<html> | |
<head> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha/css/bootstrap.css" /> | |
<link rel="stylesheet" href="style.css" /> | |
</head> | |
<body id="github-app"> | |
<div class="row"> | |
<div class="col-sm-3"> |
Manual Install:
var express = require('express') | |
var analytics = require('mashape-analytics') | |
var app = express() | |
var agent = analytics('SERVICE_TOKEN', { | |
limits: { | |
bodySize: 1000000 // in bytes, default 0b, 1000000 = 1M | |
} | |
}) |
firstPromise().then(function(resultsArray){ | |
var promiseArray = [] | |
_.forEach(resultsArray, function(result){ | |
promiseArray.push(new Promise(function(resolve, reject){ | |
// do async call using result | |
resolve(asyncResults) | |
})) | |
}) | |
return Promise.all(promiseArray) | |
}).then(function(asyncResultsArray){ |
var expect = require('chai').expect | |
require('mocha-generators').install() | |
require('dotenv').load() | |
var Nightmare = require('nightmare') | |
/* Definitions for JS Standard */ | |
/* global beforeEach, afterEach, describe, it */ | |
describe('Reports page', function () { |
var temp = require('temp').track(); | |
temp.open({suffix: ‘.csv'}, function (err, info) { | |
if (!err) { | |
fs.write(info.fd, csvdata); | |
fs.close(info.fd, function (err) { | |
res.download(info.path, ‘filename.csv'); | |
}); | |
} | |
}); |
sudo diskutil eraseDisk MS-DOS BADGE MBRFormat /dev/disk2 | |