Skip to content

Instantly share code, notes, and snippets.

View biojazzard's full-sized avatar
😇
I´m a Saint

Alfredo Llanos biojazzard

😇
I´m a Saint
View GitHub Profile
@biojazzard
biojazzard / gist:19dea7a987103c3eb473a0ac11dd2f19
Created June 7, 2023 06:56
MP3 to WAV for BOSS RC-500 Looper
ffmpeg -i input.mp3 -acodec pcm_s16le -ar 44100 out.wav
@biojazzard
biojazzard / flac-to-mp3,sh
Created November 1, 2020 14:38
FLAC to mp3 all in current folder
parallel ffmpeg -i {} -qscale:a 0 {.}.mp3 ::: ./*.flac
@biojazzard
biojazzard / run-ffmpeg.sh
Created February 15, 2020 10:13
Some ffmpeg
# Clean shity MacOS .mov stuff for instagram
$ ffmpeg -threads 2 -i smileyz.mov -vcodec copy -acodec copy smileyz.mp4
# png + mp3 to video
$ ffmpeg -i test.wav -loop 1 -i test.png -c:a aac -b:a 256k -ar 44100 -c:v libx264 -pix_fmt yuv420p -preset faster -tune stillimage -shortest test.mp4
@biojazzard
biojazzard / run-php.sh
Created February 11, 2020 21:23
run PHP in Plesk Obsidian
# shell:
$ /opt/plesk/php/<PHP_VERSION>/bin/php php-script.php
@biojazzard
biojazzard / Plesk-Help-Clean.md
Created December 12, 2019 15:36
Plesk MayDay Clean Help
@biojazzard
biojazzard / gist:540f5fa86548b9c22349e39beb561b3d
Created November 14, 2019 17:59
httpd.conf | MacOS Catalina | Homebrew
### httpd.conf located at
/usr/local/etc/apache2/2.4
### It loads:
/usr/local/etc/apache2/2.4/other/php73.conf
### The php.ini and php-fpm.ini file can be found in:
/usr/local/etc/php/7.3/
@biojazzard
biojazzard / email-microdata-json.json
Created October 9, 2019 11:41
email microdata json+ld sample
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"description": "Consulta el email de...",
"potentialAction": {
"@type": "ViewAction",
"target": "${URL}",
"name": "Action name long description..."
}

Keybase proof

I hereby claim:

  • I am biojazzard on github.
  • I am biojazzard (https://keybase.io/biojazzard) on keybase.
  • I have a public key ASCThVK3COVKLw-N2AgYMfFXpGe6rOer17S85Ypp1n3azgo

To claim this, I am signing this object:

// create a bookmark and use this code as the URL, you can now toggle the css on/off
// thanks+credit: https://dev.to/gajus/my-favorite-css-hack-32g3
javascript: (function() {
var styleEl = document.getElementById('css-layout-hack');
if (styleEl) {
styleEl.remove();
return;
}
styleEl = document.createElement('style');
styleEl.id = 'css-layout-hack';
(() => {
'use strict';
/**************** Gulp.js 4 configuration ****************/
const
// development or production
devBuild = ((process.env.NODE_ENV || 'development').trim().toLowerCase() === 'development'),