Skip to content

Instantly share code, notes, and snippets.

View sogladev's full-sized avatar

Jelle Meeus sogladev

View GitHub Profile
@sogladev
sogladev / 1_setup.md
Last active November 17, 2024 07:32
Setup Local LLM with local ollama and dockerized Web UI and VSCode Integration

Description:

This guide outlines how to set up a local instance of LLVM tools, including the following components:

  1. Ollama locally installed with GPU acceleration for running models.
  2. Open-WebUI dockerized for browser-based chat interactions.
  3. VSCode Extension: Continue for LLM-assisted development within Visual Studio Code.

This setup requires dependencies Docker and VSCode already installed on your system.


@sogladev
sogladev / 1_wowsims_to_npc_talent_template.ipynb
Created October 31, 2024 04:17
Convert an exported JSON from wowsims to usable `.add` commands
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sogladev
sogladev / extractor.sh
Created May 3, 2024 12:07
azerothcore map extractor sh
#!/bin/bash
function Base {
echo "Extract Base"
rm -rf dbc maps Cameras
./map_extractor
Menu
}
function VMaps {
echo "Extract VMaps"
@sogladev
sogladev / sh
Created January 29, 2024 02:38
Generate commands to split up video in segments with random range of durations
# Generate commands to split up video in segments with different durations
input_file="video.mp4"
output_prefix="video-split"
start=0
# Loop to create segments
for i in {1..30}
do
@sogladev
sogladev / media_controls.ahk
Created August 6, 2023 21:35
ahk_media_controls
^!Space::Media_Play_Pause
^!Right::Media_Next
^!Left::Media_Prev
#Space::Volume_Mute
^!Down::Volume_Down
^!Up::Volume_Up