Skip to content

Instantly share code, notes, and snippets.

View asadamatic's full-sized avatar
🎯
Focusing

ASAD HAMEED asadamatic

🎯
Focusing
  • Islamabad, Pakistan
  • 13:38 (UTC +05:00)
View GitHub Profile
@asadamatic
asadamatic / extendedFileSearch.py
Created April 16, 2020 12:26
Searching for a file in a directory with sub directories and returning file paths using python.
import os, os.path
def extendedFileSearch(requiredFile):
filePaths = []
for file in os.listdir():
@asadamatic
asadamatic / main.dart
Created March 22, 2024 04:53
UI to Flutter Code Using ChatGpt Plus.
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override