pbsds
|
7 months ago
|
on: A statistical analysis of Rotten Tomatoes
a mean rating of 3 can only be 100% fresh if the variance is 0
pbsds
|
1 year ago
|
on: TikTok goes dark in the US
If concentration of control over concentration scares you then a social media not owned by the US should be welcome. Now you have an all-american echo chamber.
pbsds
|
1 year ago
|
on: Paris to Berlin by train is now faster by five hours
Trains are more comfy, almost silent and way more convenient. You don't have to start traveling to the airport 3 hours in advance. There is also this little silly thing people talk about called global warming
pbsds
|
2 years ago
|
on: Jupyter AI
...reproducable? Doesn't GPT change all the time?
pbsds
|
3 years ago
|
on: A 6.7 inch E-Ink display that pairs with your smartphone
I've been wanting something like this for a long time
pbsds
|
3 years ago
|
on: Gojq: Pure Go Implementation of Jq
Gron has the same issue, as it too is written in go and randomizes key order.
pbsds
|
3 years ago
|
on: Every single time I open your software, I'm asked to download an update
It's when a package manager updates Firefox while it's running.
pbsds
|
3 years ago
|
on: Every single time I open your software, I'm asked to download an update
I prefer the Firefox solution. Chrome "solved" this by running the outdated version untill restart. But if you click a link outside of chrome it opens in a new instance of the updated version, without your old tabs. If you at this point close all chrome windows then you've lost all the tabs on the outdated instance.
pbsds
|
3 years ago
|
on: I Made Minecraft, but It's 4D [video]
A 3d spider could easily be invisible to the 2d guy, by simply staying clear of his viewing plane. Hence why the "approaching perpendicular to his plane of existence" YouTube comment is actually terrifying.
pbsds
|
4 years ago
|
on: Ask HN: Best practices for editing remote code locally?
Many editors support the rmate protocol, enabling you to open a remote file from a ssh session in your local editor.
pbsds
|
4 years ago
|
on: Ask HN: Best practices for editing remote code locally?
For this i combine entr and rsync
pbsds
|
4 years ago
|
on: Show HN: Pylectronics – Reproduce digital electronics in Python
pbsds
|
4 years ago
|
on: In Praise of Open Source Textbooks
Could a equation OCR system like [1] be combined with a screen reader? It seems to support asciimath
[1]: https://mathpix.com/ocr
pbsds
|
5 years ago
|
on: Python 3's F-Strings: An Improved String Formatting Syntax
_("Hello, {name}).format(**vars())
pbsds
|
5 years ago
|
on: Most surgeries are ineffective
> 5/ As Dr Ian Harris said, the unsaid attitude could be stated like: “you have to operate on patients quickly before they get better“.
Wow, really puts a new perspective on the usually massive wait times here in Norway.
pbsds
|
5 years ago
|
on: Launching the 2020 Nim Community Survey
This survey doesn't have a case for those who know of Nim but have yet to try it out. Expect a lot of 'other' responses to read through.
pbsds
|
5 years ago
|
on: Remote-CLI: execute tasks on remote hosts while working locally
This has for me been a godsend after corona hit. The ".remoteenv" file is for me the killer feature. Being able to bundle remote-cli in my python-poetry dev environment makes the setup trivial as well.
For those interested, here is my ".remoteenv" file to setup poetry using conda: https://gist.github.com/pbsds/fe243e518717531b10b2782add5192...
pbsds
|
5 years ago
|
on: PEP 638 – Syntactic Macros
pbsds
|
5 years ago
|
on: Firefox 81.0
Have you tried enabling pixel-perfect scrolling?
pbsds
|
5 years ago
|
on: Fastcore: A library that extends Python with new features
I agree on the monkeypatching of pathlib. It makes it difficult for a reader to look up what the functions do.
Providing a different module, like `import nPathlib as Pathlib` would be a lot more discoverable.