Skip to content

Instantly share code, notes, and snippets.

View ammarfrahm's full-sized avatar

M Ammar Fadhlur Rahman ammarfrahm

View GitHub Profile
@ammarfrahm
ammarfrahm / cleanup.md
Created February 14, 2020 00:54
phpcs for CodeIgniter

Run phpcs in CodeIgniter project excluding framework or third party files

phpcs --standard=CodeIgniter --extensions=php --ignore=system/*,docroot/*,application/cache/*,application/logs/*,application/views/*,application/third_party/*,*/libraries/*,application/config/*,index.php . -sp

Keybase proof

I hereby claim:

  • I am ammarfrahm on github.
  • I am afr (https://keybase.io/afr) on keybase.
  • I have a public key ASAGS2oIzfdj5Xm0YkWgndgO-wMDn_OMzSZlvH7--qV0Xgo

To claim this, I am signing this object:

@ammarfrahm
ammarfrahm / build-c.bat
Created April 11, 2016 13:46
clang sublime build with bat file helper
@ECHO OFF
cd %2
gcc %1.c -o %1.exe
IF %ERRORLEVEL% == 1 GOTO BUILDERR
%1.exe
:BUILDERR