[–] 6 points 2 years ago (7 children)

Someone already mentioned Logseq, but I'm really enjoying Obsidian for my note taking needs. It's similar, but I have found Obsidian to be very nice. Not FOSS, but I really like what the devs are doing.

  • source
  •  

    cross-posted from: https://lemmy.world/post/14433560

    Hi open source community!

    This is a follow up to a previous post where I got a lot of really good feedback on this resume template. I've made some changes to the template that takes much of the feedback into account and I also added some new features that should make the template more useable for a wide variety of people.

    If you have any further feedback please feel free to share!

    To use this template on the typst web app, see here: https://typst.app/universe/package/modern-cv

    Some screenshots of what the template looks like/can produce.

     

    cross-posted from: https://lemmy.world/post/14433560

    Hi open source community!

    This is a follow up to a previous post where I got a lot of really good feedback on this resume template. I've made some changes to the template that takes much of the feedback into account and I also added some new features that should make the template more useable for a wide variety of people.

    If you have any further feedback please feel free to share!

    To use this template on the typst web app, see here: https://typst.app/universe/package/modern-cv

    Some screenshots of what the template looks like/can produce.

    [–] [S] 3 points 2 years ago (1 child)

    I'm working on some of the changes your suggested. Here are screenshots of the adjustments. I'm curious to hear your thoughts. Thanks!

    Here is a monochrome version without colored headers. I also adjusted the default accent color, but this is user configurable as well.

  • source
  • parent
  • context
  • [–] [S] 2 points 2 years ago

    Ahh yes, I tend to forget about these "awesome" lists. Thanks for the links.

    It seems that Brilliant CV is a direct port of the same latex template I used to use as well. The developer references it as well in the README. I do think my template is a bit easier to use and is more up to date with the latest typst version but there are some really nice templates on there.

  • source
  • parent
  • context
  • [–] [S] 5 points 2 years ago

    Overall it was pretty nice honestly. Especially coming from Latex. Creating a template in Latex was very difficult but in typst it's way more intuitive (at least to me) and it's easy to control every aspect of the text and its layout.

  • source
  • parent
  • context
  • [–] [S] 2 points 2 years ago (1 child)

    Whoops! I ommited that on purpose. But you can add the job title back in. And yes I see how that would be good for each sub section to have the company name.

    This should be doable, I'll update this thread if I can implement it.

  • source
  • parent
  • context
  • [–] [S] 3 points 2 years ago (3 children)

    I put this together in a few minutes using my template. Does this address what you meant?

    Here's the typst code:

    #import "@preview/modern-cv:0.1.0": *
    
    #show: resume.with(
      author: (
          firstname: "Person", 
          lastname: "Lastname",
          email: "email@email.com", 
          phone: "111-111-1111",
          github: "DeveloperPaul123",
          linkedin: "LinkedIn Name",
          address: "111 Road Dr. City, Place 111111",
          positions: (
            "Software Engineer",
            "Software Architect"
          )
      ),
      date: datetime.today().display()
    )
    
    = Experience
    
    #resume-entry(
      title: "Company, Inc.",
      location: "Place, Earth",
      date: "2022 - 2023"
    )
    
    #secondary-justified-header(
      "Developer",
      "June 2023 to August 2023"
    )
    
    #resume-item[
      - #lorem(10)
      - #lorem(11)
    ]
    
    #secondary-justified-header(
      "Analyst",
      "March 2021 - May 2022"
    )
    
    #resume-item[
      - #lorem(10)
      - #lorem(11)
    ]
    
  • source
  • parent
  • context
  •  

    cross-posted from: https://lemmy.world/post/1736237

    Just wanted to share my C++20 thread pool implementation. Based on my testing, it's one of the fastest implementations out there with a decent feature set. Development work is ongoing and I'm always looking for more suggestions and contributors!

    view more: next ›