Skip to content
View kdrakon's full-sized avatar
Block or Report

Block or report kdrakon

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. sidle sidle Public

    sidle is a CLI tool that helps with directory and file selection

    Rust 1

  2. topiks topiks Public

    An interactive CLI tool for managing Kafka topics

    Rust 27

  3. scala-aws-params-reader scala-aws-params-reader Public

    Library for reading data from AWS' Parameter Store

    Scala 7

  4. scala-credstash scala-credstash Public

    Scala implementation of a credstash client

    Scala 10 3

  5. Using Avro4s with Confluent Kafka Av... Using Avro4s with Confluent Kafka Avro Serializer + Schema Registry
    1
    import java.util
    2
    
                  
    3
    import com.sksamuel.avro4s.RecordFormat
    4
    import org.apache.avro.generic.GenericRecord
    5
    import org.apache.kafka.common.serialization.{Deserializer, Serde, Serializer}
  6. Demonstrates how I got bindgen to ge... Demonstrates how I got bindgen to generate the bindings to libfuse
    1
    # Rust's Bindgen + Fuse in 2019
    2
    
                  
    3
    I will quickly show how I got bindgen (https://rust-lang.github.io/rust-bindgen) to generate the bindings to Fuse (libfuse) with the current stable release of Rust. By doing so, this _should_ demonstrate how to bootstrap writing your own Fuse file system in Rust.
    4
    
                  
    5
    I do realise that there are some crates that already exist that aid in making Fuse drivers in Rust, but this was more or less an excuse to also try out bindgen, which I don't believe those existing libraries utilise.