Skip to content

Instantly share code, notes, and snippets.

View weskerty's full-sized avatar
🌴
On Permanent Vacations

laWiskaPY weskerty

🌴
On Permanent Vacations
View GitHub Profile
@lucylow
lucylow / map.geojson
Last active April 5, 2026 17:17
intheskywithdiamonds.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@takase1121
takase1121 / readme.md
Last active June 30, 2026 17:19
Use adb functions with Nox Player

If you ever need to use adb with Nox Player, you would probably just do adb devices and realize Nox Player's VM is not there. Here is a really simple command you need to do to use ADB on a Nox Player's VM.

adb connect 127.0.0.1:62001

Thats it. Do that and you'll find the VM when doing adb devices.

I don't have adb yet! Should I download it now?

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

@Lykaksparsz
Lykaksparsz / arbi.bat
Created December 23, 2017 18:42
ArBi - Arch linux Installer For Windows
@REM http://bazaar.launchpad.net/~ubuntu-installer/wubi/trunk/view/head:/src/wubi/application.py#L252
@ECHO OFF
TITLE ArBi - Arch linux Installer For Windows
ECHO Downloading Wubi...
bitsadmin /transfer wubi "https://netcologne.dl.sourceforge.net/project/wubi/Wubi/Wubi-9.04.129/Wubi-9.04-rev129.exe" "%cd%\wubi.exe"
ECHO Enter the URL of Arch linux ISO (Downloadable)
SET /P ArchISOU=}
bitsadmin /transfer archiso "%ArchISOU%" "%cd%\arch.iso"
ECHO Launching... (NOTE: It dosen't install ubuntu, It's using the arguments to replace ISO and Distro.)
%cd%\wubi.exe --distro Arch --isopath %cd%\arch.iso
@Mygod
Mygod / export-ble-infos.py
Last active April 23, 2026 02:54
Export your Windows Bluetooth LE keys into Linux!
#!/usr/bin/python3
"""
Copyright 2021 Mygod
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
@steinwaywhw
steinwaywhw / One Liner to Download the Latest Release from Github Repo.md
Last active June 30, 2026 16:48
One Liner to Download the Latest Release from Github Repo
  • Use curl to get the JSON response for the latest release
  • Use grep to find the line containing file URL
  • Use cut and tr to extract the URL
  • Use wget to download it
curl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/37.0.2062.94 Chrome/37.0.2062.94 Safari/537.36
Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36
Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9
Mozilla/5.0 (iPad; CPU OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4
Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36
Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240
Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0)