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
#!/bin/zsh | |
set -e | |
# This script assumes the following folder structure: | |
# . | |
# ├── .current_version | |
# ├── Configurations <- clone of https://github.com/MarlinFirmware/Configurations | |
# ├── Marlin <- clone of https://github.com/MarlinFirmware/Marlin | |
# ├── Overrides <- Configuration.h and Configuration_adv.h with the overriding values (all lines without any indentation) |
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
import Foundation | |
// MARK: - Vehicle.swift | |
class Vehicle { | |
let name: String | |
init(name: String) { | |
self.name = name | |
} | |
} |
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
from selenium import webdriver | |
from selenium.webdriver.firefox.options import Options | |
import sys | |
import time | |
# Get the url and name | |
if len(sys.argv) != 3: | |
print("Usage: " + sys.argv[0] + " <File> <URL>") | |
sys.exit() |
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
# Mineralis Ore Dictionary | |
# Location: scripts/Mineralis.zs | |
<ore:mineralisEntropyInfused>.add(<gregtech:ore_terra_infused_0:0>); | |
<ore:mineralisOrderInfused>.add(<gregtech:ore_ordo_infused_0:0>); | |
<ore:mineralisIgnisInfused>.add(<gregtech:ore_aqua_infused_0:0>); | |
<ore:mineralisAquaInfused>.add(<gregtech:ore_aqua_infused_0:0>); | |
<ore:mineralisAerInfused>.add(<gregtech:ore_aer_infused_0:0>); | |
<ore:mineralisTerraInfused>.add(<gregtech:ore_terra_infused_0:0>); | |
<ore:mineralisAquamarine>.add(<astralsorcery:blockcustomsandore:0>); |
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
-- This script displays the information sent by this script: https://gist.github.com/iComputerfreak/077d9c28e0c99f00453d0dc1a6fc8f07 | |
--[[ | |
AN UPDATED VERSION OF THIS SCRIPT IS AVAILABLE HERE: https://github.com/iComputerfreak/OpenComputers-Programs/tree/master/GeneratorControl | |
]] | |
local event = require("event") | |
local term = require("term") | |
local component = require("component") | |
local m = component.modem |
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
-- This script requires the BatteryBufferDriver mod to work: https://github.com/iComputerfreak/BatteryBufferDriver | |
--[[ | |
AN UPDATED VERSION OF THIS SCRIPT IS AVAILABLE HERE: https://github.com/iComputerfreak/OpenComputers-Programs/tree/master/GeneratorControl | |
]] | |
-- To display the charge values sent by this script, use the chargeDisplay.lua script | |
-- The script can be found here: https://gist.github.com/iComputerfreak/2821836ed3b29a3b1ed2c76c2570b16e |
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
#Configuration file for adding microblock materials for aesthetic blocks added by mods | |
#Each line needs to be of the form <name>:<meta> | |
#<name> is the registry key of the block/item enclosed in quotes. NEI can help you find these | |
#<meta> may be ommitted, in which case it defaults to 0, otherwise it can be a number, a comma separated list of numbers, or a dash separated range | |
#Ex. "dirt" "minecraft:planks":3 "iron_ore":1,2,3,5 "ThermalFoundation:Storage":0-15 | |
"minecraft:concrete":0-15 | |
"minecraft:bone_block" | |
"minecraft:white_glazed_terracotta" | |
"minecraft:orange_glazed_terracotta" | |
"minecraft:magenta_glazed_terracotta" |
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
body { | |
font-family: "Helvetica Neue", "Arial"; | |
} | |
.item { | |
font-family: "SF Mono", "Menlo", "Courier New"; | |
} | |
table { | |
border-collapse: collapse; |
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
// | |
// SettingsViewController.h | |
// HFG Vertretungsplan | |
// | |
// Created by Jonas Frey on 13.05.14. | |
// Copyright (c) 2014 Jonas Frey. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> |