Skip to content
View robertusnegoro's full-sized avatar
Block or Report

Block or report robertusnegoro

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
robertusnegoro/README.md

Hi there 👋

  • 💼 I am a part time engineer, full time dad.
  • 🗺️ Jakartans, 🇮🇩

Pinned

  1. gitlab-ci-var-extractor gitlab-ci-var-extractor Public

    Python

  2. sunny-side-up sunny-side-up Public

    automate slack status

    Python

  3. anfield-dockerfile anfield-dockerfile
    1
    FROM python:3.7-alpine
    2
    ADD . /app
    3
    WORKDIR /app
    4
    RUN pip install -r requirements.txt
    5
    CMD ["gunicorn", "-b", "0.0.0.0:8910", "app:app"]
  4. randomops/randomops.github.io randomops/randomops.github.io Public

    SCSS

  5. mongodb list all collection for a da... mongodb list all collection for a database and stats like storage size and chunk count
    1
    function getReadableFileSizeString(fileSizeInBytes) {
    2
    	    var i = -1;
    3
    	    var byteUnits = [' kB', ' MB', ' GB', ' TB', 'PB', 'EB', 'ZB', 'YB'];
    4
    	    do {
    5
    		            fileSizeInBytes = fileSizeInBytes / 1024;
  6. flask application sample with mysql ... flask application sample with mysql connection and query inside
    1
    from flask import Flask, jsonify
    2
    import os
    3
    import pymysql.cursors
    4
    
                  
    5
    app = Flask(__name__)