Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<body>
<iframe id="ytplayer" src="" width="500" height="205" frameborder="0" allowfullscreen>
</iframe>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
@pavanvamsi3
pavanvamsi3 / .vimrc
Created June 26, 2019 10:42 — forked from simonista/.vimrc
A basic .vimrc file that will serve as a good template on which to build.
" Don't try to be vi compatible
set nocompatible
" Helps force plugins to load correctly when it is turned back on below
filetype off
" TODO: Load plugins here (pathogen or vundle)
" Turn on syntax highlighting
syntax on
@pavanvamsi3
pavanvamsi3 / generate_certificate.sh
Created October 8, 2018 10:56
Generating a self signed certificate with open ssl
// This will generate the server key, asks to enter passphrase
openssl genrsa -aes128 -out server.key 2048
// This command will remove the passphrase
openssl rsa -in server.key -out server.key
// Creating a CSR
openssl req -new -days 365 -key server.key -out server.csr
// Generating a certificate