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 | |
| echo "Clearing executable bit for iTunes binary" | |
| sudo chmod ugo-x /Applications/iTunes.app/Contents/MacOS |
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
| var supports3DTransforms = document.body.style['webkitPerspective'] !== undefined || | |
| document.body.style['MozPerspective'] !== undefined; | |
| function linkify( selector ) { | |
| if( supports3DTransforms ) { | |
| var nodes = document.querySelectorAll( selector ); | |
| for( var i = 0, len = nodes.length; i < len; i++ ) { | |
| var node = nodes[i]; |
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
| http://www.falstad.com/ripple/Ripple.html | |
| the format for the import/export from text | |
| $ 1 <resolution> <A> ? <wave type> <brightness> <scale factor> | |
| // World start, each side is <resolution> units long | |
| // <resolution>/<A> ~= 8 | |
| // 65.2*<scale factor> ~= world side length | |
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
| import net.minecraftforge.gradle.user.TaskSourceCopy | |
| import net.minecraftforge.gradle.user.patcherUser.forge.ForgeExtension | |
| import net.minecraftforge.gradle.user.patcherUser.forge.ForgePlugin | |
| import org.gradle.api.internal.HasConvention | |
| import org.gradle.internal.impldep.bsh.commands.dir | |
| import org.gradle.plugins.ide.idea.model.IdeaLanguageLevel | |
| import org.jetbrains.kotlin.contracts.model.structure.UNKNOWN_COMPUTATION.type | |
| import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformJvmPlugin | |
| import org.jetbrains.kotlin.gradle.plugin.KotlinSourceSet | |
| import org.jetbrains.kotlin.gradle.tasks.KotlinCompile |
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
| #!/usr/bin/env python | |
| # copy into the gimp console until I make it any more proper | |
| unifont_image = gimp.image_list()[0] | |
| unifont_main_layer = unifont_image.layers[0] | |
| print("Converting to RGB...") | |
| pdb.gimp_image_convert_rgb(unifont_image) | |
| pdb.gimp_image_resize(unifont_image, 4096, 4096, -32, -64) |
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
| @ durak > Also using Arch in an office sounds like an IT disaster. | |
| > Just wait until pacman breaks something right before a major deadline. | |
| > Also they can't make anyone set up Arch on their own time, can they? | |
| > So they're just wasting company money. | |
| > It'd be cheaper to buy everyone MacBooks than pay engineers for a week to get Arch all set up | |
| @ Jay > yeah it actually would | |
| > hell, windows 98 would be more safe than arch | |
| > or any other linux distro | |
| @ veksen > It's no mystery that companies just handout Macbooks | |
| > shit just works |
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
| // take every occurance of `zz` and replace it with the entirety of the bee | |
| // movie script, which every non-alphanumeric character replaced with `_` | |
| // the end result is below, which compiles and runs despite the ludicrous names | |
| public class BeeMovieAllDay { | |
| public static void main(String[] zz) { | |
| BeeMovieAllDay zz1 = new BeeMovieAllDay(); | |
| zz1.zz3(); | |
| } |
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
| // ==UserScript== | |
| // @name Auto Twitch Bonus | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.1 | |
| // @description Automatically collect channel points | |
| // @author thecodewarrior | |
| // @match https://www.twitch.tv/* | |
| // @downloadURL https://gist.githubusercontent.com/thecodewarrior/00e5654956eee23fcc2e8baae634ad2c/raw/AutoTwitchBonus.js | |
| // ==/UserScript== |