I'll search for xkb key names for those special characters.Based on the search results, here are the XKB keysym names for those characters:
| Character | XKB Keysym Name |
|---|---|
| ö | odiaeresis |
| ç | ccedilla |
| ğ | gbreve |
| ş | scedilla |
| -- Add checks for essential modules | |
| local ok_lspconfig, lspconfig = pcall(require, "lspconfig") | |
| if not ok_lspconfig then | |
| vim.notify("Error: `lspconfig` module not found. QML LSP setup aborted.", vim.log.levels.ERROR) | |
| return {} | |
| end | |
| local configs = require("lspconfig.configs") | |
| local util = require("lspconfig.util") |
| #!/usr/bin/env dash | |
| unused_packages_file="$HOME/gecici/unused_packages.txt" | |
| echo "do you want a clean $unused_packages_file file ? y/N" | |
| read -r clean_file | |
| if [ "$clean_file" = "y" ]; then | |
| echo "" >"$unused_packages_file" # clean up | |
| fi | |
| echo "deleting" |
| import os | |
| import requests | |
| from bs4 import BeautifulSoup | |
| from urllib.parse import urljoin, urlparse | |
| from concurrent import futures as cfutures | |
| def download_file(url, base_folder): | |
| try: | |
| response = requests.get(url) |
| (function() { | |
| // Check if there is an audio or video element on the page | |
| const mediaElements = document.querySelectorAll('audio, video'); | |
| if (mediaElements.length === 0) { | |
| console.log('No media elements found on this page.'); | |
| return; | |
| } | |
| // Create an AudioContext | |
| const audioContext = new (window.AudioContext || window.webkitAudioContext)(); |
| def float_to_binary_32(f): | |
| """ | |
| Converts a 32-bit floating-point number to its binary representation. | |
| Args: | |
| f (float): The floating-point number to encode. | |
| Returns: | |
| str: The binary representation of the floating-point number. | |
| """ |
| # env: | |
| # TERM: xterm-256color## Terminal window settings | |
| [window] | |
| dimensions = { columns = 84, lines= 22} | |
| padding= { x= 8, y = 8} | |
| # decorations: full | |
| startup_mode= "Windowed" |
| # this is a powershell script to uset it download as raw and execute with pwsh (powershell) | |
| # i found from internet | |
| # - link https://superuser.com/a/1209478 | |
| # not tested in win11 but i think it will work fine | |
| # ---- | |
| $signature = @" | |
| [DllImport("user32.dll")] | |
| public static extern bool SystemParametersInfo(int uAction, int uParam, ref |
| #!/bin/env python3 | |
| from cryptography.fernet import Fernet | |
| import os | |
| def generate_key(): | |
| # Generating a random 16-byte key (Base64-encoded) | |
| return Fernet.generate_key() | |
| def load_key(key_file_path): | |
| if os.path.exists(key_file_path): |
| from glob import glob | |
| import os | |
| from pathlib import Path | |
| from pprint import pprint | |
| import re | |
| class Counter : | |
| def __init__(self,name, start=0): | |
| self.name = name | |
| self.num = start |