Skip to content

Instantly share code, notes, and snippets.

@juanpedromoreno
juanpedromoreno / mu_606.md
Last active April 28, 2019 18:03
Mu - Numeric Types in .proto
  • protocol.proto file:
syntax = "proto3";

package rpc.pkg;


message HelloRequest {
  float name = 1;

Keybase proof

I hereby claim:

  • I am juanpedromoreno on github.
  • I am juanpedromoreno (https://keybase.io/juanpedromoreno) on keybase.
  • I have a public key ASDUUVQnF0fZ3iLgSHo3xe5ARy-XTQe7jRuyNdDl5qTKIAo

To claim this, I am signing this object:

@juanpedromoreno
juanpedromoreno / WelcomeDinnerLX.scala
Created May 10, 2017 10:06
Welcome Dinner LX Scala
import cats.implicits._
object menu {
sealed trait Starters
case object LeakCreamedSoup extends Starters
case object Salads extends Starters
sealed trait MixedSalads
case object Niçoise extends MixedSalads
case object `Celery with Apple` extends MixedSalads