- 💼 I am a part time engineer, full time dad.
- 🗺️ Jakartans, 🇮🇩
- Indonesia
- github.com/robertusnegoro
Pinned Loading
-
-
-
anfield-dockerfile
anfield-dockerfile 1FROM python:3.7-alpine
2ADD . /app
3WORKDIR /app
4RUN pip install -r requirements.txt
5CMD ["gunicorn", "-b", "0.0.0.0:8910", "app:app"]
-
-
mongodb list all collection for a da...
mongodb list all collection for a database and stats like storage size and chunk count 1function getReadableFileSizeString(fileSizeInBytes) {
2var i = -1;
3var byteUnits = [' kB', ' MB', ' GB', ' TB', 'PB', 'EB', 'ZB', 'YB'];
4do {
5fileSizeInBytes = fileSizeInBytes / 1024;
-
flask application sample with mysql ...
flask application sample with mysql connection and query inside 1from flask import Flask, jsonify
2import os
3import pymysql.cursors
45app = Flask(__name__)
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.