Skip to content

Instantly share code, notes, and snippets.

View silasrm's full-sized avatar

Silas Ribas Martins silasrm

View GitHub Profile
<?php
public function buscaParceiro(Request $request){
$string = $request->get('pesquisa');
$parceiro = DB::table('usuario')
->join('pessoa', 'pessoa.filho_id', '=', 'usuario.id')
->where('usuario.filho_type', '=', "'CompraSerrana\Parceiro'")
->where('pessoa.nome', 'LIKE', "%$string%")
->get();
@silasrm
silasrm / jquery.parseparams.js
Created October 13, 2016 22:21 — forked from kares/jquery.parseparams.js
jQuery.parseParams - parse query string paramaters into an object
/**
* $.parseParams - parse query string paramaters into an object.
*/
(function($) {
var re = /([^&=]+)=?([^&]*)/g;
var decodeRE = /\+/g; // Regex for replacing addition symbol with a space
var decode = function (str) {return decodeURIComponent( str.replace(decodeRE, " ") );};
$.parseParams = function(query) {
var params = {}, e;
while ( e = re.exec(query) ) {
@silasrm
silasrm / install-comodo-ssl-cert-for-nginx.rst
Created September 22, 2016 04:55 — forked from bradmontgomery/install-comodo-ssl-cert-for-nginx.rst
Steps to install a Comodo PositiveSSL certificate with Nginx.

Setting up a SSL Cert from Comodo

I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.

These are the steps I went through to set up an SSL cert.

Purchase the cert

@silasrm
silasrm / git-change-commit-messages.md
Created July 24, 2016 20:06 — forked from nepsilon/git-change-commit-messages.md
How to change your commit messages in Git? — First published in fullweb.io issue #55

How to change your commit messages in Git?

At some point you’ll find yourself in a situation where you need edit a commit message. That commit might already be pushed or not, be the most recent or burried below 10 other commits, but fear not, git has your back 🙂.

Not pushed + most recent commit:

git commit --amend

This will open your $EDITOR and let you change the message. Continue with your usual git push origin master.

@silasrm
silasrm / nginx.conf
Created July 22, 2016 05:07 — forked from atma/nginx.conf
Nginx + nodejs + socket.io websockets
# Add to nginx.conf http section
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
@silasrm
silasrm / mongo-autostart-osx.md
Created June 30, 2016 02:39 — forked from subfuzion/mongo-autostart-osx.md
mongo auto start on OS X

Install with Homebrew

brew install mongodb

Set up launchctl to auto start mongod

$ ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents

/usr/local/opt/mongodb/ is a symlink to /usr/local/Cellar/mongodb/x.y.z (e.g., 2.4.9)

@silasrm
silasrm / install.sh
Created June 1, 2016 23:49 — forked from solar/install.sh
install redis with supervisord
#!/bin/sh
version="2.6.3"
priority="20603"
sudo mkdir -p /var/redis /var/log/redis
curl -sL http://redis.googlecode.com/files/redis-${version}.tar.gz | tar zx
cd redis-${version}/
make
sudo make PREFIX=/usr/local/redis/${version} install
@silasrm
silasrm / one-liners.js
Last active May 17, 2016 03:04 — forked from nepsilon/5-handy-javascript-one-liners.md
5 handy Javascript one-liners
//1. Generate a random string:
Math.random().toString(36).substr(2);
//This simply generates a random float, casts it into a String using base 36 and remove the 2 first chars 0 and ..
//2. Clone an array:
var newA = myArray.slice(0);
//This will return a copy of the array, ensuring no other variables point to it.
//3. Remove HTML tags:
"<b>A</b>".replace(/<[^>]+>/gi, "");
@silasrm
silasrm / remove-docker-containers.md
Created April 28, 2016 21:03 — forked from ngpestelos/remove-docker-containers.md
How to remove unused Docker containers and images
  1. Delete all containers

     $ docker ps -q -a | xargs docker rm
    

-q prints only the container IDs -a prints all containers

Notice that it uses xargs to issue a remove container command for each container ID

  1. Delete all untagged images
@silasrm
silasrm / elasticsearch.md
Created March 6, 2016 05:45 — forked from nicolashery/elasticsearch.md
Elasticsearch: updating the mappings and settings of an existing index

Elasticsearch: updating the mappings and settings of an existing index

Note: This was written using elasticsearch 0.9.

Elasticsearch will automatically create an index (with basic settings and mappings) for you if you post a first document:

$ curl -X POST 'http://localhost:9200/thegame/weapons/1' -d \
'{
  "_id": 1,