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

Block or report moranbw

Report abuse

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

Report abuse

Pinned Loading

  1. speedtest-app speedtest-app Public

    Self-hosted web service and application to test internet speed of a remote server/computer via Speedtest-CLI

    JavaScript 9 3

  2. pghbelts pghbelts Public

    A simple web app of the Allegheny County Belt System (https://www.pghbelts.com)

    JavaScript

  3. masquito masquito Public

    Simple web GUI for dnsmasq

    Java

  4. https-dns-proxy-docker https-dns-proxy-docker Public

    Docker container for https-dns-proxy

    Dockerfile 8 3

  5. Get a database dump via psql and pus... Get a database dump via psql and push to S3
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    if [ "$1" == "" ]; then
    4
        echo "Bucket name required"
    5
        exit 1
  6. Recursively get a list of files from... Recursively get a list of files from a directory using async / await
    1
    const fs = require('fs');
    2
    
                  
    3
    const path = "/your/data/path";
    4
    
                  
    5
    (async () => {