Skip to content

Instantly share code, notes, and snippets.

View alihan-dev's full-sized avatar
🌩️
The future is ours!

Alihan Cibooğlu alihan-dev

🌩️
The future is ours!
View GitHub Profile
@alihan-dev
alihan-dev / .bash_aliases
Created January 16, 2024 15:46 — forked from michaelnabil230/.bash_aliases
Aliases for macOS
# File operations
alias edit-aliases="code ~/.bash_aliases"
alias edit-zshrc="code ~/.zshrc"
# Laravel Artisan commands
alias a="php artisan"
alias art="php artisan"
alias serve="a serve"
alias mfs="a migrate:fresh --seed"
alias install-app="a project:install"
@alihan-dev
alihan-dev / register-post-type.php
Created September 3, 2019 01:33 — forked from justintadlock/register-post-type.php
Help file when registering post types.
<?php
# Register custom post types on the 'init' hook.
add_action( 'init', 'my_register_post_types' );
/**
* Registers post types needed by the plugin.
*
* @since 1.0.0
* @access public