HN user

leecb

357 karma

leecbaker.com

lee@leecbaker.com

Flight simulator projects: planecommand.com datareftool.com

Posts0
Comments81
View on HN
No posts found.

The Quasi-Zenith Satellite System (QZSS) (Japanese: 準天頂衛星システム, Hepburn: juntenchō eisei shisutemu), also known as Michibiki (みちびき, "guidance"), is a regional navigation satellite system (RNSS) and a satellite-based augmentation system (SBAS) developed by the Japanese government to enhance the United States-operated Global Positioning System (GPS) in the Asia-Oceania regions, with a focus on Japan.

https://en.wikipedia.org/wiki/Quasi-Zenith_Satellite_System

I wonder how much of this increase is solely enabled by TSMC process upgrades, either through higher clock speeds or increased number of transistors per core? It's kind of interesting that every iteration of the M series has corresponded to a change of TSMC process.

M1: 16 billion transistors at 3.2 GHz on TSMC N5

M2: 20 billion transistors at 3.7 GHz on TSMC N5P

M3: 25 billion transistors at 4.05 GHz on TSMC N3B

M4: 28 billion transistors at ?? GHz on TSMC N3E

taking over 500ms and a complete page reload

For me this is 45ms to transfer the 2 kB (compressed) of HTML; the whole process takes under 60ms total, which is pretty darn close to "instantaneous" for the "complete page reload."

EDIT: I'm in Texas, so most of this time is probably just round trip time to the west coast.

This was not paid with a check, but a cashier's check, and so the money would have already been gone from their account:

From the post:

The car was paid for with a combination of card and CASHIER’S check. Cashiers check means the amount of money is withdrawn from the bank when it’s ISSUED not cashed. so no, we did not notice extra money sitting in our account because it had already been withdrawn.

MicroLEDs are still just LCDs with a better backlight but LCD Tech has evolved quite a lot and pixel refresh time (< 3-4ms) is not much of a problem anymore.

You're thinking of MiniLED, which is just better LEDs behind an LCD.

MicroLED is a whole different ball game, with no LCD at all. It's just red, green, blue LEDs, one for each pixel.

Weasyprint is an excellent tool for converting HTML to PDF. It has supported CSS Paged Media Module for a while; this has been very useful for making printable PDFs from web pages.

Weasyprint seems to be one of the few HTML->PDF engines out there that doesn't depend on a browser engine. It's impressive just how much works (HTML, CSS, SVG, etc), given that this is a relatively simple project compared to a full-featured browser. Performance isn't bad, considering it is implemented in Python.

This is a great idea; unfortunately now I have dozens of voicemails a week from these numbers instead of just calls. Any option to prevent them leaving voicemail?

those inane licenses no one reads, do we really want them to legally binding?

What all would be possible if software EULAs weren't legally binding?

One thing that EULAs typically do is reduce liability for the company producing the software. Imagine if Google/Apple were liable for damages from all the miscommunications caused by autocorrect?

The element is cobalt, Kobalt is a brand of tools

Kobalt is the name of the element in German; @jillesvangurp's profile says he is based in Berlin, perhaps he also speaks German. (German also capitalizes nouns.)

Several Pacific island nations adopted DST so they could be the first into the year 2000 for tourist purposes. As a result, some countries are only in DST for a month or two out of the year.

Othram | Senior Software Engineer | The Woodlands (Houston), TX | Onsite | https://othram.com

We are on a mission to digitize the world's DNA evidence so that we can identify victims, find missing persons, and reveal perpetrators of crimes.

Othram operates at the intersection of molecular biology, population genetics, and bioinformatics. Bridging 20th-century population genetics and 21st-century data science, we are the first and only forensic laboratory to vertically integrate a DNA test and human ID solution, that can identify victims, find missing persons, and reveal perpetrators of crimes.

Our team of scientists, lab technicians, and software engineers works to solve cold cases and crimes with our cutting edge forensic DNA sequencing lab. We’re building automated tools process DNA and genealogical information to determine identity from DNA, and to automate and optimize other parts of the business. As we’re scaling up, we’re looking for more people to help the software team. Currently hiring for multiple roles: - Software engineer: website backends, data processing pipelines, analysis software, and business process automation. - Data scientist: collect, analyze, and visualize data ranging from business analytics and customer interactions to human genetics and genealogy.

Looking for a strong engineering background and significant Python experience. Experience with bioinformatics is a plus, but not required.

Job descriptions at https://othram.com/team.html, and read about cases we’ve solved at dnasolves.com or search for Othram on Google News. Apply at solve@othram.com.

My vision of the future has all power lines buried.

Singapore already has already achieved this. It's actually quite pleasant to not have any overhead lines.

They are currently replacing the main electricity distribution cables that run under roads, and replacing them with a system that runs in tunnels 60m underground. This depth is necessary to avoid other systems like the subway(MRT) that run at shallower depths. https://www.todayonline.com/singapore/deepest-tunnels-spore-...

[dead] 5 years ago

Can we ban sites that intentionally break the back button?

Hello, HPy 5 years ago

Related but separate from the subinterpreters PEP, there is interest in moving from a global interpreter lock to one lock per subinterpreter. This would need to be in place before running Python interpreters truly in parallel within one process. There’s a great summary here: https://lwn.net/Articles/820424/

I've personally had an iPhone 8 purchased in Thailand replaced under warranty in Sydney. I've had US-purchased Macbook Pros serviced in many other countries, including batteries (Canada, Thailand), mainboards (Germany, Singapore), top cases (butterfly keyboard in Thailand and Germany) and screens (Texas, Thailand). Certainly seems global to me, though countries without Apple stores are most definitely second class participants in Apple's repair network.

Hello, HPy 5 years ago

enable multiple interpreters in a single process.

CPython (the default interpreter) has had support for multiple interpreters in the same process since 1997, but it has only been exposed to the C API, and not in the language itself. Python 3.10, coming out later this year, will expose multiple interpreters in one process (subinterpreters, see PEP 554 [1]).

I'm excited about what could eventually come out of this. If there is one GIL per interpreter, we could have something like the `multiprocessing` library for parallel execution, but all within one process.

1 https://www.python.org/dev/peps/pep-0554/