- Stacer - Linux System Optimizer and Monitoring
- Visual Studio Code - IDE - all the things
- Docker - Docker extension
- Ansible - Ansible extension
- Bash Debug - Bash debugger extension
- Zsh shell - Alternative to bash
- zplug - Manage zsh plugins
This file contains hidden or 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
const CDP = require('chrome-remote-interface'); | |
const chromeLauncher = require('chrome-launcher'); | |
const util = require('util'); | |
// cdp.js: a playground for using chrome-devtools-protocol. | |
// Plug-in your own code at the run() function, below. | |
// | |
// Usage: | |
// $ node scripts/cdp.js | |
// |
This file contains hidden or 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
const AWS = require("aws-sdk"); // from AWS SDK | |
const fs = require("fs"); // from node.js | |
const path = require("path"); // from node.js | |
// configuration | |
const config = { | |
s3BucketName: 'your.s3.bucket.name', | |
folderPath: '../dist' // path relative script's location | |
}; |
This file contains hidden or 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
const CDP = require('chrome-remote-interface'); | |
const chromeLauncher = require('lighthouse/chrome-launcher/chrome-launcher'); | |
function onPageLoad(Runtime) { | |
const js = "document.querySelector('title').textContent"; | |
return Runtime.evaluate({expression: js}).then(result => { | |
console.log('Title of page: ' + result.result.value); | |
}); | |
} |