Skip to content

Instantly share code, notes, and snippets.

@vhr
vhr / setup-time.sh
Created October 16, 2018 04:34
Set EET in CentOS7
#!/bin/bash
yum install -y ntp
chkconfig ntpd on
ntpdate pool.ntp.org
service ntpd start
timedatectl set-timezone Europe/Sofia
@vhr
vhr / php
Created November 4, 2018 15:16
Use docker container for local CLI PHP
#!/bin/bash
docker run --rm -v $(pwd):/app -w /app php:cli php $@
@vhr
vhr / stop-mic-noice.md
Created May 30, 2019 14:28
[Ubuntu] Adding a microphone background noise filter
@vhr
vhr / gist:c6b191a6288cca6e3a96f2c2e2be0b38
Created December 1, 2023 13:20
Convert JPEGs to PDF
cp /usr/share/ghostscript/9.55.0/lib/viewjpeg.ps ./
gs \
-dNOSAFER \
-sDEVICE=pdfwrite \
-o output.pdf \
viewjpeg.ps \
-c "(page1.jpg) viewJPEG showpage \
(page2.jpg) viewJPEG showpage"