All Posts
440 posts
Kotlin for Android - Documentation and Code Snippets
All you need to start creating Android app in Kotlin. Kotlin Syntax 🔗 Print to console 🔗 print("Amit Shekhar") println("Amit Shekhar") Constants and Variables 🔗 var name = "Amit …
Java for Android – Documentation and Code Snippets
All you need to create Android app in Java. Java Syntax 🔗 Primitive Data Types 🔗 byte short int long float double char boolean Java Operators 🔗 Arithmetic: + , – , * , ? , % Assignment: = , -= , += , …
Javascript Cheatsheet – Documentation and Code Snippets
Javascript is a scripting language, created to run in the Internet browser but later used in all places!. Javascript is always shortened as js or JS. Javascript Syntax 🔗 Variables 🔗 // declare a …
How to Convert Arabic Numbers to Hindi Excel ?
if you want to convert numeric numbers (1234567890) to Arabic numbers (Hindi)(١٢٣٤٥٦٧٨٩٠) select the area of cells that you want to change press ctrl + 1 for format cell go to custom and type this …
How to show hidden files in Finder in MacOS ?
Unveiling the Hidden: How to Show Hidden Files in macOS Finder Ever misplaced a file or folder in your Mac and suspect it might be hidden? Fear not! macOS hides certain system files by default, but …
How to create a Sliding Notification in Your Android App?
This guide will walk you through creating a custom notification that slides up from the bottom of the screen in your Android application. 1. Designing the Notification Layout (XML) 🔗 We’ll …
How to put a Button at the bottom of the screen ? - Android Development
the whole gravity / layout_gravity is a bit confusing, so here is a snippet: <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" …
How to change text size in Android app development : Kotlin & Flutter
Text size plays a crucial role in user experience, especially on mobile devices. This tutorial will guide you on implementing text size adjustments in both Android (using Kotlin) and Flutter …
Android Emulator Avd Notes
to create a test project 🔗 android update test-project -m ./path/main_project/ -p ./path/test_project/ to launch emulator 🔗 emulator -avd ADB server & list attached devices 🔗 adb devices adb …
Intelligent Failure
Intelligent failure is when you learn from your failures. So you do not fail again in the same trap. make sure to analyse the system and detect the failure cause, modify the system so the failure does …