Skip to content

Instantly share code, notes, and snippets.

@pixyzehn
pixyzehn / FRP iOS Learning resources.md
Created February 10, 2016 15:46 — forked from JaviLorbada/FRP iOS Learning resources.md
The best FRP iOS resources.

Videos

@pixyzehn
pixyzehn / introrx.md
Created November 15, 2015 10:33 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import csv
import codecs
import numpy as np
import MeCab
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.cluster import KMeans, MiniBatchKMeans
#!/usr/bin/perl -w
print "Enter a string: ";
$str = <STDIN>;
print "Enter a number of times : ";
chomp($num = <STDIN>);
$result = $str x $num;
print "The result is : \n$result";
#!/usr/bin/perl -w
@lines = `perldoc -u -f atan2`
foreach (@lines) {
s/\w<([^>]+)>/\U$1/g;
print;
}