- USB SSD with at least 8GB
- Windows .ISO
Open terminal and do the following:
| #!groovy | |
| node { | |
| wrap([$class: 'AnsiColorBuildWrapper', colorMapName: 'xterm']) { | |
| stage("Checkout") { | |
| checkout scm | |
| } | |
| stage("Cleaning and preparing") { | |
| sh '''#!/bin/bash -e | |
| git clean -dfx |
| If you are facing an error like that on new MacOS version. | |
| xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun | |
| It means that you need to install XCode command line, open a Terminal and run this command: | |
| $ xcode-select --install | |
| Note: | |
| If you want to download and install Command Line tools manually, it can be downloaded from: https://developer.apple.com/download/more/ |
| #!/bin/sh | |
| # Copyright (C) 2009-2017 Three Nine Consulting | |
| # Always good practice to update packages. However ask user if they would like to do so | |
| # For explanation on how this works and why check out https://garywoodfine.com/use-pbcopy-on-ubuntu/ | |
| read -p "Do you want to update your package repositories before proceeding ? " -n 1 -r | |
| echo #adding new line | |
| if [[ $REPLY =~ ^[Yy]$ ]] | |
| then | |
| sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y | |
| fi |
| --- | |
| - name: Install MacOS Packages | |
| hosts: localhost | |
| become: false | |
| vars: | |
| brew_cask_packages: | |
| - atom | |
| - docker | |
| - dropbox | |
| - firefox |
| # Mikrotik RouterOS Script to do proper uplink failover/failback (more reliable than Netwatch). | |
| # Supports both Generic and PPPoE interfaces. | |
| # Policy: read, write, policy, test | |
| ### Configuration ### | |
| # Define Names of all Interfaces that will be checked: | |
| :local "interface-names" { "internet-speedy";"internet-biznet" }; |
| curl -L http://bit.ly/10hA8iC | bash |
This is a companion Gist for a talk that I gave at React Berlin in April 2015. The fine folks at Bitcrowd recorded all three of the evening's talks, so you can watch mine at https://www.youtube.com/watch?v=9ArhJiMGVDc.
Peter Magenheimer (@peterjmag)
I'm a front end developer at ResearchGate. And yes, we're hiring.
##Setup your server (this would ideally be done with automated provisioning)
npm install -g forever##Install flightplan
npm install -g flightplannpm install flightplan --save-dev