Skip to content

Instantly share code, notes, and snippets.

View jetpks's full-sized avatar

eric jacobs jetpks

View GitHub Profile
@jetpks
jetpks / ruby_csr_example.rb
Created March 11, 2017 02:33 — forked from mitfik/ruby_csr_example.rb
Ruby example of CSR with openssl
require 'openssl'
def gen_key(name)
key = OpenSSL::PKey::RSA.new 1048
file = File.new(name, "w")
file.write(key)
file.close
end
def get_key(name)
@jetpks
jetpks / 00_README
Created May 24, 2018 19:42 — forked from dogeared/00_README
Extracting / Exporting custom emoji from Slack
This builds off the excellent work of @lmarkus.
The scripts below can be used in conjunction with the Slack Emoji Tools Google Chrome extension to export emojis from
one Slack team and import into another team.
Original work here: https://gist.github.com/lmarkus/8722f56baf8c47045621

Keybase proof

I hereby claim:

  • I am jetpks on github.
  • I am jetpks (https://keybase.io/jetpks) on keybase.
  • I have a public key ASCu-BHuJlSFpNWRKoFCsUze0V_9dwi5vKEakuSZhsRlfwo

To claim this, I am signing this object:

@jetpks
jetpks / cartograph.css
Created August 26, 2022 04:38
blink ios shell font workaround
@font-face {
font-family: "Cartograph CF";
src: local("Cartograph CF");
}