This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ dvc push -v > dvc.log 2>&1 | |
DEBUG: PRAGMA user_version; | |
DEBUG: fetched: [(3,)] | |
DEBUG: CREATE TABLE IF NOT EXISTS state (inode INTEGER PRIMARY KEY, mtime TEXT NOT NULL, size TEXT NOT NULL, md5 TEXT NOT NULL, timestamp TEXT NOT NULL) | |
DEBUG: CREATE TABLE IF NOT EXISTS state_info (count INTEGER) | |
DEBUG: CREATE TABLE IF NOT EXISTS link_state (path TEXT PRIMARY KEY, inode INTEGER NOT NULL, mtime TEXT NOT NULL) | |
DEBUG: INSERT OR IGNORE INTO state_info (count) SELECT 0 WHERE NOT EXISTS (SELECT * FROM state_info) | |
DEBUG: PRAGMA user_version = 3; | |
DEBUG: Path /home/john/imagem-mariposas/.dvc/cache/3e/4a6b6668be13477f2b5c285ac9fbb5.dir inode 2097211 | |
DEBUG: SELECT mtime, size, md5, timestamp from state WHERE inode=2097211 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
A few gaussian curves | |
''' | |
import matplotlib.pyplot as plt | |
import numpy as np | |
def gaussian(a, b, c, d, x): | |
''' | |
Gaussian function |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
# -*- coding: utf-8 -*- | |
''' | |
Mutavel e imutavel | |
''' | |
from UserDict import UserDict | |
numero = 2 | |
dumero = numero | |
print 'antes' |
NewerOlder