Skip to content
View VenenJean's full-sized avatar
:octocat:
Autonomous Developer
:octocat:
Autonomous Developer

Organizations

@ProtDosCommunity
Block or Report

Block or report VenenJean

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. Example code on: Connecting to a Mar... Example code on: Connecting to a MariaDB Server which is running on a Debian WSL2 VM via a SSH tunnelled passphrase ED2519 encrypted connection. Use only if your MariaDB server AND the SSH server have the same host!!!
    1
    using MySqlConnector;
    2
    using Renci.SshNet;
    3
    
                  
    4
    class Program {
    5
        static void Main(string[] args) {
  2. C#-Features.md C#-Features.md
    1
    # 20 useful C# features
    2
    
                  
    3
    ## Null-Conditional Operator (?)
    4
    The null-conditional operator allows you to safely access properties or call methods on an object that might be null without causing a null reference exception. <br>
    5
    Example: `int? length = text?.Length;`
  3. C# FileIO.md C# FileIO.md
    1
    # __Using the 'File' (System.IO) class for reading and writing data__
    2
    - `File.ReadAllText(filePath);`  -> Reads / Returns the data of a file as STRING <br>
    3
    - `File.ReadAllLines(filePath);` -> Reads /Returns the contents of a file and stores each line at a new index in a STRING[] <br>
    4
    - `File.ReadAllBytes(filePath);` -> Reads / Returns the contents of a file as binary data and stores the data in a BYTE[] <br>
    5
    
                  
  4. SOLID.md SOLID.md
    1
    <img src="https://wall-skills.com/wp-content/uploads/2013/12/solid-OOP_wall-skills.jpg" alt="...">
  5. Cpp-Notes-Basics.md Cpp-Notes-Basics.md
    1
    # C++ Notes
    2
    
                  
    3
    Notes I took while learning C++.
    4
    
                  
    5
    ## Escape codes