VirtualTam's bookmarks
93 bookmarks found
-
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
-
Ansible AWX & Ansible Tower Documentation
2017-09-26 -
https://www.ansible.com/blog/2013/08/05/supercharge-ansible-with-ansibleworks-awx-1-2
-
https://jpmens.net/2017/10/23/trigger-awx-job-runs-on-scm-commit/
-
https://www.jeffgeerling.com/blog/2017/ansible-open-sources-ansible-tower-awx
-
https://www.reddit.com/r/ansible/comments/6ymmny/awx_ansible_towers_upstream_open_source_project/
-
- http://espressif.com/products/hardware/esp8266ex/overview/
- http://espressif.com/en/products/hardware/esp8266ex/resources
- https://github.com/espressif/esptool
- https://esp8266.ru/esplorer/
- https://github.com/nodemcu/nodemcu-firmware
- https://medium.com/bonus-thoughts/getting-started-with-the-esp8266-a94a85de5174
- https://blog.hackster.io/a-wi-fi-analyzer-inside-of-a-tic-tac-container-9f76483d245a
- https://medium.com/tag/esp8266
- https://github.com/dgolak/esp8266
- https://twitter.com/ESP8266
- https://github.com/esp8266
- https://github.com/esp8266/Arduino
-
Ansible | Logging playbook runs
2017-08-29 -
Getting Started with OpenShift
2017-03-09 -
- http://www.dnspython.org/docs/1.15.0/
- http://www.dnspython.org/examples.html
- https://stackoverflow.com/questions/5235569/using-the-dig-command-in-python#5237068
- https://www.safaribooksonline.com/library/view/python-for-unix/9780596515829/ch14.html
- https://stackoverflow.com/questions/17681230/how-make-dns-queries-in-dns-python-as-dig-with-aditional-records-section
- https://stackoverflow.com/questions/13842116/how-do-we-get-txt-cname-and-soa-records-from-dnspython
-
An interview with Simon Roth, the developer of space colony simulator 'Maia' | GamingOnLinux
2017-02-02 "Currently I am coding love and relationships into the game, and am having to deal with some colonists who are getting a bit polyamorous with the non-sentient furniture items. I am yet to decide as to whether this is a bug."
-
Python: get current datetime as a Unix epoch
2017-01-04 1import calendar 2import time 3 4calendar.timegm(time.gmtime())