Skip to content

Instantly share code, notes, and snippets.

View SibTiger's full-sized avatar
⛈️
Simplifying PowerShell Compact-Archive Tool

Nicholas Gautier SibTiger

⛈️
Simplifying PowerShell Compact-Archive Tool
View GitHub Profile
@SibTiger
SibTiger / UpdateWindowsImageHealth.bat
Created June 14, 2023 05:12
Update Windows Image Health
dism /online /cleanup-image /restorehealth;
sfc /scannow
@SibTiger
SibTiger / TITLEMAP.acs
Created January 1, 2019 13:43
TGRDM3's TITLEMAP - features slideshow and world environment
/*
=============================================================
Author
--------
Author: Nicholas "Tiger" Gautier
Email: Nicholas.Gautier.Tiger@Gmail.com
Website: https://github.com/SibTiger/TGRDM3
-------------------------------------------------------------
Map Details
@SibTiger
SibTiger / .vimrc
Last active December 25, 2018 23:41
[Lazy] .vimrc Customized Environment
" For help:
" https://www.shortcutfoo.com/blog/top-50-vim-configuration-options/
" https://dougblack.io/words/a-good-vimrc.html
" https://alvinalexander.com/linux/vi-vim-editor-color-scheme-colorscheme
" =========================================================
" =========================================================
" Tabulations
@SibTiger
SibTiger / .bashrc
Created December 25, 2018 22:28
[Lazy] .bashrc Customized Environment
# =============================================
# =============================================
# =============================================
# MODIFIED CONTENT
# ---------------------------------------------
# List Directory (list, inode, everything)
alias ls='ls -lia'
@SibTiger
SibTiger / TerraPrompt.txt
Last active December 25, 2018 21:41
Terra's old prompt (Bash)
# Customize the Bash Prompt to supply the following: Date, 24Uhr Time, Current WD, and display the marker for User-Input.
PS1="[\d \t] [\w]\n\r$ "
@SibTiger
SibTiger / AuthenticationSys.c
Created November 23, 2018 08:28
The pathway to a simple login system
// Find User _AND_ Return User Information
// -----------------------------------
// Documentation:
// This function will scan the Primary Linked-List for the user's account.
// If an account exists, then we will provide the user's card and provide
// a successful status. But, if the account does not exist or the credentials
// are incorrect, the user's card is NULL with a failure status.
// -----------------------------------
// Parameters:
// cList [CustomerData]
@SibTiger
SibTiger / SimpleIPConversion.c
Created September 18, 2018 20:59
This program is designed to convert numbers from 0 to 255 in form of Binary and Hexadecimal formats.
// =====================================================
// Programmer: Nicholas Gautier
// Class: CS3013; Network Programming
// Assignment #: 1
// Due Date: 12. September. 2018
// Instructor: Dr. Zhao
// Description: This program was designed in mind of converting the first
// octet of an IPv4 address from Base 10 to Base 2 and
// Base 16. This program will convert from the starting
// point of '000' to '255'. Thus, this program will
@SibTiger
SibTiger / ArrayOfBoxes.cpp
Created September 11, 2018 18:21
Introductory to OOP
// =====================================================
// Programmer: Nicholas Gautier
// Class: CS1514; Computer Science II [Tutoring Copy]
// Assignment #: N/A
// Due Date: N/A
// Instructor: Dr. Jawad Drissi
// Description: This program is designed to create a class that has
// a dependency with another class. This program is
// merely a an example of creating a class that
// specifically requires another class to obtain and
@SibTiger
SibTiger / ArrayRotationProblem.cpp
Created August 29, 2018 06:14
1D Array Rotation Problem
// =====================================================
// Programmer: Nicholas Gautier
// Class: CS1514; Computer Science II [Tutoring Copy]
// Assignment #: N/A
// Due Date: N/A
// Instructor: Dr. Jawad Drissi
// Description: This program is designed to simply rotate
// the contents within the 1D-array given by a
// specific key.
// For example:
@SibTiger
SibTiger / DecreaseByOneAndConquer.cpp
Created May 8, 2018 19:57
Demonstration of 'Decrease by one and Conquer' sorting algorithms in Algorithm Analysis
// =====================================================
// Programmer: Nicholas Gautier
// Class: CS3713; Algorithm Analysis
// Assignment #: 3
// Due Date: 15. April. 2018
// Instructor: Mr. Moinian, Feridoon
// Description: This particular homework assignment can
// be able to perform various functionalities
// relating to the 'Decrease-by-one-and-conquer'
// topics. When loaded, the user will be presented