Skip to content

Instantly share code, notes, and snippets.

@brunoleles
brunoleles / Fix "Cannot set LC_ALL to default locale no Ubuntu".md
Last active February 16, 2018 14:31
Fix "Cannot set LC_ALL to default locale no Ubuntu"

Run locale-gen en_US en_US.UTF-8 pt_BR.UTF-8 or dpkg-reconfigure locales

Note: pt_BR.UTF-8 must be changed to your locale.

@brunoleles
brunoleles / Install mongo-org on Ubuntu 16.04.md
Last active February 16, 2018 14:32
Install mongo-org on Ubuntu 16.04

Install mongo-org 3.6 on Ubuntu 16.04

# https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2930ADAE8CAF5059EE73BB4B58712A2291FA4AD5

echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.6 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.6.list

sudo apt-get update -y
@brunoleles
brunoleles / Gulp Watch ENOSPC.md
Last active October 30, 2017 20:43 — forked from devhero/node_watch_ENOSPC.js
Error: watch ENOSPC

Gulp Watch Error "ENOSPC"

Execute:

echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p

You should see something like:

@brunoleles
brunoleles / MySQL general log on table.md
Last active October 23, 2017 18:59
MySQL general log on table

Save MySQL general log on table instead of a log file.

Turn on general log to table

SET GLOBAL general_log = 'OFF';
ALTER TABLE `mysql`.`general_log` ENGINE = MyISAM;
ALTER TABLE `mysql`.`slow_log` ENGINE = MyISAM;
SET GLOBAL general_log = 'ON';
@brunoleles
brunoleles / readme.md
Last active January 22, 2021 15:10
Gulp Watch Fails with "Error: watch ... ENOSPC"

gulp watch fails with error: Error: watch ... ENOSPC

Stacktrace:

[13:58:28] Starting 'watch'...
[13:58:28] 'watch' errored after 22 ms
[13:58:28] Error: watch /.../resources/assets/images/ ENOSPC
    at exports._errnoException (util.js:1023:11)
    at FSWatcher.start (fs.js:1306:19)
 at Object.fs.watch (fs.js:1331:11)
@brunoleles
brunoleles / deb: command not found.md
Last active February 23, 2022 14:27
Add repository on Debian when "deb" command is not available

deb: command not found

This gist seems to be not working anymore

Possible alternative solution https://unix.stackexchange.com/a/508728 ( not tested )

The Problem

$> deb http://ftp.debian.org/debian jessie-backports main
# Source
# https://gist.github.com/scottnonnenberg/fefa3f65fdb3715d25882f3023b31c29
# About
# Better Git configuration
# https://blog.scottnonnenberg.com/better-git-configuration/
#
[user]
email = [email protected]
name = Scott Nonnenberg
@brunoleles
brunoleles / rm_docker_containers_imagens.sh
Created April 3, 2017 21:25
delete all docker containers and imagens
#!/bin/bash
#SOURCE: https://techoverflow.net/2013/10/22/docker-remove-all-images-and-containers/
# Delete all containers
docker rm $(docker ps -a -q)
# Delete all images
docker rmi $(docker images -q)
@brunoleles
brunoleles / 001-default.conf
Last active April 13, 2019 11:29
Apache + Tomcat ( UTF-8 encoding AND @RequestParam( ) )
<VirtualHost *:80>
...
AddDefaultCharset utf-8
JkOptions +ForwardURIProxy
...
</VirtualHost>