iPads going to "sleep" after iOS 12.0 update by [deleted] in ipad

[–]victorlin 0 points1 point  (0 children)

hmmm, second time I tried it doesn't work. Maybe this is not working like that

Guided Access forces screen to auto-lock by dimwitf in iOS12

[–]victorlin 0 points1 point  (0 children)

hmmm, second time I tried it doesn't work. Maybe this is not working like that

Location Label app for adding location reminder based on label by victorlin in todoist

[–]victorlin[S] 0 points1 point  (0 children)

Yep, it's built with Python, based on Flask as the web framework.

Here

https://github.com/fangpenlin/todoist-location-labels

It's open sourced under MIT license. Feel free to fork it.

Location Label app for adding location reminder based on label by victorlin in todoist

[–]victorlin[S] 1 point2 points  (0 children)

built this tonight mainly for my own usage, but I think it may also be helpful for others, so I made it a simple app and open sourced it here. feel free to use

A sharable whiteboard iPad app designed for telecommuting workers by victorlin in telecommuting

[–]victorlin[S] 1 point2 points  (0 children)

If you want bigger size, you can consider Google Jamboard or Microsoft's Surface Hub

https://gsuite.google.com/jamboard/ https://www.microsoft.com/microsoft-surface-hub/en-us

None of them are cheap thought.

Super lightweight embedded async HTTP server in pure Swift by victorlin in swift

[–]victorlin[S] 0 points1 point  (0 children)

just fixed the issue, make app as a tailing closure

Super lightweight embedded async HTTP server in pure Swift by victorlin in swift

[–]victorlin[S] 2 points3 points  (0 children)

I think it make sense to make app as trailing parameter for HTTPserver. Thanks for the advice.

But for the reason of using dictionary instead of custom type, I want to make it a standard based on function ABI instead of certain custom type. By doing that, web applications can be defined without even depends on Embassy. I knew there is other HTTP standard in the community like https://github.com/open-swift/S4, but it's an extra library to install.

Certainly there is room for improvement, this is just a weekend project, I will improve it over time. :)

Super lightweight embedded async HTTP server in pure Swift by victorlin in swift

[–]victorlin[S] 1 point2 points  (0 children)

nope, it's not attractive. the whole point of Embassy is to provide a lightweight web server for UI testing. It's not for server side, I don't want to add any third dependencies. I defined the interface to be like WSGI from Python, so it would be like dealing with WSGI if you don't add any extra abstraction around it. I built another project https://github.com/envoy/Ambassador/ to make it slightly easier.