Skip to content

Instantly share code, notes, and snippets.

@RezaBabapour
RezaBabapour / autoSave.ps1
Last active March 1, 2026 09:17
Local autoSave for Microsoft word exel powerPoint
# Run command: powershell -ExecutionPolicy Bypass -File .\autoSave.ps1
Add-Type -AssemblyName System.Windows.Forms
Add-Type @"
using System;
using System.Runtime.InteropServices;
public class WinActive {
[DllImport("user32.dll")]
@stevester-codes
stevester-codes / SetupGuide.md
Last active May 8, 2026 06:14
Multi-User Vibepollo + Playnite Setup with User Switching (Samsung Tizen OS 5.5 Smart TV (Q80T) + Moonlight Guide)

Streaming Gaming PC Setup – Complete Installation Guide (Final 2025 Edition – Hybrid, Crash-Proof, Zero-Watcher)

Dad + Son Multi-User Setup with Playnite, Vibepollo, and Moonlight to Samsung Q80T

Total setup time: 3–5 hours (including downloads and testing)
Defaults: HEVC @ 60–70 Mbps (stable for Q80T). AV1 optional to test later (50–60 Mbps).

This guide is event-driven only (Task Scheduler + Vibepollo Commands).
No always-running “watcher” script; everything reacts to real events.


@Ethorbit
Ethorbit / gpupv-acceleration-tut.md
Last active February 25, 2026 08:52
Hyper-V tutorial to partition GPU for virtualization + achieve full GPU acceleration with it and daily drive it.
@Alee14
Alee14 / win-dism.md
Last active April 19, 2026 19:09
Installing Windows using CMD. (UEFI and BIOS Supported)

Installing Windows using CMD. (UEFI and BIOS Supported)

Guide created by Andrew Lee. Supports Windows 7, 8, 10, and 11.

Note that this guide does not go into detail, it's just providing the commands to install Windows.

Be cautions when doing this when dualbooting, please backup any existing data or you will lose them all.

Open CMD

First open CMD by pressing the following keys after booting into setup: Shift + F10

Creating Partition

@jwallet
jwallet / Microsoft.PowerShell_profile.ps1
Last active December 9, 2023 00:46
Windows Powershell functions to convert video files with mkvmerge from mp4 and avi to mkv and set all mkv default audio and video language to your desired language with mkvpropedit all in batch to be used for your PLEX server or something else.
# Credit: https://www.github.com/jwallet
function mkv-set-language([string]$lang="eng") {
Get-ChildItem -Path "." -Name -Recurse -File -Include *.mkv | ForEach { echo ">>> Getting file: $_"; Set-ItemProperty $_ -name IsReadOnly -value $false | & 'C:\Program Files (x86)\MKVToolNix\mkvpropedit.exe' --tags all:'' --delete title --edit track:v1 --set language=$lang --edit track:a1 --set language=$lang "$_" }
}
function to-mkv([string]$lang="eng") {
Get-ChildItem -Path "." -Name -Recurse -File -Include *.avi,*.mp4 | ForEach { echo ">>> Getting file: $_"; $_ -match '(?<filename>.*)[.]'; $output = $matches["filename"] + ".mkv"; Set-ItemProperty $_ -name IsReadOnly -value $false | & 'C:\Program Files (x86)\MKVToolNix\mkvmerge.exe' -o $output --default-language $lang "$_" }; mkv-set-language $lang;
}
@0xjac
0xjac / private_fork.md
Last active May 24, 2026 23:02
Create a private fork of a public repository

The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.

The correct way of creating a private frok by duplicating the repo is documented here.

For this assignment the commands are:

  1. Create a bare clone of the repository. (This is temporary and will be removed so just do it wherever.)

git clone --bare git@github.com:usi-systems/easytrace.git