Skip to content

Instantly share code, notes, and snippets.

View akulbe's full-sized avatar

Aaron Kulbe akulbe

View GitHub Profile
akulbe@node:~$ sudo apt update && sudo apt full-upgrade
Hit:1 https://cli.github.com/packages stable InRelease
Hit:2 http://us.archive.ubuntu.com/ubuntu noble InRelease
Hit:3 http://us.archive.ubuntu.com/ubuntu noble-updates InRelease
Hit:4 http://security.ubuntu.com/ubuntu noble-security InRelease
Hit:5 http://us.archive.ubuntu.com/ubuntu noble-backports InRelease
Hit:6 https://ppa.launchpadcontent.net/git-core/ppa/ubuntu noble InRelease
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
@akulbe
akulbe / foo
Created February 19, 2025 23:37
This file has been truncated, but you can view the full file.
Feb 19 14:51:50 node kernel: Linux version 6.8.0-52-generic (buildd@lcy02-amd64-046) (x86_64-linux-gnu-gcc-13 (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #53-Ubuntu SMP PREEMPT_DYNAMIC Sat Jan 11 00:06:25 UTC 2025 (Ubuntu 6.8.0-52.53-generic 6.8.12)
Feb 19 14:51:50 node kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-6.8.0-52-generic root=UUID=e90217a6-ff86-4398-8b18-fd0796a44d19 ro quiet splash vt.handoff=7
Feb 19 14:51:50 node kernel: KERNEL supported cpus:
Feb 19 14:51:50 node kernel: Intel GenuineIntel
Feb 19 14:51:50 node kernel: AMD AuthenticAMD
Feb 19 14:51:50 node kernel: Hygon HygonGenuine
Feb 19 14:51:50 node kernel: Centaur CentaurHauls
Feb 19 14:51:50 node kernel: zhaoxin Shanghai
Feb 19 14:51:50 node kernel: BIOS-provided physical RAM map:
Feb 19 14:51:50 node kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000002ffff] usable
$nrconf{override_rc} = {
# weechat-tmux
qr(^weechat) => 0
}
PS D:\oobabooga_windows> notepad.exe .\CMD_FLAGS.txt
PS D:\oobabooga_windows> .\start_windows.bat
bin D:\oobabooga_windows\installer_files\env\lib\site-packages\bitsandbytes\libbitsandbytes_cuda117.dll
2023-08-09 18:26:23 INFO:Loading the extension "gallery"...
Running on local URL: http://0.0.0.0:7860
To create a public link, set `share=True` in `launch()`.
2023-08-09 18:27:29 INFO:Loading TheBloke_Llama-2-13B-GGML...
ggml_init_cublas: found 1 CUDA devices:
Device 0: NVIDIA GeForce RTX 3090, compute capability 8.6
@akulbe
akulbe / for_gist
Created April 17, 2023 14:07
dnf update issue
Last metadata expiration check: 2:23:24 ago on Mon 17 Apr 2023 04:37:41 AM PDT.
Dependencies resolved.
Problem: package python3-nbconvert-7.2.5-5.fc38.noarch requires (python3.11dist(mistune) < 3~~ with python3.11dist(mistune) >= 2.0.3), but none of the providers can be installed
- package python3-mistune08-0.8.4-8.fc38.noarch conflicts with python3-mistune provided by python3-mistune-2.0.4-3.fc38.noarch
- cannot install the best update candidate for package python3-nbconvert-7.2.5-3.fc38.noarch
- cannot install the best update candidate for package python3-mistune08-0.8.4-8.fc38.noarch
===================================================================================================================================================================================
Package Architecture Version Repository Size
===============================================================
---
- name: Update the boxes
hosts: all
become: true
gather_facts: true
tasks:
- name: Upgrade all packages RPM
ansible.builtin.package:
name: "*"
I have yt-dlp (fork of youtube-dl) downloading all videos for channels I subscribe to and sticking them in an NFS share on the Synology.
This is how my Dockerfile is, currently:
===START HERE===
FROM alpine
RUN apk update \
&& apk add python3 py3-pip ffmpeg aria2 \
&& pip3 install yt-dlp --no-dependencies
syntax on
" " autocmd FileType * set autoindent set backspace=indent,eol,start set expandtab set shiftwidth=2 set softtabstop=2
set backspace=indent,eol,start
set autoindent
set expandtab
set shiftwidth=2
set softtabstop=2
filetype indent plugin on
@akulbe
akulbe / My "ignore" settings
Created August 22, 2019 15:33
The BEST thing to do in irssi!
ignores = (
{
level = "CTCPS ACTIONS JOINS PARTS QUITS MODES NICKS DCC DCCMSGS";
}
);
# Configure the VMware vSphere Provider
provider "vsphere" {
user = "${var.vsphere_user}"
password = "${var.vsphere_password}"
vsphere_server = "${var.vsphere_server}"