I hereby claim:
- I am Pysis868 on github.
- I am pysis (https://keybase.io/pysis) on keybase.
- I have a public key whose fingerprint is B2C4 A98E A4D0 CBC5 CDD8 62C3 1A0D 40D7 9885 AFA4
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title></title> | |
| <!--[if lt IE 9]> | |
| <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| <![endif]--> | |
| </head> | |
| <body> |
| // early experiments with node had mysterious double requests | |
| // turned out these were for the stoopid favicon | |
| // here's how to short-circuit those requests | |
| // and stop seeing 404 errors in your client console | |
| var http = require('http'); | |
| http.createServer(function (q, r) { | |
| // control for favicon |
I hereby claim:
To claim this, I am signing this object:
| # Config for GNU GRand Unified Bootloader (GRUB) (2) | |
| # /boot/grub2/grub.cfg | |
| # or | |
| # /boot/grub/grub.cfg | |
| # Mostly only 'legacy' CSM/BIOS boot methods currently. | |
| # Unable to boot loop entries with Secure Boot | |
| # Notes: | |
| # Description: | |
| # This grub.cfg file was created by Lance http://www.pendrivelinux.com |
| ; Change your hotkey here | |
| ^1:: | |
| DetectHiddenWindows, on | |
| IfWinExist ahk_class Console_2_Main | |
| { | |
| IfWinActive ahk_class Console_2_Main | |
| { | |
| WinHide ahk_class Console_2_Main | |
| WinActivate ahk_class Shell_TrayWnd |
| require 'yaml' | |
| bot_data = { | |
| :presubs => [ | |
| ["dont", "dont"], | |
| ["youre", "you're"], | |
| ["love", "like"] | |
| ], | |
| :responses => { | |
| :default => [ |
| $.fn.reduce = [].reduce; | |
| var singleKorokSeedLocations = $('.leaflet-marker-icon > div.icon-BotW_Korok-Seeds'); | |
| var singleKorokSeedLocationsTotal = singleKorokSeedLocations.length; | |
| var multipleKorokSeedLocations = $('.leaflet-marker-icon > div > span'); | |
| var multipleKorokSeedLocationsTotal = multipleKorokSeedLocations.reduce(function(accumulator, currentElement){ | |
| return accumulator + parseInt(currentElement.innerText); | |
| }, 0); | |
| var korokSeedCount = singleKorokSeedLocationsTotal + multipleKorokSeedLocationsTotal; |
Checked out these links, tried the instructions.
| # -*- coding: utf-8 -*- | |
| import argparse, magic, re, os, math, glob, shutil | |
| ''' | |
| GENERATE SLIPPY MAP TILES | |
| Jeff Thompson | 2016 | jeffreythompson.org | |
| Takes a large image as the input, outputs map tiles | |
| at the appropriate size and file structure for use |