Skip to content

Instantly share code, notes, and snippets.

View leandronsp's full-sized avatar

Leandro Proença leandronsp

  • Brazil
View GitHub Profile
@leandronsp
leandronsp / slides.exs
Last active September 13, 2018 15:48
Elixir Slides
add = fn(a, b) ->
a + b
end
iex> add.(2, 3)
iex> 5
iex> list = [1, 2, 3]
iex> lenght(list)
iex> 3

Keybase proof

I hereby claim:

  • I am leandronsp on github.
  • I am leandronsp (https://keybase.io/leandronsp) on keybase.
  • I have a public key ASA_kf8rH9GamckaxDqEIr-gOTccZnOyelCAoXnSwh06mwo

To claim this, I am signing this object:

@leandronsp
leandronsp / pre-commit
Created January 9, 2019 23:32
pre-commit hook (rubocop)
#!/bin/sh
#
# Check for ruby style errors
red='\033[0;31m'
green='\033[0;32m'
yellow='\033[0;33m'
NC='\033[0m'
if git rev-parse --verify HEAD >/dev/null 2>&1
@leandronsp
leandronsp / fdxrails
Last active March 20, 2019 16:51
Start Rails server (sudo)
fdxrails() {
kill -9 $(lsof -i tcp:3001 | grep ruby | awk '{print $2}')
./bin/spring rails s -p 3001
}
@leandronsp
leandronsp / cloudSettings
Last active May 11, 2020 22:05
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-05-11T22:05:56.409Z","extensionVersion":"v3.4.3"}
@leandronsp
leandronsp / httpserver.c
Last active January 25, 2021 03:39
HTTP Server in C
#include <stdio.h>
#include <netinet/in.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <unistd.h>
#define MAXBUFFER 3000
#define PORT 4200
int main () {
@leandronsp
leandronsp / README.md
Last active February 24, 2021 21:57
Median algorithm

Median algorithm

This Gist solves the median using two approaches, Quicksort and Quickselect.

The Quicksort is the most common used approach, which takes O(nlogn) in average. However, it's possible to calculate the median kth element in an unordered list by using the Quickselect method, which takes O(n) in good cases.

@leandronsp
leandronsp / http_server.rb
Created April 9, 2021 22:25
Yata HTTP Server in Ruby
require 'cgi'
require 'uri'
require 'socket'
require './lib/routes'
class Application
def initialize(port)
@socket = TCPServer.new(port)
end
@leandronsp
leandronsp / quicksort_test.rb
Created April 16, 2021 23:18
Quicksort in Ruby using TDD
require 'test/unit'
def sort(list)
return [] if list.size == 0
return list if list.size == 1
pivot = list[0]
remaining = list[1..-1]
smaller, larger = partition(pivot, remaining)
@leandronsp
leandronsp / README.md
Last active April 28, 2021 18:56
Ubuntu in a box (multipass)

Ubuntu in a Box using multipass

  1. Export the following variables
export GIT_USER_NAME=...
export GIT_USER_EMAIL=...
  1. Launch and configure the instance
multipass launch --name ubuntu --mem 2G