These are are some notes I put together on butchering the rectangular dishy cable.
FOLLOW THESE GUIDELINES AT YOUR OWN RISK. I TAKE NO RESPONSIBILITY FOR ANY DAMAGE OR INJURY YOU SUSTAIN FROM FOLLOWING OR NOT FOLLOWING THESE GUIDELINES.
DidYouMean::SPELL_CHECKERS.merge
deprecate warnings anymore.database.yml
with aliases and secrets.yml
with aliases.This is a quick walk through on how to:
This uses the free heroku and mailgun plans. If you get stuck on any part, check the full code here.
$ curl -6 -v https://portcheck.transmissionbt.com/51413 | |
* Trying 2001:41d0:c:5ac:5::1... | |
* TCP_NODELAY set | |
* Connected to portcheck.transmissionbt.com (2001:41d0:c:5ac:5::1) port 443 (#0) | |
* ALPN, offering h2 | |
* ALPN, offering http/1.1 | |
* successfully set certificate verify locations: | |
* CAfile: /etc/ssl/certs/ca-certificates.crt | |
CApath: /etc/ssl/certs | |
* TLSv1.2 (OUT), TLS handshake, Client hello (1): |
#!/usr/bin/env bash | |
############################################################ | |
# MIGRATED TO REPOSITORY | |
# https://github.com/tavinus/cloudsend.sh | |
# | |
# This gist will NOT be updated anymore | |
############################################################ | |
############################################################ |
add_filter( 'woocommerce_register_post_type_product', 'wc_modify_product_post_type' ); | |
function wc_modify_product_post_type( $args ) { | |
$args['supports'][] = 'revisions'; | |
return $args; | |
} |
EIP 1011 - Hybrid Casper FFG proposes further reducing PoW block reward from 3 ETH to 0.6 ETH. The EIP briefly mentions that this is "because the security of the chain is greatly shifted from PoW difficulty to PoS finality and because rewards are now issued to both validators and miners." This document is to serve as an addendum to that statement, providing additional data, analysis, and arguments.
We aim to show that in Hybrid Casper FFG with an 80% reduction in block reward:
Although I followed the excellent directions provided by the Boostrap 4 documentation, I found it incomplete. Here are the missing steps:
# install dependencies
npm i jquery popper.js [email protected] --save
# install dev-dependencies
npm i precss --save-dev
# use the following webpack postcss-loader config
This document will guide you through the process of setting up your online.net network addresses, DNS servers and rDNS records. For IPv4 we will use systemd-networkd (part of systemd) and odhcp6c (OpenWrt embedded DHCPv6-client) together with iproute2 for IPv6. For DNS we'll use systemd-resolved.
systemd is the default init process on Arch Linux, Debian GNU/Linux, Fedora, Ubuntu and more. iproute2 is also preinstalled there. So, if you're using a distribution that uses systemd, this tutorial should work for you. If you're using Gentoo Linux first make sure that you're using systemd.
#!/bin/bash -eu | |
# Client script to pull Yahoo Finance historical data, off of its new cookie | |
# authenticated site. Start/End Date args can be any GNU readable dates. | |
# Script requires: GNU date, curl and bash shell | |
symbol=$1 | |
startDate=$2 | |
endDate=$3 |