git add .
git commit --amend
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~/.zshrc file for zsh non-login shells. | |
| # see /usr/share/doc/zsh/examples/zshrc for examples | |
| setopt autocd # change directory just by typing its name | |
| #setopt correct # auto correct mistakes | |
| setopt interactivecomments # allow comments in interactive mode | |
| setopt ksharrays # arrays start at 0 | |
| setopt magicequalsubst # enable filename expansion for arguments of the form ‘anything=expression’ | |
| setopt nonomatch # hide error message if there is no match for the pattern | |
| setopt notify # report the status of background jobs immediately |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| KUMPULAN CODE TERMUX LENGKAP | |
| | SPAM CHAT WHATSAPP || nggk usah nyepam gw -_* atau hp lu gw ledakin!!#@vms | |
| $ pkg update && pkg upgrade | |
| Setelah mengupdate dan mengupgrade termux ketikan perintah berikut : | |
| $ pkg install python2 (y/n pilih y) | |
| $ pkg install php (y/n pilih y) | |
| $ pkg install git (y/n pilih y) | |
| Setalah mengikuti perintah di atas waktu-nya kita clonning tool-nya : | |
| $ git clone https://github.com/siputra12/prank.git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Store | |
| { | |
| public static $data = []; | |
| public static function set() | |
| { | |
| $params = static::parseArguments(func_get_args()); | |
| static::$data = static::merge(static::$data, $params); | |
| } |