VirtualTam's bookmarks
59 bookmarks found
-
-
- Melody with chords. Chord diagrams described on top of the score.
- Fret diagrams explained and developed
- https://music.stackexchange.com/questions/47957/lilypond-is-there-a-way-to-create-a-song-with-just-lyrics-and-chords-without-t
- http://danlovesguitars.com/2011/12/fret-diagrams-for-chords-scales-or-licks/#lilypond
- https://github.com/lilypond/lilypond/blob/master/ly/string-tunings-init.ly
-
Setup Kubernetes on a Raspberry Pi Cluster
2018-09-28 - https://www.cncf.io/blog/2016/11/29/diversity-scholarship-series-programming-journey-becoming-kubernetes-maintainer/
- https://github.com/kubernetes/community/blob/master/contributors/design-proposals/multi-platform.md
- https://www.slideshare.net/MathiasRenner/high-availability-performance-of-kubernetes-and-docker-swarm-on-a-raspberry-pi-cluster/
- https://github.com/hypriot/image-builder-rpi
-
Writing exporters | Prometheus
2018-09-24 -
Kubernetes plugin and examples:
Kubernetes pipeline plugin:
- https://github.com/jenkinsci/kubernetes-pipeline-plugin
- https://jenkins.io/doc/pipeline/steps/kubernetes-pipeline-steps/
Relevant issues:
- https://issues.jenkins-ci.org/browse/JENKINS-48135 - Multiple containers in declarative pipelines
- https://issues.jenkins-ci.org/browse/JENKINS-51353 - Request for volumes in declarative pipelines
Persisting volumes:
- https://kubernetes.io/docs/concepts/storage/persistent-volumes/
- https://cloud.google.com/kubernetes-engine/docs/concepts/persistent-volumes
- https://devopscube.com/persistent-volume-google-kubernetes-engine/
- http://www.monkeylittle.com/blog/2017/02/08/adding-persistent-volumes-to-jenkins-with-kubernetes-volumes.html
- https://stackoverflow.com/questions/48068973/volume-mounting-in-jenkins-on-kubernetes
Declarative pipelines with YAML spec:
- https://github.com/jenkinsci/kubernetes-plugin/blob/master/examples/declarative-multiple-containers.groovy
- https://stackoverflow.com/questions/47470498/how-to-define-multiple-containers-in-declarative-pipeline
Scripted pipelines:
XML (!):
-
Container setup:
- https://gist.github.com/netdesk/c1db2985b542f9916995139318e5a7ce
- https://hub.docker.com/r/jwilder/nginx-proxy/
- https://hub.docker.com/r/jrcs/letsencrypt-nginx-proxy-companion/
Gitlab settings:
- https://docs.gitlab.com/omnibus/docker/
- https://docs.gitlab.com/ce/administration/environment_variables.html
- https://docs.gitlab.com/omnibus/settings/ssl.html
- https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/files/gitlab-config-template/gitlab.rb.template
Performance considerations:
- https://docs.gitlab.com/omnibus/settings/memory_constrained_envs.html (skip the
cgroups
section for Gitaly as we are already running in a container) - https://docs.gitlab.com/ee/update/#gitaly-omnibus-gitlab-configuration-structure-change for Gitlab 16 changes to Gitaly configuration
-
libGDX - DragAndDrop
2018-04-29 - https://github.com/libgdx/libgdx/blob/master/tests/gdx-tests/src/com/badlogic/gdx/tests/DragAndDropTest.java
- https://libgdx.badlogicgames.com/nightlies/docs/api/com/badlogic/gdx/scenes/scene2d/utils/DragAndDrop.html
- https://stackoverflow.com/questions/16287759/how-to-drag-and-drop-actors-on-libgdx-scene2d
- https://stackoverflow.com/questions/21426845/libgdx-drag-and-drop
- https://gamedev.stackexchange.com/questions/87378/drag-and-drop-in-libgdx-target-and-source
- https://gamedev.stackexchange.com/questions/134666/how-to-drag-and-drop-objects-in-libgdx
- http://www.java-gaming.org/index.php?topic=33266.0
- http://www.badlogicgames.com/forum/viewtopic.php?t=3023
- http://www.badlogicgames.com/forum/viewtopic.php?t=16932
- https://www.reddit.com/r/gamedev/comments/24q3ms/drag_and_drop_inventory_tutorials_with_libgdx/
-
PowerShell Survival Kit
2018-03-07 Home:
- https://docs.microsoft.com/en-us/powershell/
- https://docs.microsoft.com/en-us/powershell/scripting/getting-started/fundamental/using-windows-powershell-for-administration?view=powershell-6
Wikiversity:
- https://en.wikiversity.org/wiki/PowerShell
- https://en.wikiversity.org/wiki/PowerShell/Variables
- https://en.wikiversity.org/wiki/PowerShell/Arrays_and_Hash_Tables
- https://en.wikiversity.org/wiki/PowerShell/Loops
Basics:
- https://stackoverflow.com/questions/1825585/determine-installed-powershell-version
- https://stackoverflow.com/questions/8343767/how-to-get-the-current-directory-of-the-cmdlet-being-executed
- https://superuser.com/questions/237902/how-can-one-show-the-current-directory-in-powershell
- https://stackoverflow.com/questions/6138849/how-do-you-move-files-folders-across-volumes-with-powershell
Commands and executables:
HTTP:
ZIP archives:
- https://serverfault.com/questions/18872/how-to-zip-unzip-files-in-powershell
- https://stackoverflow.com/questions/27768303/how-to-unzip-a-file-in-powershell
- https://www.reddit.com/r/PowerShell/comments/454e4y/how_do_i_unzip_a_zip_file_with_powershell/
- https://github.com/auberginehill/unzip-silently
- To extract silently: https://github.com/auberginehill/unzip-silently/blob/master/Unzip-Silently.ps1#L352
-
Observer pattern - Wikipedia
2018-02-19