Use cv2.VideoCapture
to capture the stream from your webcam.
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
import re | |
import subprocess | |
regex = """<script>var[\s]+profile[\s]*=[\s]*({[^å]+)(?=</script>)""" | |
test_str = (""" | |
<script>var profile = {"env":null, | |
"id":"xxx","listingStatus":"xxx", | |
"price":{"value":"xxxx","text":"xxxx"}, | |
"createdDate":{"value":"xxxx","text":"xxxx","ago":"xxxxx"}, |
https://think.cs.vt.edu/corgis/csv/cars/cars.html
- Programatically download the data from the above link.
- Import the data into a Pandas dataframe.
- You must first retrieve the top 100 scoring posts from https://old.reddit.com/top/?sort=top&t=all. You will need to walk through multiple pages, using the
next
button. - Save the links in a list of
Post
objects. ThePost
object must contain:- The id of the post.
- The title of the post.
- The exact score of the post.
- The subreddit the post was submitted to.
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
Users present work: | |
Interview. | |
Spørg en masse facebook, twitter brugere om hvad de godt kan lide. | |
Spørg investorer om hvilken data de benytter, hvordan det presenteres. | |
Experience with the users present work: | |
Se deres arbejdstilgang under normal forhold. | |
Design proposals: | |
Producér low-fi mockups/prototyper. | |
Producér måske activity diagram. | |
Experience with the new system. |
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
Delete post | |
Delete comment | |
Enlarge image | |
Search name in profile/friends | |
Save state in profile tabs. | |
Mentions | |
Rich text editor. | |
Refactoring: Entities removed TextPost, ImagePost |
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
data: | |
interface UserEntity { | |
} | |
interface UserDAO { | |
public UserEntity getUser(int id); | |
} |
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
@startuml | |
title Activitetsdiagram over den fremtidige bestillingsprocess \n | |
|Kunde| | |
start | |
: Besøg webinterface; | |
: Foretag forespørgsel; | |
|IT| | |
: Gem forespørgsel; |
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
@startuml | |
class Kunde { | |
+ navn | |
+ tel | |
} | |
class Salgsmedarbejder { | |
+ navn |
NewerOlder