Skip to content

Instantly share code, notes, and snippets.

View lucassmacedo's full-sized avatar
🎯
Focusing

Lucas Macedo lucassmacedo

🎯
Focusing
View GitHub Profile
@lucassmacedo
lucassmacedo / gist:7e393dded5d6e38a126f928885b82a20
Last active December 15, 2021 12:28
Delete Exited Containers on Docker
# docker ps -a = Get all containers
# grep Exited = Filter the Exited Containers
# awk awk '{print $1}' = Filter the first column (ID)
docker rm $(docker ps -a | grep Exited | awk '{print $1}')
@lucassmacedo
lucassmacedo / wpa_supplicant.conf
Last active June 16, 2021 00:36
Configuração Raspberry Wifi
country=BR
update_config=1
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="networkName"
psk="password"
key_mgmt=WPA-PSK
}
@lucassmacedo
lucassmacedo / git.md
Created August 13, 2020 12:46 — forked from linuxster/git.md
[Git Commands] Common git commands. #git

0 Getting & Creating Projects

Command Description
git init Initialize a local Git repository
git clone ssh://[email protected]/[username]/[repository-name].git Create a local copy of a remote repository

1 Create a task branch

With a clean master branch checked out, you can create a task branch by typing:

@lucassmacedo
lucassmacedo / git commands.md
Created August 13, 2020 12:46 — forked from scootcho/git commands.md
git commands #git #commands

initialize git depository in the current directory

git init .

display the git remote/origin

cat .git/config
@lucassmacedo
lucassmacedo / DUMP MySQL
Last active July 17, 2020 20:06
Database Backup & Restore
# Bookstack
mysqldump -u root bookstack > /bkp/mysql/mysql-`hostname`-`date +%Y-%m-%d-`bookstack.sql
@lucassmacedo
lucassmacedo / gist:e273d36d747b03ab6b22f518807415c9
Created July 17, 2020 20:04
Script para pagar apagar arquivos na pasta com mais de 2 dias
#/bin/bash
find /bkp/postgres/ -mtime +2 -exec rm {} \;
exit 0
version: "3"
services:
selenium-hub1:
image: selenium/hub:3.141.59-20200409
container_name: selenium-hub1
ports:
- "172.16.1.25:4444:4444"
environment:
- GRID_MAX_SESSION=10
networks:
@lucassmacedo
lucassmacedo / gist:2fe35d689e2d832df7d45e9d20163a63
Created June 3, 2020 15:38
Convert Large CSV File to many files with headers
awk -v l=500000 '(NR==1){header=$0;next}
(NR%l==2) {
close(file);
file=sprintf("%s.%0.5d.csv",FILENAME,++c)
sub(/csv[.]/,"",file)
print header > file
}
{print > file}' empresas.csv
@lucassmacedo
lucassmacedo / echo-worker.conf
Last active June 1, 2020 15:12
Laravel Supervisor Process
[program:echo-worker]
process_name=%(program_name)s_%(process_num)02d
directory=/home/$USER/www/portal
command=/usr/bin/laravel-echo-server start
autostart=true
autorestart=true
user=$USER
numprocs=1
redirect_stderr=true
stdout_logfile=/home/$USER/www/echo-worker.log