Skip to content
View chrdek's full-sized avatar
♻️
Fully reCaptcha resistant....
♻️
Fully reCaptcha resistant....
  • Ham
  • Bacon

Block or report chrdek

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 is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
chrdek/README.md

Github statsTop Langs

GitHub Status


Github.io Site



ContactStatusSendAddressCode Editors
DiscordDiscordAn ebook here
Or...
Secure E-MailCrypto here
E-MailBadges



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


Details

123456



🧭 Navigate repositories from here:



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

T y p eN a m e
Shell ScriptPowerShell
Server ScriptNodeJS
Framework.NET/C#
Web DesignJavascript/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. testr-scripts-snippetstestr-scripts-snippetsPublic

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

    3

  2. linqpath_prerellinqpath_prerelPublic template

    Create different folder structures using Linq objects

    C# 3

  3. PSStatsReportingPSStatsReportingPublic

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

    PowerShell 1

  4. LinqDataCalcLinqDataCalcPublic

    📈 🎲 Linq based data statistics set of extensions.

    C# 3

  5. Several methods to generate password...Several methods to generate passwords with powershell
    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)]; }
    5
  6. Time Converter function (12Hr-24Hr f...Time Converter function (12Hr-24Hr format) using Javascript
    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
    4
    5
    functiontimeConversion(s){