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
| // ==UserScript== | |
| // @name Embed images on selected sites | |
| // @namespace 7d47d98c-acd8-434f-b058-72f9ce028241 | |
| // @version 0.1 | |
| // @description Turn image URLs into embeded images. | |
| // @author Print | |
| // @match *://forum.zerspanungsbude.net/* | |
| // @grant none | |
| // ==/UserScript== |
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
| input_device = "Logitech Gamepad F310" | |
| input_driver = "udev" | |
| input_vendor_id = 1133 | |
| input_product_id = 49693 | |
| input_a_btn = "1" | |
| input_reset_btn = "1" | |
| input_b_btn = "0" | |
| input_x_btn = "3" | |
| input_y_btn = "2" | |
| input_menu_toggle_btn = "2" |
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
| /* ==================================================================== | |
| * | |
| * Copyright (c) 2018 Juerge Liegner All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or without | |
| * modification, are permitted provided that the following conditions | |
| * are met: | |
| * | |
| * 1. Redistributions of source code must retain the above copyright | |
| * notice, this list of conditions and the following disclaimer. |
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 | |
| # Based on a test script from avsm/ocaml repo https://github.com/avsm/ocaml | |
| CHROOT_DIR=/tmp/arm-chroot | |
| MIRROR=http://archive.raspbian.org/raspbian | |
| VERSION=wheezy | |
| CHROOT_ARCH=armhf | |
| # Debian package dependencies for the host | |
| HOST_DEPENDENCIES="debootstrap qemu-user-static binfmt-support sbuild" |
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
| #include <avr/boot.h> | |
| void print_val(char *msg, uint8_t val) | |
| { | |
| Serial.print(msg); | |
| Serial.println(val, HEX); | |
| } | |
| void setup(void) | |
| { |
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
| -startup | |
| plugins/org.eclipse.equinox.launcher_1.3.201.v20161025-1711.jar | |
| --launcher.library | |
| plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.401.v20161122-1740 | |
| -product | |
| org.eclipse.epp.package.cpp.product | |
| --launcher.defaultAction | |
| openFile | |
| -showsplash | |
| org.eclipse.platform |
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
| DPDtables.sql: | |
| xsltproc xsdtosql.xsl ~/tmp/vitosoft/DPDefinitions.xsd | sed -e '/^\s*$$/d;s/^\s*CREATE/CREATE/g' > $@ | |
| all: clean DPDtables.sql | |
| clean: | |
| rm -f DPDtables.sql |
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 | |
| VITODIR="${HOME}/tmp/vitosoft/" | |
| VITOSOFTISO_FILE="${VITODIR}/Vitosoft300WithoutDocs.iso" # ${HOME}/Downloads/Vitosoft300WithoutDocs.iso" | |
| ### | |
| VITOSOFTISO_URL="https://update-vitosoft.viessmann.com/CurrentVersion/Vitosoft300WithoutDocs.iso" | |
| VITOSOFTISO_FILELEN=2818441216 | |
| VITOSOFTISO_LASTMODIFIED="Tue, 15 Dec 2015 15:54:01 GMT" |