Skip to content
View rdaitan-cp's full-sized avatar
🪲
Developing bugs.
🪲
Developing bugs.

Block or report rdaitan-cp

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. Nginx Serve Nginx Serve
    1
    #!/bin/bash
    2
    set -e # exit on error
    3
    
                  
    4
    # Serve site via Nginx
    5
    
                  
  2. SQL TO CSV SQL TO CSV
    1
    # sql to csv
    2
    select column1, column2 into outfile '/var/lib/mysql-files/output.csv' fields terminated by ',' optionally enclosed by '"' lines terminated by '\n' from my_table;
    3
    
                  
    4
    # line count 
    5
    wc -l FILE