Skip to content

Instantly share code, notes, and snippets.

View profh's full-sized avatar

Larry Heimann (Prof. H) profh

  • Carnegie Mellon University
  • Pittsburgh, PA
  • X @profh
View GitHub Profile
@profh
profh / .gitignore
Created September 18, 2025 00:13 — forked from aksamitsah/.gitignore
.gitignore File for Xcode 16 Projects with Comprehensive Comments
# ========================
# .gitignore for Xcode 16
# ========================
# Tags: Xcode, gitignore, Swift, iOS, macOS, Development
# A comprehensive .gitignore file tailored for Xcode 16 projects.
# Excludes auto-generated, system-specific, and unnecessary files.
# Suitable for Swift, Objective-C, CocoaPods, Carthage, and more.
# --- macOS Files ---
# Ignore system-generated files specific to macOS.
@profh
profh / Ruby ORMs.md
Created February 26, 2021 19:58 — forked from booch/Ruby ORMs.md
Ruby ORMs

Ruby ORMs

Abstract

Rails is really a collection of pieces that can be put together to create a web app. You can enhance or replace many of the components - how you write views, how controllers work, and how you build models. While models are built on top of ActiveRecord in the

@profh
profh / introrx.md
Created October 14, 2020 17:32 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@profh
profh / Count lines in Git repo
Created April 17, 2020 18:47 — forked from mandiwise/Count lines in Git repo
A command to calculate lines of code in all tracked files in a Git repo
// Reference: http://stackoverflow.com/questions/4822471/count-number-of-lines-in-a-git-repository
$ git ls-files | xargs wc -l