Skip to content

Instantly share code, notes, and snippets.

@tamecalm
tamecalm / Postgresql-Termux.md
Created August 16, 2019 22:36
Learn How to Create Postgresql Server on Termux Terminal. ### Drop Comments 💧

Termux && Postgresql

How to create Local Database On Termux Terminal

  • Install the Postgresql Servers first to your Termux Terminal.
initdb ~/pg
  • Start the Server
@ArseniyShestakov
ArseniyShestakov / add.sh
Last active August 25, 2023 14:14
My compiler alternatives
# Cleanup old alternatives
update-alternatives --remove-all cc
update-alternatives --remove-all c++
update-alternatives --remove-all gcc
update-alternatives --remove-all g++
update-alternatives --remove-all clang
update-alternatives --remove-all clang++
update-alternatives --remove-all icc
update-alternatives --remove-all icc++
@protrolium
protrolium / ffmpeg.md
Last active June 24, 2025 11:30
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: