Skip to content

Instantly share code, notes, and snippets.

View timtrautmann's full-sized avatar

Tim Trautmann timtrautmann

View GitHub Profile

Keybase proof

I hereby claim:

  • I am bringo on github.
  • I am timt (https://keybase.io/timt) on keybase.
  • I have a public key ASBW5tFN0b_ktqLbqKnS12MbkU3uLWLotpcQUkESui_c9wo

To claim this, I am signing this object:

@timtrautmann
timtrautmann / gist:8512954d81368f3eb5b9
Created March 27, 2016 22:59
Safari link bug syslog messages
Mar 27 15:58:36 iPhone ReportCrash[252] <Warning>: Report of type '298(298)' not saved because the limit of 25 logs has been reached
Mar 27 15:58:37 iPhone diagnosticd[96] <Error>: error evaluating process info - pid: 253, punique: 253
Mar 27 15:58:37 iPhone ReportCrash[254] <Notice>: Formulating report for process[253] swcd
Mar 27 15:58:37 iPhone com.apple.xpc.launchd[1] (com.apple.swcd) <Notice>: Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
Mar 27 15:58:37 iPhone UserEventAgent[26] <Notice>: jetsam: kernel termination snapshot being created
Mar 27 15:58:37 iPhone ReportCrash[254] <Warning>: report not saved because it is non-actionable
Mar 27 15:58:46 iPhone ReportCrash[255] <Warning>: Report of type '298(298)' not saved because the limit of 25 logs has been reached
Mar 27 15:58:48 iPhone diagnosticd[96] <Error>: error evaluating process info - pid: 256, punique: 256
Mar 27 15:58:48 iPhone ReportCrash[257] <Notice>: Formulating report for process[256] swcd
Mar 27 15:58:48 iPhone com.ap
  • rafa
  • cyn
  • cholly
  • tim
  • cristina
  • tara
  • gabe
  • mark
  • yvette
  • M&Y's dog
@timtrautmann
timtrautmann / config
Created October 16, 2009 09:05
Alllow only ssh agent forwarding via amazon ec2 servers
Host *.amazonaws.com
ForwardAgent yes
Host *
ForwardAgent no
@timtrautmann
timtrautmann / account.rb
Created October 12, 2009 18:25
Defining operators by defining methods
# The Well-Grounded Rubyist
# Chapter 7 Built-in essentials
# Section 7.2.1 Defining operators by defining methods
#
# The example in the book uses the += and -= shortcut operators inside of Account#+(x)
# and Account#-(x)
#
# The below seems to be the more correct way.
class Account