Skip to content

Instantly share code, notes, and snippets.

View theProgrammerDavid's full-sized avatar

David Velho theProgrammerDavid

View GitHub Profile
@theProgrammerDavid
theProgrammerDavid / convert.md
Last active January 22, 2021 10:58
Batch convert pptx / docx to PDF

Preprequisites:

  1. Libreoffice
  2. pdftk
libreoffice --headless --invisible --convert-to pdf *.{pptx,ppt,doc,docx}; pdftk *.pdf cat output MERGED.pdf
@theProgrammerDavid
theProgrammerDavid / cheatsheet.cpp
Created May 22, 2020 08:54 — forked from satwikkansal/cheatsheet.cpp
C++ STL cheatsheet for competitive progrmming
/*
This a header file that includes every standard library.
You can use it to save time.
NOTE: This header file may not be recognized by compilers
other than gcc.
*/
#include <bits/stdc++.h>
/*
//Use this if the above header file doesn't work.
@theProgrammerDavid
theProgrammerDavid / cheatsheet.cpp
Created May 22, 2020 08:54 — forked from satwikkansal/cheatsheet.cpp
C++ STL cheatsheet for competitive progrmming
/*
This a header file that includes every standard library.
You can use it to save time.
NOTE: This header file may not be recognized by compilers
other than gcc.
*/
#include <bits/stdc++.h>
/*
//Use this if the above header file doesn't work.
@theProgrammerDavid
theProgrammerDavid / Mailinabox.md
Last active March 5, 2020 06:07
Adventures with Mail-in-a-box

Mail-in-a-box Guide based on hours of errors/troubleshooting.

The official maintainence guide for Mail-in-a-box can be found here

Note: You should always make regular backups of files.

Help! My emails are going to spam

  • If you have just created/bought a domain and setup Main-in-a-box to be your mail server but realise that all of your emails are going to spam, this may help you out.
  • An A record alone is not sufficient for your mail server. You need several TXT records so that GMail or any other email provider can verify the integrity of your mail server. DMARC, DKIM need a TXT record each.
  • Consider using many free online tools to check your emails. email-tester is a popular online tool that i use often.
@theProgrammerDavid
theProgrammerDavid / sqlldr_csv.md
Last active March 2, 2021 01:13
Import CSV into SQLPlus