General

GitHub commands

Initialize as a Git repository git init Config Setup. User namd and email git config –global user.name “xyz”git config –global user.email “xyz@example.com”git config –list Connect …

GitHub commands Read More »

Understanding bootstrap

Head For mobile friendly with zoom <head>..<meta name=”viewport” content=”width=device-width, initial-scale=1″>..</head> Disable zoom. Looks more like native app <head>..<meta name=”viewport” content=”width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no”></head>     …

Understanding bootstrap Read More »

css tips and tricks

Centering div (Flex method) (center both vertical and horizontal) <html> <header> <style type=”text/css”> body{ height: 100%; } div{ display: flex; align-items: center; justify-content: center; border: …

css tips and tricks Read More »

Removing PDF restrictions using qPDF

To remove PDF restrictions: qpdf –decrypt input.pdf output.pdf   To remove PDF restrictions locked with password: qpdf –password=PASSWORD –decrypt input.pdf output.pdf