HackerLangs
TopNewTrendsCommentsPastAskShowJobs

pflanze

no profile record

comments

pflanze
·letzten Monat·discuss
> Teasing an owl: https://youtube.com/watch?v=Y0i9tjnW7r0

There was a video on youtube about a crow coming to a human and making that sound, also in winter with snow; commenters agreed that it was probably thirsty and was imitating running water that way to get the human to give it water. The human in the video didn't get that. But here in the end we can see the crow eating snow, which may confirm that it is really a way for crows tell when they are thirsty? Not sure what that has to do with the owl--"teasing" might be just testing the owl's capabilities for checking whether killing the owl to drink its blood would be an option? (I guess melting snow for water is increasing the risk for the crow to be cold & run out of energy.)
pflanze
·vor 4 Monaten·discuss
Thanks for the info! I guess it also makes sense as I realized after posting, if it did use the result of malloc unused it should crash immediately due to references into the zero page segment, thus can't have been what I saw.
pflanze
·vor 4 Monaten·discuss
Do you happen to use memory resource limits? I used to run Firefox under some, like everything, to prevent it from potentially making the whole system unresponsible, and at the same time had frequent cases of Firefox showing random visual corruptions and crashes. At some point I realized that it was because it was running out of memory, and didn't check malloc failures, thus just continued to run and corrupting memory. (That was some 6-8 years ago, maybe Firefox does better now?)
pflanze
·vor 6 Monaten·discuss
If the code in the closure moves a value, then the closure becomes an FnOnce and does move the value out of the context. That's what you probably have in mind.

So, Rust does support partially-moving closures, and does so automatically.

But the converse is also true: Rust does not move values just because. If the code inside the closure doesn't move the context, then it will only move context if you use the `move` keyword (in which case the lifetime of the closure is not restricted by borrows of the context; Rust doesn't automatically move things to satisfy the closure's required lifetime, that's a manual decision process consistent with how Rust behaves in other places).

There's still one difference to the macro case: the closure borrows all the values at once. So if it needs &mut access to some variable in the context, you can't take another &mut to the same variable outside the closure as long as it is alive (as determined per what the non-lexical lifetime borrow checker can do). Those cases need to be worked around by instead passing in the &mut as a closure argument. Code deposited by macros is not subject to bundling all captures together, hence the borrow checker has more allowance to reduce the borrowing time of each borrow.
pflanze
·vor 6 Monaten·discuss
> So AFAICT Embassy doesn't do this at all?

I haven't used Embassy, but the README mentions "Tasks on the same async executor run cooperatively, but you can create multiple executors with different priorities so that higher priority tasks preempt lower priority ones" and links to an example that shows how a higher priority task runs even though a lower priority one runs a long time job (does not yield), thus understanding and infrastructure seems to be there.

So, Embassy may in its entirety replace an RTOS / be one, but it's not the async mechanism that can provide the RT part (and I guess you're right to point out the dangerous sentence as it could mislead people to use only async and believe it's RT).

OTOH the sentence would be right if it were something like "async multitasking is an alternative to preemptive multitasking, and can replace the use of a preemptive OS if real-time guarantees are not needed (note that Embassy separately allows running multiple executors to allow to pre-empt tasks running in lower-priority executors)". They should probably also describe what the reason for not needing per-task stack size tuning is.
pflanze
·vor 7 Monaten·discuss
No, unless you ask for it via the `move` keyword in front of the closure.

This works fine: https://play.rust-lang.org/?version=stable&mode=debug&editio...
pflanze
·vor 8 Monaten·discuss
> The behavior is all the more impressive given that the rodents hunt at night, when they are effectively blind

I can't access the paper to check if they verified it, but given there is a strong IR light, and even humans can see IR light if strong enough (and close enough in frequency, which is typically true for IR illumination for cameras), I wonder if that is true.
pflanze
·vor 8 Monaten·discuss
There's an independent reimplementation of the PIO assembler here: https://crates.io/crates/pio -- I haven't tried it so don't know how good.
pflanze
·vor 6 Jahren·discuss
Location: Switzerland

Remote: Yes (preferred)

Willing to relocate: yes to Germany, UK

Technologies: Functional programming (Scheme, Clojure, functional-perl.org, happy to start with Elixir/Erlang or Haskell/PureScript/OCaml/F#), C/C++/Rust, databases/backend/full-stack.

Résumé/CV: http://christianjaeger.ch/resume-chj.pdf

Email: [email protected]