VirtualTam's bookmarks
105 bookmarks found
-
Reading game frames in Python with OpenCV - Python Plays GTA V | Python Programming Tutorials
2017-04-11 SCOOTER BROTHERS! WE'RE SCOOTER BROTHERS!
Scooter champ' algorithm:
- capture video with OpenCV
- process frames: region of interest, edge detection
- send DirectInput controls
- watch & enjoy!
src https://github.com/sentdex/pygta5/ via https://www.reddit.com/r/Python/comments/64l4pp/python_plays_gta_v_tutorial_series_creating_a/
-
presentation https://www.youtube.com/watch?v=XKwBtDhZ2Gc
-
Diego Stocco - Experibass
2015-10-31 -
Mylène Farmer & Sting - Stolen Car
2015-10-28 Waitaminit... W. T. F.?
Welcome to https://www.youtube.com/watch?v=R7MmIhvObvs
-
Sylvain Luc - Petit Géant (documentaire)
2015-04-22 Partie 1 - https://www.youtube.com/watch?v=NtjJUyF3Vpw Partie 2 - https://www.youtube.com/watch?v=_0VqYCb-QDg Partie 3 - https://www.youtube.com/watch?v=EbFr1CtMRxM Partie 4 - https://www.youtube.com/watch?v=8rESf4eAmOA
-
Bill Bruford and the Beat
2015-03-19 Part 1: ? Part 2: https://www.youtube.com/watch?v=0KCmETeBkEM Part 3: https://www.youtube.com/watch?v=Wl_S5k7ixGY
-
Ceiling cat paper model
2014-12-27 He's watching you!
-
Uses a project or repository's history to plot user contributions, displaying an elegant, colored graph of the file arborescence.
After running it on quite different projects...
- Python/Bash CI/Jenkins scripts
- Qt apps: GoldenDict, Psi+
- PHP website: Shaarli
...watching some vids on teh intartubez:
- Minecraft: https://www.youtube.com/watch?v=zRjTyRly5WA
- Linux kernel: https://www.youtube.com/watch?v=AhDiYPLo3p4
- Python: https://www.youtube.com/watch?v=cNBtDstOTmA
It allows to arbitrary spot some interesting implementation aspects (sorted by descending impact):
- language-dependent trees (oh hai Java packages ^^)
- framework-dependent trees
- project-management method (none, Agile, TDD)
Having a graphical tool also quickly shows:
- the overall structure of the project (a bit cooler than a simple $ tree, way quicker than loading the project on an IDE)
- the repartition of files (by extensions)
- who are the most active contributors
- what are the most modified files over time
- who does what: additions, deletions, refactoring
Some more CI-related matters:
- are there any tests?
- what is the source code / test code ratio? (we could expect a project/lib with N modules to have at least N test modules)
- who initiates / implements / optimizes test code?