Skip to content

Instantly share code, notes, and snippets.

View LeMoussel's full-sized avatar

LeMoussel LeMoussel

View GitHub Profile
@rxaviers
rxaviers / gist:7360908
Last active May 3, 2024 02:30
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@IngmarBoddington
IngmarBoddington / statusCodes
Last active March 22, 2024 21:35
HTTP Status Codes / Verbs List
CONNECT
DELETE
GET
HEAD
OPTIONS
PATCH
POST
PUT
TRACE
@SocalNick
SocalNick / parser.php
Created March 27, 2012 16:35 — forked from jtai/parser.php
Nick's Cache-Control header parser
<?php
function parse($string)
{
$string = trim($string);
$directives = array();
// handle empty string early so we don't need a separate start state
if ($string == '') {
return $directives;