Skip to content

Instantly share code, notes, and snippets.

View feketegy's full-sized avatar
💻
The touch type baron.

George feketegy

💻
The touch type baron.
View GitHub Profile
@Basje
Basje / secure-tls
Created September 15, 2016 06:59
Secure TLS configuration for Nginx, with decent browser support
## Include this file in your `server` block listening to secure connections, probably on port 443.
## You can use this statement: `include conf.d/secure-tls;`
## For more information about the settings, please read the following articles:
# - https://wiki.mozilla.org/Security/Server_Side_TLS
# - https://mozilla.github.io/server-side-tls/ssl-config-generator/
# - https://raymii.org/s/tutorials/Strong_SSL_Security_On_nginx.html
# Certs sent to the client in SERVER HELLO are concatenated in ssl_certificate.
# This improves performance by avoiding the costly session negotiation process where possible
@diegoconcha
diegoconcha / redux_egghead_notes.md
Last active January 18, 2022 13:23
Redux Egghead.io Notes

###Redux Egghead Video Notes###

####Introduction:#### Managing state in an application is critical, and is often done haphazardly. Redux provides a state container for JavaScript applications that will help your applications behave consistently.

Redux is an evolution of the ideas presented by Facebook's Flux, avoiding the complexity found in Flux by looking to how applications are built with the Elm language.

####1st principle of Redux:#### Everything that changes in your application including the data and ui options is contained in a single object called the state tree

@ziadoz
ziadoz / awesome-php.md
Last active May 10, 2024 15:06
Awesome PHP — A curated list of amazingly awesome PHP libraries, resources and shiny things.