Skip to content

Instantly share code, notes, and snippets.

View girol's full-sized avatar
🐍

André Girol girol

🐍
View GitHub Profile
@girol
girol / random_color.js
Created April 28, 2017 20:12
Gerando cores aleatórias com JavaScript
// gera uma cor aleatória em hexadecimal
function gera_cor(){
var hexadecimais = '0123456789ABCDEF';
var cor = '#';
// Pega um número aleatório no array acima
for (var i = 0; i < 6; i++ ) {
//E concatena à variável cor
cor += hexadecimais[Math.floor(Math.random() * 16)];
}
@girol
girol / redirect.php
Created September 6, 2017 20:52
PHP 301 HTTP Redirect
<?php
// Sets the http header to 301 - Good for search engines
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://mynewwebsite.com");
exit();
@girol
girol / htacces_redirect
Created September 12, 2017 20:44
Apache htaccess http redirect
# Change as you need
# Rename this file to .htaccess and put into your website's DocumentRoot folder.
# It needs Rewrite module enabled in your system
# Other HTTP status codes works as well, as 302, and so on...
Redirect 301 /some_folder http://my_redirected_website.org
@girol
girol / vscode_settings.json
Last active November 25, 2019 12:43
VS Code config
{
"workbench.colorTheme": "Hackerman",
"files.trimTrailingWhitespace": true,
"workbench.colorCustomizations": {
"editor.background": "#000",
"editorRuler.foreground": "#08ae6e95",
"statusBar.background": "#000",
},
"terminal.integrated.fontSize": 14,
"window.zoomLevel": 1,
@girol
girol / .bashrc_ps1
Last active August 18, 2018 22:13
Custom Bash PS1
# Hostname hardcoded for weird hosting names
# Generates a nice hostname for use in hosting services that creates random users and random nameservers
#
# Helps to track whare you are logged in when using ssh
#
# Generated with: http://ezprompt.net/
export PS1="\[\e[36m\]hostname\[\e[m\]:\W\[\e[34m\] \$\[\e[m\] "
@girol
girol / post-receive
Created April 20, 2018 22:13
Git Hook Composer Autoloader
#/bin/bash
export GIT_WORK_TREE=/folder/to/my/app # like /var/www
#export GIT_DIR=/my/repo.git
git checkout -f master
cd $GIT_WORK_TREE
composer dump-autoload
@girol
girol / term_colors
Created September 11, 2018 00:30
Terminal Colors
default="\033[39m"
black="\033[30m"
red="\033[0;31m"
green="\033[32m"
yellow="\033[33m"
blue="\033[34m"
magenta="\033[35m"
cyan="\033[36m"
gray="\033[90m"
@girol
girol / app.py
Last active March 10, 2020 16:35
Python script SystemD example
from time import sleep
import os
hi = os.environ.get('HELLO')
seconds = 1
while(True):
sleep(1)
print("logging...", seconds, "Env Var: ", hi)
@girol
girol / Dockerfile
Created January 23, 2022 18:38
sample-docker
FROM nginx:alpine
COPY index.html /usr/share/nginx/html
@girol
girol / python.json
Created February 9, 2022 19:45
vscode_python_snippets
{
"if": {
"prefix": "if",
"body": [
"if ${1:expression}:",
"\t${2:pass}"
],
"description": "Code snippet for an if statement"
},
"if/else": {