Skip to content

Instantly share code, notes, and snippets.

View Vexcited's full-sized avatar
💻
Reversing

Mikkel ALMONTE--RINGAUD Vexcited

💻
Reversing
View GitHub Profile
@luffyxddev
luffyxddev / android_counter_widget.md
Last active December 19, 2024 19:13
Android Counter Widget - Example

Android Counter Widget - Example

Important: In this example i used the default tauri plugin template with desktop support (we will add dummy data for desktop, sorry was lazy)

Need to Know

To use this example you need to be familiar with rust, kotlin, android and for frontend bindings javascript .

Getting Started

@Vexcited
Vexcited / README.md
Last active August 10, 2024 14:34
Read PRONOTE encrypted/compressed requests right into the browser

When trying to understand PRONOTE requests, we most of the time open the DevTools and try to read directly the response in the "Network" tab.

Even though, some instances have encrypted and/or compressed data in the payload/response.

image

So here's a solution to read these data, right into your browser.

Drop this function into your browser console when you're on the Pronote page :

@hackermondev
hackermondev / api endpoints.md
Last active May 3, 2025 16:46
discord api endpoints

List of every single Discord API endpoint used on the client

Last updated: August 16, 2023

https://discord.com/api/v9

Endpoint Name path
@mattitanskane
mattitanskane / hidedock.md
Last active May 8, 2025 06:26
How to hide the Dock on MacOS

I never use the Dock and all it does for me is come in the way when I'm resizing windows or clicking on stuff I can't access using just my keyboard.

Here's a way to hide the Dock so it doesn't get in the way anymore.

Run the following commands in the terminal.

# Hide Dock
defaults write com.apple.dock autohide -bool true && killall Dock
defaults write com.apple.dock autohide-delay -float 1000 && killall Dock
@SanderTheDragon
SanderTheDragon / postman-deb.sh
Last active April 22, 2025 18:51
A shellscript to create a Postman .deb file, for simple installation on Debian-based Linux distro's. Also creates a .desktop file.
#!/bin/sh
# SPDX-FileCopyrightText: 2017-2024 SanderTheDragon <[email protected]>
#
# SPDX-License-Identifier: MIT
arch=$(dpkg --print-architecture)
echo "Detected architecture: $arch"
case "$arch" in
@ankurk91
ankurk91 / github_gpg_key.md
Last active April 14, 2025 13:42
Signing git commits using GPG (Ubuntu/Mac)

Github : Signing commits using GPG (Ubuntu/Mac) 🔐

  • Do you have an Github account ? If not create one.
  • Install required tools
  • Latest Git Client
  • gpg tools
# Ubuntu
sudo apt-get install gpa seahorse
# MacOS with https://brew.sh/
@ericdke
ericdke / countryFlag.swift
Created May 22, 2015 18:31
Transform a country acronym to an emoji flag
func flag(country: String) -> String {
let base = 127397 // Root Unicode flags index
var usv = String.UnicodeScalarView() // Prepare a Unicode string
for i in country.utf16 { // Loop over the country acronym letters
let inc = Int(i) // The letter's ASCII index
let code = UnicodeScalar(base + inc) // Shift the letter index to the flags index
usv.append(code) // Append the grapheme to the Unicode string
}
return String(usv)
}