Skip to content

Instantly share code, notes, and snippets.

View hackorama's full-sized avatar
🤖
coding

Kishan Thomas hackorama

🤖
coding
View GitHub Profile
@hackorama
hackorama / black.css
Created May 23, 2019 23:09
Customized laCour slack-night-mode
body { background: #222; color: #e6e6e6; }
a { color: #949494; }
a:link, a:visited { color: #949494; }
a:hover, a:active, a:focus { color: #c7c7c7; }
hr { border-bottom: 1px solid #424242; border-top: 1px solid #222; }
@hackorama
hackorama / ssh-config.md
Last active March 31, 2019 19:22
ssh config

.ssh/config

Host *
  # select if ssh key should be added to ssh agent
  AddKeysToAgent no
  # only if supported
  IgnoreUnknown UseKeychain
  # select if key pass phrase should be added to key chain
 UseKeychain no
@hackorama
hackorama / using-clang-format.md
Created June 11, 2018 04:01
Using clang-format

Use clang-format on full code base

$ sudo apt-get install git-clang-format
$ clang-format --version
clang-format version 3.8.0-2ubuntu4 (tags/RELEASE_380/final)
$
@hackorama
hackorama / xutil.h
Created September 6, 2014 16:19
Utilities for X/Motif debugging
/*
* xutil.h - X/Motif debugging
*
* Either include this file into your code ( #include "xutil.h" )
* or cut and paste the functions as rerquired, to your code
*
* Either use the provided callback and eventhandler template
* or call the functions directly.
*
* By default all verbose gets printed out to "stdout"