Renew Let's Encrypt SSL certificates using
acme-tiny.
Please refer to the new home of letsencrypt, https://github.com/PhrozenByte/acme
| #!/bin/bash | |
| OUTDIR=. | |
| while read -r db ; do | |
| while read -r table ; do | |
| if [ "$db" == "system" ]; then | |
| echo "skip system db" | |
| continue 2; |
Renew Let's Encrypt SSL certificates using
acme-tiny.
Please refer to the new home of letsencrypt, https://github.com/PhrozenByte/acme
| import android.content.Context; | |
| import android.hardware.Camera; | |
| import android.util.Log; | |
| import android.view.SurfaceHolder; | |
| import android.view.SurfaceView; | |
| import java.io.IOException; | |
| import java.util.List; | |
| public class CameraPreview extends SurfaceView implements SurfaceHolder.Callback { |
apt-get install squidhtpasswd -md /etc/squid3/users myuserlogin`| #!/usr/bin/python | |
| # # # # # # # # # # # # # # # # # # # # | |
| # # | |
| # Script was made by Dennis # | |
| # http://stefansundin.com/blog/452 # | |
| # http://pastebin.com/8cw9LHFg # | |
| # # | |
| # # # # # # # # # # # # # # # # # # # # | |
| from datetime import datetime | |
| from sqlalchemy import Column, Integer, DateTime, ForeignKey | |
| from sqlalchemy.orm import relationship | |
| from sqlalchemy.ext.declarative import declared_attr | |
| from flask_security import current_user | |
| class AuditMixin(object): | |
| created_at = Column(DateTime, default=datetime.now) | |
| updated_at = Column(DateTime, default=datetime.now, onupdate=datetime.now) |
| package org.tempura.console.util; | |
| import java.util.ArrayList; | |
| import java.util.Collections; | |
| import java.util.List; | |
| /** | |
| * Usage: | |
| * <li>String msg = Ansi.Red.and(Ansi.BgYellow).format("Hello %s", name)</li> | |
| * <li>String msg = Ansi.Blink.colorize("BOOM!")</li> |