Blog

SAN Storage: Using 3PAR StoreServ to Provision LUNs for vSphere ESXi or Windows Server

Overview: Assumptions MDS Zoning Configuration has been completed. Operating Systems ESXi OS has been installed…

Cisco VSAN: MDS Zoning Configuration for ESXi Host – Step by Step

Step 1: gather information A. VSAN Nodes Each site shall have two sets of MDS…

Create Desktop Application with Electron using JavaScript

Electron packager > get release build folder cd testappnpm initdescription: calculator.jsauthor: kimconnect.com npm install --save…

PowerShell: Disable Windows Defender

Simultaneous Uninstalls: # removeWindowsDefender.ps1 # Version 0.02 $computerNames=@( 'server1', 'server2' ) function removeWindowsDefender($computerNames){ function uninstallWindefend($computername){…

Windows Server: Fibre Channel HBA Administration

Overview High performance servers, such as those being designated for SQL database workloads, are often…

Front End Web Development Menu 2019

Deployment Register a domain name: Google Domains, GodaddyManaged or Shared hosting: AWS, Hostgator, InmotionFTP/SFTP: Filezilla,…

CSS: Variables & Simple Animation

CSS can mimic other interpreted programming languages by enabling features such as variables. The limitation…

CSS: Units of Measurement

Common Values of Measurement px :pixelin :inchesmm :millimetersem :relative to nearest parent element's set value…

CSS: Basic Targeting of Tag, Class, and Type

Cascading Style Sheets (CSS) CSS is often included between the <head><style>CSS-HERE</style></head> sections so that it…

HTML: Basic Anatomy of A Page

Modern browsers discern the type of documents being loaded; thus, it is necessary to tag…

HTML: Tagging and Jumping to Sections of Page

Each element of an HTML document could be set with a unique ID so that…

JavaScript: How to Extract Text From Contents of an External Web Page

What's the Challenge? There is a software security model that prevents scripts from an existing…

Linux: How To Install Visual Studio Code

Intro Bypassing any discussions about choosing Visual Studio Code (VS Code) over Atom or Sublime…

Ubuntu: Install VMWare WorkStation

Easy. Run these three commands: wget -O ~/vmware.bin sudo apt install build-essentialsudo bash ~/vmware.bin Output:…

JavaScript Challenge: Counting Words

This is useful to render word clouds, emphasizing more commonly occurring words in a database.…

Linux: Useful GUI Tools

Terminator - Connect to multiple machines- Run same commands on multiple machines SIMULTANEOUSLY!- Useful for…

PowerShell: Windows 2016 Pristine Image

Desired Output Windows Server deployment should be made as seamless and efficient as possible. Here's…

PowerShell: Impersonation to Download Files Through Proxy

Initial Script to without impersonation # Change these values to reflect your desired downloads[string]$fileSource =…

Linux: A Quick Sequence of Starting and Stopping an App

Check to see if SeaHorse is broken kimconnect@nuc:# seahorseGtk-Message: 08:52:44.606: Failed to load module "canberra-gtk-module"Gtk-Message:…

Linux: More Basic Commands

Networking Ping 1 Time ping google.com -c 1 #c is abbreviation for count Check Networking…