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 July 10, 2025 03:10
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

@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active December 12, 2025 23:04
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under Discover -> Quests
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@hackermondev
hackermondev / api endpoints.md
Last active November 26, 2025 13:34
discord api endpoints

List of every single Discord API endpoint used on the client

Last updated: July 22, 2025

https://discord.com/api/v9

Endpoint Name path
@mattitanskane
mattitanskane / hidedock.md
Last active October 18, 2025 19:53
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 October 21, 2025 20:04
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 August 6, 2025 12:14
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)
}