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
/** | |
* This sample demonstrates a simple driver built against the Alexa Lighting Api. | |
* For additional details, please refer to the Alexa Lighting API developer documentation | |
* https://developer.amazon.com/public/binaries/content/assets/html/alexa-lighting-api.html | |
*/ | |
var https = require('https'); | |
var AWS = require('aws-sdk'); | |
var REMOTE_CLOUD_BASE_PATH = '/'; | |
var REMOTE_CLOUD_HOSTNAME = 'www.amazon.com'; |
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
fenix4 |
So for example never do this on parent branches ie: develop, master, a feature branch with child branches, etc.
Example workflow:
- Make feature branch
- Haxxor
- Push to origin (optional but your dentist recommends you floss)
- Repeat steps 2 - 3 as necessary
- Squash commits using the function in this article
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
#!/bin/bash | |
brew cleanup | |
brew cask cleanup | |
brew update | |
brew upgrade | |
#brew bundle |
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
list your VMs to find the VM ID: | |
$ VBoxManage list vms | |
"UCS 4.1" {acef4c0a-35be-4640-a214-be135417f04d} | |
You can now package that VM as a Vagrant box: | |
$ vagrant package --base acef4c0a-35be-4640-a214-be135417f04d --output UCS.box | |
==> acef4c0a-35be-4640-a214-be135417f04d: Exporting VM... | |
==> acef4c0a-35be-4640-a214-be135417f04d: Compressing package to: /home/crohr/dev/ucs/UCS.box | |
And add it to the list of your local Vagrant boxes: |
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
Set-ExecutionPolicy Bypass -Scope Process -Force | |
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
choco install python3 -y | |
choco install pip -y | |
choco install gitlab-runner -y | |
$Env:RUNNER_NAME = 'gitlabrunnerwindows' | |
$Env:REGISTRATION_TOKEN = 'xNCuu_ebSJVHKKFYuzqa' | |
$Env:CI_SERVER_URL = 'https://gitlab.nordstrom.com/' |
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
#!/bin/bash -x | |
exec > >(tee /var/log/syslog|logger -t user-data -s 2>/dev/console) 2>&1 | |
echo 'do full automated update and upgrade' | |
unset UCF_FORCE_CONFFOLD | |
export UCF_FORCE_CONFFNEW=YES | |
export DEBIAN_FRONTEND=noninteractive | |
ucf --purge /boot/grub/menu.lst |
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
{ | |
"chefdk_bootstrap": { | |
"package": { | |
"atom": false, | |
"chef_ca": true, | |
"kdiff3": false, | |
"vagrant": false, | |
"virtualbox": false, | |
"git": false, | |
"gitextensions": false, |
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
{ | |
"chefdk_bootstrap": { | |
"package": { | |
"atom": false, | |
"chef_ca": true, | |
"kdiff3": false, | |
"vagrant": false, | |
"virtualbox": false, | |
"git": false, | |
"gitextensions": false, |
OlderNewer