This file contains 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
<!DOCTYPE html> | |
<html class="no-js"> | |
<head> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" title="main" href="normalize.min.css" type="text/css"> | |
<link rel="stylesheet" title="main" href="main.css" type="text/css"> | |
<link rel="alternate stylesheet" title="red" href="red.css" type="text/css"> | |
<link rel="alternate stylesheet" title="blue" href="blue.css" type="text/css"> |
This file contains 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 | |
/** | |
* BF Division Structure | |
* | |
* Generates a bb-code template with prepopulated member data | |
* | |
*/ | |
class BfDivisionStructure | |
{ |
This file contains 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 | |
if ($_GET) { | |
// do something with url params | |
var_dump($_GET); | |
} else if ($_POST) { | |
// do something with posted values |
This file contains 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 | |
/* | |
|-------------------------------------------------------------------------- | |
| Follow this instructions: | |
|-------------------------------------------------------------------------- | |
| | |
| Laravel takes a dead simple approach to your application environments | |
| so you can just specify a machine name for the host that matches a | |
| given environment, then we will automatically detect it for you. |
This file contains 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
========================================== ========================================== | |
TMUX COMMAND WINDOW (TAB) | |
========================================== ========================================== | |
List tmux ls List ^b w | |
New new -s <session> Create ^b c | |
Attach att -t <session> Rename ^b , <name> | |
Rename rename-session -t <old> <new> Last ^b l (lower-L) | |
Kill kill-session -t <session> Close ^b & |
This file contains 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
{ | |
"emojis": [ | |
{"emoji": "😂", "name": "face with tears of joy", "html": "😂", "category": "Smileys & Emotion (face-smiling)", "order": "3"}, | |
{"emoji": "❤️", "name": "red heart", "html": "❤", "category": "Smileys & Emotion (emotion)", "order": "1286"}, | |
{"emoji": "♥️", "name": "heart suit", "html": "♥️", "category": "Activities (game)", "order": ""}, | |
{"emoji": "😍", "name": "smiling face with heart-eyes", "html": "😍", "category": "Smileys & Emotion (face-affection)", "order": "13"}, | |
{"emoji": "😭", "name": "loudly crying face", "html": "😭", "category": "Smileys & Emotion (face-concerned)", "order": "55"}, | |
{"emoji": "😊", "name": "smiling face with smiling eyes", "html": "😊", "category": "Smileys & Emotion (face-smiling)", "order": "10"}, | |
{"emoji": "😒", "name": "unamused face", "html": "😒", "category": "Smileys & Emotion (face-neutral-skeptical)", "order": "41"}, | |
{"emoji": "😘", "name": "face blowing a kiss", "html": "😘", " |