Skip to content

Instantly share code, notes, and snippets.

View zekgyn's full-sized avatar
:electron:

Juma Yunusu Kanju zekgyn

:electron:
View GitHub Profile
@zekgyn
zekgyn / Zsh
Created July 26, 2021 11:52 — forked from sarthaksavvy/Zsh
Terminal Alias
export DEFAULT_USER="$(whoami)"
export PATH=~/.composer/vendor/bin:$PATH
# Alias for pythons
alias py=python
# Alias for composer
alias cr=composer
alias cri="composer install"
alias crd="composer dump-autoload"
@zekgyn
zekgyn / .gitconfig
Created July 26, 2021 11:52 — forked from sarthaksavvy/.gitconfig
Git configuration
[alias]
acm = "!f() { git add . && git commit -m \"$(echo $@)\"; }; f";
com = checkout master
cob = checkout -b
b = branch
p = push
pl = pull
s = status
@zekgyn
zekgyn / php max file size.md
Last active October 22, 2024 11:18 — forked from ricardoaugusto/fix.md
Increases the upload size on Laravel Nginx installation, fixes the 413 request entity too large and PostTooLargeException

Edit the file php.ini (or PHP FPM if on Forge):

memory_limit = 512M

post_max_size = 20M

upload_max_filesize = 20M