Skip to content

Instantly share code, notes, and snippets.

View georgezim85's full-sized avatar
🎯

George georgezim85

🎯
  • Brazil
  • 07:43 (UTC -03:00)
View GitHub Profile
@georgezim85
georgezim85 / .bash_aliases
Created November 16, 2020 15:42
Bash alias for running a javascript project on two new gnome-terminal tabs
alias runnow='gnome-terminal --tab -- bash -c "cd ~/runnow/functions; npm run serve; bash";\
gnome-terminal --tab -- bash -c "cd ~/runnow; npm start; bash";'
@georgezim85
georgezim85 / install-vscode-codeception.sh
Created November 10, 2020 05:34
Installs a vscode-codeception extension from a specific github project branch
#!/bin/bash
set -e
# Check if vsce is installed
npm install -g vsce
git clone -b feature/run-in-docker https://github.com/georgezim85/vscode-codeception.git
cd vscode-codeception
yarn --non-interactive
npm run build
mkdir -p build
@georgezim85
georgezim85 / Rails Getting started.md
Created October 24, 2020 16:11
Rails: Getting started tutorial requisites

Rails guides

Install ruby, sqlite3, node, yarn, Rails

$ # Update cache:
$ sudo apt update

$ # Install ruby:
@georgezim85
georgezim85 / install_netbeans.sh
Created October 8, 2020 15:09
Bash script de instalação do Apache NetBeans 12.1
#!/bin/bash
set -e
# Instalar OpenJDK:
sudo apt-get update
sudo apt-get install openjdk-13-jdk
# Baixar Netbeans Apache:
wget http://mirror.nbtelecom.com.br/apache/netbeans/netbeans/12.1/Apache-NetBeans-12.1-bin-linux-x64.sh