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

> Your comment is nothing more than a broad ethnic slur

Have you considered that it may not be an insult but legitimate criticism?

The official government stat is 1.05M FN members. They have been targeted by over 200B$ in federal wealth transfers alone excluding tax incentives, provincial and municipal funding since 2015. That's almost 20K$ per person per year, more than what most Canadians pay in taxes each year and yet many FN communities don't have running water.

I think to ask about potential corruption or at least gross mismanagement is absolutly legitimate.


Interesting that you use the term ''ask'' when the person did not ask any question when making the broad ethnic slur.

Anybody with access to these models can challenge it to test the hypothesis that spacetime is a 4d viscous fluid with the speed of light being spacetime's sound barrier, mass relating to viscosity, blackholes being cavitation bubbles, Hawking radiation our perception of surface tension, and gravity just being a pressure differencial? Thanks


Beyond the training boundary. Seems a propos for "an infinite visual browser". I'm just not clear on how we get to the beyond part of it.

https://flipbook.page/n/f8982ddfd3ef4cbcb2ad8449d7d049b6


There's John Cleese's Meetings Bloody Meetings for good meeting hygiene training. Its entertaining and educational.

https://archive.org/details/meetingsbloodymeetings


You can implement a BTree with nodes stored in file-backed memmaps. It's plenty fast for the usual business case.


I'll take this opportunity to remind anyone on Azure that if you enable service endpoints on a subnet without applying service endpoint policies, anyone with the resourceid of an affected subnet can silently backdoor your network. Your NSGs do not matter for service endpoints.


Backdoora private network how? Or do you just mean that an NSG wont apply like you might have expected?


You can audit your dependencies for crates with security vulnerabilities reported to the RustSec Advisory Database, also block unmaintained crates, and enforce your license requirements using SPDX expressions with cargo-audit and cargo-deny.

You can ensure that third-party Rust dependencies have been audited by a trusted entity with cargo-vet.

And you should have taken a look at where those 3M locs come from, it's usually from Microsoft's windows-rs crates that are transitively included in your dependencies through default features and build targets of crates built to run on windows.


Sure they are AGI. Just let one execute in while (1) and give it the ability to store and execute logic rag-like. Soon enough you're gonna have a pretty smart fellow chugging along.


At some point we should just commit the AST to git and render it however it is preferred in IDE.


This has always made queries unpredictable in many scenarios and it should be a feature to turn nulls off entirely and swap them out with Option<T> instead.


How would you handle unmatched outer joins?


By having a default value (non-null) for each declared type of those columns.

Or, the user must define a default value in the query itself.

Yes, tedious; but, precise and forces the programmer to really prepare for the "unknown" scenario.


a left outer join b yields tuples of (A, Option<B>), a full outer join b yields tuples of (Option<A>, Option<B>)


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

Search: