ramchip
π Joined in 2008
πΌ 3,801 Karma
βοΈ 1,348 posts
Load more
(Replying to PARENT post)
(Replying to PARENT post)
(Replying to PARENT post)
> Moreover, the policy cost $375m in allβfrom the Chivo rollout, subsidised transaction fees, bitcoin ATMs and moreβaccording to Moodyβs, a rating agency. That far exceeds the profits on bitcoin holdings, which could still evaporate. By delaying an IMF deal, the crypto experiment kept El Salvador's risk premium high.
(Replying to PARENT post)
I'm curious what makes you think so, and what the alternatives would be. My impression is actually that if shops weren't forced to accept USD, 100% would still do so.
(Replying to PARENT post)
(Replying to PARENT post)
> COVID-19 vaccine efficacy or effectiveness against severe disease remained high, although it did decrease somewhat by 6 months after full vaccination. By contrast, vaccine efficacy or effectiveness against infection and symptomatic disease decreased approximately 20β30 percentage points by 6 months.
(Replying to PARENT post)
> Can I still apply even if my major and job course are not related?
> Please do! Around 40% of our new recruits work in positions that are different from their university majors. Instead of narrowing your options by focusing on your major, please expand your thoughts and ideas to what you want to do at Sony. Pick job courses that excite you and motivate you to take on a challenge.
In the Japanese website they mention that 300 engineers act as in-house instructors.
(Replying to PARENT post)
Basically, Russia's goal is not so much to cut some cables but rather to create fear in order to reduce support for Ukraine. A loud public response is not necessarily in our interest because it makes their attacks more effective.
(Replying to PARENT post)
(Replying to PARENT post)
(Replying to PARENT post)
(Replying to PARENT post)
As an example, with a goroutine you have to be careful to handle all errors, because a panic would take down the whole service. In Elixir a websocket handler can crash anywhere without impacting the application. This comes at a cost, because to make this safe Elixir has to isolate the processes so they don't share memory, so each process has its own individual heap, and data gets copied around more often than in Go.
(Replying to PARENT post)
I'm not sure I understand the question - all queue systems I've used separate delivery and acknowledgement, so if a process crashes during processing the messages will be redelivered once it restarts.
Do you have a concrete example of a flow you're curious about?
Maybe these could help:
- https://ferd.ca/the-zen-of-erlang.html
- https://jlouisramblings.blogspot.com/2010/11/on-erlang-state...