Skip to content

Instantly share code, notes, and snippets.

View C4T4's full-sized avatar
🏛️
Building

Catalin Waack C4T4

🏛️
Building
View GitHub Profile
#!/usr/bin/env bash
# Install a `code` wrapper for VS Code Remote SSH. The wrapper picks
# the newest LIVE vscode-ipc socket (skipping stale ones from killed
# sessions) so it doesn't ECONNREFUSED on dead sockets.
#
# Falls back to nano when no VS Code Remote SSH session is connected.
#
# Idempotent — re-running just overwrites the wrapper.
set -e
@C4T4
C4T4 / gist:f7125147e684214480d8a0f91f847c26
Last active November 16, 2018 15:27
Laravel installation
#php extensions
a2dismod php7.0
a2enmod php7.3
apt install php7.3 php7.3-xml php7.3-mbstring php7.3-mysql php7.3-json php7.3-curl php7.3-cli php7.3-common php-mcrypt php7.3-gd libapache2-mod-php7.3 php7.3-zip
chmod -R 755 /var/www/html/laravel/storage
export QT_QPA_PLATFORM=offscreen
@C4T4
C4T4 / install-insta-scriptt.txt
Last active July 28, 2018 19:59
Instagram Screenshot Script
//screenshot script
npm i puppeteer
npm i lowdb
//upload script
sudo apt-get install libjpeg-dev
pip install pillow
pip install InstagramAPI
pip install pytesseract
@C4T4
C4T4 / node_install
Last active July 26, 2018 15:14
Install Node 8x on Ubuntu
sudo apt-get install curl python-software-properties
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install nodejs
node -v