Skip to content

Instantly share code, notes, and snippets.

View bermann's full-sized avatar

Bastian Ermann bermann

View GitHub Profile
@bermann
bermann / gist:0c983ed0d1c1f7e40074850bfd69515b
Created August 17, 2019 20:26 — forked from kublaios/gist:f01cdf4369c86ddd6d71
Making a PEM File for iOS Push Notifications (From Ray Wenderlich's tutorial)
# Convert the .cer file into a .pem file:
$ openssl x509 -in aps_development.cer -inform der -out PushChatCert.pem
# Convert the private key’s .p12 file into a .pem file:
$ openssl pkcs12 -nocerts -in PushChatKey.p12 -out PushChatKey.pem
# Finally, combine the certificate and key into a single .pem file
$ cat PushChatCert.pem PushChatKey.pem > ck.pem
# At this point it’s a good idea to test whether the certificate works.
@bermann
bermann / BittrexApi.rb
Created June 23, 2017 20:32
Ruby file to connect with Bittrex API
require 'rest-client'
require 'openssl'
require 'addressable/uri'
module Bittrex
class << self
attr_accessor :configuration
end
def self.setup