I hereby claim:
- I am timhugh on github.
- I am timhugh (https://keybase.io/timhugh) on keybase.
- I have a public key ASCrmeBo73ChyS7_qmttBFJJKq3Z0DDci8438kN_vjGHmgo
To claim this, I am signing this object:
| [ | |
| { | |
| "name": "Sofle+", | |
| "author": "Tim Heuett", | |
| "switchMount": "cherry" | |
| }, | |
| [ | |
| { | |
| "ry": 0.5, | |
| "y": -0.4, |
| # frozen_string_literal: true | |
| require 'bundler/inline' | |
| gemfile do | |
| source 'https://rubygems.org' | |
| gem 'hanami-router' | |
| gem 'httparty' | |
| gem 'pry' | |
| gem 'rack' |
| A simple web server using cpp-httplib to demonstrate using conan.io to manage dependencies. | |
| Install conan first: https://docs.conan.io/en/latest/installation.html | |
| (I used homebrew: `brew install conan`) |
| # Selecting a server | |
| kafka-topics --bootstrap-server kafka:9092 | |
| kafka-console-producer --broker-list kafka:9092 | |
| kafka-console-consumer --bootstrap-server kafka:9092 | |
| # Managing topics | |
| kafka-topics --list | |
| kafka-topics --describe --topic topic.name |
I hereby claim:
To claim this, I am signing this object:
| # source config | |
| bind r source-file ~/.tmux.conf | |
| # change command prefix | |
| set -g prefix C-a | |
| bind C-a send-prefix | |
| unbind C-b | |
| # no auto-renaming of windows | |
| set-option -g allow-rename off |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| .output { | |
| border: solid 1px #000; | |
| font-family: monospace; | |
| } | |
| </style> | |
| </head> |
| [core] | |
| editor = vim | |
| excludesfile = ~/.gitignore | |
| [user] | |
| name = Tim Heuett | |
| email = [email protected] | |
| [push] | |
| default = simple | |
| [credential] | |
| helper = osxkeychain |
| require 'net/smtp' | |
| msg = "Subject: Hi There!\n\nThis works, and this part is in the body." | |
| smtp = Net::SMTP.new 'smtp.gmail.com', 587 | |
| smtp.enable_starttls | |
| smtp.start(your_domain, your_account_name, your_password, :login) do | |
| smtp.send_message(msg, from_address, to_address) | |
| end |