Skip to content

Instantly share code, notes, and snippets.

View GAM3RG33K's full-sized avatar

Harshvardhan Joshi GAM3RG33K

View GitHub Profile
@GAM3RG33K
GAM3RG33K / ReadMe.md
Last active May 5, 2026 20:45
maestro.mobile.dev - ReadMe.md for beginners
@GAM3RG33K
GAM3RG33K / main.js
Created August 20, 2024 16:52
JalanTech-Alarm-Clock-Assignment
// @Author - Harshvardhan Joshi (hj2931996@gmail.com)
// Objective:
// Using object-oriented programming, please implement command line program to implement an
// alarm clock
// An alarm clock has following features:
// 1. It displays the current time
// 2. A user can create any number of alarms by specifying the alarm time and day of the week and
// time when the alarm should alert
// 3. A user can snooze an alarm maximum of 3 times at an interval of 5 minutes each.
// 4. A user can delete an alarm
@GAM3RG33K
GAM3RG33K / string_utils.dart
Created April 28, 2025 08:00
Flutter String Utils - All Time useful
extension StringExtensions on String? {
String? get capitalize {
if (this == null) return null;
final firstLetter = this![0].toUpperCase();
final rest = this!.substring(1);
return '$firstLetter$rest';
}
String? get toLowerSnackCase {