Skip to content
View fiechdus's full-sized avatar

Highlights

  • Pro

Block or report fiechdus

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
fiechdus/README.md

Hi there ๐Ÿ‘‹



About me:

  • ๐ŸŒฑ Iโ€™m currently learning Statistics, Numerical Mathematics, programming with Python
  • ๐Ÿ“ซ How to reach me: Contact me on LinkedIn!
  • ๐Ÿ˜„ Pronouns: he/him

Pinned Loading

  1. it22sum/useful-numerical-math-scripts it22sum/useful-numerical-math-scripts Public

    Useful Python Scripts for Numerical Mathematics based on the class HM1 at ZHAW

    Jupyter Notebook 8

  2. flexbox101 flexbox101 Public

    Simple CSS Flexbox Overview

    HTML

  3. image-processing image-processing Public

    C#

  4. Regex to match SQL query aliases Regex to match SQL query aliases
    1
    // Important: the Regex only works with a structure like in the bellow example:
    2
    string sqlQuery = "SELECT [column1] AS Alias1, [column2] AS Alias2, [column3] AS Alias3, FROM Table1";
    3
    
                  
    4
    string[] aliases = Regex.Match("", "(?i)(?<=\sAS\s)(.*?)(?=\s*,\s*|(?i)\sFROM)").Cast<Match>().Select(m => m.Value).ToArray();