Amit Upadhyay

Results 74 issues of Amit Upadhyay

I want to use it from another crate I am working on (which will setup a project and offer some project specific command line utilities). Currently I have dependency on...

How long should a handler attached to webrtc.DataChannel.OnMessage be allowed to take? If I understand correctly, data channel buffer is drained after OnMessage is returned, so if I am reading...

question

I am trying to animate [elm-3d-scene](https://github.com/ianmackenzie/elm-3d-scene) using elm-style-animation library, [here is what I have got so far](https://gist.github.com/amitu/39a55c92138c244705b7cf1ea4cb9b1a). As you can see its a bit kludgy, suggestions: 1. Maybe Animation.Color should...

I am trying to get this project working on ubuntu. I am stuck on plutil call in project.rb. There is a libplist project that provides plutil, but it seems to...

feature request

As per PostgreSQL, the `sslmode` should be [verify-ca or verify-full to get MITM protection](https://www.postgresql.org/docs/current/libpq-ssl.html#LIBPQ-SSL-SSLMODE-STATEMENTS). [`deadpool_postgres::SslMode`](https://docs.rs/deadpool-postgres/0.11.0/deadpool_postgres/enum.SslMode.html) only has `prefer` and `require`. Are there plans to add the `verify-full` etc? Or I...

A-postgres
S-blocked

If a lookup happens inside a loop, this can severely affect the performance of the loop, compared to if the lookup was happening on environment variable.

enhancement

And only if its not there should it read from file. That way I can do DB=somedb python app.py and my DB setting will supersede whats stored in envs/prod/DB, which...

documentation

I feel including `elm-lang/html` as a dependency is a not very great idea. I am using a worker elm project using this library, that include Html just because of one...

After a fresh install. markdown-server==0.1.1 Python 2.7.11 ``` python Traceback (most recent call last): File "/Users/amitu/.pyenv/versions/home/bin/mdsvr", line 7, in from markdownserver import main File "/Users/amitu/.pyenv/versions/home/lib/python2.7/site-packages/markdownserver/__init__.py", line 5, in converter =...

For some code: ```rs #[tracing::instrument(skip_all)] async fn foo() { tokio::time::sleep(std::time::Duration::from_secs(3)).await; } #[tracing::instrument(skip_all)] async fn test() -> fastn_core::Result { tokio::time::sleep(std::time::Duration::from_secs(2)).await; foo().await; Ok(actix_web::HttpResponse::Ok().finish()) } ``` The output I am getting with `tracing-forest`...