Hacker Newsnew | past | comments | ask | show | jobs | submit | jdiff's favoriteslogin

To be fair, I think that's just the background on one of the highlighted user creations that the website is showcasing.

The person was Egon Kisch, a Czechoslovak communist, who arrived in 1934 for a speaking tour to raise awareness of what was happening in fascist Germany, and who the Australian government found far too 'revolutionary' to let in.

The full story is quite fun. He was initially refused permission to disembark, which he solved by leaping five metres from the ship, thereby making landfall (rather literally). The government then tried to exclude him using a dictation test, which could indeed be in any European language, and the test he failed was administered in Scots Gaelic. Some controversy arose when it turned out that the person giving the dictation test couldn't themselves understand Scots Gaelic, but the High Court ultimately ruled in Kisch's favour for the somewhat amusing reason that Scots Gaelic was 'not a European language' (at least within the meaning of the relevant law). [0]

Australia has a long and not-particularly-storied history of extreme border restrictions. Laws banning non-white migration persisted in one way or another until 1973, and in the subsequent fifty years Australia has done progressively more insane things to keep people out, including removing all of Australia from the Australian migration zone (so migrants never actually 'arrive' in such a way that might give them a right to seek asylum), using the navy to put people that arrived by sea back on boats and launching them vaguely in the direction of other countries, keeping people actually accepted to be refugees (!) off-shore in remote Pacific island concentration camps for years, and - during COVID - criminalising its own citizens leaving Australia for two years (and briefly even the return of Australian citizens home). [1]

[0] https://en.wikipedia.org/wiki/Attempted_exclusion_of_Egon_Ki...

[1] https://www.bbc.com/news/world-australia-56953052


This is a common misunderstanding of the poorly-named “hygiene hypothesis”. For a fuller explanation of how immunologists think about this today, see this article: https://rachel.fast.ai/posts/2024-08-13-crowds-vs-friends/

In short - viruses can actually harm your immune system and lead to long term problems. OTOH, we co-evolved with certain parasites that can help us.

Airborne pathogens are not likely to be the helpful type we’ve co-evolved with — they’re much more likely to be the type we’ve only had to deal with since the creation of higher density living and rapid long distance travel. Therefore air filters are likely to help children’s health both short and long term.


I'd assume Ireland has something like bailiffs in the UK.

Delta tried not paying around £3000 owed to a customer. He got a court order and sent bailiffs who went to the airport, closed the checking and said they were going seize the plane to pay for the debt.

There's a good short documentary about it here: https://www.youtube.com/watch?v=-QSj9odUD_c&t=320s . This link starts at 320 seconds, where the action starts. Start from the beginning if you want the back story.

Spoiler: Delta called the police who explained to them that they were about to pay up or lose the plane. Delta paid up. Actually, the managed used her personal card to pay I'd assume Delta paid her back.


I got mine off eBay, but you can get the same panels from AlfaZeta. There are some more affordable options like: https://xqd-led.en.alibaba.com/productgrouplist-936470954-2/.... I do mention in my post that I would like to see these panels become more affordable for hobbyists. If anyone wants to collaborate on this, please contact me!

About 11 years ago, after having written a tiny ray tracer from scratch using Java, I taught myself some ray tracing with POV-Ray. My goal was to learn a few POV-Ray features each day over 25 days and render some interesting scenes that exercise those features.

I began with simple spheres and cubes and gradually progressed to more intricate shapes and textures. Here are the results:

https://github.com/susam/pov25

The source code is in the "src/" directory. The rendered images are included in the README (scroll down to see them). I hope you like them!


there's also Refact (https://github.com/smallcloudai/refact/) with support of several open-source code LLMs and extension for VS Code and Jetbrains

There are a bunch of VSCode extensions that make use of local models. Tabby seems to be the most friendly right now, but I admittedly haven't tried it myself: https://tabbyml.github.io/tabby/

Works nearly out of the box with llama.cpp, which makes it easy to try locally: https://github.com/ggerganov/llama.cpp/issues/2766

Here's some output from q4_0 quantization of CodeLlama-7b-Python (first four lines are the prompt):

    # prints the first ten prime numbers 
    def print_primes(): 
        i = 2 
        num_printed = 0 # end of prompt
        while num_printed < 10:
            if is_prime(i):
                print(i)
                num_printed += 1
            i += 1

    def is_prime(n):
        i = 2
        while i * i <= n:
            if n % i == 0:
                return False
            i += 1
        return True

    def main():
        print_primes()

    if __name__ == '__main__':
        main()

It will be interesting to see how the larger models perform, especially after community tuning and with better context/prompting.

I have quite a few domains with Gandi, using their email service on a few because I'm lazy and it's free. Not sure when (or if) I'll receive notice of this change. Maybe it's regional? Seems most of the comments show £ as currency.

This is going to burn all of their goodwill they accumulated with the "no bullshit" slogan. I will be swiftly moving all my domains, likely to Porkbun.


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

Search: