Skip to content

Instantly share code, notes, and snippets.

View starkindustries's full-sized avatar
🎯
Focusing

Zion starkindustries

🎯
Focusing
View GitHub Profile
@starkindustries
starkindustries / min-linux.md
Created October 13, 2025 19:22 — forked from bluedragon1221/min-linux.md
Create a minimal linux from scratch with initramfs and busybox.
@starkindustries
starkindustries / clean_code.md
Created March 26, 2025 18:13 — forked from wojteklu/clean_code.md
Summary of 'Clean code' by Robert C. Martin

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


General rules

  1. Follow standard conventions.
  2. Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
  3. Boy scout rule. Leave the campground cleaner than you found it.
  4. Always find root cause. Always look for the root cause of a problem.

Design rules

@starkindustries
starkindustries / make_ghidra_app.sh
Created March 30, 2021 05:06 — forked from fuzyll/make_ghidra_app.sh
Script to automatically create a MacOS Application Bundle out of a Ghidra release archive.
#!/usr/bin/env bash
# make_ghidra_app.sh | MacOS App Bundle Creator Script
#
# Copyright (c) 2019 Alexander Taylor <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#