- 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/
| 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) | |
| } |
# Ubuntu
sudo apt-get install gpa seahorse
# MacOS with https://brew.sh/
| #!/bin/sh | |
| # SPDX-FileCopyrightText: 2017-2026 SanderTheDragon <sanderthedragon@zoho.com> | |
| # | |
| # SPDX-License-Identifier: MIT | |
| arch=$(dpkg --print-architecture) | |
| echo "Detected architecture: $arch" | |
| case "$arch" in |
Maintainer: Keil Miller Jr
How to create and manage an AUR package.
The following link should be read:
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
Last updated: July 22, 2025
| Endpoint Name | path |
|---|
| { | |
| "openapi": "3.1.0", | |
| "externalDocs": { | |
| "url": "https://github.com/komoot/photon" | |
| }, | |
| "info": { | |
| "title": "Komoot Photon", | |
| "version": "0.4.4", | |
| "license": { | |
| "name": "Apache-2.0", |
| const createDOMPurify = require("dompurify"); | |
| const { JSDOM } = require("jsdom"); | |
| const http = require("http"); | |
| const server = http.createServer((req, res) => { | |
| const window = new JSDOM("").window; | |
| const DOMPurify = createDOMPurify(window); | |
| const clean = DOMPurify.sanitize(`<a id="\x1b$B"></a>\x1b(B<a id="><img src=x onerror=alert(1)>"></a>`); | |
| res.statusCode = 200; |
Important: In this example i used the default tauri plugin template with desktop support (we will add dummy data for desktop, sorry was lazy)
To use this example you need to be familiar with rust, kotlin, android and for frontend bindings javascript .