Hacker Newsnew | past | comments | ask | show | jobs | submit | uncivilized's commentslogin

He’ll taco when he sees the stock market tanking


Israel is making the decisions here, there is no tacoing for them.


but will iran accept the taco? at this point, it seems like it may get ideological for them, and they play a different war (jihad) which would require diverting prolonged resources. we may not be able to simply just leave and revert to normal.


genie is out of the bottle on this one


How many of those are real jobs?


Senior level is doing the heavy lifting here.


Isn’t the person with 14 years experience at least senior? Or are you saying senior is low level enough to get interviews?


Yes, I’m not speaking about the person with 14 years of experience.

I’m saying that looking for senior level roles is much easier than roles that aren’t quite senior yet.


What were you browsing where someone cutting off their own testicles is not as bizarre as other things? I didn't watch the video but atleast there was a warning.

Feds this guy right here ^^


There's some distance between setting pubes on fire and cutting testicles off, dare I say.

Although, setting any kind of hair on fire in public should be punishable, primarily because of stench of the burnt hairs.


> What were you browsing where someone cutting off their own testicles is not as bizarre as other things?

One of my formative early internet experiences was loading up a video of a man being beheaded with a knife.

Luckily, I realized what was about to happen, and didn't subject myself to the whole thing.


As a transgender woman, that isn't something I'd expect to see but am not surprised to see on a site called girl.surgery. dead doves and all that


Looks at the chain of comments, then at the URL domain

Thanks for the warnings, kind strangers.


No. The author uses the term “engineering notebook” to make it sound different than what humans have already been doing for millennia.


What do you use to digitize your Field Notes? I was using EverNote but I’m looking for an alternative.


Just a flatbed scanner.


Thanks, but I mean do you use OCR or any service after scanning them? Would be nice to be able to search through the notebooks once scanned.


You've just described every comment section on HackerNews.


Care to share your output? I doubt your VST is on the same level as something released by a company like Native Instruments, Spectrasonics, etc.


How did AI companies find your collection?


This part is not correct. I can't speak for the other languages, but in Python the exception that is originally thrown is the one that creates the traceback. If the finally block also throws an exception, then the traceback includes that as additional information. The author includes an addendum, yet he is still wrong about which exception is first raised.


I believe this might be slightly imprecise also.

The traceback is actually shown based on the last-thrown exception (that thrown from the finally in this example), but includes the previous "chained exceptions" and prints them first. From CPython docs [1]:

> When raising a new exception while another exception is already being handled, the new exception’s __context__ attribute is automatically set to the handled exception. An exception may be handled when an except or finally clause, or a with statement, is used. [...] The default traceback display code shows these chained exceptions in addition to the traceback for the exception itself. [...] In either case, the exception itself is always shown after any chained exceptions so that the final line of the traceback always shows the last exception that was raised.

So, in practice, you will see both tracebacks. However, if you, say, just catch the exception with a generic "except Exception" or whatever and log it without "__context__", you will miss the firstly thrown exception.

[1]: https://docs.python.org/3.14/library/exceptions.html#excepti...


Thanks for pointing that out. I was thinking about the traceback message and hadn't thought about __context__ or __traceback__.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: