Skip to content

Instantly share code, notes, and snippets.

View antoniocosentino's full-sized avatar
:octocat:
Less is more. Nothing is better.

Antonio Cosentino antoniocosentino

:octocat:
Less is more. Nothing is better.
View GitHub Profile
@antoniocosentino
antoniocosentino / kprint.php
Last active February 1, 2018 12:48
The most simple, stupid and useful PHP function in the world.
<?
function kprint($string){
echo '<pre>';
print_r($string);
echo '</pre>';
}
?>
@antoniocosentino
antoniocosentino / git.md
Last active October 17, 2023 09:28 — forked from hofmannsven/README.md
Git Cheat Sheet

git help

General

Initialize Git: git init

Get everything ready to commit: