Urban
Urban
Hi! I am very interested in working with Google Keep reminders, but I can't find any solution anywhere on the internet. Ideally I would prefer a Javascript solution as I...
@rgson Thank you for your response! I have looked at the Google Tasks API at https://developers.google.com/tasks/v1/reference/tasks and I have found that you can determine if a task was completed by...
I never created a new task from gmail, only from calendar - and on calendar I see no repeating option. When I reviewed the tasks api reference and found no...
> Here is what I have based on your reproduction steps. You didn't follow my reproduction steps. ``` new CsvConfiguration(CultureInfo.InvariantCulture) { Delimiter = "\t", DetectDelimiter = true, }; ``` is...
I forgot what the original problem was, but I looked into the source code just now. The problem is in `public static bool ShouldQuote(ShouldQuoteArgs args)` https://github.com/JoshClose/CsvHelper/blob/master/src/CsvHelper/Configuration/ConfigurationFunctions.cs#L103 in line `|| (config.Delimiter.Length...
@JoshClose I updated the original comment.
I see. Thank you! I remember now that I was trying to read a TSV and write it back the same way, without quotes and with automatically detected delimiter, but...
I am looking at how to identify Android and iOS https://docs.microsoft.com/en-us/dotnet/api/system.runtime.interopservices.osplatform?view=net-6.0 | | | | --- | --- | | FreeBSD | Gets an object that represents the FreeBSD operating...
OK, I found a way to determine if the code is running on Android or iOS https://docs.microsoft.com/en-us/dotnet/api/system.operatingsystem?view=net-6.0 The problem is, `Hardware.Info` is a .NET Standard 2.0 library, to be compatible...
I have looked how to get hardware info for mobile, but I have not found anything useful. I found these: https://learn.microsoft.com/en-us/xamarin/essentials/device-information?tabs=ios https://learn.microsoft.com/en-us/dotnet/api/android.os.hardwarepropertiesmanager?view=xamarin-android-sdk-12 But they don't have the necessary info. I...