Skip to content

Instantly share code, notes, and snippets.

Process: Telephone [2263]
Path: /Applications/Telephone.app/Contents/MacOS/Telephone
Identifier: com.tlphn.Telephone
Version: 1.0.2 (102)
Code Type: X86-64 (Native)
Parent Process: launchd [1201]
Date/Time: 2012-01-16 17:25:52.605 -0500
OS Version: Mac OS X 10.6.8 (10K549)
Report Version: 6
@eighthave
eighthave / gist:2407381
Created April 17, 2012 16:39
@guardianproject.info on gibberbot
04-17 12:33:06.580: W/System.err(17158): java.net.SocketException: Socket closed
04-17 12:33:06.580: W/System.err(17158): XMPPError establishing connection with server.: remote-server-error(502) XMPPError establishing connection with server.
04-17 12:33:06.580: W/System.err(17158): -- caused by: javax.net.ssl.SSLHandshakeException: root certificate not trusted of [hyper.to]
04-17 12:33:06.580: W/System.err(17158): at org.jivesoftware.smack.XMPPConnection.initReaderAndWriter(XMPPConnection.java:674)
04-17 12:33:06.580: W/System.err(17158): at org.jivesoftware.smack.XMPPConnection.proceedTLSReceived(XMPPConnection.java:810)
04-17 12:33:06.580: W/System.err(17158): at org.jivesoftware.smack.PacketReader.parsePackets(PacketReader.java:267)
04-17 12:33:06.580: W/System.err(17158): at org.jivesoftware.smack.PacketReader.access$000(PacketReader.java:43)
04-17 12:33:06.580: W/System.err(17158): at org.jivesoftware.smack.PacketReader$1.run(PacketReader.java:70)
04-17 12:33:06.580: W/System.err(17158): Nested Ex
@eighthave
eighthave / gist:3307644
Created August 9, 2012 20:08
gnupg-for-android doesn't start
08-09 16:05:57.287: I/NativeHelper(14578): Finished NativeHelper.setup()
08-09 16:05:57.357: D/dalvikvm(14578): Trying to load lib /data/data/info.guardianproject.gpg/app_opt/lib/libgpg-error.so.0 0x405159a0
08-09 16:05:57.367: D/dalvikvm(14578): Added shared lib /data/data/info.guardianproject.gpg/app_opt/lib/libgpg-error.so.0 0x405159a0
08-09 16:05:57.367: D/dalvikvm(14578): No JNI_OnLoad found in /data/data/info.guardianproject.gpg/app_opt/lib/libgpg-error.so.0 0x405159a0, skipping init
08-09 16:05:57.367: D/dalvikvm(14578): Trying to load lib /data/data/info.guardianproject.gpg/app_opt/lib/libassuan.so.0 0x405159a0
08-09 16:05:57.377: D/dalvikvm(14578): Added shared lib /data/data/info.guardianproject.gpg/app_opt/lib/libassuan.so.0 0x405159a0
08-09 16:05:57.377: D/dalvikvm(14578): No JNI_OnLoad found in /data/data/info.guardianproject.gpg/app_opt/lib/libassuan.so.0 0x405159a0, skipping init
08-09 16:05:57.377: D/dalvikvm(14578): Trying to load lib /data/data/info.guardianproject.gpg/app_opt/lib/libgpgme.s
`ls -l > /tmp/conflict-files.txt`
total 4340
drwxr-xr-x 2 hans hans 4096 May 15 19:48 Google Play Store Screenshots
-rw-r--r-- 1 hans hans 14181 Jun 3 16:32 GPGTools (Hans-Christoph Steiner, Jun 3 16h32).png
-rw-r--r-- 1 hans hans 14181 Jun 3 16:32 GPGTools (Hans-Christoph Steiner, Jun 3 16h33).png
-rw-r--r-- 1 hans hans 14181 Jun 3 16:33 GPGTools (Hans-Christoph Steiner, Jun 3 16h34).png
-rw-r--r-- 1 hans hans 14181 Jun 3 16:34 GPGTools (Hans-Christoph Steiner, Jun 3 16h35).png
-rw-r--r-- 1 hans hans 14181 Jun 3 16:35 GPGTools (Hans-Christoph Steiner, Jun 3 16h36).png
-rw-r--r-- 1 hans hans 14181 Jun 3 16:36 GPGTools (Hans-Christoph Steiner, Jun 3 16h37).png
@eighthave
eighthave / gist:5777441
Created June 13, 2013 21:14
I get email from accounts, then use that to look up display name
String email = null;
// get email address from first system account that looks like an email
AccountManager manager = AccountManager.get(this);
for (Account account : manager.getAccounts())
if (account.name.contains("@") && account.name.contains(".")) {
email = account.name;
EditText keyEmail = (EditText) findViewById(R.id.keyEmail);
keyEmail.setText(email);
break;
@eighthave
eighthave / find-https-debian-archives.py
Last active December 25, 2020 19:04
Script to find official Debian mirrors that support HTTPS
#!/usr/bin/env python3
import urllib.request
import re
import ssl
import sys
# # find generic mirrors
mirrors = urllib.request.urlopen('http://www.debian.org/mirror/list')
https = []
@eighthave
eighthave / gist:7a529585159a24051d64
Created October 29, 2014 00:03
bad OTR session log
OtrChatManager V setPolicy: 59
HockeyApp D Looking for exceptions in: /data/data/info.guardianproject.otr.app.im/files
D Current handler class = net.hockeyapp.android.ExceptionHandler
OtrChatManager V getSessionId: gptest@jabber.org/ChatSecure-730b7561 gptest@limun.org
V getSessionId: gptest@jabber.org/ChatSecure-730b7561 gptest@limun.org
V getSessionStatus: gptest@jabber.org/ChatSecure-730b7561 gptest@limun.org
OtrChatManager V getSessionId: gptest@jabber.org/ChatSecure-730b7561 gptest@limun.org
V getSessionId: gptest@jabber.org/ChatSecure-730b7561 gptest@limun.org
V getSessionStatus: gptest@jabber.org/ChatSecure-730b7561 gptest@limun.org
V getSessionId: gptest@jabber.org/ChatSecure-730b7561 gptest@limun.org
@eighthave
eighthave / gist:c6deb99eb0198f0283f1
Created November 10, 2014 22:04
limun.org/Gajim <--> jabber.org/ChatSecure session
OtrChatManager V getSessionStatus: gptest@jabber.org/ChatSecure-20bbf32c gptest@limun.org/Gajim
V getSessionId: gptest@jabber.org/ChatSecure-20bbf32c gptest@limun.org/Gajim
V getSessionId: gptest@jabber.org/ChatSecure-20bbf32c gptest@limun.org/Gajim
OtrChatListener V onIncomingMessage: ?OTR:AAIDAAAAAAEAAAABAAAAwEKxAWhVGJrEePyiZBQxfjStAGWG0eK+uvOHTm3a5k8Osd1grUdz9m+V40nkPV29l+5K/M4jyAG00SlXiY4Ds/WpYfyzupmt0PZcOf6o60HClTqmln4MhmFWML1AuxEc+JYELU0j
lNIlMso89SgzELM1+UIy637d7RzcBuJQxVB+OzIthHv1HrgwGShPhICyxmfY7mpFDYTzK+rZzNhUN9S/SpLvd/bL6K5MncL7iXhnXPbHraQU/IJg70S+6AJriAAAAAAAAAAQAAAAC5tfjzhKRFThQU2B4+muwdr5bgiYpJ7jtMceDHxnWecA
AAAA.
OtrChatManager V getSessionId: gptest@jabber.org/ChatSecure-20bbf32c gptest@limun.org/Gajim
V getSessionStatus: gptest@jabber.org/ChatSecure-20bbf32c gptest@limun.org/Gajim
V decryptMessage: gptest@jabber.
@eighthave
eighthave / configure
Created February 2, 2015 18:19
./configure
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for gnupg 2.1.1-unknown.
#
# Report bugs to <http://bugs.gnupg.org>.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
#
#
@eighthave
eighthave / gist:ac32ba94618731d1fcd4
Created February 24, 2015 16:42
chatsecure single account auto-signs in
WelcomeActivity I doOnResume
I accountsSignedIn
I accountsSignedIn: gptest
I isSignedIn gptest OFFLINE
I accountsAvailable
I accountsAvailable: gptest
I accountsConfigured: gptest
I doOnResume countSignedIn 0 countAvailable 1 countConfigured 1
SignInHelper I setSignInListener
WelcomeActivity I signInAll