Given that your key has expired.
$ gpg --list-keys
$ gpg --edit-key KEYID
Use the expire command to set a new expire date:
| #include <iostream> | |
| #include <algorithm> // swap, sort, min, find, max | |
| using namespace std; | |
| class Node | |
| { | |
| int data; | |
| Node* left; | |
| Node* right; | |
| int height; |
Picking the right architecture = Picking the right battles + Managing trade-offs
| #include <math.h> | |
| #include <algorithm> | |
| #include <string> | |
| #include <immintrin.h> | |
| using namespace std;typedef float R; | |
| #define _W 79 | |
| #define _H 39 | |
| #define EP 0.01f | |
| #define OP operator | |
| #define C const |
| """ | |
| Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy) | |
| BSD License | |
| """ | |
| import numpy as np | |
| # data I/O | |
| data = open('input.txt', 'r').read() # should be simple plain text file | |
| chars = list(set(data)) | |
| data_size, vocab_size = len(data), len(chars) |
| #!/usr/bin/env python3 | |
| from cffi import FFI | |
| from textwrap import dedent | |
| from os import getpid | |
| from sys import version_info | |
| if __name__ == '__main__': | |
| from sys import argv | |
| print('Host is: %s (%s)' % (version_info, getpid())) |
| # This is an example of the Stack Exchange Tier 1 HAProxy config | |
| # The only things that have been changed from what we are running are: | |
| # 1. User names have been removed | |
| # 2. All Passwords have been remove | |
| # 3. IPs have been changed to use the example/documentation ranges | |
| # 4. Rate limit numbers have been changed to randome numbers, don't read into them | |
| userlist stats-auth | |
| group admin users $admin_user | |
| user $admin_user insecure-password $some_password |
| // C++ includes used for precompiling -*- C++ -*- | |
| // Copyright (C) 2003-2013 Free Software Foundation, Inc. | |
| // | |
| // This file is part of the GNU ISO C++ Library. This library is free | |
| // software; you can redistribute it and/or modify it under the | |
| // terms of the GNU General Public License as published by the | |
| // Free Software Foundation; either version 3, or (at your option) | |
| // any later version. |
| import sys | |
| class HashTable: | |
| def __init__(self): | |
| self.fill = 8 # Active + # Dummy | |
| self.list = [0] * self.fill | |
| self.used = 0 # Active | |
| def __getitem__(self, slot): | |
| return self.list[slot] | |
| def insert(self, slot, key): |
| package hbase.sandbox; | |
| import java.io.IOException; | |
| import org.apache.hadoop.conf.Configuration; | |
| import org.apache.hadoop.hbase.HBaseConfiguration; | |
| import org.apache.hadoop.hbase.HColumnDescriptor; | |
| import org.apache.hadoop.hbase.HTableDescriptor; | |
| import org.apache.hadoop.hbase.client.HBaseAdmin; |