Jivan Kulkarni

Results 14 comments of Jivan Kulkarni

When using `asynchttpserver`, the problem is most likely this line of code: https://github.com/nim-lang/Nim/blob/devel/lib/pure/asynchttpserver.nim#L288 It saves the entire file to the body string variable / in memory. It will be hard...

Federico's Project: https://github.com/FedericoCeratto/nim-httpauth It looks very powerful but has an external dependency on libsodium. Here are example implementations for python web frameworks flask and hug. https://github.com/pallets/flask/blob/master/flask/sessions.py https://github.com/timothycrosley/hug/blob/master/hug/middleware.py#L27 I think it...

Correct me if I am wrong. ``` # Let `readToStream` write file data into fileStream in the # background. asyncCheck file.readToStream(fileStream) # The `writeFromStream` proc will complete once all the...

Alright, correct me if I'm wrong or if I misunderstood something. Even if it is concurrent, if you have a fast disk and slow client, `readToStream` doesn't wait for the...

For reference, Rosencrantz handles this with the following implementation https://github.com/andreaferretti/rosencrantz/blob/master/rosencrantz/staticsupport.nim#L33

Here are my results ``` ➜ test cat hello.nim import jester,htmlgen routes: get "/": resp a("Test Download", href="sample.zip") ``` I had to use htmlgen otherwise I get the same error...

@tg44 Nice work! Perhaps a radio button will do to select local screen and adb device. Also something to specify which adb device via the sikulix commandline. Looking forward to...

@tg44 Take a look at VNCScreen: https://github.com/RaiMan/SikuliX-2014/blob/5f64ab2602e2550357a2569713cbbc52b6b93e70/API/src/main/java/edu/unh/iol/dlc/VNCScreen.java Here is how I was able to use it in the IDE: https://github.com/RaiMan/SikuliX-2014/issues/193#issuecomment-216389186 So I suppose you can create an ADBScreen class using...

This is great news! I suppose the last step would menu integration with the IDE, where you can select a device from ADB and a window will popup of the...

Sure I will work on a PR.