Skip to content

Instantly share code, notes, and snippets.

View Vhenrique05's full-sized avatar

Vitor Henrique Vhenrique05

View GitHub Profile
@Incipiens
Incipiens / lcc.sh
Created March 20, 2026 16:10
This is my script that I use for launching an instance of Claude Code using my local LLM, and it was written for an XDA article. Save it, edit the IP and port, and mark as executable to use.
#!/usr/bin/env bash
# lcc - Local Claude Code launcher
# Points Claude Code at a local LLM served by llama.cpp on your GB10 device
#
# Usage:
# lcc <modelname> — launch Claude Code with the specified model
# lcc <modelname> [args] — pass additional arguments to claude
# lcc — show help/launch with model if one is available
#
# Prerequisites:
# DOWNLOAD VMWARE WORKSTATION 16
- https://download.com.vn/vmware-workstation-8587
# DOWNLOAD MACOS
https://archive.org/details/macos-15_2-sequoia
https://archive.org/details/macOS_14_Sonoma_beta_4_ISO
https://archive.org/details/mac-os-ventura-13.0
# UNLOCK MACOS OPTION ON VMWARE WORKSTATION 16
https://github.com/BDisp/unlocker.git
@jdah
jdah / .vimrc
Created June 14, 2021 11:54
jdh's NeoVim .vimrc
call plug#begin()
Plug 'drewtempelmeyer/palenight.vim'
Plug 'vim-airline/vim-airline'
Plug 'wlangstroth/vim-racket'
Plug 'sheerun/vim-polyglot'
Plug 'rust-lang/rust.vim'
Plug 'preservim/tagbar'
Plug 'universal-ctags/ctags'
Plug 'luochen1990/rainbow'
Plug 'vim-syntastic/syntastic'
@Arzio
Arzio / build.gradle
Last active October 4, 2022 17:54
Fix Forge 1.7.10 HTTPS error during Gradle operations
// The comments with [HTTPS FIX] tag refers to the parts that fixes the issue.
buildscript {
repositories {
// [HTTPS FIX] Replace mavenCentral() with the code block below
maven {
url "https://repo1.maven.org/maven2"
}
@NaniteFactory
NaniteFactory / messagebox.go
Last active January 28, 2026 06:32
Win32 API MessageBox() in Golang
import (
"syscall"
"unsafe"
)
// MessageBox of Win32 API.
func MessageBox(hwnd uintptr, caption, title string, flags uint) int {
ret, _, _ := syscall.NewLazyDLL("user32.dll").NewProc("MessageBoxW").Call(
uintptr(hwnd),
uintptr(unsafe.Pointer(syscall.StringToUTF16Ptr(caption))),
[Colors]
AbstractTableViewBackgroundColor=#272822
AbstractTableViewHeaderTextColor=#2D2D2D
AbstractTableViewSelectionColor=#363930
AbstractTableViewSeparatorColor=#555A4C
AbstractTableViewTextColor=#FFFFFF
DisassemblyAddressBackgroundColor=#XXXXXX
DisassemblyAddressColor=#7c7c61
DisassemblyAutoCommentBackgroundColor=#XXXXXX
DisassemblyAutoCommentColor=#808080
@ThunderCls
ThunderCls / acid_lime.ini
Last active May 19, 2024 21:45
Acid Lime Theme by ThunderCls (http://i.imgur.com/IuvA7gq.png)
[Colors]
AbstractTableViewBackgroundColor=#212121
AbstractTableViewHeaderTextColor=#000000
AbstractTableViewSelectionColor=#2E2E2E
AbstractTableViewSeparatorColor=#454545
AbstractTableViewTextColor=#E8EADE
DisassemblyAddressBackgroundColor=#XXXXXX
DisassemblyAddressColor=#484848
DisassemblyAutoCommentBackgroundColor=#XXXXXX
DisassemblyAutoCommentColor=#787878
@MrSuicideParrot
MrSuicideParrot / Wifi-restart.sh
Last active June 11, 2025 21:02
Restart network on kali linux, after use wirless in monitor mode
#!/bin/bash
sudo service networking restart
sudo service NetworkManager restart
@ThunderCls
ThunderCls / visual_studio_dark_theme.ini
Last active August 25, 2025 14:06
Visual Studio Dark Theme by ThunderCls (http://i.imgur.com/auzFPxf.png)
[Colors]
AbstractTableViewBackgroundColor=#252526
AbstractTableViewHeaderTextColor=#000000
AbstractTableViewSelectionColor=#323238
AbstractTableViewSeparatorColor=#64646F
AbstractTableViewTextColor=#E8EADE
DisassemblyAddressBackgroundColor=#XXXXXX
DisassemblyAddressColor=#BD63C5
DisassemblyAutoCommentBackgroundColor=#XXXXXX
DisassemblyAutoCommentColor=#787878
@jdah
jdah / spotlight.py
Created November 13, 2016 04:23
Python script that sets the desktop background Windows 10 spotlight wallpapers. Works with any number and size of monitors.
# Run with python .\spotlight.py
from functools import reduce
import ctypes, os, winreg, glob, time
from PIL import Image
SPOTLIGHT_PATH = r"{0}\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets"
# >>>> CONFIGURATION VARIABLES <<<<
CHANGE_TIME_MINUTES = 2.5