Global | |
Alt-Shift-G | Captura de pantalla |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
name = Milton Mazzarri | |
email = [email protected] | |
[diff] | |
external = gitdiff | |
[pager] | |
diff = | |
[color] | |
status = auto | |
branch = auto |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl -w | |
use strict; | |
use SVN::Notify; | |
my $path = $ARGV[0]; | |
my $rev = $ARGV[1]; | |
my %params = ( | |
repos_path => $path, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use warnings; | |
use strict; | |
use Net::Trac; | |
use Class::CSV; | |
# Estableciendo la conexion a la instancia remota de Trac | |
my $trac = Net::Trac::Connection->new( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
__version__ = '0.1' | |
import xlrd | |
import re | |
import xlwt | |
import argparse |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Before: | |
// CallBacks.loadJsonView(url, "POST", Historicals.UpdateCombo, params); | |
// After: | |
$.post(url, params, Historicals.UpdateCombo, "json"); | |
// Before: | |
// CallBacks.loadPartialView(url, "POST", infoDialog, params); | |
// After: | |
$.post(url, params, infoDialog, "html"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function(grunt) { | |
// Project configuration. | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
jsdoc : { | |
dist : { | |
src: ['src/*.js', 'test/*.js'], | |
dest: 'doc' | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 | |
# $Id$ | |
PortSystem 1.0 | |
PortGroup github 1.0 | |
github.setup elixir-lang elixir 1.2.1 v | |
epoch 1 | |
categories lang | |
platforms darwin |
- Programming Elixir: Functional |> Concurrent |> Pragmatic |> Fun by Dave Thomas
- Introducing Elixir: Getting Started in Functional Programming by Simon St. Laurent, J. David Eisenberg
- Elixir in Action by Saša Jurić
- The Little Elixir and OTP Guidebook by Benjamin Tan Wei Hao
- Études for Elixir by J. David Eisenberg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule IPv4Parser do | |
@moduledoc """ | |
Exercise 2.8.6 from the book The Little Elixir & OTP Guidebook | |
The idea is to take a look at the IPv4 packet spec and try to write a | |
parser. | |
""" | |
def parse(packet) do | |
<< |
OlderNewer