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

@hackermondev
hackermondev / api endpoints.md
Last active September 17, 2025 14:03
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 September 3, 2025 14:01
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 September 5, 2025 16:19
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)
}