Skip to content

Instantly share code, notes, and snippets.

View Chubek's full-sized avatar

Behrang Nevii Chubek

View GitHub Profile
def lcs_diff(seq1, seq2):
m, n = len(seq1), len(seq2)
dp = [[0] * (n + 1) for _ in range(m + 1)]
# Build the DP table
for i in range(1, m + 1):
for j in range(1, n + 1):
if seq1[i - 1] == seq2[j - 1]:
dp[i][j] = dp[i - 1][j - 1] + 1
else:
@Chubek
Chubek / chubak.hwinfo
Created January 30, 2025 09:22
My hwinfo
============ start debug info ============
libhd version 21.72u (x86-64) [7688]
using /var/lib/hardware
kernel version is 6.9
----- /proc/cmdline -----
initrd=\EFI\Pop_OS-5f791d9b-2fe4-4f57-b3ca-32fba6b2c192\initrd.img root=UUID=5f791d9b-2fe4-4f57-b3ca-32fba6b2c192 ro quiet loglevel=0 systemd.show_status=false splash
----- /proc/cmdline end -----
debug = 0xff7ffff7
probe = 0x15938fcdaa17fcf9fffe (+memory +pci +isapnp +net +floppy +misc +misc.serial +misc.par +misc.floppy +serial +cpu +bios +monitor +mouse +scsi +usb -usb.mods +modem +modem.usb +parallel +parallel.lp +parallel.zip -isa -isa.isdn +isdn +kbd +prom +sbus +int +braille +braille.alva +braille.fhp +braille.ht -ignx11 +sys -bios.vbe -isapnp.old -isapnp.new -isapnp.mod +braille.baum -manual +fb +pppoe -scan +pcmcia +fork -parallel.imm +s390 +cpuemu -sysfs -s390disks +udev +block +block.cdrom +block.part +edd +edd.mod -bios.ddc -bios.fb -bios.mode +input +block.mods +bios.vesa -cpuemu.debug -scsi.noserial +wlan -bios.crc -hal +bios.vram +bios.acpi -b
@Chubek
Chubek / rdsoseport.txt
Created December 28, 2024 20:40
RDSOSReport
+ cat /lib/dracut/dracut-105
dracut-105
+ echo /proc/cmdline
/proc/cmdline
+ sed -e 's/\(ftp:\/\/.*\):.*@/\1:*******@/g;s/\(cifs:\/\/.*\):.*@/\1:*******@/g;s/cifspass=[^ ]*/cifspass=*******/g;s/iscsi:.*@/iscsi:******@/g;s/rd.iscsi.password=[^ ]*/rd.iscsi.password=******/g;s/rd.iscsi.in.password=[^ ]*/rd.iscsi.in.password=******/g' /proc/cmdline
initrd=\cb392f924a85432bb0854cb5f0ad20d7\6.12.6-arch1-1\initrd nvme_load=YES nowatchdog rw root=UUID=52445911-a89c-4fef-8995-c265e0d75f43 resume=UUID=3e53de3a-5a27-46c0-a4c5-e222bd94cf15 rw root=UUID=52445911-a89c-4fef-8995-c265e0d75f43 resume=UUID=3e53de3a-5a27-46c0-a4c5-e222bd94cf15 systemd.machine_id=cb392f924a85432bb0854cb5f0ad20d7
+ '[' -f /etc/cmdline ']'
+ for _i in /etc/cmdline.d/*.conf
+ '[' -f '/etc/cmdline.d/*.conf' ']'
+ break
@Chubek
Chubek / memory.c
Created December 7, 2024 22:10
Arena stack
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "common.h"
#include "memory.h"
#define ALIGNMENT 8
#define DEFAULT_REGION_SIZE 8096
type genotype =
{ dominant : char
; recessive : char
}
and punnette =
{ lower_left : char * char
; upper_left : char * char
; lower_right : char * char
; upper_right : char * char
@Chubek
Chubek / LyVM.c
Last active November 9, 2024 05:42
LyVM: the Tiny VM
#include <assert.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sysexits.h>
#include <unistd.h>
#define MAX_CODE_SIZE 4096
@Chubek
Chubek / Guillmet.ml
Created October 27, 2024 05:40
The Guillmet Scheme
module Stream = struct
type 'a t = 'a Seq.t ref
exception Empty_stream
let empty = ref Seq.empty
let peek stm =
match !stm () with
| Seq.Nil -> raise Empty_stream
@Chubek
Chubek / GourmetParsec.ml
Created October 12, 2024 11:40
GourmetParsec.ml: OCaml Parser Combinator
module ParseFuncs = struct
type 'a t = string -> ('a * string) option
let success (p: 'a t) : 'a t =
fun input ->
match p input with
| Some (result, rest) as x -> x
| None -> None
let failure (_: 'a t) : 'a t =
@Chubek
Chubek / README.md
Last active October 3, 2024 01:03
Simple TTS Script based on clipboard

The file speakup.py contains a simple script to do TTS on Linux.

The way you use it is:

1- Install https://github.com/myshell-ai/MeloTTS and pip3 install pyperclip.

2- Install sudo apt-get install xbindkeys

3- Place speakup.py in /etc/speakup.py

@Chubek
Chubek / README.md
Last active September 24, 2024 08:36
SimpleCNF; a Configuration Management package for LaTeX

The file simplecnf.sty contains a very simple 'Configuration Management' facility to use with LaTeX.

It accepts INI-like files, either as files:

foo = bar
sipyek = nod