Skip to content

Instantly share code, notes, and snippets.

View lukeeey's full-sized avatar

Luke lukeeey

View GitHub Profile
{
"version": 1,
"questions": [
{
"id": 1,
"question": "The city of Maracaibo and its lake are in what country?",
"answers": {
"A": "Morocco",
"B": "Spain",
"C": "Venezuela",
@lukeeey
lukeeey / ps3 info.md
Last active February 18, 2021 10:09

Update check

GET http://fuk01.ps3.update.playstation.net/update/ps3/list/uk/ps3-updatelist.txt HTTP/1.1  
Host: fuk01.ps3.update.playstation.net  
Connection: Keep-Alive  
Accept-Encoding: identity  
User-Agent: PS3Update-agent/1.0.0 libhttp/1.0.0

Connection test

GET http://conntest.nintendowifi.net/ HTTP/1.1
Host: conntest.nintendowifi.net
Proxy-Authorization: Basic Og==
User-Agent: CTR AC/02
HTTP_X_GAMEID: 00002400
Content-Type: application/x-www-form-urlencoded
Connection: Close

Response

Browser stats

POST https://api.github.com/_private/browser/stats HTTP/1.1
Host: api.github.com
Connection: keep-alive
Content-Length: 6920
Origin: https://gist.github.com
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36
Content-Type: application/json
Accept: /
DNT: 1

Keybase proof

I hereby claim:

  • I am lukeeey on github.
  • I am lukeeey (https://keybase.io/lukeeey) on keybase.
  • I have a public key ASCswUyQMBNZ2BnXNc4O3lBcKFHHs6Yi3FhM9NTMsOzrOQo

To claim this, I am signing this object:

@lukeeey
lukeeey / Name Change.md
Created April 1, 2018 01:18
About the name change

Featured Servers

POST https://xforge.xboxlive.com/v1/catalog/items/search/ HTTP/1.1
Accept: */*
Accept-Language: en-US
Cache-Control: public
Content-Type: application/json
User-Agent: cpprestsdk/2.9.0
Accept-Encoding: gzip, deflate, br
Host: xforge.xboxlive.com

So, i want to create a theme engine for non rooted (and rooted) Android devices. Some methods will include:

Root

  • Xposed modules
  • Patching system apps (however this is dangerous)

Non root

  • Using the devices built in theme manager if it exists
  • Creating a libary for apps to include which registers a broadcast receiver to receive the theme info from my theme app
  • Patch the app like Lucky Patcher (however this wont work for system apps without root)

Minecraft Launch Intents

Annoyingly, you can't click these links in this gist because github doesnt recognize them as actual valid links. You cant paste it into a browser address bar either, so create a bookmark with the link and then click that!

edu

Opens Minecraft in Edu Mode. This is the real Education Edition!

Link: minecraft:?edu=1

addExternalServer

package net.minecraft.server;
import java.util.Random;
public class BlockDragonEgg extends Block {
public BlockDragonEgg() {
super(Material.DRAGON_EGG);
this.a(0.0625F, 0.0F, 0.0625F, 0.9375F, 1.0F, 0.9375F);
}