$ git checkout -b 20200712-NavBar
git branch --show-current
| async Task fileWriteLineAsync(string lineToWrite, string fileWhereToWrite) | |
| { | |
| // Always new file: | |
| // using StreamWriter file = new(fileWhereToWrite); | |
| // Create new file or Append if exists: | |
| using StreamWriter file = new(fileWhereToWrite, append: true); | |
| await file.WriteLineAsync(lineToWrite); | |
| } |
| // You can't add items to an array, since it has fixed length. | |
| // What you're looking for is a List<string>, which can later be turned to an array using list.ToArray() | |
| List<string> list = new List<string>(); | |
| list.Add("Add New Item Hear"); | |
| String[] str = list.ToArray(); | |
| // Alternatively, you can resize the array. |
| // See https://aka.ms/new-console-template for more information | |
| Console.WriteLine("Hello, World!"); | |
| //ShowListOfList_01(); | |
| /* | |
| tvg-country="US" | |
| tvg-country="UK" tvg-language="English" | |
| tvg-country="CA" tvg-language="English" |
| // var cultureInfo = new CultureInfo("en-US"); | |
| // // cultureInfo.NumberFormat.CurrencySymbol = "P"; | |
| // CultureInfo.DefaultThreadCurrentCulture = cultureInfo; | |
| // CultureInfo.DefaultThreadCurrentUICulture = cultureInfo; | |
| const string REST_API = "https://api.domain.com/v1/markets"; | |
| //List<Market> markets; |
| // import_json_appsscript.js | |
| // https://gist.github.com/allenyllee/c764c86ed722417948fc256b7a5077c4 | |
| // | |
| // Changelog: | |
| // (Oct. 16 2019) tag: allenyllee-20191016 | |
| // 1. Fixed google script error: urlfetchapp - service invoked too many times https://stackoverflow.com/questions/10598179/google-apps-script-urlfetchapp-service-invoked-too-many-times | |
| // (Jul. 16 2018) tag: allenyllee-20180716 | |
| // 1. Fixed the issue "If you try to query /arrayA[k]/arrayB[n]/arrayC[m]/.../member, you will always get /arrayA[k]/arrayB[k]/arrayC[k]/.../member." | |
| // (Nov. 30 2017) tag: allenyllee-20171130 | |
| // 1. Add the ability to query array elements by using xpath like "/array[n]/member" where "n" is array index |
| AHC / camel-ahc | |
| HTTP4 / camel-http4 |
flutter 0+git.e75662a from Flutter Team✓ installed
Initializing Flutter
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 136k 100 136k 0 0 123k 0 0:00:01 0:00:01 --:--:-- 123k