All blueprints are RHD (right-hand drive)
Modules are 42x42 (big electric poles overlap on neighboring modules)
Included blueprint books:
- MRS - 2 Lane - RHD - 20 blueprints
- MRS - 2 Lane Single - RHD - 34 blueprints
- MRS - 4 Lane - RHD - 25 blueprints
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # All Vagrant configuration is done below. The "2" in Vagrant.configure | |
| # configures the configuration version (we support older styles for | |
| # backwards compatibility). Please don't change it unless you know what | |
| # you're doing. | |
| Vagrant.configure("2") do |config| | |
| # The most common configuration options are documented and commented below. | |
| # For a complete reference, please see the online documentation at |
| Use this as an example on how to start the virtual console without the need of Java Web Start or accessing it from the web interface. | |
| You can use the user and password that you use for the web interface. | |
| You need an old JRE... I used 1.7.0_80 from the Server JRE package, also I have tested successfully 1.7.0_79 with MacOS. | |
| You don't need to install it, just extract it or copy the files in "jre" folder. | |
| Open the viewer.jnlp file that you get by launching the virtual console from the web interface with a text editor. | |
| Note the urls to the jar files. Download the main jar file avctKVM.jar and the libs for your operating system and architecture. | |
| Extract the dlls (.so Linux, .jnilib MacOS) from the jar libs. |
| ssh_client_ip=`echo $SSH_CLIENT | awk '{ print $1}'`; | |
| ipfw -q add 00431 allow tcp from $ssh_client_ip to me 3306 in via em0 keep-state |
| #!/bin/bash | |
| # iPXE build depends | |
| apt-get install -y liblzma-dev git build-essential | |
| # clone iPXE | |
| [ ! -d ./ipxe ] && git clone http://git.ipxe.org/ipxe.git | |
| cd ipxe/src | |
| make clean | |
| sed -i 's/#undef\tDOWNLOAD_PROTO_HTTPS/#define\tDOWNLOAD_PROTO_HTTPS/' config/general.h |
| #!/bin/sh | |
| usage() { | |
| echo "DNS Master DynDNS update script. Updates A and/or AAAA records with public IPs that you have on your interfaces." | |
| echo "Usage: $0 -h hostname[,hostname…] -u username -p password" | |
| } | |
| if [ $# -eq 0 ]; then usage; exit 1; fi | |
| USERNAME="" |
| #!/bin/bash | |
| # CHANGE THESE | |
| auth_email="user@example.com" | |
| auth_key="c2547eb745079dac9320b638f5e225cf483cc5cfdda41" # found in cloudflare account settings | |
| zone_name="example.com" | |
| record_name="www.example.com" | |
| # MAYBE CHANGE THESE | |
| ip=$(curl -s http://ipv4.icanhazip.com) |
| #!/usr/bin/env python | |
| # | |
| # Calculates the total number of Science Packs needed for research | |
| # in the game Factorio (www.factorio.com). | |
| # | |
| # Created by Gandalfx | |
| # https://gandalfx.github.com | |
| sciences = { | |
| function transfer | |
| if test (count $argv) -eq 0 | |
| echo "No arguments specified. Usage:\necho transfer /tmp/test.md\ncat /tmp/test.md | transfer test.md" | |
| return 1 | |
| end | |
| ## get temporarily filename, output is written to this file show progress can be showed | |
| set tmpfile ( mktemp -t transferXXX ) | |
| ## upload stdin or file |
| ## | |
| # WHOIS servers for new TLDs (http://www.iana.org/domains/root/db) | |
| # Current as of 2017-12-10 UTC | |
| ## | |
| \.aarp$ whois.nic.aarp | |
| \.abarth$ whois.afilias-srs.net | |
| \.abbott$ whois.afilias-srs.net | |
| \.abbvie$ whois.afilias-srs.net | |
| \.abc$ whois.nic.abc |