Skip to content
View kulvind3r's full-sized avatar

Block or report kulvind3r

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. GamingGaiden GamingGaiden Public

    Gameplay Time Tracker for PC and Emulator games

    PowerShell 85 3

  2. remotehwinfo remotehwinfo Public

    Forked from Demion/remotehwinfo

    RemoteHWInfo HWiNFO / GPU-Z / MSI Afterburner Remote Monitor HTTP JSON Web Server

    C++

  3. Mist: A browser overlay for non stea... Mist: A browser overlay for non steam games built using AutoHotKey v2.0. Opens your installed browser for looking up guides, walkthroughs, maps or anyting else you want.
    1
    ; Mist: A browser overlay for non steam games.
    2
    browserPath := "C:\Program Files\Mozilla Firefox\firefox.exe" ; replace with browser of your choice
    3
    browserExe := "firefox.exe" ; exe of the browser in above line
    4
    browserWidth := 1600 ; Horizontal size of browser you will like. Must be less than max horizontal resolution of primary monitor
    5
    browserHeight := 900 ; Vertical size of browser you will like. Must be less than max horizontal resolution of primary monitor
  4. SSL Certs Cheatsheet: Quick referenc... SSL Certs Cheatsheet: Quick reference guide for setting up well generated self-signed / trusted certificates for your internal https connection requirements
    1
    # SSL Certs Cheatsheet
    2
    
                  
    3
    A quick guide to do all things certificate related.
    4
    
                  
    5
    ### 1. Self signed certificate and private key
  5. Github GiFs crash course Github GiFs crash course
    1
    # Guide to Github GiFs
    2
    
                  
    3
    ## Constraints
    4
    1. Max 100 MB File size allowed in commit check in. Max 10 MB if you use drag and drop on web.
    5
    2. Anything above 50MB takes eons to load. You need to shrink file size as much as you can.
  6. Crypt: Bare bones en/decryption scri... Crypt: Bare bones en/decryption script based on aes-256-cbc algo. Handy to store file based secrets securely.
    1
    #!/bin/bash
    2
    set -e
    3
    SCRIPT_NAME=$0
    4
    OPT=$1
    5
    FILES_PATH=$2