Skip to content

Instantly share code, notes, and snippets.

View JimBlaney's full-sized avatar

Jim Blaney JimBlaney

View GitHub Profile

Announcement

Please stop using this extension and Microsoft's C++ extension for Unreal code completion.

clangd

The VSCode extension clangd has blazing fast code completion in comparison. I've made a VSCode extension for it:

https://github.com/boocs/unreal-clangd

You will use clangd for code completion(Intellisense) and use Microsoft's C++ extension for Building/Debugging

@jmhobbs
jmhobbs / README.md
Last active March 24, 2023 15:19
Create scrolling text gifs for Slack

Makes little scrolly text jiffs in Flywheel colors.

Prerequisites

  • imagemagick brew install imagemagick
  • gifsicle brew install gifsicle
  • Heartwell 1.2.otf font installed
  • u r on a mac

Usage

@JimBlaney
JimBlaney / certificate-manipulation.md
Last active September 23, 2016 10:48
OpenSSL commands for various certificate manipulations
Split PKCS12 public/private keypair into Base64-encoded PEM files (separate)
openssl pkcs12 -in certificate.p12 -out servername.crt -clcerts -nokeys
openssl pkcs12 -in certificate.p12 -out servername.key -nocerts -nodes
openssl rsa -in servername.key -out servername.key
Compute the hash of a certificate (HTTPd requires CA certs in folders to be named by hash)
openssl x509 -noout -hash -in ca-certificate-file
Compute the digest for a server certificate for inclusion in the HTTP Public-Key-Pins header

openssl s_client -connect www.example.com:443 | \