Skip to content

Instantly share code, notes, and snippets.

package prog3.grafos.utiles;
import prog3.grafos.*;
import prog3.lista.*;
public class Delta {
private String muelle;
public int maxIslasDistintas(Grafo<String> grafo){
ListaGenerica<Vertice<String>> vertices = grafo.listaDeVertices();
ListaGenerica<String> camino = new ListaEnlazadaGenerica<String>();
require 'jumpstart_auth'
class FedeFollowers
attr_reader :client
def initialize
@client = JumpstartAuth.twitter
end
def followers_list
.highlight{
code, kbd, pre, samp{
font-family: 'Source Code Pro', ;
}
pre {
counter-reset: line-numbering;
border: solid 1px #d9d9d9;
border-radius: 0;
background: #f5f5f5;
padding: 0;
package unlp.info.empresa;
public class Empleado {
private long nroLegajo;
private double sueldo;
public long getNroLegajo(){
return this.nroLegajo;
}
Practica 1 - Conceptos de Sistemas Operativos
=============================================
Punto 1
=======
A) GNU/Linux: Es un Sistema Operativo de tipo Unix, excepto que es de sofware libre y open-source, lo que indica que podemos estudiarlo,
personalizarlo, aprovecharnos de la documentacion, y ver la entera implementacion del sistema. Codigo de fuente de Linux:
https://github.com/torvalds/linux. Dado que es open-source y cada uno puede personalizarlo a gusto, existen muchas diferentes
implementaciones del mismo. Caracteristicas principales del mismo:
- Es multiusuario

Setup ruby

In case you don't have the version of ruby that the TheOdinProject uses, install it with rvm:

$ rvm install ruby-2.0.0-p353
$ rvm use ruby-2.0.0-p353

Bundler

If you needed to install the ruby version specified previously, then you're going to need to install bundler all over again, run the following commands for that:

package main
import (
"fmt"
"golang.org/x/tour/tree"
)
func Walk(t *tree.Tree, ch chan int) {
if t.Left != nil {
@matipan
matipan / lang.go
Last active November 24, 2015 17:57
File analyzer escrito en Go. Esta hecho a lo "bruto", necesita mejoras para incrementar legibilidad y no usar muchas estructuras. De todas maneras, gracias a las goroutines es bastante performante.
/*
Este fue el output desde mi Home, tengan en cuenta que tengo descargado el codigo fuente de Golang, Ruby y Rails
asique los resultados de codigo escrito por mi no es este. El programa ignora todo lo que empieza con un "." sea
directorio o archivo.
Analizando
total: 13454
Listo
@matipan
matipan / repo_status.go
Last active December 17, 2015 23:54
Script that walks a certain directory tree and runs git status -sb on each git repository
package main
import (
"fmt"
"os"
"os/exec"
"path/filepath"
)
type Repo struct {
#!/bin/bash
count=0
while true; do
if [ `ps -e | grep postgres | wc -l` -ge 1 ]; then
let count++
echo "Encontro"
if [ $count -eq 10 ]; then
echo "LISTO"
sudo killall postgres