This is an input file to use with https://github.com/jonthesquirrel/utility to analyze if item order in CaptainSparklez's first attempt at the puzzle was correct
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
| (function(){ | |
| var elm = document.querySelectorAll('*'); | |
| function rand(min, max) { | |
| var range = max - min + 1; | |
| return Math.floor(Math.random()*range + min); | |
| } | |
| for (i = 0; i < elm.length; i++) { | |
| elm[i].style.transform = 'rotate(' + rand(0, 360) + 'deg)'; | |
| } |
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/sh | |
| base=$HOME/github/smartiq/wallpaper-splitter | |
| python3 $base/src/wallpaper-splitter.py -m $base/resources/monitor_defs/dual_4k.json "$1" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 "finders.h" | |
| #include <stdio.h> | |
| int main() { | |
| initBiomes(); | |
| LayerStack g = setupGenerator(MC_1_14); | |
| int64_t seed; |
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
| -- by jonthesquirrel 2020 | |
| -- gist.github.com/jonthesquirrel | |
| -- close trapdoor | |
| redstone.setOutput("top", true) | |
| -- config | |
| -- commented out lines are for text at | |
| -- top of screen | |
| --local text = "Welcome to jon's room!" |
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
| ffmpeg -i title.mp4 title/frame-%10d.png | |
| convert "title/*.png" -compose multiply -flatten title_multiply.png | |
| convert "title/*.png" -compose darken -flatten title_darken.png |
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
| << PolyhedronOperations` | |
| Geodesate[PolyhedronData["Icosahedron"], 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
| /tp @a[x=-30000000,y=-1000,z=-30000000,dx=60000000,dy=999,dz=60000000] ~ ~1 ~ |
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
| # move at 20m/s if standing on block | |
| execute as @a at @s if block ~ ~-1 ~ minecraft:magenta_glazed_terracotta[facing=south] run teleport @s ~ ~ ~-1 | |
| execute as @a at @s if block ~ ~-1 ~ minecraft:magenta_glazed_terracotta[facing=west] run teleport @s ~1 ~ ~ | |
| execute as @a at @s if block ~ ~-1 ~ minecraft:magenta_glazed_terracotta[facing=north] run teleport @s ~ ~ ~1 | |
| execute as @a at @s if block ~ ~-1 ~ minecraft:magenta_glazed_terracotta[facing=east] run teleport @s ~-1 ~ ~ | |
| # move at 20m/s if 2 above block | |
| execute as @a at @s if block ~ ~-2 ~ minecraft:magenta_glazed_terracotta[facing=south] run teleport @s ~ ~ ~-1 | |
| execute as @a at @s if block ~ ~-2 ~ minecraft:magenta_glazed_terracotta[facing=west] run teleport @s ~1 ~ ~ | |
| execute as @a at @s if block ~ ~-2 ~ minecraft:magenta_glazed_terracotta[facing=north] run teleport @s ~ ~ ~1 | |
| execute as @a at @s if block ~ ~-2 ~ minecraft:magenta_glazed_terracotta[facing=east] run teleport @s ~-1 ~ ~ |
NewerOlder