Richard Apodaca
Richard Apodaca
@droark Thanks for the information. Three questions about the workaround: 1. Does this require a network connection? That's a non-starter for an offline computer. 2. There was also a problem...
Thanks for the info. I've put together a summary of my solution here: http://bitzuma.com/posts/offline-installation-of-armory-on-tails-and-ubuntu-linux/
To be clear, is this issue about: - using a Python Iterator from Rust, or - using a Rust Iterator from Python? If this issue isn't about using Rust Iterator...
Yes, I've seen that one from the guide - thanks for the confirmation. Is the problem that such a Rust Iterator to be used from Python (without `clone`) isn't possible,...
My use cases appear to be the tough ones: wrap an existing iterator; or build an iterator to a non-indexable data structure such as `HashSet`. #1089 is interesting. If I'm...
Thanks for the documentation tip. I can see things like `GISTENTRY` and `GISTEntryVector`. I'll have a closer look. I'd like to build an extension that can search chemical structures. These...
@gzsombor, there's a complete implementation in [Gamma](https://crates.io/crates/gamma).
> I took a look through the code for actix's built in Form support: https://docs.rs/actix-web/3.3.2/actix_web/web/struct.Form.html and it looks pretty non-trivial to replicate + maintain. You're not kidding. I think I've...
I've got it all more or less working: ```rust use actix_web::{dev::Payload, Error as ActixError, FromRequest, HttpRequest}; use actix_web::{get, web, App, HttpServer, Responder}; use futures_core::future::LocalBoxFuture; use futures_util::{future::FutureExt, StreamExt}; use serde::de::DeserializeOwned; use...
After some fiddling, I have something that mimics the error handling in `serde_qs::actix::QsQuery`: ```rust use actix_web::{dev::Payload, Error as ActixError, FromRequest, HttpRequest}; use actix_web::{get, web, App, HttpServer, Responder}; use futures_core::future::LocalBoxFuture; use...