Skip to content

Instantly share code, notes, and snippets.

View Toure's full-sized avatar

Toure Dunnon Toure

View GitHub Profile
@Toure
Toure / Makefile
Created October 5, 2020 16:11 — forked from mpneuried/Makefile
Simple Makefile to build, run, tag and publish a docker containier to AWS-ECR
# import config.
# You can change the default config with `make cnf="config_special.env" build`
cnf ?= config.env
include $(cnf)
export $(shell sed 's/=.*//' $(cnf))
# import deploy config
# You can change the default deploy config with `make cnf="deploy_special.env" release`
dpl ?= deploy.env
include $(dpl)
@Toure
Toure / IRC.hs
Created November 9, 2016 15:20 — forked from owainlewis/IRC.hs
IRC bot in Haskell
module Main where
import Network
import System.IO
import Text.Printf
import Data.List
import System.Exit
import System.Time
-- Simple IRC Bot