Projeto com tutoriais e exemplos para iniciar a vida em Deep Vision (Deep Learning + Computer Vision)
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
| permalink | company | numEmps | category | city | state | fundedDate | raisedAmt | raisedCurrency | round | |
|---|---|---|---|---|---|---|---|---|---|---|
| lifelock | LifeLock | web | Tempe | AZ | 1-May-07 | 6850000 | USD | b | ||
| lifelock | LifeLock | web | Tempe | AZ | 1-Oct-06 | 6000000 | USD | a | ||
| lifelock | LifeLock | web | Tempe | AZ | 1-Jan-08 | 25000000 | USD | c | ||
| mycityfaces | MyCityFaces | 7 | web | Scottsdale | AZ | 1-Jan-08 | 50000 | USD | seed | |
| flypaper | Flypaper | web | Phoenix | AZ | 1-Feb-08 | 3000000 | USD | a | ||
| infusionsoft | Infusionsoft | 105 | software | Gilbert | AZ | 1-Oct-07 | 9000000 | USD | a | |
| gauto | gAuto | 4 | web | Scottsdale | AZ | 1-Jan-08 | 250000 | USD | seed | |
| chosenlist-com | ChosenList.com | 5 | web | Scottsdale | AZ | 1-Oct-06 | 140000 | USD | seed | |
| chosenlist-com | ChosenList.com | 5 | web | Scottsdale | AZ | 25-Jan-08 | 233750 | USD | angel |
We can make this file beautiful and searchable if this error is corrected: It looks like row 9 should actually have 12 columns, instead of 2 in line 8.
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
| Transaction_date,Product,Price,Payment_Type,Name,City,State,Country,Account_Created,Last_Login,Latitude,Longitude | |
| 1/2/09 6:17,Product1,1200,Mastercard,carolina,Basildon,England,United Kingdom,1/2/09 6:00,1/2/09 6:08,51.5,-1.1166667 | |
| 1/2/09 4:53,Product1,1200,Visa,Betina,Parkville ,MO,United States,1/2/09 4:42,1/2/09 7:49,39.195,-94.68194 | |
| 1/2/09 13:08,Product1,1200,Mastercard,Federica e Andrea,Astoria ,OR,United States,1/1/09 16:21,1/3/09 12:32,46.18806,-123.83 | |
| 1/3/09 14:44,Product1,1200,Visa,Gouya,Echuca,Victoria,Australia,9/25/05 21:13,1/3/09 14:22,-36.1333333,144.75 | |
| 1/4/09 12:56,Product2,3600,Visa,Gerd W ,Cahaba Heights ,AL,United States,11/15/08 15:47,1/4/09 12:45,33.52056,-86.8025 | |
| 1/4/09 13:19,Product1,1200,Visa,LAURENCE,Mickleton ,NJ,United States,9/24/08 15:19,1/4/09 13:04,39.79,-75.23806 | |
| 1/4/09 20:11,Product1,1200,Mastercard,Fleur,Peoria ,IL,United States,1/3/09 9:38,1/4/09 19:45,40.69361,-89.58889 | |
| 1/2/09 20:09,Pro |
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": "step pattern", | |
| "host": "http://a72fba724e7394dbdb6e2ab5a88ff6bd-1803127719.us-east-1.elb.amazonaws.com:8089", | |
| "duration": 420, | |
| "steps": [ | |
| { | |
| "time": 0, | |
| "users": 300, | |
| "rate": 100 | |
| }, |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>repl.it</title> | |
| <link href="style.css" rel="stylesheet" type="text/css" /> | |
| <script> | |
| function clickSortear() { | |
| document.getElementById("resultado").innerHTML = ""; |
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
| <script> | |
| function escreva(texto) { | |
| document.write(texto); | |
| document.write("<br>"); | |
| } | |
| var numeros = [1,2,3,4,5]; | |
| for (var i = 0; i < numeros.length; i++) { | |
| escreva(numeros[i]); |
Python: https://lnkd.in/epdtT8Y
Ionic 3: https://lnkd.in/e8mdY4V
HTML5: https://lnkd.in/eRZVUSN
Android: https://lnkd.in/eHg7kbz
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
| from time import sleep | |
| from picamera import PiCamera | |
| camera = PiCamera() | |
| camera.resolution = (1024, 768) | |
| camera.start_preview() | |
| # Camera warm-up time | |
| sleep(2) | |
| ROUNDS = 120 |
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
| <script> | |
| var quantidadeDeTicker = parseInt(prompt(`Quantos tickers você possui ? `)); | |
| var array = []; | |
| var lucro; | |
| var quantidadeTickerOn = 0; | |
| var quantidadeTickerPN = 0; | |
| var maiorLucroTickerPN = 0; | |
| var nomeDoTickerPNComMaiorLucro = "Não houve ações PN com lucro"; | |
| var maiorPrejuizoTickerON = 0; | |
| var nomedoTickerONComMaiorPrejuizo = "Não houve ações ON com prejuízo"; |
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
| import numpy as np | |
| import cv2 | |
| import time | |
| import os | |
| import random | |
| import sys | |
| fps = 24 | |
| width = 864 | |
| height = 640 |