Skip to content

Instantly share code, notes, and snippets.

View jmmk's full-sized avatar

Michael jmmk

  • Independent Consultant
  • Minneapolis Area
  • 19:47 (UTC -05:00)
View GitHub Profile
@jmmk
jmmk / actionlist.vim
Created November 17, 2022 03:28 — forked from zchee/actionlist.vim
IdeaVim actionlist
--- Actions ---
$Copy <M-C>
$Cut <M-X> <S-Del>
$Delete <Del> <BS> <M-BS>
$LRU
$Paste <M-V>
$Redo <M-S-Z> <A-S-BS>
$SearchWeb <A-S-G>
$SelectAll <M-A>
$Undo <M-Z>

Keybase proof

I hereby claim:

  • I am jmmk on github.
  • I am jmmk (https://keybase.io/jmmk) on keybase.
  • I have a public key whose fingerprint is BF42 22C3 C6D7 D62B 8BBD 927B 5613 887A B16E 380A

To claim this, I am signing this object:

# Copyright 2016 MongoDB, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
@jmmk
jmmk / oplog.hs
Created June 1, 2016 13:47 — forked from aloiscochard/oplog.hs
Tailing MongoDB OpLog in Haskell
{-# LANGUAGE OverloadedStrings #-}
module Mongolito where
import Control.Exception
import Control.Monad.IO.Class (liftIO)
import Database.MongoDB
import System.Log.Logger
localDb :: Database
localDb = "local"