Skip to content

Instantly share code, notes, and snippets.

2020-08-22 22:36:17,509:DEBUG:certbot._internal.main:certbot version: 1.7.0
2020-08-22 22:36:17,509:DEBUG:certbot._internal.main:Arguments: ['--authenticator', 'webroot', '--installer', 'nginx']
2020-08-22 22:36:17,510:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#apache,PluginEntryPoint#manual,PluginEntryPoint#nginx,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot)
2020-08-22 22:36:17,526:DEBUG:certbot._internal.log:Root logging level set at 20
2020-08-22 22:36:17,526:INFO:certbot._internal.log:Saving debug log to /var/log/letsencrypt/letsencrypt.log
2020-08-22 22:36:17,527:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer nginx
2020-08-22 22:36:17,679:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * nginx
Description: Nginx Web Server plugin
Interfaces: IAuthenticator, IInstaller, IPlugin
Entry point: nginx = certbot_nginx._internal.configurator:NginxConfigurator
pat@angel:~$ sudo cat /var/log/letsencrypt/letsencrypt.log
2020-08-19 22:24:17,139:DEBUG:certbot._internal.main:certbot version: 1.7.0
2020-08-19 22:24:17,140:DEBUG:certbot._internal.main:Arguments: ['--nginx']
2020-08-19 22:24:17,140:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#apache,PluginEntryPoint#manual,PluginEntryPoint#nginx,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot)
2020-08-19 22:24:17,157:DEBUG:certbot._internal.log:Root logging level set at 20
2020-08-19 22:24:17,157:INFO:certbot._internal.log:Saving debug log to /var/log/letsencrypt/letsencrypt.log
2020-08-19 22:24:17,158:DEBUG:certbot._internal.plugins.selection:Requested authenticator nginx and installer nginx
2020-08-19 22:24:17,308:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * nginx
Description: Nginx Web Server plugin
Interfaces: IAuthenticator, IInstaller, IPlugin
@pferrel
pferrel / gist:e016b350758a349bcdaacf1cc53de536
Created August 8, 2017 15:53
building vw JNI wrapper--odd test logs that say error but aren't counted as errors
Maclaurin:java pat$ mvn install
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=512M; support was removed in 8.0
[INFO] Scanning for projects...
[INFO] Inspecting build with total of 1 modules...
[INFO] Installing Nexus Staging features:
[INFO] ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Vowpal Wabbit JNI Layer 8.4.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
@pferrel
pferrel / gist:d1ba38520fc9d516574d2eee9f49d53a
Created August 4, 2017 21:15
VW 8.4.1-SNAPSHOT build log macOS 10.12.6 Sierra
Maclaurin:vw pat$ make all
Making all in vowpalwabbit
/Applications/Xcode.app/Contents/Developer/usr/bin/make all-am
depbase=`echo allreduce_sockets.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/usr/local/include -I/include -D_THREAD_SAFE -Wall -Wno-unused-local-typedefs -pedantic -stdlib=libc++ -I ../rapidjson/include -O3 -fomit-frame-pointer -DNDEBUG -std=gnu++11 -MT allreduce_sockets.lo -MD -MP -MF $depbase.Tpo -c -o allreduce_sockets.lo allreduce_sockets.cc &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/usr/local/include -I/include -D_THREAD_SAFE -Wall -Wno-unused-local-typedefs -pedantic -stdlib=libc++ -I ../rapidjson/include -O3 -fomit-frame-pointer -DNDEBUG -std=gnu++11 -MT allreduce_sockets.lo -MD -MP -MF .deps/allreduce_sockets.Tpo -c allreduce_sockets.cc -fno-common -DPIC -o .libs/allreduce_sockets.o
libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/usr/local/include -I/include -D_THREAD
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x000000012578bb1e, pid=96762, tid=0x0000000000001b03
#
# JRE version: Java(TM) SE Runtime Environment (8.0_102-b14) (build 1.8.0_102-b14)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.102-b14 mixed mode bsd-amd64 compressed oops)
# Problematic frame:
# C [vw_jni8760491718649151294.Darwin.x86_64.lib+0x84b1e] _ZNK5boost15program_options11typed_valueImcE6notifyERKNS_3anyE+0x4e
#
/**
* Created by rawkintrevo on 4/5/17.
*/
// Only need these so intelliJ doesn't complain
import org.apache.mahout.math._
import org.apache.mahout.math.scalabindings._
import org.apache.mahout.math.drm._
import org.apache.mahout.math.scalabindings.RLikeOps._
import org.apache.mahout.math.drm.RLikeDrmOps._
package org.apache.mahout.examples
import org.apache.mahout.drivers._
import org.apache.mahout.math.cf.SimilarityAnalysis
object RecommenderDriver extends MahoutDriver {
/**
* @param args Command line args, if empty a help message is printed.
*/
override def main(args: Array[String]): Unit = {
@pferrel
pferrel / gist:7305338
Created November 4, 2013 16:37
Controller that fills in the template. It does an infinite scroll and so inserts data into the collection this.videos with successive VideoSearch.query() calls for new pages of data. The view data https://gist.github.com/pferrel/7304968 looks correct.
GuideControllers.controller('VideoSearchCtrl', function($scope, VideoSearchPager) {
$scope.videoSearchPager = new VideoSearchPager();
});
// constructor function to encapsulate HTTP and pagination logic
GuideControllers.factory('VideoSearchPager', function($location, VideoSearch) {
var VideoSearchPager = function() {
this.videos = [];
this.busy = false;
@pferrel
pferrel / gist:7304968
Last active December 27, 2015 09:39
After the template is filled in. This has an infinite scroll but has only one search result so never triggers a reload.
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guide</title>
<meta name="description" content="Guide">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guide</title>
<meta content="authenticity_token" name="csrf-param" />
@pferrel
pferrel / gist:7073845
Created October 20, 2013 19:07
after javascript is fetched and executed.
<html><head><style type="text/css">@charset "UTF-8";[ng\:cloak],[ng-cloak],[data-ng-cloak],[x-ng-cloak],.ng-cloak,.x-ng-cloak,.ng-hide{display:none !important;}ng\:form{display:block;}</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guide</title>
<meta name="description" content="Guide">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guide</title>
<meta content="authenticity_token" name="csrf-param">
<meta content="oFQzN0TsXsHQLgSmJA4awjfcgp2RKSyxvsJEV9Un0gA=" name="csrf-token">