Skip to content

Instantly share code, notes, and snippets.

View bagussatoto's full-sized avatar
:octocat:
Playing Visual Studio Code

BAGUS BUDI SATOTO bagussatoto

:octocat:
Playing Visual Studio Code
View GitHub Profile
@imneonizer
imneonizer / how-to-download-from-pan-baidu.md
Last active July 26, 2025 05:32
How to download from pan.baidu without account
@Anon-Exploiter
Anon-Exploiter / .zshrc
Created September 17, 2020 12:31
.zshrc of Kali Linux 2020.3 including the lit prompt
# ~/.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
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
@mccabe615
mccabe615 / OhShitGit.md
Last active November 24, 2024 01:52
Oh Shit Git

Oh shit, I committed and immediately realized I need to make one small change!

make your change

git add .
git commit --amend

follow prompts to change or keep the commit message

now your last commit contains that change!

<?php
class Store
{
public static $data = [];
public static function set()
{
$params = static::parseArguments(func_get_args());
static::$data = static::merge(static::$data, $params);
}