Skip to content

Instantly share code, notes, and snippets.

View Telematica's full-sized avatar

Héctor Cerón Figueroa Telematica

View GitHub Profile
@Telematica
Telematica / Docker.md
Last active September 24, 2021 22:45
Docker

Docker Fundamental Commands & Cookbook recipes

@Telematica
Telematica / FFmpeg.MD
Last active June 25, 2023 17:55
FFmpeg - Scripts, tips, tutorials
@Telematica
Telematica / bchunk.sh
Created February 16, 2020 01:09
bin/cue files to .iso / .wav file
# https://superuser.com/questions/70070/how-to-mount-a-bin-file-on-a-mac
# https://apple.stackexchange.com/questions/12812/mounting-cue-bin-files
# Installation
brew install bchunk
port install bchunk
# Create iso or wav files
bchunk image.bin image.cue image.iso
bchunk -w image.bin image.cue image.iso
@Telematica
Telematica / NodeTricks.MD
Created October 3, 2019 20:35
Node Tricks

Node Tricks

Install Yarn using npm

  • install-yarn-npm.sh
@Telematica
Telematica / 0 - BashTricks.md
Last active September 7, 2022 23:16
Bash Tricks (Linux, MacOS, Unix-like)

Linux / Bash Tricks and Tips for the Evil Genius

  • UsingTerminalAsCalculator.sh - Because sometimes Terminal is the only way to go.
  • ChangeTerminalShell.sh - To update your account to use zsh, please run chsh -s /bin/zsh
@Telematica
Telematica / deploy.sh
Created July 12, 2019 01:21
Symfony 2 deployment commands
php app/console assets:install --symlink web && php app/console cache:clear --env=prod && php app/console cache:warmup --env=prod && chmod -R 777 ./app/cache && php app/console assetic:dump --env=prod && php app/console cache:warmup --env=prod
php app/console assets:install --symlink web; php app/console cache:clear --env=prod; php app/console cache:warmup --env=prod; chmod -R 777 ./app/cache; php app/console assetic:dump --env=prod; php app/console cache:warmup --env=prod
@Telematica
Telematica / VSCODE.md
Last active November 27, 2022 03:14
Visual Studio Code Tricks
@Telematica
Telematica / .0 - MyUtils.md
Last active January 24, 2024 20:13
POSIX Utility Scripts for Mac OSX, Linux & Unix-like. Terminal Profiles and Utilities (bash, vim...)

POSIX Utility Scripts for Mac OSX, Linux & Unix-like.

Features:

  • Terminal Profiles and Utilities (bash, vim...)
  • Personal Scripts
@Telematica
Telematica / mac-utils.md
Last active June 10, 2018 22:47
MacOS Packages (PHP Development Environment)