This Gist is there to help you creating a Sankey Diagram from your Google Spreadsheets.
- Open a spreadsheet
- Click "Tools" -> "Scripts"
| import get from 'lodash.get'; | |
| /** | |
| * Subscribe partially to redux store changes | |
| * | |
| * @example | |
| * subscribe(store, "backup.url", (state, prevState) => console.log("change!", state, prevState)); | |
| * | |
| * @param {Redux.Store} store - Redux store | |
| * @param {String} path - Path within the store object that should be watched for change. See https://lodash.com/docs/4.17.15#get |
Install normally using the installer, after the setup reboot into recovery mode (from the USB stick). Make sure to install in UEFI mode (you need systemd-boot).
If the USB stick is not working for you, because of the old Kernel version (2.6.x), you can also use an Ubuntu 19.10 / 20.04 boot stick. ZFS suport is enabled there out of the box.
Steps:
| <plist version="1.0"> | |
| <dict> | |
| <key>ConsentText</key> | |
| <dict> | |
| <key>default</key> | |
| <string>Installs APN web.vodafone.de IPv4v6</string> | |
| </dict> | |
| <key>PayloadContent</key> | |
| <array> | |
| <dict> |
| #!/usr/bin/python | |
| """ Ansible Inventory Generated From Netbox | |
| Author: Stanley Karunditu <stanley@linuxsimba.com> | |
| License: MIT | |
| Requirements: | |
| * use netbox device roles that result in hyphenated role names. E.g |
To use the most modern version of Postgres software we need to add postgresql repository. Edit /etc/apt/sources.list or create /etc/apt/sources.list.d/pgdg.list and add there a line: deb http://apt.postgresql.org/pub/repos/apt/ jessie-pgdg main
Then import the repository signing key, and update the package lists:
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get updateInstall a new version of PostgreSQL server.
Once the Debian upgrade finished, I used dpkg-query -l postgresql* to check which versions of postgres I have installed.
| #!/usr/bin/env python2 | |
| import time | |
| import serial | |
| import struct | |
| import binascii | |
| mem_addr = 0x80000000 | |
| ser= serial.Serial('/dev/ttyUSB0', 115200, timeout=1) |
| #!/usr/bin/env python | |
| # coding: utf-8 | |
| """Automate managing an Archlinux repository of AUR-Only packages | |
| Automatically checks the AUR for version changes, rebuilds packages and adds | |
| them to a proper Archlinux repository so you can have your computers use the | |
| latest version without the hassle of manually checking for updates, rebuilding, | |
| package distribution etc pp | |
| #!/usr/bin/bash | |
| # Copyright (c) Joakim Reinert. All rights reserved. | |
| # This Source Code Form is subject to the terms of the Mozilla Public | |
| # License, v. 2.0. If a copy of the MPL was not distributed with this | |
| # file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
| API_URL='https://api.domrobot.com/xmlrpc/' | |
| TMPDIR='/tmp/inwx-acme' |