chrdek - Overview

Github stats     Top Langs

                                                                                     GitHub Status

Github.io Site

Contact Status Send Address Code Editors
Discord Discord An ebook here
Or...
     
Secure E-Mail Crypto here    
E-Mail Badges          

                                                                                         

A collection of 6 ebooks that I find interesting (Download links displayed below).



🧭 Navigate repositories from here:

Hello, welcome to my repo landing page. Main programming tools and languages I currently use are:

T y p e N a m e
Shell Script PowerShell
Server Script NodeJS
Framework .NET/C#
Web Design Javascript/CSS3

Apache Groovy test automation scripts


A small collection of scripts that can be used with SoapUI's test runner to check and verify Json/Html output. These scripts can either be used via batch files or from the tests IDE.

More details on the repository can be found here
 ⬆️ Back to top

VueJS Image Gallery Component


Side project that is under maintenance, a multi-part web component build with vuejs to display images. Sample images fetched via axios http and rendered through stack-grid with a paging component.

More details are found here
  ⬆️ Back to top

Older MS Technet Scripts


Archived set of all older powershell scripts on technet.

The full archived repository is found here
 ⬆️ Back to top

Pinned Loading

  1. A collection of testrunner sample scripts in SoapUI for static content checks.

    3

  2. Create different folder structures using Linq objects

    C# 3

  3. 🖥️ A local system stats reporting tool in plain powershell with a highcharts.js component for the frontend

    PowerShell 1

  4. 📈 🎲 Linq based data statistics set of extensions.

    C# 3

  5. 1

    <# Methods for generating secure passwords with various types of security #>

    2

    # Password length 10, alphanumeric with symbols

    3

    $var = @("a","f","G","A","4""\","$","0","1","9","4","2",":F","3","..>","5","m","'","<",".","k","8","7","i",";","K","l","=","+"); $output="";

    4

    0..10 | %{ $output+=$var[$(Get-Random -Maximum 10)]; }
  6. 1

    // This oneliner function converts 12-Hour time into its 24-Hour counterpart.

    2

    // Examples (hh:mm:ss(PM/AM) to HH:MM:ss(24hour):

    3

    // 12:00PM ->12:00, 12:00AM->00:00, 04:00PM -> 16:00

    5

    function timeConversion(s) {