Given that your key has expired.
$ gpg --list-keys
$ gpg --edit-key KEYID
Use the expire command to set a new expire date:
# https://github.com/tchellomello/python-ring-doorbell | |
from ring_doorbell import Ring | |
# ID of the newest video you want | |
OLDER_THAN = 6589184120805222376 | |
# ID of the oldest video you want | |
LAST_ONE = 6587337941997938664 | |
# grab info on this many videos at a time | |
CHUNK_SIZE = 50 |
package org.streum.interpol | |
/* Here is the interpolator itself, we just add a method `md` | |
to the `StringContext` using implicit conversions */ | |
object Markdown { | |
implicit class MDContext( val context: StringContext ) extends AnyVal { | |
// I used knockoff markdown processor. I don't have any real experience with |
This allows you to use the following video streaming services outside of the US from your Mac without having to use a proxy or VPN, so no big bandwidth issues:
#!/bin/bash | |
usage() | |
{ | |
cat << EOF | |
usage: $0 options | |
This script set ownership for all table, sequence and views for a given database | |
Credit: Based on http://stackoverflow.com/a/2686185/305019 by Alex Soto |
object IntepreterFix { | |
import scala.tools.nsc._ | |
import Interpreter._ | |
def break(args: DebugParam[_]*): Unit = { | |
val intLoop = new InterpreterLoop | |
intLoop.settings = { | |
val s = new Settings(Console.println) | |
// need to pass this explicitly to the settings for Scalac. | |
// See: http://old.nabble.com/-scala--recent-changes-in-2.8-nightly-classpath-management-td26233977.html |