Skip to content

Instantly share code, notes, and snippets.

View specious's full-sized avatar
💭
Getting back from hiatus

Ildar Sagdejev specious

💭
Getting back from hiatus
View GitHub Profile
@specious
specious / words.md
Created January 17, 2025 10:00
Clickable English vocabulary for the curious (magyarul beszélőknek)
@specious
specious / words.md
Created January 17, 2025 09:50
Clickable English vocabulary for the curious (για ελληνόφωνους)
@specious
specious / words.md
Created January 17, 2025 09:30
Clickable English vocabulary for the curious (suomenkielisille)
@specious
specious / words.md
Last active January 17, 2025 09:11
Clickable English vocabulary for the curious (links to Russian translations)
@specious
specious / config.fish
Last active December 30, 2024 06:46
A fancy two-line prompt for the fish shell (https://github.com/fish-shell/fish-shell) with git integration
function fish_prompt
# Set colors
set -l red (set_color red)
set -l blue (set_color blue)
set -l yellow (set_color yellow)
set -l normal (set_color normal)
# Get username, hostname, job count, and current directory
set -l user (whoami)
set -l host (hostname)
@specious
specious / array-dedup.js
Last active June 15, 2022 15:21
Deduplicate an array while constructing an index table to regenerate the original array
//
// Deduplicates an array and also returns a redundant array containing indices to the original data in the deduplicated array
//
function dedup(arr) {
let indexLookups = []
for (let i = 0; i < arr.length; i++) {
let idx = arr.indexOf(arr[i])
// Store a index reference to the first occurrence of the element in the possibly shrinking array that is being deduplicated
@specious
specious / imv_config
Created December 9, 2021 03:49
imv config
[binds]
<Ctrl+Shift+R> = exec cp "$imv_current_file" /tmp/vips-orig; exec vips rot /tmp/vips-orig "$imv_current_file" d90 && echo "rotated: $imv_current_file"
<Ctrl+Shift+X> = exec rm -v "$imv_current_file"; close
@specious
specious / sway-config
Created October 27, 2021 18:37
sway configuration
xwayland disabled
set $mod Mod4
# Main display (native resolution)
output eDP-1 scale 1
# Background wallpaper
output * bg /home/specious/Downloads/bg/vtop.png fill
@specious
specious / .config
Created July 16, 2021 16:48
Linux kernel configuration (Thinkpad X1 Carbon 8th Generation)
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 5.13.2 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 11.1.0"
CONFIG_CC_IS_GCC=y
CONFIG_GCC_VERSION=110100
CONFIG_CLANG_VERSION=0
CONFIG_AS_IS_GNU=y
CONFIG_AS_VERSION=23601