Skip to content
View nanusdad's full-sized avatar
😀
😀

Block or report nanusdad

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. Git - create new local branch push t... Git - create new local branch push to GitHub
    1
    * From - https://github.com/Kunena/Kunena-Forum/wiki/Create-a-new-branch-with-git-and-manage-branches
    2
    
                  
    3
    `git checkout -b [name_of_your_new_branch]`
    4
    
                  
    5
    * Push the branch on github :
  2. GitHub - initialize from existing di... GitHub - initialize from existing directory
    1
    
                  
    2
    Create the remote repository, and get the URL such as 
    3
    
                  
    4
    git@github.com:/youruser/somename.git or https://github.com/youruser/somename.git
    5
    
                  
  3. Installing Moodle on AWS LightSail Installing Moodle on AWS LightSail
    1
    ## Installing Moodle on AWS LightSail
    2
    ### Start with a new LightSail Instance running Ubuntu 20.04
    3
    
                  
    4
    * Update
    5
    ```shell
  4. Express JS with GoDaddy SSL Certific... Express JS with GoDaddy SSL Certificates
    1
    ## How to use GoDaddy SSL certs with Express JS ##
    2
    
                  
    3
    * Node requires each certificate in the CA chain to be passed separately in an array.  
    4
    * GoDaddy provides a cerficate file (gd_bundle.crt) probably looks like this:
    5
    
                  
  5. FFMPEG cheat sheet FFMPEG cheat sheet
    1
    # FFMPEG Cheat sheet
    2
    ## Compress MP4 files
    3
    
                  
    4
    `ffmpeg -i input.mp4 -vcodec libx265 -crf 28 output.mp4`
    5
    
                  
  6. Setting up SSL cert with nginx Setting up SSL cert with nginx
    1
    # Setting up SSL cert with nginx
    2
    1. Copy the .crt file and encrypted .key file to nginx server
    3
    2. Decrypt the .key file
    4
    ```shell
    5
    openssl rsa -in encrypted.key -out decrypted.key