Skip to content

Instantly share code, notes, and snippets.

View schneiderfelipe's full-sized avatar
🎯
Focusing

Felipe S. S. Schneider schneiderfelipe

🎯
Focusing
View GitHub Profile
#!/usr/bin/python
import numpy as np
from scipy.linalg import norm
def read_vector(nome):
p = np.zeros(3)
for i in range(3):
p[i] = float(raw_input("%s_%d = " % (nome, i)))
@schneiderfelipe
schneiderfelipe / cs.py
Last active December 4, 2017 20:26 — forked from myano/cs.py
#!/usr/bin/env python
import curses
import curses.textpad
def main_exec(stdscr):
begin_x = 20
begin_y = 7
height = 5