Skip to content

Instantly share code, notes, and snippets.

View 0x68's full-sized avatar
💭
I may be slow to respond.

Tim Fiedler 0x68

💭
I may be slow to respond.
View GitHub Profile
@0x68
0x68 / README.md
Created November 2, 2018 14:47 — forked from subfuzion/README.md
vim/neovim configuration

I recently switched over to neovim (see my screenshots at the bottom). Below is my updated config file.

It's currently synchronized with my .vimrc config except for a block of neovim-specific terminal key mappings.

This is still a work in progress (everyone's own config is always a labor of love), but I'm already extremely pleased with how well this is working for me with neovim. While terminal mode isn't enough to make me stop using tmux, it is quite good and I like having it since it simplifies my documentation workflow for yanking terminal output to paste in a markdown buffer.

These days I primarily develop in Go. I'm super thrilled and grateful for fatih/vim-go,

@0x68
0x68 / main.py
Last active March 2, 2018 20:39
steem py idea of distributed transaction signing
import steembase
from steem import transactionbuilder
import json
trb = transactionbuilder.TransactionBuilder()
trb.appendWif("private_posting_foo")
#while create an operation by userself you have to pass all possible params which are related to the operation dict
trb.op = [
['comment',
{'parent_author':'', 'parent_permlink':'', 'author':'nullx68', 'permlink':'meow', 'title':'katze katze katze', 'body':'cat cat cat meow meow meow'}]]
@0x68
0x68 / combobox.py
Created May 16, 2017 22:15 — forked from MarshallChris/combobox.py
Attempt to derive QtCore.QAbstractTableModel in PyQt
# -*- coding: utf-8 -*-
"""
Created on Wed Jul 17 10:50:56 2013
@author: cmarshall
"""
import sip
sip.setapi('QString', 1)
sip.setapi('QVariant', 1)
[1/1144] Compile ‘Shared/PCH/prelude.c’…
[2/1144] Compile ‘Shared/PCH/prelude.cc’…
[3/1144] Compile ‘Shared/PCH/prelude.m’…
[4/1144] Compile ‘Shared/PCH/prelude.m’…
[5/1144] Compile ‘Shared/PCH/prelude.mm’…
[6/1144] Compile ‘Shared/PCH/prelude.mm’…
[7/1144] Copy ‘Frameworks/text/src/case.h’…
[8/1144] Copy ‘Frameworks/text/src/classification.h’…
[9/1144] Copy ‘Frameworks/text/src/ctype.h’…
[10/1144] Copy ‘Frameworks/text/src/decode.h’…