VirtualTam's bookmarks
11 bookmarks found
Page 1 of 1
-
Open questions, potential solutions or workarounds:
- Loki does not support out-of-order message ingestion
- There is not Java client for Loki
- The Wiced MQTT queue might be limited depending on the volume of logs
-
- https://stackoverflow.com/questions/10622179/how-to-find-identify-large-commits-in-git-history
- https://stackoverflow.com/questions/223678/which-commit-has-this-blob
1git rev-list --objects --all \ 2| git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' \ 3| sed -n 's/^blob //p' \ 4| sort --numeric-sort --key=2 --reverse \ 5| head -n 150 \ 6| cut -c 1-12,41- \ 7| $(command -v gnumfmt || echo numfmt) --field=2 --to=iec-i --suffix=B --padding=7 --round=nearest
-
- https://www.instructables.com/id/Faux-Nixie-Tube-Clock/
- https://hackaday.io/project/18633-lixie-an-led-alternative-to-the-nixie-tube
- https://learn.adafruit.com/adafruit-neopixel-uberguide/the-magic-of-neopixels
- https://www.tindie.com/products/connornishijima/lixie-an-led-alternative-to-the-nixie-tube/
- https://en.wikipedia.org/wiki/Lightguide_display
- https://github.com/connornishijima/Lixie-arduino
- https://github.com/connornishijima/Lixie-arduino/blob/master/examples/ESP8266/ntp_clock/ntp_clock.ino
- https://imgur.com/gallery/mRSaP
- https://imgur.com/a/6soGR
- http://s1294.photobucket.com/user/mitchmarkin/library/Lixie%20Clock?sort=4&page=1
-
Shreddit's Album of the Week: Electric Wizard - Electric Wizard (1995) -- 20th Anniversary
2015-08-17 "Two clichés make us laugh. A hundred cliches move us. For we sense dimly that the clichés are talking among themselves, and celebrating a reunion."
"Electric Wizard are the product of a hundred cliches. Everything about them is a trope, but despite that, they are stupidly heavy and even though they often sink into kitsch to the detriment of their songwriting, they're sort of a unique band in that they're the best at amplifier massage."
https://www.reddit.com/r/Metal/comments/2re6wz/shreddits_album_of_the_week_electric_wizard/cnfdrio
-
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?
-
Are there any worse sorting algorithms than Bogosort (a.k.a Monkey Sort)? - Stack Overflow
2014-11-18 You had me at "Bogobogosort", Internet!
-
Praise the Sorter!
Page 1 of 1