Mike Arpaia

Results 35 comments of Mike Arpaia

The functionality that [you linked](https://alpaca.markets/docs/api-documentation/api-v2/streaming/) is currently supported [here](https://github.com/marpaia/alpaca-trade-api-cpp/blob/3f021a45b545d2fcdf480b31f53b099c670e67ed/alpaca/streaming.h). I'm hoping to work on adding support for the new stream types which are documented [here](https://alpaca.markets/docs/api-documentation/api-v2/market-data/streaming/). I hope that helps. Is...

Cool, I'm definitely planning on added support for that soon. Stay tuned!

this could be done via a global lock for printing to stdout, but that will definitely impact performance

perhaps @timsutton's scripts can be helpful as a guide here: https://github.com/timsutton/osx-vm-templates/blob/master/scripts/xcode-cli-tools.sh

@timsutton thanks! I'll tackle this sometime this week so I'll follow up.

let's make a project roadmap wiki :D

@spheromak i'm assigning this to you because this is mainly here so that i can hear your thoughts on the subject

ie: consider the following `database/sql` idiom: ``` go package main import ( "database/sql" _ "github.com/go-sql-driver/mysql" "log" ) func main() { db, err := sql.Open("mysql", "user:password@tcp(127.0.0.1:3306)/test") if err != nil {...

Some thoughts on this: For context, this is how the package would currently be used now: ``` go package main import ( "fmt" "os" "github.com/marpaia/chef-golang" ) var c *chef.Chef func...