Skip to content
View faridescate's full-sized avatar
:shipit:
:shipit:
Block or Report

Block or report faridescate

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 Loading

  1. install-git-from-source.sh install-git-from-source.sh
    1
    #!/bin/sh
    2
    
    
    3
    #--- Tested in Centos 7 ---#
    4
    #--- should run with sudo privileges ---# 
    5
    
    
  2. docker-node-oracle docker-node-oracle Public

    Forked from CollinEstes/docker-node-oracle

    Docker image for node / oracle ready container

    Shell

  3. Visual Studio Code Settings Sync Gist Visual Studio Code Settings Sync Gist
    1
    {"lastUpload":"2019-04-09T22:35:04.925Z","extensionVersion":"v3.2.7"}
  4. useful linux commands useful linux commands
    1
    # Show a ordered list of folders with size
    2
    du -sch * | sort -rh
    3
    
    
    4
    # count lines from output
    5
    <command> | wc -l