moneroexamples

Results 170 comments of moneroexamples
trafficstars

Using clang (6.0.0) on Arch also works. Have to wait till gcc 8.1 gets fixed.

@ricargoes Good it worked. Though it does not change the fact that crow is pretty much dead at this point. The last commit was in 2017.

In one of my project's that uses `crow`, the issue was fixed. Can check here: https://github.com/moneroexamples/onion-monero-blockchain-explorer/commit/76a0efa8ee3ea5bb466b81d84357d2fd76920cbd

No problem. PR submitted, though I don't expect it being ever merged. The crow project is pretty much dead at this point.

No. It seems to be abandoned.

On one of my projects I use restbed https://github.com/corvusoft/restbed There is also BeastHttp which is very new and seem promising https://github.com/0xdead4ead/BeastHttp . But haven't used it yet, but if I...

Offical example is here: https://github.com/ipkn/crow/blob/master/examples/example.cpp With middleware you can enable, e.g., Basic http authentication for all your content. I was playing with it some time ago. You can check the...

Maybe something like this will be helpful: https://github.com/moneroexamples/onion-monero-blockchain-explorer/blob/master/main.cpp#L20 Basically I just create my own `jsonresponse: crow::response` response

My guess, its not. Thus for my next project I will be looking for alternatives to crow and probably when find time, to replace crow in my current ones. Recently...