Skip to content

Instantly share code, notes, and snippets.

@naotasati
naotasati / zeromq_install.sh
Created November 6, 2017 15:45 — forked from cdjhlee/zeromq_install.sh
install zeromq in ubuntu 14.04
#!/usr/bin/bash
##############################################
#from http://zeromq.org/intro:get-the-software
##############################################
#get zeromq
wget http://download.zeromq.org/zeromq-4.0.5.tar.gz
#unpack tarball package
@naotasati
naotasati / sample.py
Last active October 19, 2017 18:34
Python Sample codes
name = input("What is your name: ")
age = int(input("How old are you: "))
year = str((2014 - age)+100)
print(name + " will be 100 years old in the year " + year)