Skip to content

Instantly share code, notes, and snippets.

View AbdunNurTomal's full-sized avatar

Abdun Nur Tomal AbdunNurTomal

  • EcCHa
  • Dhaka, Bangladesh
View GitHub Profile
@AbdunNurTomal
AbdunNurTomal / gist:53b3e6da3ddf85dae2557fc85f215dc3
Created September 18, 2021 04:33 — forked from tayvano/gist:6e2d456a9897f55025e25035478a3a50
complete list of ffmpeg flags / commands
Originall From: Posted 2015-05-29 http://ubwg.net/b/full-list-of-ffmpeg-flags-and-options
This is the complete list that’s outputted by ffmpeg when running ffmpeg -h full.
usage: ffmpeg [options] [[infile options] -i infile]… {[outfile options] outfile}…
Getting help:
-h — print basic options
-h long — print more options
-h full — print all options (including all format and codec specific options, very long)
@AbdunNurTomal
AbdunNurTomal / dice.dart
Last active July 25, 2021 06:50
Sigle page dice calculator
import 'dart:math';
import 'package:flutter/material.dart';
void main() => runApp(DiceApp());
class DiceApp extends StatelessWidget {
const DiceApp({Key? key}) : super(key: key);
@override
@AbdunNurTomal
AbdunNurTomal / dice.dart
Created July 19, 2021 14:08
2 dice player
import 'dart:math';
void main(){
//int? score=0, highScore = 0;
print('WELCOME');
CheckOutSystem dice1 = CheckOutSystem();
dice1.checkOut('Dice no 1');
CheckOutSystem dice2 = CheckOutSystem();
dice2.checkOut('Dice no 2');
@AbdunNurTomal
AbdunNurTomal / payment.dart
Last active July 17, 2021 07:17
Strategy Pattern implementation in Payment Process
void main() {
CheckOutSystem chk = CheckOutSystem();
chk.checkOut('Cod', 100.0);
chk.checkOut('Cod', 500.0);
chk.checkOut('bKash');
chk.checkOut('Nagod');
}
class CheckOutSystem {
@AbdunNurTomal
AbdunNurTomal / main.dart
Last active July 17, 2021 13:20
Class in Dart
void main(){
DancingRobot dr = DancingRobot();
FightingRobot fr = FightingRobot();
TransformerRobot tr = TransformerRobot();
//can not do this if class declare abstract
//Can not create an object for abstract class
//Robot r = DancingRobot();
//print(dr.getConfiguration());
@AbdunNurTomal
AbdunNurTomal / roman10_AndZop
Created October 15, 2012 11:15
ffmpeg test with roman10 AndZop project
git remote add --track master upstream git://github.com/roman10/AndZop.git