Kirill Pimenov

Results 10 issues of Kirill Pimenov

Supply chain attacks are of a major concern for BananaSplit. Adding [LavaMoat](https://github.com/LavaMoat/lavamoat) to the build should add another defence layer against possible attacks here.

Well, there's nothing in BananaSplit which requires reactivity and advanced templating. VueJS worked really well during the prototyping phase, but now when the project is more mature, it both increases...

Current maximum size of QR payload is limited by the truncation which happens in the QR generation library after certain size of the payload. If we choose a library which...

Currently we the maximal size of the QR code limits the maximal size of allowed text rather heavily. There are two ways this can be improved: a) it makes sense...

There is rphmeier/skynet-jobsteal implementation of this kata, which is much better and faster than my own (~5× faster on my laptop). It would be very cool to see those results...

_Follow-up from the [HackerNews thread](https://news.ycombinator.com/item?id=36941720)_ Firefox doesn't ship the Offline mode in the menu anymore; our recommendation for Chrome is weird and confusing. My suggestion would be to just drop...

I'm trying to build some assertions on `serde_json::Value` (parsing result from my JSON-RPC api). I'm doing this: ```rust let json : Value = serde_json::from_str(&query_result).unwrap(); assert_that(&json["result"].as_array()).is_some().has_length(3); ``` and expect it to...

There's https://github.com/sc-forks/solidity-coverage project, which inserts even emission to track the coverage. I think we can do significantly better (especially around pure functions, which can't emit events)!

F8-enhancement

It will allow us to compile contracts (and extract ABIs) without any need to shell-out to the compiler. Also will allow some advanced instumentation techniques (like custom opcodes maybe?) for...