Skip to content

Instantly share code, notes, and snippets.

View hfvmarques's full-sized avatar

Henrique Marques hfvmarques

View GitHub Profile
@hfvmarques
hfvmarques / install-docker-deepin.sh
Created August 13, 2025 15:19 — forked from madkoding/install-docker-deepin.sh
Install Docker-CE script for Deepin Linux
#!/bin/bash
echo "Starting Docker installation on Deepin Linux..."
# Define a mapping from Deepin version to Debian version
map_deepin_to_debian() {
if [ "$1" -lt 20 ]; then
echo "stretch"
elif [ "$1" -ge 20 ]; then
echo "buster"
@hfvmarques
hfvmarques / heroku_pg_to_sqlite3.txt
Created November 4, 2024 12:32 — forked from jeffreycastro/heroku_pg_to_sqlite3.txt
Import Heroku Postgres to SQLite3 in your local Rails
### Disclaimer,
- datetime is not copied with the timezone difference. seems like the dates are saved in UTC so there will be difference with the datetime columns
---
in this guide,
postgres username = "jep"
postgres password = "jepjep"