changing add button style at ryt end not working duet c the arrow in pic 👆
Tuesday, 16 May 2023
Wednesday, 10 May 2023
.net Links
.net core imp links
https://www.youtube.com/watch?v=WU1ddyD5NtM
https://github.com/dotnet-architecture/eShopOnWeb
https://github.com/ardalis/CleanArchitecture
coding challenges
https://www.roundthecode.com/dotnet-coding-challenges
https://www.topcoder.com/challenges/e6cf6165-226c-4d49-9ba8-be395c928dc4
Sunday, 16 April 2023
flutter errors
Exception: [!] Your app is using an unsupported Gradle project. To fix this problem, create a new project by running `flutter
create -t app <app-directory>` and then move the dart code, assets and pubspec.yaml to the new project.
https://stackoverflow.com/questions/70232931/firebaseoptions-cannot-be-null-when-creating-the-default-app
firbase access above
Monday, 27 March 2023
java script functions
Flattening nested arrays
const arr1 = [1, 2, [3, 4]];
arr1.flat();
// [1, 2, 3, 4]
const arr2 = [1, 2, [3, 4, [5, 6]]];
arr2.flat();
// [1, 2, 3, 4, [5, 6]]
const arr3 = [1, 2, [3, 4, [5, 6]]];
arr3.flat(2);
// [1, 2, 3, 4, 5, 6]
const arr4 = [1, 2, [3, 4, [5, 6, [7, 8, [9, 10]]]]];
arr4.flat(Infinity);
// [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]Saturday, 18 March 2023
flutter tips
1. swap with perent means remove previous wrap imp
flutter emulators
flutter emulators --launch <emulator id>
Wednesday, 1 March 2023
Flutter links
https://www.youtube.com/@createdbykoko
Flutter Listview Continuous Auto Scroll Back and Forth Using Recursion
junior devops engnr
Position Overview: We are a growing start up seeking a Junior Azure DevOps Engineer with 2 to 3 years of experience to support our Azure...
-
D:\A-MyProjects2024-2025\ReactNative2025\BookRental\android\app\build\outputs\apk\debug path of apk To build an Android app using Capacitor...
-
👉 When your ExceptionHandlingMiddleware tries to resolve a scoped service directly from the app root container (which is NOT allowed)....