Given that your key has expired.
$ gpg --list-keys
$ gpg --edit-key KEYID
Use the expire command to set a new expire date:
| // ==UserScript== | |
| // @name Yoshino | |
| // @namespace moe.greydus | |
| // @version 2.28.0 | |
| // @description Replaces all YouTube embed URLs | |
| // @match *://*/* | |
| // @exclude-match https://www.youtube.com/* | |
| // ==/UserScript== | |
| var iframe_list = document.querySelectorAll('iframe[src*="www.youtube.com"]'); |
| package your.package; | |
| import org.bukkit.Bukkit; | |
| import org.bukkit.ChatColor; | |
| import org.bukkit.command.*; | |
| import org.bukkit.plugin.java.JavaPlugin; | |
| import java.lang.reflect.Field; | |
| import java.util.ArrayList; | |
| import java.util.Arrays; |
| <?php | |
| namespace App\Controller; | |
| use App\Entity\Demo; | |
| use App\Service\PaginationService; | |
| use Symfony\Component\HttpFoundation\Request; | |
| class DemoController extends AdminController | |
| { |
| <?php | |
| use LoginType; | |
| use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; | |
| use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template; | |
| use Symfony\Bundle\FrameworkBundle\Controller\Controller; | |
| final class LoginController extends Controller | |
| { | |
| /** |
| (function($){ | |
| $(function(){ | |
| $.ajax({ | |
| contentType: 'application/text; charset=utf-8', | |
| crossBrowser: true, | |
| type: 'GET', | |
| url: '/cdn-cgi/trace', | |
| }).done(function(d){ | |
| var data = d.replace(/[\r\n]+/g, '","').replace(/\=+/g, '":"'); | |
| data = '{"' + data.slice(0, data.lastIndexOf('","')) + '"}'; |
Place the supervisord.conf under .ebextensions/supervisor/
Place the supervisor.config under .ebextensions/
Place the data_import_consumer.conf under .ebextensions/supervisor/
| Joy | |
| (^ω^) | |
| (-‿‿-) | |
| (o^▽^o) | |
| (⌒▽⌒)☆ | |
| <( ̄︶ ̄)> | |
| ヽ(・∀・)ノ | |
| (´。• ω •。`) | |
| ( ̄ω ̄) |
| # UPDATED 17 February 2019 | |
| # Redirect all HTTP traffic to HTTPS | |
| server { | |
| listen 80; | |
| listen [::]:80; | |
| server_name www.domain.com domain.com; | |
| return 301 https://$host$request_uri; | |
| } | |
| # SSL configuration |
| static Map<String, String[]> words = new HashMap<>(); | |
| static int largestWordLength = 0; | |
| public static void loadConfigs() { | |
| try { | |
| BufferedReader reader = new BufferedReader(new InputStreamReader(new URL("https://docs.google.com/spreadsheets/d/1hIEi2YG3ydav1E06Bzf2mQbGZ12kh2fe4ISgLg_UBuM/export?format=csv").openConnection().getInputStream())); | |
| String line = ""; | |
| int counter = 0; | |
| while((line = reader.readLine()) != null) { |