Edit (2024): You no longer need to follow this guide! Just use PrismLauncher.
.
.
.
.
| """ | |
| MIT License | |
| Copyright (c) 2023 David Buchanan | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is |
Edit (2024): You no longer need to follow this guide! Just use PrismLauncher.
.
.
.
.
| #' Description | |
| #' This file runs a live election-night forecast based on The Economist's pre-election forecasting model | |
| #' available at projects.economist.com/us-2020-forecast/president. | |
| #' It is resampling model based on https://pkremp.github.io/update_prob.html. | |
| #' This script does not input any real election results! You will have to enter your picks/constraints manually (scroll to the bottom of the script). | |
| #' | |
| #' Licence | |
| #' This software is published by *[The Economist](https://www.economist.com)* under the [MIT licence](https://opensource.org/licenses/MIT). The data generated by *The Economist* are available under the [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/). | |
| #' The licences include only the data and the software authored by *The Economist*, and do not cover any *Economist* content or third-party data or content made available using the software. More information about licensing, syndication and the copyright of *Economist* content can be fou |
| #!/usr/bin/env bash | |
| # | |
| # ###################################################################### | |
| # Start Tor and switch the system-wide proxy settings in macOS | |
| # ---------------------------------------------------------------------- | |
| # Usage: | |
| # `./tor.sh` in Terminal, kill with ctrl + c | |
| # ---------------------------------------------------------------------- | |
| # Source: | |
| # https://kremalicious.com/simple-tor-setup-on-mac-os-x/ |
No need for homebrew or anything like that. Works with https://www.git-tower.com and the command line.
gpg --list-secret-keys and look for sec, use the key ID for the next stepgit to use GPG -- replace the key with the one from gpg --list-secret-keysxhost + ${hostname} to allow connections to the macOS host *export HOSTNAME=`hostname`* environment:
| # QEmu | |
| brew install qemu | |
| # Home for out tests | |
| mkdir ~/arm-emu | |
| cd ~/arm-emu | |
| # Download initrd and kernel | |
| wget http://ftp.de.debian.org/debian/dists/jessie/main/installer-armel/current/images/versatile/netboot/initrd.gz |
(1) I assert that any past, present and future contributions I make to the tldr-pages project are my own work, and that I have the right to license them.
(2) I agree to license all my contributions to the tldr-pages project under the terms of the license included in the tldr-pages repository I’m contributing to.
(3) I grant the tldr-pages organization a license to distribute my contributions under any open content license compliant with the Open Definition [a], or any open source software license approved by the Open Source Initiative [b], as applicable.
| #!/usr/bin/env bash | |
| # | |
| # This is sp, the command-line Spotify controller. It talks to a running | |
| # instance of the Spotify Linux client over dbus, providing an interface not | |
| # unlike mpc. | |
| # | |
| # Put differently, it allows you to control Spotify without leaving the comfort | |
| # of your command line, and without a custom client or Premium subscription. | |
| # |