Skip to content

Instantly share code, notes, and snippets.

View rlanyi's full-sized avatar

Robert Lanyi rlanyi

  • Budapest, Hungary
View GitHub Profile
@andreas-mausch
andreas-mausch / Samsung Tizen Developer Certificate (Author and Distributor)
Created October 5, 2021 08:38
Generate certificates on CLI without installing the full Tizen Studio
# Get access token here:
# https://account.samsung.com/accounts/TDC/signInGate?clientId=4fb7fnf3np&tokenType=TOKEN
# Find the CA certificates here:
# https://gitlab.com/andreas-mausch/moonwatch/-/tree/master/certificates
# Author certificate
openssl genrsa -out author.key.pem 2048
openssl rsa -in author.key.pem -outform PEM -pubout -out author.key.pem.pub
openssl req -new -key author.key.pem -out author.csr -subj "/[email protected]"
@donaldh
donaldh / logstash-syslog.conf.rb
Created November 2, 2016 12:12
Parsing IOS & XR syslogs
input {
udp {
port => 514
type => "syslog"
}
}
filter {
if [type] == "syslog" {
grok {
@boodle
boodle / Making Apple Developer certificates on Linux.md
Last active February 21, 2025 20:47
Making Apple Developer certificates on Linux
  1. Create a new directory;
mkdir Apple\ Enterprise
cd Apple\ Enterprise
  1. Generate a certificate signing request
openssl req -nodes -newkey rsa:2048 -keyout ios_enterprise.key -out CertificateSigningRequest.certSigningRequest