Skip to content

Instantly share code, notes, and snippets.

View akulbe's full-sized avatar

Aaron Kulbe akulbe

View GitHub Profile
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}"