Skip to content

Instantly share code, notes, and snippets.

View HRKings's full-sized avatar
🏠
Working from home

Helton Reis HRKings

🏠
Working from home
View GitHub Profile
@HRKings
HRKings / docker-compose.yaml
Last active September 11, 2021 21:05
MariaDB Template Docker Compose File
version: "3.9"
services:
mariadb:
container_name: mariadb
image: mariadb
environment:
MARIADB_ROOT_PASSWORD: ${MARIADB_ROOT_PASSWORD:-password}
MARIADB_DATABASE: ${MARIADB_DATABASE:-default_database}
volumes:
@ZacharyPatten
ZacharyPatten / readme.md
Last active February 3, 2023 15:58
GitHub Repository Checklist (C#)

GitHub Repository Checklist (C#)

Have a repository on GitHub? Planning on making a repository on GitHub? This checklist is intended to introduce you to various features that may help you make the most of your GitHub repository with specific recommendations for C# repositories.

Checklist

These are only suggestions.
They may not be appropriate for all repositories.
They are in no particular order.
Click each item to expand for more information.

@HRKings
HRKings / docker-compose.yaml
Last active September 12, 2023 19:04
MongoDB Template Docker Compose File
version: "3.9"
services:
mongo:
container_name: mongodb
image: mongo:latest
environment:
MONGO_INITDB_ROOT_USERNAME: ${MONGO_USER:-mongo}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_PASSWORD:-password}
volumes:
@HRKings
HRKings / docker-compose.yaml
Last active December 21, 2021 00:23
PostgreSQL Template Docker Compose File
version: "3.9"
services:
postgres:
container_name: postgres
image: postgres:alpine
environment:
POSTGRES_USER: ${POSTGRES_USER:-postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-password}
PGDATA: /data/postgres
@giuliano-macedo
giuliano-macedo / download_file.rs
Last active July 13, 2025 13:56
Download large files in rust with progress bar using reqwest, future_util and indicatif
// you need this in your cargo.toml
// reqwest = { version = "0.11.3", features = ["stream"] }
// futures-util = "0.3.14"
// indicatif = "0.15.0"
use std::cmp::min;
use std::fs::File;
use std::io::Write;
use reqwest::Client;
use indicatif::{ProgressBar, ProgressStyle};
@raysan5
raysan5 / custom_game_engines_small_study.md
Last active October 26, 2025 23:01
A small state-of-the-art study on custom engines

CUSTOM GAME ENGINES: A Small Study

a_plague_tale

WARNING: Article moved to separate repo to allow users contributions: https://github.com/raysan5/custom_game_engines

A couple of weeks ago I played (and finished) A Plague Tale, a game by Asobo Studio. I was really captivated by the game, not only by the beautiful graphics but also by the story and the locations in the game. I decided to investigate a bit about the game tech and I was surprised to see it was developed with a custom engine by a relatively small studio. I know there are some companies using custom engines but it's very difficult to find a detailed market study with that kind of information curated and updated. So this article.

Nowadays lots of companies choose engines like [Unreal](https:

@mutin-sa
mutin-sa / Top_Public_Time_Servers.md
Last active October 26, 2025 15:29
List of Top Public Time Servers

Google Public NTP [AS15169]:

time.google.com

time1.google.com

time2.google.com

time3.google.com