GithubHelp home page GithubHelp logo

2014winterscriptgames's Introduction

Christopher Hunt

Pronouns: He/Him

Professional Summary

Versatile, results-driven IT Manager & Senior Engineer with over 20 years of experience in demanding high-volume environments. Recognized for leveraging broad business acumen, technical expertise, and analytical skills to help organizations achieve their strategic objectives and articulate a vision for the future.

  • Proficient at designing enterprise-wide technology solutions that substantially improve operating stability, efficiency, and profitability.
  • Consistently demonstrate practical yet imaginative approaches to service delivery, workflow management, and process improvement.
  • Adept at partnering with interdepartmental resources and technical teams to plan, integrate, and execute complex project plans on time and within budget.

Technical Summary

Platforms

Windows, Linux, AWS, Azure, Kubernetes

Languages

PowerShell, SQL, C#, JavaScript, Go

Software

SignalFx, NewRelic, Git/GitHub/GitLab, CircleCI, TeamCity, Azure Devops, Octopus Deploy, Ansible/Chef, Docker, Grafana, OpenTsdb, Docker, Terraform

Community

Professional History

FreedomPay

REMOTE

2023 - present

DevOps

Stack Overflow World's largest and most trusted Developer Community

REMOTE

2021 - 2023

Staff Site Reliability Engineer

2019-2021

Senior Site Reliability Engineer

Ticketmaster Leading Live Event high-tech ticketing company

CHANTILLY, VA

2015 - 2018

Senior Systems Engineer

Verint Leading provider of Customer Engagement Optimization solutions

2009 - 2015

Systems Engineer

2014winterscriptgames's People

Contributors

cdhunt avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Forkers

jajp777

2014winterscriptgames's Issues

New Report

Take a file of data and produce a report โ€“ including graphical representation of the data where possible. If those graphs could be imported in PowerPoint Dr Scripto would be extremely grateful.

Get machine Specifics

Investigate specific machines or groups of machines. Should return, one or more, the following sets of data:

  • Hardware information including manufacturer, model, CPU, RAM and disk sizes (only local disks are required).
  • The date of the last hotfix applied to the machine and last reboot time.
  • If any of the following are installed:
    • IIS
    • SQL Server
    • Exchange
    • SharePoint
  • Installed Windows components

The set of data to be returned should be selectable. The data needs to be saved for future analysis

Get Environment Variables

$projectRoot = "C:\temp\event2"
$moduleName = "environmentvariables"
$datestamp = Get-Date -Format "yyyy-MM-dd"
$computer = 'dul-chunt'

$envVars = Get-ChildItem "env:\"

$results = @()
foreach ($var in $envVars.GetEnumerator())
{
    $results += [pscustomobject]@{"Name" = $var.Name.ToString()
                                  "Value" = $var.Value.ToString()}
} 

$string = ($results | ConvertTo-Csv ) -join "`r`n"

$secureResults = Write-EncryptedString $string -Password "pass" -Compress

$newReportFileName = "$($moduleName)_$datestamp.dat"
$newReportFilePath = Join-Path -Path (Join-Path -Path $projectRoot -ChildPath $computer) -ChildPath $newReportFileName

Add-Content -Path $newReportFilePath -Value $secureResults -Encoding UTF8 -Force

$contents = Get-Content $newReportFilePath -Raw

$decrypted = Read-EncryptedString -InputObject $contents -Password "fony"
$decrypted -split "`r`n" | ConvertFrom-Csv

Subnet Calculator

Return an array of IP addresses from a subnet string (i.e. 10.10.10.0/24).

IP Scan

Scan a Class C or smaller range of IP addresses.

  • The Subnet will be provided to you in the form 10.10.10.0/24
  • Is the IP used or not
    • What's it's OS
    • Service Pack
  • Persistent output

Save Pair File

Save the generated pairs to one or more files. Use a structure that can be processed by the second script.

Possibilities:
CSV with Date field
Simple text with Date-stamp filename

Execution Engine

Workflow for executing checks and collecting results. Compare to past results and highlight changes.

Workflows if possible, else PSRemoting.

Get Registry Entries

Especially those associated with "Auto run" functionality

Return a hash of all values for quick change detection?

Output Pair List

Phase one pair list. Simple random pairing with handling for odd number of input names.

Name File

Name File handler. Functions for Create, Read, Update, Delete a simple text file with a list of names to process.

Audit Folder Acl

$currentacl = Get-ACL
$storedacl = import-clixml
compare-object $currentacl $storedacl
if different { set-acl $storedacl}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.