Skip to content

Instantly share code, notes, and snippets.

View downthecrop's full-sized avatar

downthecrop downthecrop

View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>對戰紀錄</title>
<link rel="stylesheet" href="https://cdngarenanow-a.akamaihd.net/gxx/mobile/web/lib/bootstrap/3.3.5/bootstrap.min.css">
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>LOL小幫手</title>
<link rel="stylesheet" href="https://cdngarenanow-a.akamaihd.net/gxx/mobile/web/lib/bootstrap/3.3.5/bootstrap.min.css">
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>對戰紀錄</title>
<link rel="stylesheet" href="https://cdngarenanow-a.akamaihd.net/gxx/mobile/web/lib/bootstrap/3.3.5/bootstrap.min.css">
@downthecrop
downthecrop / about.md
Created February 20, 2022 03:34
2009scape Mobile Talk

Basics

What is Pojav Launcher

A launcher for minecraft JAVA edition for Android & iOS

This will only cover Android but you could do this with iOS however it requires libhooker (root)

---- JVM Implementation

@downthecrop
downthecrop / PingInfo.txt
Last active February 6, 2022 04:46
best League of Legends server to play from Bangkok Thailand
bangkok to seoul
3,720 km
expected ping 140
bangkok to shenze
1,731 km
expected ping 56
bangkok to taipei
2,533 km
@downthecrop
downthecrop / January.md
Last active December 31, 2021 01:59
Preview

January Update

Happy New Year to everyone in the 2009Scape community. The 2009Scape project has been seeing a lot of activity with new code and Request for Comment polls for content revisions and changes. Make sure you join the Discord to stay up to date and cast your votes!

Hardcore Ironman Rework

Our community has voted to implement some changes to the Hardcore Ironman (HCIM) game mode.

These changes only apply to hardcore ironmen created AFTER December 15th 2021.

New HCIM will get a truly single life experience. Death is permanent. There is NO continuing as a normal ironman. #227

  • On death, your account is completely wiped.
  • Hardcore Ironmen are the only account type permitted to play on 10x experience.
@downthecrop
downthecrop / fishies.js
Last active December 6, 2021 07:25
very interesting!
const days = 256;
const cycle = 6;
// Build a new 9 Length Array.
// Each array element will represent all fish
// with that remaining timer
const fishes = Array(cycle + 3).fill(0);
// load inputs into the index representing their timer
inputs.forEach(_ => fishes[_]++);
@downthecrop
downthecrop / dokuwikiscape.css
Created November 30, 2021 22:07
CSS for dokuwiki
.wrapper {
background-image: url(https://i.imgur.com/JO6Mhe0.png), url(https://i.imgur.com/vXxk5tT.png), url(https://i.imgur.com/L64cZvU.png);
background-position: top, bottom, center;
background-repeat: no-repeat, no-repeat, repeat-y;
width:754px;
margin:auto;
}
#dokuwiki__content{
margin: auto;
@downthecrop
downthecrop / Cropcraft.py
Created July 27, 2021 13:35
infinite world gen but still a mess
import eel,math,pyglet,time,threading
from pyglet.gl import *
from pyglet.window import *
from pyglet import image
from random import randrange
FACES=[(0,1,0),(0,-1,0),(-1,0,0),(1,0,0),(0,0,1),(0,0,-1),(0,0,0)]
TEX=0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1
CURRENTBLOCK = "dirt"
TEXTURES = {}
@downthecrop
downthecrop / Cropcraft.py
Last active July 23, 2021 07:37
Cropcraft with real neighbor checking!
import eel,math,pyglet,time
from pyglet.gl import *
from pyglet.window import *
from pyglet import image
FACES=[(0,1,0),(0,-1,0),(-1,0,0),(1,0,0),(0,0,1),(0,0,-1),(0,0,0)]
TEX=0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1
@eel.expose
def say_hello_py(self):