Skip Navigation
What are your must-have programs?
  • Yeah I've tried One Note, Evernote and notion before coming across Logseq and Obsidian. I'm really enjoying it. I haven't given Excalidraw much use in obsidian but I may do so in the future.

  • What are your must-have programs?
  • 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.

  • modern-cv 0.3.0 : `typst` resume template now with multi-lingual support and simpler design
  • Just curious, but what do you mean by the following

    Typsts chat room is closed source and not accessible by everyone

    And

    There is no discourse forum

    Do you mean that's it's hard to get involved in the discussion regarding typst? If so, check out the discussions on the their github page: https://github.com/typst/typst/discussions

    And also be sure to check out their discord; it's linked to from the main website.

  • modern-cv 0.3.0 : `typst` resume template now with multi-lingual support and simpler design
  • I really like it. I think it's on the right path as a competitor/successor to latex. I would agree with some of barbara's comments on it's age and maturity. It's being worked on by a lot of people and is open source which is cool. https://github.com/typst/

    Overall it's easy to get started but there's a decent bit to learn like with any language. Creating templates like this is much, much easier though than it is in latex IMO. Overall I'm a fan and I'm slowly phasing out everything I've written in latex and am replacing it with typst.

  • modern-cv 0.3.0 : `typst` resume template now with multi-lingual support and simpler design
    github.com GitHub - DeveloperPaul123/modern-cv: A modern resume template written in Typst, inspired by Awesome-CV

    A modern resume template written in Typst, inspired by Awesome-CV - DeveloperPaul123/modern-cv

    GitHub - DeveloperPaul123/modern-cv: A modern resume template written in Typst, inspired by Awesome-CV

    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. > > | | | > |:--:|:--:| > |!|!| > |!| ! |

    0
    modern-cv 0.3.0 : `typst` resume template now with multi-lingual support and simpler design
    github.com GitHub - DeveloperPaul123/modern-cv: A modern resume template written in Typst, inspired by Awesome-CV

    A modern resume template written in Typst, inspired by Awesome-CV - DeveloperPaul123/modern-cv

    GitHub - DeveloperPaul123/modern-cv: A modern resume template written in Typst, inspired by Awesome-CV

    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.

    | | | |:--:|:--:| |!|!| |!| ! |

    7
    A modern resume template written in Typst, inspired by Awesome-CV
  • 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.

  • A modern resume template written in Typst, inspired by Awesome-CV
  • 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.

  • A modern resume template written in Typst, inspired by Awesome-CV
  • 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.

  • A modern resume template written in Typst, inspired by Awesome-CV
  • 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.

  • A modern resume template written in Typst, inspired by Awesome-CV
  • 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)
    ]
    
  • A modern resume template written in Typst, inspired by Awesome-CV
  • Thanks!

    I added the link now and yes, I really hope typst takes off as well. I've been using it pretty extensively where I can at work and my personal life and it's so much easier than Latex. I haven't done anything too complicated yet so we'll see how it goes.

    Also I added the missing link 😅

  • A modern resume template written in Typst, inspired by Awesome-CV

    Hi all,

    I made this typst template originally to port my personal resume to typst from Latex. It tries to be a faithful port of the Awesome-CV latex template that I was previously using. Hope you find it useful.

    https://github.com/DeveloperPaul123/modern-cv

    Edit: added missing link

    61
    v0.6.2 of dp::thread_pool (High performance work stealing pool) is now out! Also available on vcpkg
    github.com Release Minor fixes for `vcpkg` support · DeveloperPaul123/thread-pool

    What's Changed Updates for 0.6.1 release by @DeveloperPaul123 in #46 Do not unconditionally download CPM.cmake. Now it's only downloaded when tests, benchmarks or example builds are turned on. Fu...

    Release Minor fixes for `vcpkg` support · DeveloperPaul123/thread-pool
    0
    v0.6.2 of dp::thread_pool (High performance work stealing pool) is now out! Also available on vcpkg
    github.com Release Minor fixes for `vcpkg` support · DeveloperPaul123/thread-pool

    What's Changed Updates for 0.6.1 release by @DeveloperPaul123 in #46 Do not unconditionally download CPM.cmake. Now it's only downloaded when tests, benchmarks or example builds are turned on. Fu...

    Release Minor fixes for `vcpkg` support · DeveloperPaul123/thread-pool
    0
    v0.6.2 of dp::thread_pool (High performance work stealing pool) is now out! Also available on vcpkg
    github.com Release Minor fixes for `vcpkg` support · DeveloperPaul123/thread-pool

    What's Changed Updates for 0.6.1 release by @DeveloperPaul123 in #46 Do not unconditionally download CPM.cmake. Now it's only downloaded when tests, benchmarks or example builds are turned on. Fu...

    Release Minor fixes for `vcpkg` support · DeveloperPaul123/thread-pool
    0
    v0.6.2 of dp::thread_pool (High performance work stealing pool) is now out! Also available on vcpkg
    github.com Release Minor fixes for `vcpkg` support · DeveloperPaul123/thread-pool

    What's Changed Updates for 0.6.1 release by @DeveloperPaul123 in #46 Do not unconditionally download CPM.cmake. Now it's only downloaded when tests, benchmarks or example builds are turned on. Fu...

    Release Minor fixes for `vcpkg` support · DeveloperPaul123/thread-pool
    0
    GitHub - DeveloperPaul123/StarView: 🌟Simple custom star view for Android🌟
    github.com GitHub - DeveloperPaul123/StarView: 🌟Simple custom star view for Android🌟

    🌟Simple custom star view for Android🌟. Contribute to DeveloperPaul123/StarView development by creating an account on GitHub.

    GitHub - DeveloperPaul123/StarView: 🌟Simple custom star view for Android🌟
    0
    StarView - FOSS custom star view (widget) for Android
    github.com GitHub - DeveloperPaul123/StarView: 🌟Simple custom star view for Android🌟

    🌟Simple custom star view for Android🌟. Contribute to DeveloperPaul123/StarView development by creating an account on GitHub.

    GitHub - DeveloperPaul123/StarView: 🌟Simple custom star view for Android🌟
    2
    GitHub - DeveloperPaul123/thread-pool: A modern, fast, lightweight thread pool library based on C++20
    github.com GitHub - DeveloperPaul123/thread-pool: A modern, fast, lightweight thread pool library based on C++20

    A modern, fast, lightweight thread pool library based on C++20 - GitHub - DeveloperPaul123/thread-pool: A modern, fast, lightweight thread pool library based on C++20

    GitHub - DeveloperPaul123/thread-pool: A modern, fast, lightweight thread pool library based on C++20

    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!

    0
    GitHub - DeveloperPaul123/thread-pool: A modern, fast, lightweight thread pool library based on C++20
    github.com GitHub - DeveloperPaul123/thread-pool: A modern, fast, lightweight thread pool library based on C++20

    A modern, fast, lightweight thread pool library based on C++20 - GitHub - DeveloperPaul123/thread-pool: A modern, fast, lightweight thread pool library based on C++20

    GitHub - DeveloperPaul123/thread-pool: A modern, fast, lightweight thread pool library based on C++20

    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!

    0
    InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)DE
    devpaul @lemmy.world
    Posts 11
    Comments 24