Skip to content

Instantly share code, notes, and snippets.

View Sunit-Kulkarni's full-sized avatar

Sunit Kulkarni Sunit-Kulkarni

  • IBM
  • Miami, FL
View GitHub Profile
@tingwei628
tingwei628 / docker-compose.yml
Created October 27, 2019 15:20
use postgresql and pgAdmin in docker
version: "3.4"
services:
pgAdmin:
restart: always
image: dpage/pgadmin4
ports:
- "8000:80"
environment:
PGADMIN_DEFAULT_EMAIL: 1234@admin.com
@nybblr
nybblr / slacks-or-shorts.js
Created January 16, 2018 16:02
Should you wear slacks, or should you wear shorts? This Slackbot will help you decide.
const SlackBot = require('slackbots');
const BOT_NAME = 'Slacks or Shorts';
const BOT_TOKEN = '<YOUR-TOKEN-HERE>';
const BOT_HANDLE = 'slacks-or-shorts';
let bot = new SlackBot({
token: BOT_TOKEN,
name: BOT_NAME
});