View bot.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require('dotenv').config() | |
var Fs = require('fs') | |
var Path = require('path') | |
var Botkit = require('botkit') | |
if (!process.env.SLACK_TOKEN) { | |
console.error('ERROR: this requires "SLACK_TOKEN" to be a valid Slack API token.') | |
process.exit(-1) | |
} |
View checklist.md
Rolling forward
- Set k8s load balancers to listen on ports 81 and 444:
- welcome (
a6478641c8f4411e599d106fa7745be6-898755358.us-west-1.elb.amazonaws.com
) - huyang (
a6442f4148f4411e599d106fa7745be6-1097607471.us-west-1.elb.amazonaws.com
) - tenants (
a6456bf648f4411e599d106fa7745be6-289499823.us-west-1.elb.amazonaws.com
) - messaging (
a518bc87b8f4411e599d106fa7745be6-242074411.us-west-1.elb.amazonaws.com
) - huyangapi (
ac85c06dd8ca111e599d106fa7745be6-165125648.us-west-1.elb.amazonaws.com
)
- welcome (
-
pg_dump gridium
from a k8s minion -
docker-compose stop
on docker1 and docker2
View gist:10672053
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am ben on github. | |
* I am benstraub (https://keybase.io/benstraub) on keybase. | |
* I have a public key whose fingerprint is 2F50 F2DC FAF4 8271 F5FA F461 B815 AD70 262A E9FE | |
To claim this, I am signing this object: |
View .gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.pyc | |
*.un~ |
View 38859f2_32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1>------ Build started: Project: libgit2_clar, Configuration: Debug Win32 ------ | |
1> Building Custom Rule C:/Users/ben/Documents/GitHub/libgit2/CMakeLists.txt | |
1> CMake does not need to re-run because C:\Users\ben\Documents\GitHub\libgit2\build\CMakeFiles\generate.stamp is up-to-date. | |
1> Generating ../tests-clar/clar.suite | |
1> Written `clar.suite` (1235 tests in 205 suites) | |
1> precompiled.c | |
1> attr.c | |
1> attr_file.c | |
1> branch.c | |
1> buf_text.c |
View test.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "test.h" | |
extern int foo(char c); | |
int bar(char c) { | |
return foo(c); | |
} |
View clone.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "git2.h" | |
#include <stdio.h> | |
static void fetch_progress( | |
const git_transfer_progress *stats, | |
void *payload) | |
{ | |
int fetch_percent = | |
(100 * stats->received_objects) / | |
stats->total_objects; |
View Outline.md
Intro Stuff
- Who's this guy?
- Who are you?
fork()
- Install git: http://git-scm.com
- Sign up for GitHub: http://github.com/signup/free
10,000-meter level
- Motivation for DVCS and git
View gist:4081592
Roadmap to 1.0
What does 1.0 mean?
- Public API stability
- Consistency
- Backporting fixes to past release branches
- Semantic Versioning
- Certain set of functionality
- Vision: make it easy to do interesting things with git
NewerOlder