Skip to content

Instantly share code, notes, and snippets.

View carloscasalar's full-sized avatar
💜
Helping make cities a better place to live at @cabify

Carlos Castillo carloscasalar

💜
Helping make cities a better place to live at @cabify
View GitHub Profile
@carloscasalar
carloscasalar / docx2md.md
Created September 16, 2015 10:23 — forked from aembleton/docx2md.md
Convert a Word Document into MD

Converting a Word Document to Markdown in One Move

The Problem

A lot of important government documents are created and saved in Microsoft Word (*.docx). But Microsoft Word is a proprietary format, and it's not really useful for presenting documents on the web. So, I wanted to find a way to convert a .docx file into markdown.

Installing Pandoc

On a mac you can use homebrew by running the command brew install pandoc.

The Solution

@carloscasalar
carloscasalar / webResources.md
Last active October 23, 2019 14:23
Web resources
@carloscasalar
carloscasalar / tipsEJS.md
Last active April 6, 2018 02:25
Ejs javascript template system tips
@carloscasalar
carloscasalar / tipsOracle.md
Last active August 23, 2018 07:01
Oracle tips

Oracle Tips

Profiling

Dates and queries

Number of day of the week

Being 1 for monday to 7 for sunday.

@carloscasalar
carloscasalar / tipsDocker.md
Last active February 11, 2020 16:01
Docker tips

Docker tips

Links

Commands

  • To show only running containers use: docker ps
  • To show all containers use: docker ps -a
  • Delete container: docker rm -v container-id
  • Lista images: docker images