Skip to content

Instantly share code, notes, and snippets.

View SvenAlHamad's full-sized avatar

Sven SvenAlHamad

View GitHub Profile
@francisrstokes
francisrstokes / PipeDriveForm.js
Created July 12, 2019 08:47
PipeDrive Web Forms React Component
import React from 'react';
class PipeDriveForm extends React.Component {
constructor(props) {
super(props);
this.state = {
randomId: 'id' + Math.random().toString(36).substring(7)
};
}
@plentz
plentz / nginx.conf
Last active July 15, 2024 17:46
Best nginx configuration for improved security(and performance)
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048