Ask HN: How is the job search coming along for people who got laid off?
451–460 of 579 posts
Re: Ask HN: How is the job search coming along for people who got laid off?
#452I feel everyone who's in a bad place now, uncertain about the future. My approach has been often to take a mixed-risk approach, and it seems to work out well. First, no debt. Second, long-cash. After working for about ten years in relatively low paying roles I have something like a runway of about 25 years - that is I would not need to take on any job for 25 years while keeping mostly my current standard of living (p…
Re: Ask HN: How is the job search coming along for people who got laid off?
#453Earlier quoted context omitted.
I think a big one is there just being fewer old programmers so you don't see them as much so you think there's ageism. But the market has grown a ton over the past 10-20 years. None of my friends in their 40s have trouble getting jobs. This includes software jobs that tend to skew young, such as game dev and startups. I wouldn't doubt it exists, but anecdotally it doesn't seem to be such a huge problem that you can't…
Maybe naive but I don't really see 40s as ageism territory in general. That said, a lot of people adapt. Go into management. More externally facing roles. Different types of companies.
In my 20s I was told 30 is the end of the line. In my 30s I was told its the 40s. Now the bar is higher.
Maybe I'm part of a large enough cohort of programmers that we continually push ageism out, and due to that it will be 'solved' as we hit our 60s and 70s.
Re: Ask HN: How is the job search coming along for people who got laid off?
#454Earlier quoted context omitted.
The issue is that Python passes references by value, so you cannot overwrite what the arguments of a function reference from the perspective of the caller. However, if you pass something like a dictionary or a class the function gets a copy of the reference and can use it to update the members of what was passed. Java operates on the same principle, although there may be some edge cases I'm not aware of where the two…
Perhaps I'm being simple minded, but the id of the passed object within the function is the same as the id of the object outside the function, no? My mental model is that an object's id in python is basically an address / pointer. So, how come it's the same inside the function as outside, if it's not pass by reference?
Here's an example to include the id differences and the fact that a does not take on the value of d:
>>> def f(d):
... print(f"id: '{id(d)}'")
... d = {'foo': 'bar'}
... print(f"id: '{id(d)}'")
>>> a = {}
>>> a
{}
>>> id(a)
140362610196224
>>> f(a)
id: '140362610196224'
id: '140362610196160'
>>> a
{}
>>> id(a)
140362610196224
But, as I've posted elsewhere in this thread, this example will change the contents of 'd' since d itself is not being set, its contents are: >>> def f(d):
... d['foo'] 'bar'}
...
>>> a = {}
>>> f(a)
>>> a
{'foo': 'bar'}Re: Ask HN: How is the job search coming along for people who got laid off?
#455I feel everyone who's in a bad place now, uncertain about the future. My approach has been often to take a mixed-risk approach, and it seems to work out well. First, no debt. Second, long-cash. After working for about ten years in relatively low paying roles I have something like a runway of about 25 years - that is I would not need to take on any job for 25 years while keeping mostly my current standard of living (p…
Re: Ask HN: How is the job search coming along for people who got laid off?
#456Earlier quoted context omitted.
Maybe naive but I don't really see 40s as ageism territory in general. That said, a lot of people adapt. Go into management. More externally facing roles. Different types of companies.
I guess what's old is new? In my 20s I was told 30 is the end of the line. In my 30s I was told its the 40s. Now the bar is higher. Maybe I'm part of a large enough cohort of programmers that we continually push ageism out, and due to that it will be 'solved' as we hit our 60s and 70s.
It probably does mean that, if someone just wants to code, they probably have a higher bar than people interested in doing a more diverse set of things.
Re: Ask HN: How is the job search coming along for people who got laid off?
#457Earlier quoted context omitted.
Thanks for sharing. If I may ask, when was the last time you looked for a job? I'm saying this because maybe you're having trouble due to ageism that you didn't encounter before.
Ageism is often conflated with higher compensation expectations.
Re: Ask HN: How is the job search coming along for people who got laid off?
#458I feel everyone who's in a bad place now, uncertain about the future. My approach has been often to take a mixed-risk approach, and it seems to work out well. First, no debt. Second, long-cash. After working for about ten years in relatively low paying roles I have something like a runway of about 25 years - that is I would not need to take on any job for 25 years while keeping mostly my current standard of living (p…
Life feels too short/uncertain to not make use of the cash you've got, is the other perspective I guess.
Re: Ask HN: How is the job search coming along for people who got laid off?
#459I feel everyone who's in a bad place now, uncertain about the future. My approach has been often to take a mixed-risk approach, and it seems to work out well. First, no debt. Second, long-cash. After working for about ten years in relatively low paying roles I have something like a runway of about 25 years - that is I would not need to take on any job for 25 years while keeping mostly my current standard of living (p…
Re: Ask HN: How is the job search coming along for people who got laid off?
#460I feel everyone who's in a bad place now, uncertain about the future. My approach has been often to take a mixed-risk approach, and it seems to work out well. First, no debt. Second, long-cash. After working for about ten years in relatively low paying roles I have something like a runway of about 25 years - that is I would not need to take on any job for 25 years while keeping mostly my current standard of living (p…
Life feels too short/uncertain to not make use of the cash you've got, is the other perspective I guess.