Skip to content

Instantly share code, notes, and snippets.

View charlesonunze's full-sized avatar
🏠
Working from home

Charles charlesonunze

🏠
Working from home
View GitHub Profile
@charlesonunze
charlesonunze / Awesome_CS.md
Created March 5, 2024 23:59 — forked from sherrytp/Awesome_CS.md
Awesome Quant resources

Awesome CS Courses Awesome

CS Course Lists other than ClassCentral[https://www.classcentral.com/]

Introduction

There is a lot of hidden treasure lying within university pages scattered across the internet. This list is an attempt to bring to light those awesome CS courses which make their high-quality material i.e. assignments, lectures, notes, readings & examinations available online for free.

Table of Contents

@charlesonunze
charlesonunze / values_pointers.go
Created February 6, 2021 22:05 — forked from josephspurrier/values_pointers.go
Golang - Asterisk and Ampersand Cheatsheet
/*
********************************************************************************
Golang - Asterisk and Ampersand Cheatsheet
********************************************************************************
Also available at: https://play.golang.org/p/lNpnS9j1ma
Allowed:
--------
p := Person{"Steve", 28} stores the value
@charlesonunze
charlesonunze / ssl.txt
Last active June 2, 2020 09:13
SSL certificate NodeJS
openssl req \
-x509 \
-newkey rsa:4096 \
-keyout server_key.pem \
-out server_cert.pem \
-nodes \
-days 365 \
-subj "/CN=ca/O=Client\ Certificate\ Example"