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

MLS (Message Layer Security) is the IETF standard (RFC 9420) derived from the Signal and Whatsapp end-to-end encryption protocols, with improvements.


Whoosh

OP was parodying JD Vance 's comments from last week.


This is a known bug in st when the default emoji font contains color emojis. Explained here: https://github.com/LukeSmithxyz/voidrice/issues/284

One of the simplest workarounds is to ensure that the default emoji font is black&white; the linked issue above suggests other workarounds.

Also in the official st FAQ: https://git.suckless.org/st/file/FAQ.html

(search for "when trying to render emoji")


According to the link you shared it's a bug in Xft and not st: > Please don't bother reporting this bug to st, but notify the upstream Xft developers about fixing this bug.


Have you thought about simple iframes?

For example: https://random.vodka-pomme.net/


Is there a way to simulate capital tax? Percentage of taxable investments/cash?


A lot of the complexity comes from the lack of expressivity in languages to relate variables (or data structure fields) semantically to each other. If there was a way to tell the compiler "these variables are always accessed in tandem", the compiler could be smart about ordering and memory fences.

The idea to extend programming languages and type systems in that direction is not new: folk who've been using distributed computing for computations have to think about this already, and could teach a few things to folk who use shared memory multi-processors.

Here's an idea for ISA primitives that could help a language group variables together: bind/propagate operators on (combinations of) address ranges. https://pure.uva.nl/ws/files/1813114/109501_19.pdf


Even with that expressivity, someone who incorrectly relates or forgets to relate two variables could experience the same issues. It's still important to address what happens when the program has data races or when it is data-race-free but the memory model permits overreaching optimizations. The language and implementation should strive to make a program approximately correct.


That's Java's Object.lock() mechanism.

All variables inside of an object (aka: any class) are assumed to be related to each other. synchronized(foobar_object){ baz(); } ensures that all uses of foobar_object inside the synchronization{} area are sequential (and therefore correct).

--------

The issue is that some people (a minority) are interested in "beating locks" and making something even more efficient.


In Java, any object can be used to synchronize any data, e.g.

  synchronized(foobar_object){ foo(); }
  synchronized(foobar_object){ bar(); }
  synchronized(foobar_object){ baz(); }
Will have foo, bar, baz methods well behaved in any data that they share regardless of whether they are foobar methods or methods of any other class(es). It is exactly analogous to the S(a) -> S(a) synchronizing instruction from the article that establishes a happens-before partitioning each thread into before/after the S(a).

The only time synchronized(explicit_object) relates to anything else is when also using the keyword where `synchronized void foo()` is equivalent (with a minor performance difference) to `synchronized(this) { ... }` wrapping the entire body of the foo method.


Although in highly parallel code, the primitives from java.util.concurrent are to be preferred.

I highly advise reading "Java Concurrency in Practice".

Note that future Java primitive classes don't have monitors.


Seems like a vague way of saying that locks 'don't scale' or aren't composable, which is certainly the case but straying from the topic of memory models.


This is a hit piece. None of the angle taken there is specific to Telegram, it could be applied equally to e-mail.


Email is decentralized well enough, with the hosting providers both legally liable and visible. Telegram isn't.

The e-mail equivalent would be something like Matrix/IRC.


The article says that BI doesn't affect employment % as if it is a bad thing.

The fact that it did not decrease employment either is a wonderful thing, and should be celebrated.

It means that Finland can use BI as a replacement for a number of other social services, and drive the cost of state support for unemployment significantly. This is excellent!


I love your take on this. Yes, receiving free money does not dissuade people from working. It only lowers stress: knowing that you now have a “f you” income means you can say “no more” to an abusive employer.



And old systems like Corey OS.


Have you tried hosted CockroachDB, aka CockroachCloud?


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

Search: