VirtualTam's bookmarks
1974 bookmarks found
-
Open Distro for Elasticsearch | Open Distro
2020-12-20 -
What programs use hjkl; navigation? : vim
2020-11-13 -
-
- Effective Go - Interface checks (blank implements)
- Ensure a type implements an interface at compile time in Go
- Interface guards in Go
- Compile time checks to ensure your type satisfies an interface
- What does an underscore and interface name after keyword var mean?
- What is
var _ type = &type{}
used for? - Using interfaces in Go - Interface guards
-
Easy Rust: Rust explained using easy English
2020-09-23 -
Python testing: unittest / pytest
2020-09-07 - https://blog.j-labs.pl/2019/02/Pytest-why-its-more-popular-than-unittest
- https://www.reddit.com/r/Python/comments/fdv5f2/pytest_or_unittest_in_2020/
- https://www.reddit.com/r/Python/comments/6s4a4p/played_with_pytest_for_the_first_time_today_uhh/
- https://www.reddit.com/r/Python/comments/5uxh22/unittest_vs_pytest/
- https://stackoverflow.com/questions/61121824/pytest-vs-unittest-framework-testloader-and-loadtestsfromtestcase-methods
- https://stackoverflow.com/questions/27954702/unittest-vs-pytest
-
Monitoring SFR Box NB4 / NB6
2020-08-15 - https://forum.jeedom.com/viewtopic.php?f=144&t=45702&sid=e1104bba9b1c4006760a011c129077f3
- https://github.com/limad/plugin-sfrBox
- https://limad.github.io/plugin-sfrBox/fr_FR/
- https://la-communaute.sfr.fr/t5/wifi-connexion-filaire-et-d%C3%A9bit/nb6-traffic-monitor/td-p/2112893
- https://forum.fhem.de/index.php?topic=81555.0
- https://blog.ariase.com/box/actualite/openbox4-linux-neufbox
-
- 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