Skip to content

Instantly share code, notes, and snippets.

@kylesm
kylesm / reinvent2014.md
Created November 29, 2020 19:40
AWS re:Invent 2014 session notes

APP306: Using AWS CloudFormation for Deployment and Management at Scale

Video

  • Give developers access to the services they build.
  • Have developers "take the phone" (support their services)
    • what tools do they need to do that?
  • Version the CF templates with the code that uses them
  • Split CF stacks based on stateful and stateless resources

Keybase proof

I hereby claim:

  • I am kylesm on github.
  • I am kylesm (https://keybase.io/kylesm) on keybase.
  • I have a public key ASDxtvT4MVxi-o8VfxWK24-PO-TYVbdpfhl6sYUcSPfRewo

To claim this, I am signing this object:

Velocity NY 2016

The following were some keynotes and talks from Velocity that were (or seemed) interesting...

@kylesm
kylesm / KubernetesOnMac.md
Created October 18, 2015 20:17
Notes on getting Kubernetes working on Mac OS X using Docker

Cutting the Gordian Knot

  • When solving impossible problems, ask yourself:
  • Is there an easier way?
  • Am I solving the right problem?
  • Why is this a problem?
  • What makes it hard?
  • Do I have to do it this way?
  • Does it have to be done at all?

Keybase proof

I hereby claim:

  • I am kylesm on github.
  • I am kylesm (https://keybase.io/kylesm) on keybase.
  • I have a public key whose fingerprint is BE07 4CAE 96D9 06D6 DD12 FED0 0A32 07B1 132E 2F47

To claim this, I am signing this object:

@kylesm
kylesm / scuttle-ldap-patch.diff
Created June 23, 2011 16:03
Diff for a hack to add LDAP support to the open source bookmark sharing app Scuttle. Tested with version 0.7.2
diff -urN scuttle-0.7.2/config.inc.php.example scuttle-0.7.2-patched/config.inc.php.example
--- scuttle-0.7.2/config.inc.php.example 2008-04-11 16:25:36.000000000 -0400
+++ scuttle-0.7.2-patched/config.inc.php.example 2008-04-22 21:19:43.000000000 -0400
@@ -116,5 +116,8 @@
);
$reservedusers = array('all', 'watchlist');
+$use_ldap = false;
+$ldap_host = 'ldap.foo.com';
+