VirtualTam's bookmarks
39 bookmarks found
-
time - The Go Programming Language
2018-09-23 - https://golang.org/pkg/time/#example_Parse
- https://stackoverflow.com/questions/6589636/date-parsing-in-go
- https://stackoverflow.com/questions/40939261/golang-parse-strange-date-format
- https://gobyexample.com/time-formatting-parsing
- https://medium.com/@Martynas/formatting-date-and-time-in-golang-5816112bf098
-
Extension with Compose format 3.4+:
- https://github.com/moby/moby/issues/31101
- https://github.com/docker/compose/issues/4315
- https://github.com/docker/cli/pull/452
- https://github.com/docker/compose/pull/5140
- https://stackoverflow.com/questions/45279662/extend-service-in-docker-compose-3
Inheritance through YAML anchors:
-
Go - Formatting tabular data
2018-07-16 Reference:
- https://golang.org/pkg/text/template/
- https://golang.org/pkg/text/tabwriter/
- https://golang.org/pkg/strings/
Articles:
Threads:
-
Docker - Command output formatting
2018-06-18 -
Linux and ACSM ePub books
2018-04-21 - https://superuser.com/questions/1027608/how-to-read-an-acsm-file-on-linux
- https://askubuntu.com/questions/461409/how-can-i-remove-the-drm-from-an-epub-file
- https://askubuntu.com/questions/299747/converting-epub-files-to-pdf-format
- https://apprenticealf.wordpress.com/
- https://github.com/apprenticeharper/DeDRM_tools
- https://manual.calibre-ebook.com/conversion.html
- https://askubuntu.com/questions/169618/is-there-a-way-to-convert-a-pdf-file-to-epub-format-without-using-calibre
-
Atom and RSS libraries for PHP
2018-04-02 FeedWriter, aka Universal Feed Generator:
- https://github.com/mibe/FeedWriter
- http://ajaxray.com/blog/php-universal-feed-generator-supports-rss-10-rss-20-and-atom/
- https://www.phpclasses.org/package/4427-PHP-Generate-feeds-in-RSS-1-0-2-0-an-Atom-formats.html
SimplePie:
Zend Feed:
-
- https://www.linuxquestions.org/questions/linux-software-2/difficulty-installing-adobe-shockwave-player-4175562367/
- https://www.linuxquestions.org/questions/linux-software-2/is-there-a-way-to-open-dcr-files-with-linux-4175604206/
- https://forums.adobe.com/thread/149027
- https://askubuntu.com/questions/229628/how-can-i-get-shockwave-flash-to-work-on-ubuntu-12-04
-
Apache:
-
Linux Filesystems 101 - Block Devices
2017-08-24 -
RFC 4287 - The Atom Syndication Format
2017-08-09 -
YO DAWG! I SAW YOU LIKE STANDARDS...
-
LaTeX / Beamer / Minted
2017-04-11 Code / minted / listings
- http://ftp.math.purdue.edu/mirrors/ctan.org/macros/latex/contrib/minted/minted.pdf
- https://tex.stackexchange.com/questions/236706/undefined-control-sequence-with-minted
- https://tex.stackexchange.com/questions/103141/set-global-options-for-inputminted
- https://github.com/gpoore/minted/issues/125
Minted formatting
- https://tex.stackexchange.com/questions/85932/mintedinconsolata-straight-quotes
- https://tex.stackexchange.com/questions/5443/use-another-monospaced-font
- http://www.tug.dk/FontCatalogue/sourcecodepro/
Columns
- https://tex.stackexchange.com/questions/32931/multiple-columns-with-images-and-wrapped-text-in-beamer
- https://tex.stackexchange.com/questions/1858/stable-vertical-alignment-of-columns-in-beamer
Icons / images
- FA - https://tex.stackexchange.com/questions/165150/how-to-use-fontawesome-icons-in-latex-with-moderncv
- FA - https://tex.stackexchange.com/questions/338657/how-to-include-socials-icons-like-github-and-linkedin-in-moderncv
- SVG - https://tex.stackexchange.com/questions/2099/how-to-include-svg-diagrams-in-latex
- SVG - https://tex.stackexchange.com/questions/122871/include-svg-images-with-the-svg-package
Overlay / Pause / step-by-step
- https://tex.stackexchange.com/questions/26987/show-a-frame-step-by-step
- https://tex.stackexchange.com/questions/117887/how-to-insert-overlays-in-latex-beamer
Titles
URL
-
Python unit testing frameworks: Nose, Pytest
2015-02-13 Python's built-in unittest module is quite cool, but a bit limited and way too verbose (read: it's quite not easy to incite developers to write unit tests)
I'm currently looking for more dev-friendly solutions, the key points being:
- writing test code should be easy and straight-forward -keep the focus on "what to test" instead of "how to transcribe a process to a test"
- parallelization! -we, spoiled developers, should make good use of our way-too-many-cores build machines...
- complete feature set!
- we don't want to just run tests...
- coverage reports (find dead/weak/untested code sections)
- output formatting (JUnit-XML seems to be quite a common format out there)
There seem to be 3 solutions in Python:
- stock unittest + project-dependent customizations / test helpers
- nosetests
- py.test
And 2 ways of gettings things done:
- keeping things stock: no external dependency, project-specific implementation...
- using a test framework: one more module in your (test) virtualenv, more concise tests, more features (// run, code coverage, etc.)
Some links:
-
xkcd: ISO 8601
2013-08-19 Formatting dates...