Skip to content

Instantly share code, notes, and snippets.

View eademir's full-sized avatar
🎩
it's happening again.

Eray eademir

🎩
it's happening again.
View GitHub Profile
@eademir
eademir / detect-apk.py
Last active October 11, 2024 15:51 — forked from obfusk/detect-apk.py
Detect APK files
#!/usr/bin/python3
# encoding: utf-8
# SPDX-FileCopyrightText: 2024 FC (Fay) Stegerman <[email protected]>
# SPDX-License-Identifier: AGPL-3.0-or-later
import fnmatch
import os
import struct
import sys
@eademir
eademir / main.dart
Last active May 7, 2023 13:45
joyful-osmium-4010
import 'dart:math';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override