Skip to content

Instantly share code, notes, and snippets.

View asadamatic's full-sized avatar

ASAD HAMEED asadamatic

  • Islamabad, Pakistan
  • 13:50 (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