View goth ham pun
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
INT. BATMAN'S PALACE - DAY | |
Batman is sitting in his throne room, looking out the window. Suddenly, he hears a noise and looks over to see a small, black object flying towards him. He realizes it's a bat and tries to shoo it away, but it keeps coming towards him. | |
Suddenly, the bat changes course and starts flying around the room in a weird pattern. Batman gets up and tries to follow it, but it's too fast. Suddenly, it stops and hangs upside down from the chandelier. | |
Batman: What the hell do you want? | |
The bat just hangs there, eerily silent. |
View story 1
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
The scene is set at the batcave. Batman is preparing to go out on patrol. | |
Alfred: Master Bruce, are you sure you don't want me to go with you? | |
Batman: No, Alfred. I have to do this alone. | |
Alfred: But sir, with all the recent attacks on you, I don't think it's wise for you to go out alone. |
View gist:e2398fba3e8519c411a93b1192ff24bf
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
# Maintainer: Salamandar <felix@piedallu.me> | |
pkgname=prusa-slicer-git | |
pkgver=2.6.0.alpha0.r149.g60cd7d456 | |
pkgrel=1 | |
pkgdesc='G-code generator for 3D printers (RepRap, Makerbot, Ultimaker etc.)' | |
arch=('i686' 'x86_64' 'armv6' 'armv6h' 'armv7h') | |
url='https://github.com/prusa3d/PrusaSlicer' | |
license=('AGPL3') | |
makedepends=( |
View PKGBUILD
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
# Maintainer: Salamandar <felix@piedallu.me> | |
pkgname=prusa-slicer-git | |
pkgver=2.6.0.alpha0.r149.g60cd7d456 | |
pkgrel=1 | |
pkgdesc='G-code generator for 3D printers (RepRap, Makerbot, Ultimaker etc.)' | |
arch=('i686' 'x86_64' 'armv6' 'armv6h' 'armv7h') | |
url='https://github.com/prusa3d/PrusaSlicer' | |
license=('AGPL3') | |
makedepends=( |
View Start.gcode
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
G90 ; use absolute coordinates | |
M83 ; extruder relative mode | |
M104 S120 ; set temporary nozzle temp to prevent oozing during homing and auto bed leveling | |
M140 S[first_layer_bed_temperature] ; set final bed temp | |
M190 S[first_layer_bed_temperature] ; wait for bed temp to stabilize | |
G28 ; home all axis | |
; UBL bed leveling | |
;G29 P1 | |
;G29 P3 |
View gist:22e11c768e056940545304b820d13ba9
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
proxy_http_version 1.1; | |
proxy_cache_bypass $http_upgrade; | |
# Proxy headers | |
proxy_set_header Upgrade $http_upgrade; | |
proxy_set_header Connection "upgrade"; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header X-Forwarded-Proto $scheme; |
View listener.sh
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/bash | |
ROOT=$1 | |
PORT=$2 | |
DELETE=$3 | |
free_space () { | |
FREE_SPACE=$(df $1 | awk '{print $4}' | tail -n 1) | |
#echo $FREE_SPACE | |
echo $(($FREE_SPACE/1048576)) |
View sender.sh
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/bash | |
PWD=$1 | |
echo "Monitoring $PWD" | |
cd $PWD | |
DEST=$2 | |
PORT=$3 | |
DELETE=$4 |
View send.sh
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/bash | |
PWD=$1 | |
echo "Monitoring $PWD" | |
cd $PWD | |
DEST=$2 | |
PORT=$3 |
View listen.sh
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/bash | |
ROOT_DIR=$1 | |
DRIVE_NUM=$2 | |
PORT=$3 | |
printf -v DNAME "%02d" $DRIVE_NUM | |
cd $ROOT_DIR/$DNAME | |
echo Listening in $ROOT_DIR/$DNAME |
NewerOlder