Skip to content

Instantly share code, notes, and snippets.

View tusharhow's full-sized avatar
🏅
Coffee, Tea, Code

Tushar Mahmud tusharhow

🏅
Coffee, Tea, Code
View GitHub Profile
@tusharhow
tusharhow / quizes
Last active February 1, 2025 11:40
{
"quizzes": [
{
"id": 1,
"question": "What is Kotlin's 'when' expression equivalent to in Java?",
"options": [
"if-else statement",
"switch statement",
"for loop",
"while loop"
{
"sentences": [
{
"id": "sent_001",
"text": "The cat _1_ on the mat while the dog _2_.",
"blanks": [
{
"id": 1,
"options": [
"sits",
@tusharhow
tusharhow / animated_footer.dart
Created March 25, 2024 14:39
Animated footer using Flutter Web
@tusharhow
tusharhow / gradient.dart
Created March 1, 2024 11:43
Did you know that in Flutter, bringing gradient colors to your text is a breeze? 🚀💻 Just sprinkle a bit of code magic:
Text(
"Gradient Text Example",
style: TextStyle(
fontSize: 50.0,
fontWeight: FontWeight.bold,
foreground: Paint()
..shader = const LinearGradient(
colors: <Color>[
Colors.red,
Colors.blue,

Setting up a new Git Repo

##Create a new repository on the command line

touch README.md
git init
git add README.md
git commit -m "first commit"

git remote add origin [email protected]:alexpchin/.git