Skip to content

Instantly share code, notes, and snippets.

View Lzyct's full-sized avatar
:shipit:
Code Geek

Mudassir Lzyct

:shipit:
Code Geek
View GitHub Profile
@Lzyct
Lzyct / guest_gift.js
Last active February 10, 2023 03:47
Guest Gift
const wishlist = [
{ name: "Mini Puzzle", size: "small", clatters: "yes", weight: "light" },
{ name: "Toy Car", size: "medium", clatters: "a bit", weight: "medium" },
{ name: "Card Game", size: "small", clatters: "no", weight: "light" }
];
const presents = [
{ size: "medium", clatters: "a bit", weight: "medium" },
{ size: "small", clatters: "yes", weight: "light" },
];
@Lzyct
Lzyct / sample_online_offline.dart
Last active October 14, 2022 05:42
Handle online/offline on Flutter
import 'package:flutter/material.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
@Lzyct
Lzyct / custom-vscode.css
Last active August 30, 2024 08:46
VS Code Custom CSS For Catpuccin Mocha (Pink Accent) https://github.com/glennraya/vscode-settings-json
/* Code comment style */
.mtk3 {
font-family: 'MonoLisaAlt Nerd Font', monospace !important;
color: #f5c2e7 !important;
font-weight: 300 !important;
}
.line-numbers {
position: relative !important;
width: 35px !important;