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

There is also cargo make which, at least in rust land, serves a similar purpose. https://github.com/sagiegurari/cargo-make

I ended up using it over just because it felt easier to use cross platform, and toml seemed like a right choice


FWIW, ArrayList is a List, backed by Arrays.

So List would have been the more Java/Zig way to name it (also Python, etc.)


> FWIW, ArrayList is a List, backed by Arrays.

You probably know that, but just to clarify: it's backed by a single array, reallocated repeatedly, just like std::vector in C++ (although growth factors are different, I think).

Just "List" probably risks that some people will jump to the conclusion that it's a linked list. I'd probably prefer the full "ArrayList". Although personally I'd use something like "DynArray"/"DynamicArray".


I've seen projects like this in the past - either you have skilled people and use a strict CSP from the start, or the footguns of dynamiically crafting objects ultimately leads to a bunch of XSS that (probably) wouldn't have happened with mature frameworks


sometimes XSS is not a threat


It runs an Android userspace on the host kernel, inside a container


What about flutter apps?


Flutter apps can be themed, and a "cupertino" theme mimicking iOS Views exists.


It isn’t a theme per sae, really an alternate set of widgets: https://flutter.dev/docs/development/ui/widgets/cupertino


To be fair, a trait gets you 98% there. It can have default implementations for most functions, you just overwrite the ones you want to change. You'll still need to declare the underlying struct though, so a bit of extra code


Machine in the Middle or Malice in the Middle are better options imho


There is afl-rs https://github.com/rust-fuzz/afl.rs also we're working on a fuzzing library that's completely written in rust right now, stay tuned :)


How do I stay tuned :D? You folks don’t have a blog


Why not have multiple with different strengths for different users, though? Honggfuzz is also really good. That being said, most distributions replace afl with afl++ these days.


Maintainer here, happy to hear that! Doing our best :) Even Google's own OSS Fuzz switched to afl++ recently (https://google.github.io/oss-fuzz/)


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

Search: