Skip to content

Instantly share code, notes, and snippets.

View fueanta's full-sized avatar
😄
good mood

MUTASIM BILLAH BIN AHMAD fueanta

😄
good mood
  • Dhaka, Bangladesh
View GitHub Profile
@fueanta
fueanta / docker-help.md
Created September 28, 2019 10:41 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@fueanta
fueanta / keybase.md
Created September 28, 2019 11:12
Github Verification for keybase.

Keybase proof

I hereby claim:

  • I am fueanta on github.
  • I am mutasim (https://keybase.io/mutasim) on keybase.
  • I have a public key ASCkrWlLTp7WDL2FYMgEsr3zkoobaA6jlNK_2AiylnqsrQo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am fueanta on github.
  • I am taqui (https://keybase.io/taqui) on keybase.
  • I have a public key whose fingerprint is 6EE4 C2B7 6836 32D2 BA6B F0EA A0E4 B98A 0A7C 6C35

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am fueanta on github.
  • I am fueanta (https://keybase.io/fueanta) on keybase.
  • I have a public key ASC5xEIptjtNUxe3vRye4KcsUgERC4eMQFTbtEXO_763ewo

To claim this, I am signing this object:

@fueanta
fueanta / wsl-lamp.md
Created June 17, 2020 07:09 — forked from aslamdoctor/wsl-lamp.md
Windows 10 - WSL LAMP Stack Setup
@fueanta
fueanta / currying_example.php
Last active January 21, 2021 10:35
Currying Example in PHP
<?php
function get_mail_client()
{
// fictional mail client
return array(
'isValid' => true
);
}