Skip to content

Instantly share code, notes, and snippets.

View jose-roberto-abreu's full-sized avatar

José Roberto Abreu Báez jose-roberto-abreu

  • Homeappzz
  • Santo Domingo, Republica Dominicana
View GitHub Profile
@Starmel
Starmel / commonprofile_frag.metal
Created May 4, 2020 19:17
SceneKit Shader fragment functions
////////////////////////////////////////////////
// CommonProfile Shader v2
#import <metal_stdlib>
using namespace metal;
#ifndef __SCNMetalDefines__
#define __SCNMetalDefines__
@morishin
morishin / left-align-stack-view.png
Last active March 22, 2024 00:25
Align to Left the contents of UIStackView
left-align-stack-view.png
@Holger-Will
Holger-Will / jwtRS256.sh
Last active October 27, 2024 16:54
generate public private key pair (RSA RS256) for use with koa-jwt jasonwebtoken etc.
# generate private key
openssl genrsa -out private.pem 2048
# extatract public key from it
openssl rsa -in private.pem -pubout > public.pem