Skip to content

Instantly share code, notes, and snippets.

@sachin-handiekar
sachin-handiekar / index.html
Created July 28, 2020 08:31
Basic HTML Email Template
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>[SUBJECT]</title>
<style type="text/css">
body {
padding-top: 0 !important;
padding-bottom: 0 !important;
padding-top: 0 !important;
@sachin-handiekar
sachin-handiekar / index.html
Created July 28, 2020 08:31
Basic HTML Email Template
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>[SUBJECT]</title>
<style type="text/css">
body {
padding-top: 0 !important;
padding-bottom: 0 !important;
padding-top: 0 !important;
Get $100 free credit - DigitalOcean
https://m.do.co/c/7f9140b7e9e1
Get £50 Free Miles Credit - ByMiles.co.uk
https://bymiles.co.uk/refer/SV13NRE
@sachin-handiekar
sachin-handiekar / docker_cmds.md
Created November 13, 2019 19:20
Docker Powershell Windows Command

Windows Powershell

  1. Stop all containers

docker ps -aq | foreach {docker stop $_}

  1. Remove all containers

docker ps -aq | foreach {docker rm $_}

Get £50 as credit when using the link - https://www.bulb.me/sachinh9801
@sachin-handiekar
sachin-handiekar / gist:1b0a6fe099b47cfff97aca9f1fe7f4f3
Created April 23, 2019 20:17
EIS Error NPM Package Installation
sudo rm -rf /usr/local/lib/node_modules/npm
brew reinstall node
sudo chown -R $(whoami) ~/.npm
sudo chown -R $(whoami) /usr/local/lib
sudo chown -R $(whoami) /usr/local/bin
npm install -g npm@latest
https://unsplash.it/2500/1600/?random
@sachin-handiekar
sachin-handiekar / installMPG123.sh
Created March 15, 2016 13:12
Sample script to install mpg123
#!/bin/sh
set -ex
tar -jxvf mpg123-1.23.2.tar.bz2
cd mpg123-1.23.2 && ./configure --prefix=/usr && make && sudo make install
before_install:
- chmod +x installMPG123.sh
- ./installMPG123.sh