Skip to content

Instantly share code, notes, and snippets.

View Samuel-IH's full-sized avatar

Samuel Hart Samuel-IH

  • Jacksonville, AL
  • 10:33 (UTC -05:00)
View GitHub Profile
@Samuel-IH
Samuel-IH / langs.md
Last active July 29, 2023 01:59
Languages I've used

Note!: This document has been moved to my portfolio site. See here.

Sam's record of languages

Over the course of time, starting at 8, I've used a lot of programming languages. For fun, and some bragging rights, I like to keep track of the languages I've used. Not all languages are learned formally (book + test), and not all are mastered (used it frequently for more than 2 years). Here I will keep a list of all the languages, in chronological order. In addition to listing the lang, I will also list why i started using it, and how skilled I am at it (currently).

Skill levels are broken down in a 1-5 scale:

  1. Tool/roadblock. I used (not exactly learned) this language because I needed it as part of a tool, or to get past some roadblock. I do not know the ins and outs of it, but know it enough to build something simple, with lots of help from google.
@Samuel-IH
Samuel-IH / gist:2de46ca15d0baf8936bcffd38b381efb
Last active March 30, 2023 14:22
Chicken Tikka Masala Pot Pie (by ChatGPT)

This is a recipe that I generated using ChatGPT. The introduction and "touchy/feely" parts are nothing but a fictional, humorous addition requested by me.

I will make this recipe though, soon!


Chicken Tikka Masala Pot Pie

Introducing my new favorite dish - Chicken Tikka Masala Pot Pie! This recipe is a mashup of two classic dishes - the creamy and spiced chicken tikka masala and the comforting and hearty chicken pot pie. It's the perfect way to switch up your dinner routine and satisfy your craving for both Indian and American flavors.

@Samuel-IH
Samuel-IH / SISA
Last active February 8, 2021 17:38
SIS AGREEMENT
SAMUEL IS SUPREME AGREEMENT
Copyright 2041 Samuel The Magnificent
Permission to use this software is hereby granted, free of charge,
to anybody willing to accept the proven fact that Samuel Is Supreme.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, OTHER THAN THE FACT THAT SAMUEL IS, AND ALWAYS WILL BE, SUPREME.
@Samuel-IH
Samuel-IH / blobTesting.playground
Created May 10, 2020 18:25
Basic Blob-Testing in Swift
//: Playground - noun: a place where people can play
//: Blob testing in swift based on black background and higher values for
//: areas to be isolated
import Cocoa
let startImg = #imageLiteral(resourceName: "blobTest.png")//base imaage here
let baseCGI = startImg.cgImage(forProposedRect: nil, context: nil, hints: nil)
let pixData = baseCGI!.dataProvider!.data!
let data = CFDataGetBytePtr(pixData)!
let expectedLengthA = Int(baseCGI!.width * baseCGI!.height)
@Samuel-IH
Samuel-IH / annoying_indeed_thing.md
Created May 5, 2020 20:35
Annoying Indeed.com Thing

Quite annoying:

Thing

@Samuel-IH
Samuel-IH / ConwaysGameOfLifeUE4.md
Last active April 8, 2022 09:03
(Game Showcase) Conway's Game of Life in Unreal Engine 4

Description

Game

This project implements Conway's Game of Life in UE4. It allows the player to initially select which cells are alive/dead, and then simulates the cell's life according to a list of pre-defined rules.

Challenges overcome in this game

  • Creating render targets via BP. Description.
  • Drawing to render targets via BP.
  • Psuedo 2d arrays in UE4 BP.
  • Using nearest-neighbor filtering mode for textures. Description.
@Samuel-IH
Samuel-IH / VRDriver.md
Created April 1, 2020 18:04
(Game Showcase) VR Driver

Description

Road shot

VRDriver was originally a driving-simulator for my quest with link (basically an oculus rift) which allowed you to steer the vehicle based on a simulated steering wheel. Over time I added non-VR functionality, multiplayer, and the ability to exit your vehicle and enter a new one or walk around. While there is no objective or goal in the game itself, you quickly learn not to crash into things because your vehicle may explode if you hit a bump too hard!

Exploded car Accident

Challenges overcome in this game

  • VR/nonVR handoff. This game supports both VR and non-VR users.
@Samuel-IH
Samuel-IH / Products.cgi
Last active January 20, 2022 17:32
Python script for populating a Facebook store with items from Ebay
#!/path/to/python3
## About ##
## Ebay2FacebookLite created by Samuel H. 2019 ##
## Problem: Facebook does not support ebay store integration ##
## Bad Solution: manually put items in facebook store and link each item to the ebay store ##
## Better Solution: use python and ebay's APIs to automate the process and export the store
## dynamically as a product feed for facebook to use ##