Derek Antrican
Derek Antrican
How would I use NetCoreServer to serve a "directory browser"/file server like https://ostechnix.com/how-to-setup-a-file-server-in-minutes-using-python/? Another example: https://github.com/natemcmaster/dotnet-serve ``` dotnet tool install --global dotnet-serve dotnet serve -p 8000 ```
*Pardon terminology and whatnot - I'm very new to all the network admin stuff of ports, proxies, etc* I have NetCoreServer set up on my home network handling public internet...
I have the following override of `HttpSession.OnReceivedRequest`: ```csharp protected override void OnReceivedRequest(HttpRequest request) { ... HttpResponse httpResponse; if (response?.Content == null) { Console.WriteLine("Unrecognized request. Sending 404..."); httpResponse = Response.MakeErrorResponse(404, "");...
Given an HTML form similar to the following: ```html Label #1: ``` When the submit button is clicked, I have it set up to call `HttpSession.OnReceivedRequest`. But when that method...
As a developer, I use Visual Studio Team Foundation Server (TFS) all the time. I have found recently that when I am editing the description of a bug or feature...
Support VEVENT's COLOR tag. Docs: https://icalendar.org/New-Properties-for-iCalendar-RFC-7986/5-9-color-property.html *Note that COLOR is a name (eg `COLOR:Banana` or `COLOR:turquoise`). According to the docs: >The value is a case-insensitive color name taken from the...
Currently, we use the `everyMinutes` function to schedule triggers, but according to [the docs](https://developers.google.com/apps-script/reference/script/clock-trigger-builder#everyminutesn) this only accepts 1, 5, 10, 15 or 30 as an input. We should allow a...
Reproducing calendar: https://pastebin.com/raw/dbNXmwZW Event UID of interest: `040000008200E00074C5B7101A82E00800000000108C9F6EC633D7010000000000000000100000002A73C0A29054164498FE95F9AC03572E` (note that UIDs are broken across two lines in the ics above) Screenshot (date shown is April 20, 20201, times in Pacific...
Currently if you try to switch to the `ical.js` script, copy it, whatever Google Apps Script starts to stall (because it's a big file). Instead of this, I believe we...
It'd be nice to have a HTML interface for people to access. There are some ways this can be done like here: https://stackoverflow.com/a/29178155