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

Block or report moranbw

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

Pinned

  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 8 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 7 2

  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 () => {