BusyBox v1.25.1 () built-in shell (ash)
____ _ ____
/ __ \___ (_)__ ___ / __ \__ _ ___ ___ ____ _
/ /_/ / _ \/ / _ \/ _ \ / /_/ / ' \/ -_) _ `/ _ `/
\____/_//_/_/\___/_//_/ \____/_/_/_/\__/\_, /\_,_/
W H A T W I L L Y O U I N V E N T ? /___/
-----------------------------------------------------
Ω-ware: 0.1.5 b130
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
{ | |
"builders": [ | |
{ | |
"boot_command": [ | |
"<enter><wait><f6><esc><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>", | |
"<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>", | |
"<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>", | |
"<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>", | |
"/install/vmlinuz<wait>", | |
" auto<wait>", |
These are my actual configs.
To see stock tiltrotor 180 configs see this gist
I had to order a replacment flight controller. The replacement I ordered looked dirty and used. It also didn't sync with fly sky transmitter and spun motors on arm).
Changes from stock
- Do not spin motors
- iBus
- RX_PARALLEL_PWM
These are the configs from the flight controller. Replacement flight controllers are available from banggood
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
{ | |
"builders": [ | |
{ | |
"communicator": "winrm", | |
"floppy_files": [ | |
"scripts/windows/2012_r2/Autounattend.xml", | |
"scripts/windows/common/oracle.cer", | |
"scripts/windows/common/postunattend.xml", | |
"scripts/windows/common/PackerShutdown.bat", | |
"scripts/windows/common/nutanix.cer", |
Add-PSSnapin iControlSnapin;
Api docs https://devcentral.f5.com/wiki/iControl.APIReference.ashx
Authenticate to F5
if ( (Get-PSSnapin -Name iControlSnapin -ErrorAction SilentlyContinue) -eq $null ) {Add-PsSnapin iControlSnapin -ErrorAction Stop}
$F5Connected = ((Get-F5.iControl).initialized -and (Get-F5.iControl).ConnectionInfo.hostname -eq $LoadBalancer)
if ($F5Connected) {
Write-Verbose "F5 connection already initialized"
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
Write-Host "Initializing and formatting raw disks" | |
$disks = Get-Disk | where partitionstyle -eq 'raw' | |
## start at F: because D: is reserved in Azure and sometimes E: shows up as a CD drive in Azure | |
$letters = New-Object System.Collections.ArrayList | |
$letters.AddRange( ('F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z') ) | |
Function AvailableVolumes() { | |
$currentDrives = get-volume |
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
apt_repository 'artifactory' do | |
uri 'https://jfrog.bintray.com/artifactory-pro-debs' | |
distribution node['lsb']['codename'] | |
components ['main'] | |
key 'https://bintray.com/user/downloadSubjectPublicKey?username=jfrog' | |
action :add | |
end | |
package 'jfrog-artifactory-pro' do | |
action :install |