Skip to content
View arsu-leo's full-sized avatar
Block or Report

Block or report arsu-leo

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

  1. CS.Utils CS.Utils Public

    Utilities Lib for C#

    C#

  2. Git file testing and puhing if ok Git file testing and puhing if ok
    1
    #!/bin/bash
    2
    
    
    3
    ### This script is intended to be used from inside a git repository (Say any folder where git status would not fail)
    4
    ### It is intended to be stored on a path folder to be used directly as follows:
    5
    ### $ gitc ['comment']
  3. Mysql exporting to file from command... Mysql exporting to file from command line
    1
    mysql -u[user] -p[password] -h[host] --database=[database] --batch -e "SQL QUERY FROM X" | sed 's/\t/","/g;s/^/"/;s/$/"/;s/\n//g' > export.csv
  4. Js2Json.js Js2Json.js
    1
    function processRow(row, fields, fieldSeparator)
    2
    {
    3
      const
    4
      outRow  = [],
    5
      keys    = Array.isArray(row)
  5. Docker mysql to csv Docker mysql to csv
    1
    #!/bin/sh
    2
    
    
    3
    DQUOTE=$(echo "\42")
    4
    SQUOTE=$(echo "\47")
    5
    
    
  6. svg-net/SVG svg-net/SVG Public

    Fork of the ms svg library

    C# 1.1k 470