Skip to content

Instantly share code, notes, and snippets.

View OneNiNE87's full-sized avatar
:electron:
BoundByBinariesBeyondBenchmarks

иiɴᴇ[ᴏɴᴇ]ᴏɴᴇ OneNiNE87

:electron:
BoundByBinariesBeyondBenchmarks
View GitHub Profile
@OneNiNE87
OneNiNE87 / URLs
Last active October 28, 2025 18:36
Important Sites
https://mirror.sjtu.edu.cn/pytorch-wheels/cu118/?mirror_intel_list
```
fbgemm_gpu-0.5.0+cu118-cp310-cp310-manylinux2014_x86_64.whl 2023-10-05T00:55:30.876Z 227004030
fbgemm_gpu-0.5.0+cu118-cp311-cp311-manylinux2014_x86_64.whl 2023-10-05T00:55:29.883Z 227001247
fbgemm_gpu-0.5.0+cu118-cp38-cp38-manylinux2014_x86_64.whl 2023-10-05T00:55:22.887Z 227004325
fbgemm_gpu-0.5.0+cu118-cp39-cp39-manylinux2014_x86_64.whl 2023-10-05T00:55:27.697Z 227004913
fbgemm_gpu-0.6.0+cu118-cp310-cp310-manylinux2014_x86_64.whl 2024-01-29T23:52:47.306Z 231157407
fbgemm_gpu-0.6.0+cu118-cp311-cp311-manylinux2014_x86_64.whl 2024-01-29T23:47:55.818Z 231158334
@OneNiNE87
OneNiNE87 / ContextMenuCustomizations.reg
Last active October 25, 2025 00:57
My Context Menu Customizations for Windows11
Windows Registry Editor Version 5.00
; ==========================================================
; === CLEANUP: Remove old Sublime Text and Take Ownership entries ===
; ==========================================================
[-HKEY_CLASSES_ROOT\Directory\background\shell\Open with &SublimeText]
[-HKEY_CURRENT_USER\Software\Classes\*\shell\Open with &Sublime]
[-HKEY_CURRENT_USER\Software\Classes\Directory\shell\Open with &Sublime]
[-HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\Open with &Sublime]
[-HKEY_CURRENT_USER\Software\Classes\Applications\sublime_text.exe\shell\open]
@OneNiNE87
OneNiNE87 / sort-repo.bat
Created September 26, 2025 04:16
A Windows batch script that will crawl through each subdirectory in the current directory, check if it contains a .git folder, and then move the entire repository to %userprofile%\.github. It will create %userprofile%\.github if it doesn’t exist.
@echo off
setlocal enabledelayedexpansion
rem Set the source directory to %userprofile%
set "SOURCE=%userprofile%"
rem Set the target directory to %userprofile%\.github
set "TARGET=%userprofile%\.github"
rem Create the .github directory if it doesn't exist
if not exist "%TARGET%" mkdir "%TARGET%"
@OneNiNE87
OneNiNE87 / locally.md
Last active August 10, 2025 04:00
# (NOT YET TESTED COMPLETELY) Run local AI models on your Samsung Galaxy Note 20 Ultra 5G with Snapdragon 865+ (Adreno 650 GPU) via Termux.

ivonblog.com/en-us/posts...

Run local AI models on your Samsung Galaxy Note 20 Ultra 5G with Snapdragon 865+ (Adreno 650 GPU) via Termux.


1. Install Termux and Termux:API

Install Termux from F-Droid or GitHub.([Davide Fornelli][1])

@OneNiNE87
OneNiNE87 / Oh-My-Posh-Experience.md
Last active August 7, 2025 09:36
A step-by-step guide that you can use to set up **Oh-My-Posh** in PowerShell, including autocompletion, theme installation, and a custom interactive alias to list and choose a theme.

PowerShell Setup for Oh-My-Posh with Autocompletion, History, and Theme Selector

1. Install Oh-My-Posh Module

To install Oh-My-Posh for PowerShell, run the following command:

Install-Module oh-my-posh -Scope CurrentUser -Force -SkipPublisherCheck
@OneNiNE87
OneNiNE87 / claude-ai-prompt.md
Last active June 14, 2025 07:52
A prompt that tries to get the work done

Complete Project Continuation Prompt Template

System Prompt (Define Claude’s Behavior)

You are a senior full-stack developer specializing in cross-platform development. You work with a self-taught developer who has the following setup:

**Development Environment:**
- Primary: Windows 11 PC (32GB RAM, RTX 3600 GPU)
- Secondary: iPad Mini Gen6, Android Note20 Ultra 5G, iPhone SE
javascript:(function()%7B const articles = document.querySelectorAll('article%5Bdata-testid%5E="conversation-turn"%5D'); if (!articles.length) %7B alert('No chat content found!'); return; %7D let chatContent = Array.from(articles).map(article => article.innerText).join('%5Cn%5Cn'); const blob = new Blob(%5BchatContent%5D, %7B type: 'text/plain' %7D); const a = document.createElement('a'); a.href = URL.createObjectURL(blob); a.download = 'chat_conversation.txt'; document.body.appendChild(a); a.click(); document.body.removeChild(a); %7D)();
@OneNiNE87
OneNiNE87 / mp4box.md
Created May 27, 2025 16:51
mp4splitting

For splitting large video files by size in Termux without re-encoding, ffmpeg is limited for exact size splits in MP4 format. But here are some alternatives you can try:

  1. mp4box (from GPAC)

mp4box can split MP4 files by time or size with less re-encoding.

Install with:

pkg install gpac

@OneNiNE87
OneNiNE87 / remote.windsurfSSH.configFile
Created May 27, 2025 01:20
Windsurf SSH config file.
{
"remote.windsurfSSH.configFile": "",
"remote.windsurfSSH.hosts": [
{
"name": "MyRemoteHost",
"host": "hostname_or_ip",
"user": "username",
"port": 22,
"authentication": "key",
"privateKeyPath": "/path/to/private/key"