Skip to content

Instantly share code, notes, and snippets.

View smithkyle's full-sized avatar

Kyle Smith smithkyle

  • Southern California
View GitHub Profile
@smithkyle
smithkyle / anyconnect.pkg.recipe
Last active April 8, 2017 21:15
AutoPkg recipe for pre-packaged AnyConnect client and additional files needed
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Description</key>
<string>Get pre-packaged AnyConnect client.</string>
<key>Identifier</key>
<string>com.example.pkg.AnyConnect</string>
<key>Input</key>
<dict>

Keybase proof

I hereby claim:

  • I am smithkyle on github.
  • I am smithkyle (https://keybase.io/smithkyle) on keybase.
  • I have a public key whose fingerprint is 06F2 4C99 8DCE 34B9 5B21 4279 CD40 8E34 A6AD 84D6

To claim this, I am signing this object:

@smithkyle
smithkyle / Install passport-ldapauth
Created May 8, 2015 18:21
MEAN.js passport-ldapauth integration
npm install -S passport-ldapauth
@smithkyle
smithkyle / gist:1087391
Created July 17, 2011 09:17
git snippet for archiving only the changed files between two given commits
<commit1> recent commit
<commit2> previous commit
git archive --format zip -o testing.zip <commit1> `git diff <commit1> <commit2> --name-only`