Skip to content
View smfhashmi's full-sized avatar
đź’­
code :)
đź’­
code :)
  • hyderabad
  • 10:59 (UTC +05:30)

Block or report smfhashmi

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. download an entire page (including c... download an entire page (including css, js, images) for offline-reading, archiving… using wget
    1
    If you ever need to download an entire website, perhaps for off-line viewing, wget can do the job — for example:
    2
    
                  
    3
        $ wget --recursive --no-clobber --page-requisites --html-extension --convert-links --restrict-file-names=windows --domains website.org --no-parent  www.website.org/tutorials/html/
    4
    
                  
    5
    This command downloads the website www.website.org/tutorials/html/.
  2. PostgreSQL command line cheatsheet PostgreSQL command line cheatsheet
    1
    sudo su - postgres
    2
    
                  
    3
    psql
    4
    
                  
    5
    CREATE USER deploy PASSWORD 'deploy';