Skip to content

Instantly share code, notes, and snippets.

View AzimsTech's full-sized avatar
🖨️
git push origin main --force

Wan Azims AzimsTech

🖨️
git push origin main --force
View GitHub Profile
@gvoze32
gvoze32 / ffmpeg GIF to MP4.MD
Last active May 12, 2026 12:51
Convert animated GIF to MP4 using ffmpeg in terminal.

To convert animation GIF to MP4 by ffmpeg, use the following command

ffmpeg -i animated.gif -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" video.mp4

Description

movflags – This option optimizes the structure of the MP4 file so the browser can load it as quickly as possible.

pix_fmt – MP4 videos store pixels in different formats. We include this option to specify a specific format which has maximum compatibility across all browsers.

@devasia2112
devasia2112 / dnscrypt-proxy
Created November 24, 2019 06:34
steps to get your dnscrypt working with .ovpn files.
SETUP DNSCRYPT - Arch Linux
---
STEP 1
Install DNSCRYPT using your package manager or compiling from source.
STEP 2
Configure the file `/etc/dnscrypt-proxy/dnscrypt-proxy.toml`, add your own public/private DNS,
enable logs, etc..

emphasised text, bold text, strikethrough and inline code.

for ii=1:3
  disp('Code block (no highlighting)')
end % for ii

For examples _emphasised text_, *bold text* and ~strikethrough~

@lenosi
lenosi / README.md
Last active May 20, 2023 07:58
MIUI bloatware

Get list of system apps on the device:

adb shell "echo 'apps:' && pm list packages -f | grep /system/app/ | sed 's/.*=/  - /'"

Remove application command

pm uninstall -k --user 0 app
@KaKi87
KaKi87 / awesome-android-x3Free.md
Last active January 17, 2026 14:07
Awesome list — Free, ad-free and in-app-free Android apps

Now mirrored at blog.kaki87.net


Inspired by Awesome

Awesome

DISCLAIMER : this isn't really an awesome list, I don't care about guidelines, rules and etc. so I don't bother make a real repo and a real pull request.

@monrapps
monrapps / allow_aow_drv_log.bat
Created February 22, 2019 16:22
WINDOWS_CMD - Remove and deny C:\aow_drv.log to be created again. File created by Tencent background services
rem "This script remove C:\aow_drv.log hidden directory created by deny_aow_drv_log.bat"
icacls C:\aow_drv.log /remove:d everyone
rd /s /q C:\aow_drv.log
@Adanteh
Adanteh / Start Menu.bat
Last active September 1, 2020 17:23
Send to start menu programs
@echo off
Set my_file=%~1
Set program_name=%~n1
@powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0Start Menu.ps1" %my_file% %program_name%
@airium
airium / oppo-find7-omni-unified-storage.md
Last active July 28, 2021 03:07
Guidance for OPPO Find7A OmniROM with unified storage

Guidance for OPPO Find7A OmniROM with unified storage

Preparation

  1. OPPO Find7A (Find7S is NOT tested)
  2. OPPO ColorOS 2.1.5i (for base firmware)
  3. OPPO Recovery 1.2 (for merging partition)
  4. TWRP 3+ for Find7 (3.0.2 is fine)
  5. OmniROM 6.x or 7.x (7.1.2-20171120-Weekly is fine)
    *MoKee ROM will NOT work since forced encryption
@ilbunilcho
ilbunilcho / How to remove Windows paths from WSL path.md
Created November 1, 2018 16:41
How to remove Windows paths from WSL path

after Build 17093

  • can override settings by edit "/etc/wsl.conf"
  • normally this file is not exists at first
$ sudo vi /etc/wsl.conf

[interop]
appendWindowsPath = false
$ErrorActionPreference = 'Stop'
# Prevent needing -y on all commands
choco feature enable -n=allowGlobalConfirmation
choco source add -n=csg -s "http://artifactory.csgicorp.com/artifactory/api/nuget/csg-chocolatey"
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
Set-TaskbarOptions -Size Large -Combine Full -UnLock
Disable-GameBarTips
Disable-BingSearch
Disable-InternetExplorerESC