Jack Lund

Results 9 issues of Jack Lund

#### Overview of the Issue I'm creating a ubuntu 21.10 raspberry pi image using ansible 2.9.6. My ansible playbook is very simple (so far), but it hangs when it tries...

# Description Panic on parse error of the `NetworkBehaviour` derive. For a syntax error such as: ``` #[derive(NetworkBehaviour)] #[behaviour(out_event = Event)] struct MyBehaviour { floodsub: Floodsub, mdns: Mdns, } enum...

## Summary When using `#[derive(NetworkBehaviour)]` as documented [here](https://docs.rs/libp2p/latest/libp2p/swarm/trait.NetworkBehaviour.html#custom-networkbehaviour-with-the-derive-macro), I get a compiler error. Example code: ``` use libp2p::{ floodsub::{Floodsub, FloodsubEvent}, mdns::{Mdns, MdnsEvent}, NetworkBehaviour, }; use std::error::Error; #[tokio::main] async fn main()...

Hi, here's my code: ``` use rusoto_core::Region; use rusoto_kafka::{Kafka, KafkaClient, ListClustersRequest}; use std::error::Error; use env_logger; #[tokio::main] async fn main() -> Result { let _ = env_logger::try_init(); let client = KafkaClient::new(Region::UsEast1);...

I'm trying to run your `api_gateway_proxy` example, and it fails. The first failure is in the `transpile` step: ``` npm run transpile > [email protected] transpile /home/admin/git/kappa/examples/api_gateway_proxy > babel --presets es2015...

I'm trying to use your action, but for some reason, Github thinks that it's not a reference to an action in the Marketplace, but a local action. Here's my [rust.yml](https://github.com/jacklund/voynich/blob/main/.github/workflows/rust.yml)....

**Problem** The README section on "Running the examples" says: > The examples in the top level of this repository can be run with cargo run --example . However, we encourage...

bug
documentation

I'm writing a GraphQL app where users can create new types dynamically through the API, something along the lines of: ```graphql mutation { createObjectType("person") addTypeField("person", "name", "String") addTypeField("person", "age", "Int")...

question

### Which version of recognize are you using? 10.0.6 ### Enabled Modes Face recognition, Object recognition ### TensorFlow mode Normal mode ### Downstream App Memories App ### Which Nextcloud version...

enhancement