VirtualTam's bookmarks
274 bookmarks found
-
How to Setup FileBeat with Basic Auth for LogStash Output? - Filebeat - Discuss the Elastic Stack
2018-01-12 - https://github.com/logstash-plugins/logstash-input-beats/issues/8
- https://www.elastic.co/guide/en/logstash/current/plugins-inputs-beats.html
- https://www.elastic.co/guide/en/beats/filebeat/master/config-filebeat-logstash.html
- https://www.elastic.co/guide/en/beats/filebeat/current/configuring-ssl-logstash.html
- https://www.gilesorr.com/blog/elkbeats-beats-secure.html
- https://discuss.elastic.co/t/beats-logstash-security-use-of-security-token-to-authenticate-clients/104981/4
- https://stackoverflow.com/questions/40341664/how-to-configure-logstash-and-filebeat-ssl-communication
-
- https://github.com/docker-library/official-images#architectures-other-than-amd64
- https://hub.docker.com/u/arm32v7/
- https://forums.docker.com/t/automated-build-raspberry-pi-based-image-on-docker-hub/4155/7
- https://www.ecliptik.com/Cross-Building-and-Running-Multi-Arch-Docker-Images/
- https://stackoverflow.com/questions/44925788/dockerfile-compile-in-local-machine-but-fails-in-docker-hub-for-automated-build
- https://github.com/alexellis/docker-arm
- https://github.com/resin-io-projects/armv7hf-debian-qemu
- https://github.com/cmosh/alpine-arm
-
GRUB dual-boot considerations
2018-01-05 -
Windows - Locate & fix the MBR
2018-01-05 - https://superuser.com/questions/510485/how-to-tell-which-physical-disks-have-bootable-mbr
- https://neosmart.net/wiki/fix-mbr/
- https://neosmart.net/wiki/reboot-and-select-proper-boot-device/
- https://askubuntu.com/questions/859685/how-to-delete-the-bootable-flag-of-a-partition
- https://superuser.com/questions/596919/how-to-set-boot-disk-flag-with-diskpart
-
- 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
-
-
DMARC How-tos / FAQ
2017-12-21 -
https://blog.returnpath.com/how-to-explain-dmarc-in-plain-english/
-
https://blog.returnpath.com/infographic-how-to-prevent-email-fraud-with-dmarc/
-
https://blog.returnpath.com/build-your-dmarc-record-in-15-minutes-v2/
-
https://blog.returnpath.com/how-to-read-your-first-dmarc-reports-part-1/
-
https://blog.returnpath.com/how-to-read-your-first-dmarc-reports-part-2/
-
https://webmasters.stackexchange.com/questions/102509/dmarc-understanding-aggregate-reports
-
https://webmasters.stackexchange.com/questions/90326/dmarc-spf-fail-dkim-pass-source-ip-not-mine
-
https://www.endpoint.com/blog/2014/04/15/spf-dkim-and-dmarc-brief-explanation
-
https://stackoverflow.com/questions/30342550/why-do-i-receive-a-dmarc-report-everyday
-
-
A Docker Build Pipeline as Code with Jenkins
2017-12-04 - https://jenkins.io/doc/book/pipeline/docker/
- https://wiki.jenkins.io/display/JENKINS/Docker+Pipeline+Plugin
- https://github.com/jenkinsci/docker-workflow-plugin
- https://go.cloudbees.com/docs/cloudbees-documentation/cje-user-guide/index.html#docker-workflow
- https://devops.stackexchange.com/questions/2143/how-to-publish-a-docker-image-to-a-private-docker-registry-using-jenkins-blueoc
-
Docker - CMD and ENTRYPOINT
2017-12-04 -
Actors:
- database server / cluster
- load-balanced application servers relying on a database schema with migrations
- reverse proxy
Issue:
- managing database schema migrations
Possible sequence:
- create the database
- run a service that executes database schema migrations
- start application servers
- start the load-balancer / reverse-proxy
Resources:
- https://www.reddit.com/r/docker/comments/2t2pnf/what_are_best_strategies_to_migrate_relational/
- https://softwareengineering.stackexchange.com/questions/357929/db-migration-strategy-for-docker-containers-in-aws-ecs
- https://stackoverflow.com/questions/41592091/run-a-database-migration-command-when-deploying-a-docker-container-to-aws
- https://ltd-keeper.lsst.io/gke-migrations.html
- https://stackoverflow.com/questions/31715239/docker-compose-database-migrations-and-other-pre-post-scripts
- https://stackoverflow.com/questions/38089999/docker-compose-rails-best-practice-to-migrate
- https://stackoverflow.com/questions/37058812/how-best-to-run-one-off-migration-tasks-in-a-kubernetes-cluster
-
Django, Docker and MySQL
2017-11-29 Django ORM:
- https://docs.djangoproject.com/en/1.11/ref/databases/#mysql-notes
- https://stackoverflow.com/questions/34777755/how-to-config-django-using-pymysql-as-driver
- https://stackoverflow.com/questions/19189813/setting-django-up-to-use-mysql
MySQL / MariaDB / Percona connectors:
- https://stackoverflow.com/questions/4960048/python-3-and-mysql
- https://github.com/PyMySQL/PyMySQL
- https://pypi.python.org/pypi/mysql-connector-python
Docker images:
- https://store.docker.com/images/mariadb
- https://store.docker.com/images/mysql
- https://store.docker.com/images/percona
Compose and Django ORM database migrations:
-
Python - Logging and Multiprocessing
2017-11-09 - https://docs.python.org/3/library/logging.html
- https://docs.python.org/3/library/multiprocessing.html#multiprocessing.Queue
- https://stackoverflow.com/questions/641420/how-should-i-log-while-using-multiprocessing-in-python
- https://stackoverflow.com/questions/21419323/multiprocessing-logging-lock-vs-queue
- https://github.com/jruere/multiprocessing-logging
-
Watching a directory for file changes
2017-11-03 Python:
- http://brunorocha.org/python/watching-a-directory-for-file-changes-with-python.html
- https://github.com/gorakhargosh/watchdog
- https://stackoverflow.com/questions/182197/how-do-i-watch-a-file-for-changes
- https://stackoverflow.com/questions/136168/get-last-n-lines-of-a-file-with-python-similar-to-tail
C/C++:
-
Git - Merge and/or Rebase workflows
2017-10-26 - https://www.atlassian.com/git/tutorials/merging-vs-rebasing
- https://stackoverflow.com/questions/804115/when-do-you-use-git-rebase-instead-of-git-merge
- https://medium.com/bekk/why-you-should-stop-using-git-rebase-5552bee4fed1
- https://medium.com/@porteneuve/getting-solid-at-git-rebase-vs-merge-4fa1a48c53aa