devpaul

joined 2 years ago
[–] devpaul 5 points 10 months 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.

[–] devpaul 2 points 10 months ago (2 children)

Oh really? I couldn't find a port of this before. Do you happen to have a link?

[–] devpaul 2 points 10 months ago (1 children)

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.

[–] devpaul 3 points 10 months 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 protected]", 
      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)
]
[–] devpaul 5 points 10 months ago (4 children)

This is interesting as I simply copied the same styling as the previous template I was using. Would it be better to highlight the entire first word instead of the first n letters?

[–] devpaul 2 points 10 months ago

I added it to the original post, sorry about that!

[–] devpaul 2 points 10 months ago (1 children)

Sorry, I added the link in the post now. It's also available on typst universe.

[–] devpaul 2 points 10 months ago (1 children)

It's in the description now, sorry about that!

[–] devpaul 1 points 10 months ago

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 😅

[–] devpaul 6 points 10 months ago (2 children)

Thanks for the feedback! I think this makes sense for those who do have work experience. Do you think this should still be the case for new graduates?

Also I should note you can easily change the order of things in your own CV.

[–] devpaul 2 points 2 years ago

That's a fair point, thanks!

[–] devpaul 2 points 2 years ago (3 children)

Are you saying it's not worth becoming a freelancer if you don't already have connections ?

 

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: ‹ prev next ›