Skip to content

Instantly share code, notes, and snippets.

View kokoye2007's full-sized avatar

kokoye2007 kokoye2007

View GitHub Profile
@kokoye2007
kokoye2007 / convert-correct.py
Last active August 26, 2025 14:05
Keymagic for Normalization | Reorder
#!/usr/bin/env python3
import argparse
import pandas as pd
def to_codepoints(s: str) -> str:
"""Convert Myanmar text to Unicode codepoints with plus signs."""
return " + ".join(f"U{ord(ch):04X}" for ch in s)
def main():
parser = argparse.ArgumentParser(description="Convert Myanmar text pairs to Unicode codepoints mapping")
@kokoye2007
kokoye2007 / ABCD-Installation-Guide.md
Last active August 13, 2025 13:50
abcd-ukelele.keylayout

ABCD Alphabetical Keyboard - Installation Guide

A fun demonstration keyboard layout that arranges letters alphabetically instead of QWERTY!

📋 Overview

The ABCD keyboard layout replaces the traditional QWERTY arrangement with a simple alphabetical order:

  • Top Row: A B C D E F G H I J
  • Middle Row: K L M N O P Q R S
@kokoye2007
kokoye2007 / Eastern-Pwo-Karen_Keymagic.MD
Last active August 12, 2025 05:23
Eastern Pwo Karen KeyMagic layout with features

🎯 KeyMagic Layout Features:

Complete KLC Mapping:

  • Numbers → Myanmar digits (၁၂၃၄၅၆၇၈၉၀)
  • All consonants with proper shift mappings
  • Eastern Pwo Karen characters: ၮ (P+Shift), ၯ ([+Shift), ၰ (]+Shift)
  • Vowels and diacritics exactly as in Windows KLC

Smart Shortcuts:

@kokoye2007
kokoye2007 / keymagic-3_antivirus_status.md
Last active July 25, 2025 07:31
Keymagic 3 Antivirus False Positive Status

KeyMagic KeyMagic Antivirus False Positive Status

TL;DR: KeyMagic is safe! Some antivirus software incorrectly flags it due to the low-level system access required for keyboard input. We're actively working with vendors to resolve these false positives.

🛡️ Current Status Summary

x64 Version (v0.0.5)

  • File Name: KeyMagic3-Setup-0.0.5-x64.exe
  • Download: GitHub Release
  • File Hash: B9E68E1C5A222CFD7F977EF634036C78AC033ED26C0EF7A5255A53AC7972AF59
@kokoye2007
kokoye2007 / WestPwoKaren-pwo-keyboard.sh
Created July 19, 2025 18:36
pwo_MM - West Pwo Karen- iBus Keyboard Installer
#!/bin/bash
# West Pwo Karen
# pwo_MM
# kar
# maintainer: [email protected]
set -e
# Detect package manager
detect_pkg_mgr() {
@kokoye2007
kokoye2007 / kawthoolei-keyboard.sh
Created July 19, 2025 11:57
ksw_MM - Karen Kawthoolei - iBus Keyboard Installer
#!/bin/bash
# KNU Kawthoolei
# ksw_MM
# kar
# maintainer: [email protected]
set -e
# Detect package manager
detect_pkg_mgr() {
@kokoye2007
kokoye2007 / demo.html
Created May 5, 2025 01:59
squarespace_redirect
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="5; url=https://HEREIS_YOUR_URL/">
<title>Redirecting to Flowrshop</title>
<style>
.redirect-text {
font-family: sans-serif;
font-size: 18px;
@kokoye2007
kokoye2007 / vpnbook.sh
Created January 10, 2025 14:51
This Bash script automates connecting to free VPNBook servers by fetching available servers, extracting configurations, and handling authentication, allowing you to securely connect with just a few selections.
#!/bin/bash
# Ko Ko Ye - [email protected]
# vpnbook.com
# deepseek.com
# Function to check if a command exists
command_exists() {
command -v "$1" >/dev/null 2>&1
}
@kokoye2007
kokoye2007 / github-desktop-ubuntu.sh
Created November 12, 2024 02:43
Ubuntu Github-Desktop
wget -qO - https://apt.packages.shiftkey.dev/gpg.key | gpg --dearmor | sudo tee /usr/share/keyrings/shiftkey-packages.gpg > /dev/null
sudo sh -c 'echo "deb [arch=amd64 signed-by=/usr/share/keyrings/shiftkey-packages.gpg] https://apt.packages.shiftkey.dev/ubuntu/ any main" > /etc/apt/sources.list.d/shiftkey-packages.list'
sudo apt update && sudo apt install github-desktop