Skip to content

Instantly share code, notes, and snippets.

View racoltacalin's full-sized avatar
🎯
Focusing

Clain racoltacalin

🎯
Focusing
View GitHub Profile
@racoltacalin
racoltacalin / WindowsTerminal.md
Created December 2, 2021 11:49 — forked from dahlsailrunner/WindowsTerminal.md
Customization and Setup notes for Windows Terminal
@racoltacalin
racoltacalin / emulator-install-using-avdmanager.md
Created July 5, 2021 09:36 — forked from mrk-han/emulator-install-using-avdmanager.md
Installing and creating Emulators with AVDMANAGER (For Continuous Integration Server or Local Use)

Install and Create Emulators using AVDMANAGER and SDKMANAGER

TL;DR

For generic skin emulator with default apis (without google apis):

  1. List All System Images Available for Download: sdkmanager --list | grep system-images

  2. Download Image: sdkmanager --install "system-images;android-29;default;x86"

@racoltacalin
racoltacalin / fetch-api-examples.md
Created April 7, 2021 07:12 — forked from justsml/fetch-api-examples.md
JavaScript Fetch API Examples
@racoltacalin
racoltacalin / .gitignore
Created March 17, 2021 10:28 — forked from mike1477/.gitignore
Gitignore file with common files to ignore
App.db
# Logs and databases #
######################
*.log
*.sql
*.sqlite
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
@racoltacalin
racoltacalin / BindableBase.cs
Created March 9, 2021 08:36 — forked from DanRigby/BindableBase.cs
BindableBase class for implementing INotifyPropertyChanged using C# 6 features while targeting .NET 2.0 to .NET 4.0. Make sure to use the nameof() operator for passing the propertyName parameter.
using System.ComponentModel;
/// <summary>
/// Implementation of <see cref="INotifyPropertyChanged" /> to simplify models.
/// </summary>
public abstract class BindableBase : INotifyPropertyChanged
{
/// <summary>
/// Multicast event for property change notifications.
/// </summary>
@racoltacalin
racoltacalin / async_await_best_practices_cheatsheet.md
Created February 21, 2021 19:57 — forked from jonlabelle/async_await_best_practices_cheatsheet.md
C# Asynchronous Programming Guideline Cheat Sheet

Async Await Best Practices Cheat Sheet

Summary of Asynchronous Programming Guidelines

Name Description Exceptions
Avoid async void Prefer async Task methods over async void methods Event handlers
Async all the way Don't mix blocking and async code Console main method
Configure context Use ConfigureAwait(false) when you can Methods that require con­text