Thanks to visit codestin.com
Credit goes to github.com

Skip to content
View smfhashmi's full-sized avatar
đź’­
code :)
đź’­
code :)
  • Hyderabad
  • 15:33 (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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to 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';