Skip to content

Instantly share code, notes, and snippets.

View azuddin's full-sized avatar

Ahmad Azuddin azuddin

View GitHub Profile
services:
db_store:
# We use a mariadb image which supports both amd64 & arm64 architecture
image: mariadb:10.6.4-focal
# If you really want to use MySQL, uncomment the following line
#image: mysql:8.0.27
command: '--default-authentication-plugin=mysql_native_password'
volumes:
- db_data:/var/lib/mysql
restart: always
@azuddin
azuddin / getting-sum-of-two-digit.sh
Last active August 27, 2021 17:57
helping member for his assignment
#!/bin/bash
clear
echo
# getting 1st argument
echo "Please enter an series of numbers. e.g: 1 2 4 7 11 15"
read firstParam
# sanitised1stParam="${firstParam// /}"
# getting 2nd argument
echo
@azuddin
azuddin / main.dart
Created September 18, 2019 06:37
flutter sliver using nestedscrollview and tab
import 'package:flutter/material.dart';
import 'dart:math';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(