Skip to content

Instantly share code, notes, and snippets.

View gerardo-junior's full-sized avatar
👨‍💻
trying to do some xss around here

Gerardo Junior gerardo-junior

👨‍💻
trying to do some xss around here
View GitHub Profile
### Keybase proof
I hereby claim:
* I am gerardo-junior on github.
* I am gerardojunior (https://keybase.io/gerardojunior) on keybase.
* I have a public key ASAo0sOcd-OqTxkLOCVtbJchBEewLr11xpSzRWbmXKkFMgo
To claim this, I am signing this object:
@gerardo-junior
gerardo-junior / README.md
Created May 21, 2018 08:57 — forked from MoOx/README.md
How to keep in sync your Git repos on GitHub, GitLab & Bitbucket easily
title tags authors
How to keep in sync your Git repos on GitHub, GitLab & Bitbucket easily
git
github
gitlab
bitbucket
MoOx
@gerardo-junior
gerardo-junior / Dockerfile
Last active April 1, 2019 00:53
example of installing xdebug inside a docker container
FROM library/alpine:3.7
ARG DEBUG=false
ARG XDEBUG_VERSION=2.6.0
ARG XDEBUG_VERSION_SHA256=b5264cc03bf68fcbb04b97229f96dca505d7b87ec2fb3bd4249896783d29cbdc
ARG XDEBUG_SOURCE_URL=https://xdebug.org/files
# ( ... ) Install the php
# Compile, install and configure XDebug php extension
@gerardo-junior
gerardo-junior / .zshrc
Last active May 29, 2018 13:33
My personal zsh configuration
# Configure antigen
source /usr/share/zsh/share/antigen.zsh
antigen use oh-my-zsh
antigen bundle git
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-completions
antigen bundle zsh-users/zsh-autosuggestions
antigen theme robbyrussell
@gerardo-junior
gerardo-junior / clearCache.js
Last active July 13, 2017 14:50
Clean up all cached pages in prerender.io (put in console)
var cleanUp = function() {
$.ajax({method: "GET", url: "https://prerender.io/api/cached-pages?page=0&pageSize=1000000"}).success(function(response) {
var total = response,
lastChecked = 1;
console.log("total: " + response.length);
for(var i = 0; i < total.length; i++) {
$.ajax({
@gerardo-junior
gerardo-junior / Azkfile.js
Last active April 22, 2016 03:24
Azk laravel (php + mysql)
/**
* Documentation: http://docs.azk.io/pt-BR/azkfilejs/
*/
// Adds the systems that shape your system
systems({
laravel: {
// Dependent systems
depends: ['mysql'],
// More images: http://images.azk.io
image: {"docker": "azukiapp/php-fpm:5.6"},
@gerardo-junior
gerardo-junior / Instalação gogs
Last active December 23, 2015 00:32
Instalação do serviço de gogs (github privado)
sudo apt-get update && sudo apt-get upgrade
sudo apt-get -y install git
sudo apt-get -y install mysql-server
sudo apt-get -y install openssh-server
sudo apt-get -y install mercurial
sudo apt-get -y install supervisor
sudo apt-get -y install apache2
mysql -u root -p SUA_SENHA < "CREATE DATABASE IF NOT EXISTS gogs CHARACTER SET utf8 COLLATE utf8_general_ci;"