Skip to content

Instantly share code, notes, and snippets.

View Limitinit's full-sized avatar
🌴
https://media.tenor.com/CkG4SiojzREAAAAM/slip-code.gif

�̪̜̳̣͏�̡͚̺͖̣͈̬̥̀ͮ͂͋ͨ́̄͑͌́̍̊̊̆̋̄̀͠͠͠͠҉̴̷̨̡̢̢́̀͘͢J͊̊ͩ̂ͬ̎́͑̋ͬ͒͆ͯ̌ͭ̋̿ͦͩ҉̶̛̕͘̕͟͏̷̵̵̢̀̀͘͜͡͝͡K̘̬̮̓ͨ̔͗̔͑͘͞͏̨̡͢͢͜͝͝͝o̴̷̞̰̩̣̩͚̻̞̩̱̝̲̦ͩͬ͒͑̉ͤ̊̐͛ͥ̽̚͝͡͠R̷̴̡̨̛͇̖̺͚̲̞̠̜̳͚͊ͩͣ̌ͪ̔ͯ̂́̀͘͘͟͟͝͝ͅḛ̗̓ͥ͐͐ͫ͌̃̏́ͤ1̴̴̸̴̴̨̨͆̑ͦͭ͆͑͛͋̑ͯ̕̕͟͟͡͡3͕͙̜̭̥̞̜͙̖̬̯̻͚̮͎͙̼̔ͯͪͅ͏̵̵̢̧́͜͢͟͡҉̢́́̕͢ Limitinit

🌴
https://media.tenor.com/CkG4SiojzREAAAAM/slip-code.gif
  • WiReDLiFeDiText
  • Greeneville ,TN
  • X @wds321321
View GitHub Profile
0xdbe
10gen-csharp-driver
128bit
12factor
16-bit
1wire
2048
2-3-4-tree
23andme-api
2-3-tree
@Limitinit
Limitinit / helix-gist.rs
Created August 21, 2023 23:00
helix-gist
#![allow(improper_ctypes_definitions)]
use futures::lock::Mutex;
use helix_term::commands::{paste_impl, Context, MappableCommand, Paste};
use helix_view::current;
use lazy_static::lazy_static;
use std::sync::Arc;
use helix_term::tokio;
// in another file, i copied the `app.rs` from https://github.com/cormacrelf/dark-notify/blob/master/src/app.rs
#!/bin/bash
# bash generate random alphanumeric string
#
# bash generate random 32 character alphanumeric string (upper and lowercase) and
NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
# bash generate random 32 character alphanumeric string (lowercase only)
cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 32 | head -n 1
@Limitinit
Limitinit / chameleon.py
Created July 27, 2023 13:27
ChameLeon
import re
camel = 'ChameLeon'
snake = re.sub(r'(?<!^)(?=[A-Z])', '_', camel).lower()
print(snake)
@Limitinit
Limitinit / Makefile.mk
Created July 25, 2023 00:53 — forked from ixsiid/Makefile.mk
Raspberry Piに外部スイッチを扱うドライバを実装する ref: https://qiita.com/ixsiid/items/6389e71da5cb15ff7a98
CFILES = driver.c
obj-m := mkt.o
mkt-objs := $(CFILES:.c=.o)
ccflags-y += -std=gnu99 -Wall -Wno-declaration-after-statement
all:
make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) modules
clean:
@DivyaRustagi10
DivyaRustagi10 / en_hi_sample_10.tsv
Last active July 9, 2023 18:45
Sample Datasets - CCAligned English-Hindi/Tamil Web-Document Pairs
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 5 columns, instead of 3. in line 1.
Domain Source_URL Source_Content Target_URL Target_Content
merchantships.info http://merchantships.info/index.php?cat=22&page=3 MERCHANTSHIPS.info - Home > Vessel Types > Container Carriers|Home|Album List|Login|Contact by Email|Subscribe by Email|Subscribe by RSS|Quick Search|Main Menu|Alphabetical Index|Companies|Vessel Types|Album List|Last uploads|Most viewed|Top rated|Search|Links|Number of visitors|Home > Vessel Types > Container Carriers|OPDR Cadiz|2 files, last one added on 11 Jun 2009|OOCL Seattle|2 files, last one added on 23 Oct 2007|Os Bodrum|2 files, last one added on 10 Jul 2007|Reecon Wolf|1 files, last one added on 10 Sep 2009|Rialto|1 files, last one added on 10 Jul 2007|Ruiloba|1 files, last one added on 17 Jun 2007|San Francisco Express|2 files, last one added on 11 Sep 2007|Santa Bianca|5 files, last one added on 29 May 2012|Santiago Express|1 files, last one added on 15 Oct 2009|SCI Mahima|1 files, last one added on 10 Jul 2007|Sea-Land Quality|1 files, last one added on 10 Jul 2007|Sisu
@Limitinit
Limitinit / wget
Created January 10, 2023 12:20 — forked from bueckl/wget
Wget examples
#Spider Websites with Wget – 20 Practical Examples
Wget is extremely powerful, but like with most other command line programs, the plethora of options it supports can be intimidating to new users. Thus what we have here are a collection of wget commands that you can use to accomplish common tasks from downloading single files to mirroring entire websites. It will help if you can read through the wget manual but for the busy souls, these commands are ready to execute.
1. Download a single file from the Internet
wget http://example.com/file.iso
2. Download a file but save it locally under a different name
wget ‐‐output-document=filename.html example.com
@ari-s
ari-s / UAC connected
Last active March 9, 2023 09:23
dumpsys media.audio_policy with UAC connected
Supported System Usages:
AUDIO_USAGE_CALL_ASSISTANT
UID Policy:
mObserverRegistered=True
Assistants UIDs:
No UIDs present.
Active Assistants UIDs:
No UIDs present.
Accessibility UIDs:
No UIDs present.
@Limitinit
Limitinit / .git...HEAD
Created December 18, 2022 09:29 — forked from Navidiuming/.git...HEAD
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=undefined&optimize=undefined&runs=undefined&gist=
ref: refs/heads/main
@Navidiuming
Navidiuming / .git...HEAD
Created December 18, 2022 09:28
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=undefined&optimize=undefined&runs=undefined&gist=
ref: refs/heads/main