https://noisebridge.net/wiki/Flaschen_Taschen https://github.com/hzeller/flaschen-taschen
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
{ | |
"name": "tf-js", | |
"version": "1.0.0", | |
"main": "script.js", | |
"license": "MIT", | |
"dependencies": { | |
"@tensorflow-models/mobilenet": "^0.2.2", | |
"@tensorflow/tfjs": "^0.12.3", | |
"@tensorflow/tfjs-node": "^0.1.9", | |
"jpeg-js": "^0.3.4" |
This file contains hidden or 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
#!/bin/sh | |
# Setup encrypted disk image | |
# For Ubuntu 14.04 LTS | |
CRYPTFS_ROOT=/cryptfs | |
apt-get update | |
apt-get -y upgrade | |
apt-get -y install cryptsetup |
This file contains hidden or 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
Date | Beds | Unit | SqFt | Price | |
---|---|---|---|---|---|
2015-03-18T23:34:06.391084 | 1 | 1707 | 690 | 3544 | |
2015-03-18T23:34:06.391084 | 1 | 1604 | 750 | 3565 | |
2015-03-18T23:34:06.391084 | 1 | 1415 | 716 | 3450 | |
2015-03-18T23:34:06.391084 | 1 | 603 | 714 | 3355 | |
2015-03-18T23:34:06.391084 | 1 | 408 | 716 | 3162 | |
2015-03-18T23:34:06.391084 | 1 | 513 | 716 | 3417 | |
2015-03-18T23:34:06.391084 | 1 | 403 | 725 | 3255 | |
2015-03-18T23:34:06.391084 | 1 | 1711 | 1004 | 4108 | |
2015-03-18T23:34:06.391084 | 2 | 1704 | 855 | 4770 |
Keeping History Honest
Joseph Fiscella
Introduction
This file contains hidden or 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
Candidates for next platforms after PCs, phones, and tablets: | |
Virtual reality | |
Internet of things | |
Wearable computers | |
Cryptocurrencies / blockchain | |
Self-driving cars | |
Drones | |
Brain-computer interfaces | |
3d printing | |
Augmented reality |
This file contains hidden or 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
#-*- coding: utf-8 -*- | |
import re | |
import nltk | |
from nltk.tokenize import RegexpTokenizer | |
from nltk import bigrams, trigrams | |
import math | |
stopwords = nltk.corpus.stopwords.words('portuguese') |