Skip to content

Instantly share code, notes, and snippets.

View viplyzbytes's full-sized avatar
👨‍💻
.html .css .js

Vipul Lokhande viplyzbytes

👨‍💻
.html .css .js
View GitHub Profile
@SMUsamaShah
SMUsamaShah / List of in-browser VMs.md
Last active July 28, 2025 06:41
List of Javascript based virtual machines running in browser
@lboulard
lboulard / README.md
Last active December 7, 2023 19:13
Fancy clink #windows #dotfiles
using namespace System.Management.Automation
using namespace System.Management.Automation.Language
if ($host.Name -eq 'ConsoleHost')
{
Import-Module PSReadLine
}
#Import-Module PSColors
#Import-Module posh-git
Import-Module -Name Terminal-Icons
@bhandarisaurav
bhandarisaurav / Online KMS Activator.cmd
Last active April 25, 2025 20:15
Activate Windows & Office for 180 Days with online KMS Servers. This script does not install any files in your system and it clears all the leftovers including kms server name after the Activation. For Successful Activation, Internet Must be connected.
@echo off
::::::::::::::::::::::::::::
set "params=Problem_with_elevating_UAC_for_Administrator_Privileges"&if exist "%temp%\getadmin.vbs" del "%temp%\getadmin.vbs"
fsutil dirty query %systemdrive% >nul 2>&1 && goto :GotPrivileges
:: The following test is to avoid infinite looping if elevating UAC for Administrator Privileges failed
If "%1"=="%params%" (echo Elevating UAC for Administrator Privileges failed&echo Right click on the script and select 'Run as administrator'&echo Press any key to exit...&pause>nul 2>&1&exit)
cmd /u /c echo Set UAC = CreateObject^("Shell.Application"^) : UAC.ShellExecute "%~0", "%params%", "", "runas", 1 > "%temp%\getadmin.vbs"&cscript //nologo "%temp%\getadmin.vbs"&exit
:GotPrivileges
::::::::::::::::::::::::::::
color 1F
@steven2358
steven2358 / ffmpeg.md
Last active August 12, 2025 22:15
FFmpeg cheat sheet
@parmentf
parmentf / GitCommitEmoji.md
Last active August 7, 2025 14:25
Git Commit message Emoji
@protrolium
protrolium / ffmpeg.md
Last active August 10, 2025 22:19
ffmpeg guide

ffmpeg

Converting Audio into Different Formats / Sample Rates

Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma

You can get the list of supported formats with:
ffmpeg -formats

You can get the list of installed codecs with: