Skip to content
View JacobRosenlund's full-sized avatar

Block or report JacobRosenlund

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
JacobRosenlund/README.md

Hi there 👋, I'm Jacob Rosenlund!

Outdoors Enjoyer and Dabbler in Code



from datetime import date

class AboutMe():
  def __init__(self):
    self.username = "JacobRosenlund"
    self.location = ["Texas", "Utah"]
    self.birthday = date(day=9, month=8, year=2001)
    self.age = (date.today()-self.birthday).days/365
    self.hobbies = ["Outdoors", "Tinkering", "Coding"]
    self.interests = ["Cyber Security", "Amateur Radio"]

if __name__ == "__main__":
  me = AboutMe()

Projects 📦

  • :  A rugged and portable Linux cyberdeck for Ham Radio operation.


Languages 💾

Python HTML CSS JS

Tools 🛠️

VS Code Debian NixOS Zsh Git GitHub

Get in Touch 📡

jacobrosenlund.com GitHub
GitHub

Popular repositories Loading

  1. NixOS NixOS Public

    My nixos config

    Nix 1

  2. Portable-SDR-Station Portable-SDR-Station Public

    A rugged and portable Linux cyberdeck for Ham Radio operation.

  3. JacobRosenlund JacobRosenlund Public

    My GitHub Profile

  4. jacobrosenlund.com jacobrosenlund.com Public

    My personal website

    Astro

  5. astrofy-lumenrise astrofy-lumenrise Public template

    Forked from manuelernestog/astrofy

    A fork of the "Astrofy" template by Manuel Ernesto. This adds a "Back to Top" button and a dark/light mode switcher.

    Astro

  6. Screen-Extractor Screen-Extractor Public

    A tool that takes a picture of a specific region of your screen, extracts the text, and then saves it to a text file.

    Python