this post was submitted on 28 Dec 2023
369 points (98.7% liked)

News

22583 readers
4152 users here now

Welcome to the News community!

Rules:

1. Be civil


Attack the argument, not the person. No racism/sexism/bigotry. Good faith argumentation only. This includes accusing another user of being a bot or paid actor. Trolling is uncivil and is grounds for removal and/or a community ban.


2. All posts should contain a source (url) that is as reliable and unbiased as possible and must only contain one link.


Obvious right or left wing sources will be removed at the mods discretion. We have an actively updated blocklist, which you can see here: https://lemmy.world/post/2246130 if you feel like any website is missing, contact the mods. Supporting links can be added in comments or posted seperately but not to the post body.


3. No bots, spam or self-promotion.


Only approved bots, which follow the guidelines for bots set by the instance, are allowed.


4. Post titles should be the same as the article used as source.


Posts which titles don’t match the source won’t be removed, but the autoMod will notify you, and if your title misrepresents the original article, the post will be deleted. If the site changed their headline, the bot might still contact you, just ignore it, we won’t delete your post.


5. Only recent news is allowed.


Posts must be news from the most recent 30 days.


6. All posts must be news articles.


No opinion pieces, Listicles, editorials or celebrity gossip is allowed. All posts will be judged on a case-by-case basis.


7. No duplicate posts.


If a source you used was already posted by someone else, the autoMod will leave a message. Please remove your post if the autoMod is correct. If the post that matches your post is very old, we refer you to rule 5.


8. Misinformation is prohibited.


Misinformation / propaganda is strictly prohibited. Any comment or post containing or linking to misinformation will be removed. If you feel that your post has been removed in error, credible sources must be provided.


9. No link shorteners.


The auto mod will contact you if a link shortener is detected, please delete your post if they are right.


10. Don't copy entire article in your post body


For copyright reasons, you are not allowed to copy an entire article into your post body. This is an instance wide rule, that is strictly enforced in this community.

founded 1 year ago
MODERATORS
 

Employers across a range of industries are dropping a job requirement once considered a ticket to a higher paying job and financial security: a college degree.

Today's tight labor market has led more companies instead to take a more skills-based approach to hiring, as evidenced on job search sites like Indeed and ZipRecruiter.

"Part of it is employers realizing they may be able to do a better job finding the right talent by looking for the skills or competencies someone needs to do the job and not letting a degree get in the way of that," Parisa Fatehi-Weeks, senior director of environmental, social and governance (ESG) for hiring platform Indeed told CBS MoneyWatch.

you are viewing a single comment's thread
view the rest of the comments
[–] danhab99@programming.dev 11 points 7 months ago (3 children)

I'm a programmer and I don't think I've ever been asked about my education.. not that I have much I'm mostly self taught. Even so, I can't imagine what more education could give me to show in an interview.

The opensource community changes SOP for all of us basically every quarter so how is my education supposed to keep up with that?

[–] frogfruit@programming.dev 15 points 7 months ago

The trick is that you have experience. Without years of experience, it's extremely difficult to get hired without a degree.

[–] WeirdGoesPro@lemmy.dbzer0.com 2 points 7 months ago (1 children)

What is the best way to teach yourself programming? I love tinkering with technology systems in my home, and have often thought about how writing simple programs could unleash some extra potential, but I don’t know where to start.

[–] danhab99@programming.dev 1 points 7 months ago (1 children)

We programmers share our knowledge freely in user manuals, tutorials, articles and YouTube videos.

But in my experience the only thing that I see slowing down new programmers is motivation. You can't really learn code without having a reason to apply what you've learned. You have to come up with a reason first, That's my best advice.

[–] WeirdGoesPro@lemmy.dbzer0.com 1 points 7 months ago (1 children)

I have ideas of things to do, but since I am starting from 0, I don’t even know what language to aim for, or what is a reasonable project to start with. I feel like I could definitely figure things out on my own from tutorials if I just had some basic primer about what’s out there and what things are typically designed to do.

I don’t know what I don’t know, so it is hard to know what questions I need to ask.

[–] danhab99@programming.dev 1 points 7 months ago (1 children)

I have ideas of things to do, but since I am starting from 0

Perfect! You've taken the hardest step. I can give you advice from here.

Computers only really do 3 types of work, there can be more but most can be summarized like this:

  • Displaying things on screen: this only ever happens on the end user's device. React and React native are the best options for that.
  • Copying data from one spot to the next: simple operations to get data from one location, reencode it and send it somewhere else, wether to the end user's device or another database its all the same work. Typescript is best suited for that.
  • Hard work: processing large blobs of data like reencoding pictures and videos, consuming megabytes of data at a time and running a calculation. Go is best suited for that.
[–] WeirdGoesPro@lemmy.dbzer0.com 1 points 7 months ago

Thank you so much for your responses! I feel a lot more encouraged after this conversation. You never know how the seeds you plant may grow—and you’ve definitely planted one today.

I think I’ll start with some basic move and rename stuff since that would save me some manual work, and then I’ll see how I can grow from there.