This is my journal about FOSDEM 2018. It took place on 3rd and 4th of February 2018.
Homepage: https://fosdem.org/2018/
| --- | |
| # ^^^ YAML documents must begin with the document separator "---" | |
| # | |
| #### Example docblock, I like to put a descriptive comment at the top of my | |
| #### playbooks. | |
| # | |
| # Overview: Playbook to bootstrap a new host for configuration management. | |
| # Applies to: production | |
| # Description: | |
| # Ensures that a host is configured for management with Ansible. |
| % cinnamon-screensaver --version | |
| cinnamon-screensaver 3.4.1 | |
| % xrandr | |
| Screen 0: minimum 320 x 200, current 3840 x 2160, maximum 8192 x 8192 | |
| LVDS1 connected (normal left inverted right x axis y axis) | |
| 1366x768 60.02 + | |
| 1360x768 59.80 59.96 | |
| 1024x768 60.00 | |
| 800x600 60.32 56.25 |
This is my journal about FOSDEM 2018. It took place on 3rd and 4th of February 2018.
Homepage: https://fosdem.org/2018/
| #!/usr/bin/python3 | |
| import getpass | |
| def del_imap(server, port, login, password, search): | |
| import imaplib, email | |
| # NOTE: According to RFC 1730 the SEARCH commands searches for 'messages that | |
| # CONTAIN the specified string. When multiple keys are specified, the result | |
| # is the intersection (AND function) of all the messages that match those |
Link: https://en.wikipedia.org/wiki/Trans-Neptunian_object
| https://addons.mozilla.org/en-US/firefox/addon/cookie-autodelete/ | |
| https://addons.mozilla.org/en-US/firefox/addon/copy-shorturl/ | |
| https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/ | |
| https://addons.mozilla.org/en-US/firefox/addon/open-tabs-next-to-current/ | |
| https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/ | |
| https://addons.mozilla.org/en-US/firefox/addon/tab-counter-webext/ | |
| https://addons.mozilla.org/en-US/firefox/addon/titleurlcopy/ | |
| https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/ | |
| https://addons.mozilla.org/en-US/firefox/addon/shaarli/ |
| #!/bin/bash | |
| # Inspired from: https://linux.samba.narkive.com/J6bwFGaF/samba-users-list-and-the-date-the-password-will-expire#post15 | |
| # Get path to sam.ldb | |
| LDBDIR=$(samba -b | grep 'PRIVATE_DIR' | awk -F ':' '{print $NF}' | sed 's/^ *//g') | |
| if [ -z "${LDBDIR}" ]; then | |
| echo "This is supposed to be a DC, but cannot obtain the Private dir." | |
| echo "Cannot Continue...Exiting." | |
| exit 1 | |
| else |