Nicolás Gebauer

Results 18 comments of Nicolás Gebauer

I also had this issue and changing the locale fixed it for me https://github.com/ohmyzsh/ohmyzsh/issues/7558#issuecomment-460812339

I'm also seeing a static image for the agents diagram running huginn in docker 😕

It was a static image before, now it's not but is incomplete docker-compose ```yaml huginn: image: huginn/huginn container_name: huginn restart: unless-stopped env_file: .huginn.env mem_limit: 750M environment: - RAILS_ENV=production expose: -...

I have more agents than the ones shown. For example, the telegram one receives events from all this agents: xkcd, github notification format, explosm, smbc, juanelo, dinosaur comics, error webhook,...

I'm looking at `/diagram`, it shows agents from more than one scenario

This should also be deleted https://github.com/gvillenave/react-native-oauth/blob/4f34e87e99863ba04fe0a11646712ef2b16a28f2/android/src/main/java/io/fullstack/oauth/OAuthManagerModule.java#L410 And also this https://github.com/gvillenave/react-native-oauth/blob/4f34e87e99863ba04fe0a11646712ef2b16a28f2/android/src/main/java/io/fullstack/oauth/OAuthManagerModule.java#L421

I'm having a similar issue with a date. I have the following ```yml example: '2019-10-10' ``` That speccy transforms to ```yml example: 2019-10-10 ``` But I want the example to...

It can be interpreted as a date, which is what's happening. That's why the quotes should be preserved in this case. It's not a string by default. js-yaml issue where...

Another option from the YAML spec is to use tags like `example: !!str 2019-10-10` but `speccy resolve` also deletes the `!!str` part