Skip to content

Instantly share code, notes, and snippets.

View andersao's full-sized avatar
:octocat:

Anderson Andrade andersao

:octocat:
  • Fortaleza, Ceará, Brazil
View GitHub Profile
@ketemartinsrufino
ketemartinsrufino / hack
Created April 8, 2015 01:45
1º Hackathon Greenmile
Greenmile = {};
Greenmile.hireSomeone = function() {console.log('Internal process')};
Greenmile.Hackathon = (function() {
function hackin() {
this.start = new Date('2015-04-18 13:00:00');
this.end = new Date('2015-04-18 17:00:00');
this.describe = '';
@drmmr763
drmmr763 / RequestCriteria.php
Created November 12, 2015 16:39
custom request criteria
<?php
namespace App\Criteria;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Http\Request;
use Prettus\Repository\Contracts\RepositoryInterface;
use Prettus\Repository\Contracts\CriteriaInterface;
/**
@Geoff-Ford
Geoff-Ford / master-javascript-interview.md
Last active October 15, 2024 11:51
Eric Elliott's Master the JavaScript Interview Series
@jlblancoc
jlblancoc / Install_gcc7_ubuntu_16.04.md
Last active July 8, 2024 06:37
Installing gcc-7 & g++-7 in Ubuntu 16.04LTS Xenial

Run the following in the terminal:

Install the gcc-7 packages:

sudo apt-get install -y software-properties-common
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt update
sudo apt install g++-7 -y

Set it up so the symbolic links gcc, g++ point to the newer version:

@shaneapen
shaneapen / WAXP.js
Last active November 14, 2024 20:45
WhatsApp Group Contacts Exporter
WAXP = (function(){
MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
var SCROLL_INTERVAL = 600,
SCROLL_INCREMENT = 450,
AUTO_SCROLL = true,
NAME_PREFIX = '',
UNKNOWN_CONTACTS_ONLY = false,
MEMBERS_QUEUE = {},