Skip to content

Instantly share code, notes, and snippets.

View KRTirtho's full-sized avatar
🌴
Feeling awesome in a Flutter of wind

Kingkor Roy Tirtho KRTirtho

🌴
Feeling awesome in a Flutter of wind
View GitHub Profile
@KRTirtho
KRTirtho / main.dart
Created May 2, 2022 16:36
Why these two string isn't equal in Dart
void main() {
print("the kid laroi" == "the kid laroi");
}
@KRTirtho
KRTirtho / vs-code.settings.json
Created October 17, 2020 16:22
Excluding file watchers & search indexing in unintended folders and files in Visula
//Add following lines of code to exclude the files & folders which aren't important for watchers to look for changes...
{
//exludes fies & folders in search indexing
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/env": true,
"**/venv": true
},
//exludes fies & folders for watcher service