This file contains 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
<%- @acl_policies.each do |policy| -%> | |
<%= YAML.dump(policy) %> | |
<%- end -%> |
This file contains 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
<joblist> | |
<job> | |
<context> | |
<options preserveOrder='true'> | |
<option enforcedvalues='true' name='repository' required='true' value='releases' values='releases,snapshots'> | |
<description>Nexus repository name</description> | |
</option> | |
<option name='version' required='true' value='LATEST'> | |
<description>Nexus artifact version</description> | |
</option> |
This file contains 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
package demo; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
import org.springframework.stereotype.Controller; | |
import org.springframework.web.bind.annotation.PathVariable; | |
import org.springframework.web.bind.annotation.RequestMapping; | |
import org.springframework.web.bind.annotation.RequestMethod; | |
import org.springframework.web.bind.annotation.RestController; |
This file contains 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
group = "foo" | |
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.8.RELEASE") | |
} | |
} |
This file contains 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
# Reverse lookup | |
lala=<%= scope.function_foobar(['192.168.0.0/24']) %> |
This file contains 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
{ | |
"variables": { | |
"do_api_key": "", | |
"do_client_id": "", | |
"do_droplet_name": "trusty-x86-64-{{timestamp}}", | |
"do_private_networking": "false", | |
"do_image": "ubuntu-14-04-x64", | |
"do_region": "ams2", | |
"do_size": "512MB" | |
}, |
This file contains 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
#/etc/udev/rules.d/70-persistent-usb-rs232.rules | |
KERNEL=="ttyUSB*", KERNELS=="1-1.3.1.1", SYMLINK="ttySerialPort1" | |
KERNEL=="ttyUSB*", KERNELS=="1-1.3.2", SYMLINK="ttySerialPort2" | |
KERNEL=="ttyUSB*", KERNELS=="1-1.3.1.2", SYMLINK="ttySerialPort3" | |
KERNEL=="ttyUSB*", KERNELS=="1-1.3.3", SYMLINK="ttySerialPort4" | |
KERNEL=="ttyUSB*", KERNELS=="1-1.3.1.3", SYMLINK="ttySerialPort5" | |
KERNEL=="ttyUSB*", KERNELS=="1-1.3.4", SYMLINK="ttySerialPort6" | |
KERNEL=="ttyUSB*", KERNELS=="1-1.3.1.4", SYMLINK="ttySerialPort7" |
This file contains 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
#/etc/wpa_supplicant/wpa_supplicant.conf | |
ctrl_interface=/var/run/wpa_supplicant | |
eapol_version=1 | |
ap_scan=1 | |
network={ | |
ssid="TheSSIDOfYourWlan" | |
scan_ssid=1 | |
proto=RSN | |
key_mgmt=WPA-PSK |