Skip to content

Instantly share code, notes, and snippets.

View lopezpdvn's full-sized avatar

Pedro Ivan Lopez lopezpdvn

View GitHub Profile
@lopezpdvn
lopezpdvn / zip_cs
Last active August 29, 2015 14:07
zip/unzip cs
# Zip directories
zip -r $zipf name00* name01*
# List zip file contents
unzip -l $zipf
vim $zipf
less $zipf
@lopezpdvn
lopezpdvn / html5_template_basic.html
Last active May 25, 2016 19:53
HTML5 templates
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/main_stylesheet.css" />
<link rel="shortcut icon" href="/favicon.ico" />
<title>
Title || URI
</title>
</head>
@lopezpdvn
lopezpdvn / wkhtmltopdf_example_00.sh
Last active May 25, 2016 19:43
wkhtmltopdf cheatsheet/examples
title="ASP.NET from Wikipedia"
src='https://en.wikipedia.org/wiki/ASP.NET'
dst=aspnet.pdf
wkhtmltopdf -s Letter --title "$title" -T 10 -B 10 "$src" "$dst"
#!/usr/bin/env python
# coding=utf-8
'''Module docstrings title.
Don't use keywords only arguments (for functions), sphinx.ext.autodoc will
fail if you do.
When in doubt consult [PEP8]_.
@lopezpdvn
lopezpdvn / fahclient.service
Created April 17, 2015 09:36
Systemd service unit for FAHClient // Folding@Home Client
[Unit]
Description=Folding@Home V7 Client
Documentation=https://folding.stanford.edu/home/the-software/
[Service]
Type=simple
PIDFile=/var/run/fahclient.pid
ExecStart=/usr/local/bin/FAHClient -v start
ExecReload=/usr/local/bin/FAHClient -v restart
ExecStop=/usr/local/bin/FAHClient -v stop
@lopezpdvn
lopezpdvn / install-fahclient-linux-systemd-service-unit.md
Last active January 14, 2023 07:21
Install Folding@home FAHClient on Linux as a systemd service unit

Install Folding@home FAHClient on Linux as a systemd service unit

Republished on my website, keeping this version here for historical reasons.

Install FAHClient as documented in the official guide. Stop the traditional init script service that was created and automatically started.

@lopezpdvn
lopezpdvn / set-up-debugging-development-environment-for-android-on-linux.md
Last active May 21, 2016 06:42
How to set up a debugging and development environment for Android on Linux

How to set up a debugging and development environment for Android on Linux

Republished on my blog, keeping this version here for historical reasons.

This post describes how to set up a debugging and development environment for Android based systems on an Ubuntu machine, specially for flashing custom recoveries and ROMs, but not for coding. I'm basically pulling together information from other sources across the web, be sure to check out the References and other external links for more details. You only

@lopezpdvn
lopezpdvn / misc_cheatsheet.md
Last active May 26, 2016 23:09
misc cheatsheet

Misc cheatsheet

youtube-dl to download videos and extract audio.

$ youtube-dl -x --audio-format mp3 --audio-quality 320k --embed-thumbnail -a uris.txt

Robocopy

for src in *flac; do
dst="$(echo $src | sed -e 's/\.flac//' -e 's/ /_/g')".mp3
ffmpeg -i "$src" -ab 320k "$dst"
operon clear -a "$dst"
operon copy "$src" "$dst"
done
@lopezpdvn
lopezpdvn / compress_raw_video.sh
Created July 1, 2016 00:23
Compress raw video into Matroska container
date >> log.txt
echo 'Starting job' >> log.txt
sudo systemctl stop fahclient.service
sudo systemctl status --full fahclient.service
for src in *avi ; do
date >> log.txt ;
echo "Starting conversion for $src" >> log.txt ;
dst="$(echo $src | sed -e 's/\.avi$//')".mkv ;
ffmpeg -ac 2 -channel_layout stereo -i "$src" -c:v libx264 -preset slow -crf 17 -pix_fmt yuv422p -c:a pcm_s16le "$dst" ;