Skip to content

Instantly share code, notes, and snippets.

@joxer
joxer / Italian Christmas
Last active January 28, 2016 21:12
Tanti auguri di natale
echo "mannaggia $(curl -s santiebeati.it/$(date +%m/%d)/|sort -R|awk -F'[<>]' '{if($7~/[:alpha:]/){print $7$9}}'|head -n1)"
@joxer
joxer / Apriori.go
Last active August 21, 2017 21:26
Apriori algorithm in go
package main
import (
"github.com/deckarep/golang-set"
"strings"
"fmt"
"sort"
)
func main() {
@joxer
joxer / gist:0abdb70f9e1176ec735a4d220e3c68fd
Created August 22, 2017 17:27
A-Priori Pseudo Code IT
L[1] = Genera gli elementi di dimensione 1
Calcola la frequenza degli elementi di dimensione 1 che superano minsup
C[1] = L[1]
Per K=2, finchè L[K-1] != vuoto; k++ {
C[K] = genera le coppie da L[K-1] con cardinalità K
L[K] = Calcola la frequenza degli elementi in C[K] che superano minsup
}
Ritorna L[K]
@joxer
joxer / clustering.ipynb
Last active August 27, 2017 16:34
Clustering in ipython
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@joxer
joxer / FriendInterestedEvent.ipynb
Created September 13, 2017 19:09
IPython Notebook - Facebook Friend interested in events through FacebookTrackingExposed CSV
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@joxer
joxer / dataset.csv
Created October 5, 2017 19:04
Regioni Dataset
Valle d'aosta Pila 19 7.2899 45.7214 Montagna
Piemonte Arona 33 8.5582 45.7586 Lago
Valle d'aosta Châtillon 13 7.6128 45.7486 Montagna
Valle d'aosta Saint Nicolas 12 2.77939 50.30413 Montagna
Piemonte Bardonecchia 35 6.69888 45.07462 Montagna
Piemonte Sestriere 47 6.87751 44.95864 Montagna
Piemonte Pragelato 25 6.94161 45.01364 Montagna
Valle d'aosta La Thuile 33 6.95099 45.71366 Montagna
Valle d'aosta Courmayeur 69 6.96893 45.79659 Montagna
Valle d'aosta Pré-Saint-Didier 17 6.98579 45.76416 Montagna
@joxer
joxer / dutchflag.ipynb
Last active March 8, 2018 20:19
Dutch Flag Problem
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import java.io.*;
import java.util.*;
class Solution {
static int getNumberOfIslands(int[][] binaryMatrix) {
int island = 0;
for(int i = 0; i < binaryMatrix.length; i++){
for(int j = 0; j < binaryMatrix[i].length; j++){
if(binaryMatrix[i][j] == 1){