Skip to content

Instantly share code, notes, and snippets.

View AnthonyNahas's full-sized avatar
🎯
Focusing

Anthony Nahas AnthonyNahas

🎯
Focusing
View GitHub Profile
@AnthonyNahas
AnthonyNahas / ngx-auth-firebaseui vs firebaseui.md
Last active June 26, 2018 19:35
Comparison between the ngx-auth-firebaseui and firebaseui library
Features ngx-auth-firebaseui firebaseui
Sign Up ✔️ ✔️
Sign In ✔️ ✔️
Sign In Anonymously ✔️
Sign In with Google ✔️ ✔️
Sign In with Facebook ✔️ ✔️
Sign In with Twitter ✔️ ✔️
Sign In with Github ✔️ ✔️
Sign In with PhoneNumber ✔️
@AnthonyNahas
AnthonyNahas / mat-password-strength.component.html
Last active July 20, 2018 19:19
Write the logic in typescript
<mat-progress-bar mode="determinate"
[color]="color"
[value]="strength">
</mat-progress-bar>
@AnthonyNahas
AnthonyNahas / java_vs_kotlin.md
Last active May 27, 2024 12:38
Java vs Kotlin - the quick comparison

1. Types and Operators

Java

// variable
int x = 1;

// constant
final int y = 2;