Earlier quoted context omitted.
I'm not in the USA so I'm not sure how the W2s and SSNs are tied to job/healthcare/401k etc, but how does this double timing work? Won't the Tax office/Finanzamt (IRS) know about this?
It’s not illegal to have two jobs.
Ask HN: How is the job search coming along for people who got laid off?
431–440 of 579 posts
Re: Ask HN: How is the job search coming along for people who got laid off?
#432Earlier quoted context omitted.
Passing a reference is semantically different from passing by reference (the latter being a functionality of the language); doing the former (behind the scenes) doesn't imply that the language supports the latter (if one wants to be rigorous, not even C supports pass by reference). The canonical example is a function that swaps the variables passed to a function: a, b = 10, 20 swap_fn(&a, &b) a == 20 # true Since the…
In python it actually depends on the data type! Python 3.10.8 (main, Oct 13 2022, 09:48:40) [Clang 14.0.0 (clang-1400.0.29.102)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 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?
#433Demographics is the killer force, basically with a MINT background, you can find a job almost instantly. You may not earn a top salary, but you'll earn enough to get by well.
Given Europe is in the worst crisis since WW2, I'd say job market is fine.
Re: Ask HN: How is the job search coming along for people who got laid off?
#434Earlier quoted context omitted.
It’s not illegal to have two jobs.
Why do so many people think this? Conditioning via plutocracy?
Re: Ask HN: How is the job search coming along for people who got laid off?
#435Earlier quoted context omitted.
In python it actually depends on the data type! Python 3.10.8 (main, Oct 13 2022, 09:48:40) [Clang 14.0.0 (clang-1400.0.29.102)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> def f(d): ... d['foo'] = 'bar' ... >>> a = {} >>> f(a) >>> a {'foo': 'bar'}
My understanding of what's going on with python is it passes by reference (hence what your code does), but if the data type is immutable any modification results in a new instance being created in the scope of the function, and the object passed in is not modified. Which mostly looks like pass-by-value behaviour. I guess my understanding could be technically wrong in some way, but it seems to reflect what happens.
Re: Ask HN: How is the job search coming along for people who got laid off?
#436Re: Ask HN: How is the job search coming along for people who got laid off?
#437Earlier quoted context omitted.
Ageism is often conflated with higher compensation expectations.
While it's certainly very real, it's conflated with a lot of things: compensation expectations, specialization, potentially not up on current trends, maybe set in ways, etc.
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 continue coding until a standard retirement age.
Re: Ask HN: How is the job search coming along for people who got laid off?
#438Didn't get laid off but resigned around a month ago after a long stretch of non-stop work since I was basically a kid (worked through college, university, and straight after O_o). Basically for a little break and to focus on doing some real intense OSS. Been a wild, challenging, and rewarding 1.5 months so far. Applied to a couple places that were working on some interesting things, some even related to my own OSS, r…
Re: Ask HN: How is the job search coming along for people who got laid off?
#439Earlier quoted context omitted.
No sorry, you are incorrect and you can verify the correct answer on Wikipedia or any technical book on this subject. For example the Java Language Specification states in section 8.4.1 that Java is pass by value: https://docs.oracle.com/javase/specs/jls/se8/html/jls-8.html... ECMAScript's Language Specification also states in section 10.6 that it uses pass by value semantics, although it's much more formal about the…
I said they pass objects by reference , which is true. Technically, yes, Java is pass by value. However, objects are not passed by value. The value you are passing is a reference (pointer) to that object. If this were not the case, you would not be able to see modifications to method parameters reflected in the caller because you're modifying a copy. You are not modifying a copy.
While I likely can not convince you further that you are in error, especially since you're now trying to double down on this, for others reading this who have a genuine desire to understand this topic, please understand that Java, JavaScript and Python do not pass by reference, but instead pass by value and refrain from attempting to redefine technical terminology.
The references I cite are quite authoritative and unambiguous on this topic.
Re: Ask HN: How is the job search coming along for people who got laid off?
#440Interviewed with about 28 companies for almost 3 months, without a single offer! I was starting to get really worried about money and burned out from interviewing. In the past I've never interviewed with more than 2 or 3 before getting an offer I now this is incredibly privileged. I'm not humble-bragging, just observing the change in the market. As things usually turn out, during the last week of the 3-month search I…