Skip to content

Instantly share code, notes, and snippets.

View Francesco146's full-sized avatar
:shipit:
Focusing

Francesco Marastoni Francesco146

:shipit:
Focusing
View GitHub Profile
@Francesco146
Francesco146 / README.md
Last active November 12, 2024 10:22 — forked from pdanford/README.md
Launching iTerm2 from macOS Finder

Launching iTerm2 from macOS Finder

(Based on info from Peter Downs' gitub but with modified behavior to open a new terminal window for each invocation instead of reusing an already open window.)

The following three ways to launch an iTerm2 window from Finder have been tested on iTerm2 version 3+ running on macOS Mojave+.

pdanford - April 2020


@Francesco146
Francesco146 / Makefile
Last active April 18, 2024 03:04 — forked from Softwave/README.md
Fibonacci Program
cc = gcc
cc_standard = -std=c99
cc_optimization = -Ofast -march=native
cc_link = -lgmp
fib: fib.c
${cc} ${cc_standard} ${cc_optimization} $^ -o $@ ${cc_link}
.PHONY: clean
clean: