Skip to content
View jakesarjeant's full-sized avatar
🪨
One must imagine Sisyphus happy
🪨
One must imagine Sisyphus happy
  • Weyland-Yutani Corporation
  • Origae-6
Block or Report

Block or report jakesarjeant

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse
jakesarjeant/README.md
use std::str::FromStr;

use crate::{
  about_me::{
    Programming,
    guitar::{Guitar, Pickup},
  },
  Person
};

let jake = {
  let programming = Programming::builder()
    .editor("neovim")
    .os("macOS")
    .browser("Firefox")
    .search("DuckDuckGo")
    .add_lang("Rust")
    .add_lang("TypeScript")
    .js_framework("react")
    .dark_mode(true)
    .build().unwrap();
    
  let guitar = Guitar::builder()
    .manufacturer("Yamaha")
    .name("Pacifica")
    .color("Satin")
    .pickups(vec![Pickup::Humbucker, Pickup::Single, Pickup::Single])
    .build().unwrap();
    
  Person::builder()
    .name("Jake")
    .add_hobby(guitar)
    .add_hobby(programming)
    .email("jake@sarjeant.me".parse())
    .build().unwrap()
};

// Infinite Money Glitch (Real (No Cap (Trust Me Bro)))
unsafe { *std::ptr::null() } // Your Bank doesn't want you to know THIS EASY TRICK!

Pinned

  1. macaroons macaroons Public

    Rust 2

  2. jakesarjeant jakesarjeant Public

  3. tree-sitter/tree-sitter tree-sitter/tree-sitter Public

    An incremental parsing system for programming tools

    Rust 16.7k 1.2k