fandom.com##.page__right-rail
fandom.com##.global-navigation
fandom.com##.mcf-wrapper
fandom.com##.global-footer
fandom.com##.resizable-container:style(max-width: inherit !important; width: 95% !important;)
fandom.com##.WikiaBarWrapper
fandom.com##.YkHbK.sc-bQtKYq
fandom.com##.is-visible.fandom-sticky-header:style(left: 0 !important;)
fandom.com##.main-container:style(margin-left: 0 !important; width: 100% !important;)
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
| # Requires administrator privileges | |
| for l in `git ls-files -s | awk '/120000/{print $4}'`; do | |
| git checkout -- $l # Restore original file | |
| t=$(cat $l) # Grab the contents of the file (target) | |
| rm $l # Delete the file | |
| echo "Link: $l <==> $t" | |
| cmd /c mklink ${l//\//\\} ${t//\//\\} # Create a symlink in its place | |
| done |
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
| -- Made by m-doescode | |
| local w = 16 | |
| function dispchar(i,bg,fg) | |
| local x = i % w + 1 | |
| local y = math.floor(i / w) + 1 | |
| local char = string.char(i) | |
| if bg then |
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 m-doescode | |
| local path = ... | |
| local program = shell.resolveProgram(path) | |
| if program == nil then | |
| error("No such program: " .. path,0) | |
| end |
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 pygame, sys | |
| from pygame.locals import * | |
| from time import sleep | |
| from math import floor | |
| import colorsys | |
| sx = floor(500 / 2 - 50) - 100 | |
| sy = floor(500 / 2 - 50) - 200 | |
| dx = 1 | |
| dy = 1 |