Skip to content

Instantly share code, notes, and snippets.

View nguyenthetoan's full-sized avatar
💥
hey

Toan Nguyen The nguyenthetoan

💥
hey
View GitHub Profile
@sofyan-ahmad
sofyan-ahmad / aws-amplify-react-native.d.ts
Last active March 24, 2021 14:31
aws amplify react native typescript definition
declare module 'aws-amplify-react-native' {
const Amplify: any;
export default Amplify;
// *** UI ***
interface ITheme {
container: {};
section: {};
sectionHeader: {};
sectionHeaderText: {};
@tadast
tadast / ssl_puma.sh
Last active January 29, 2024 04:41 — forked from trcarden/gist:3295935
localhost SSL with puma
# 1) Create your private key (any password will do, we remove it below)
$ cd ~/.ssh
$ openssl genrsa -des3 -out server.orig.key 2048
# 2) Remove the password
$ openssl rsa -in server.orig.key -out server.key