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
It's story time. | |
The Dallas sniper fire shootings that occurred on July 7, 2016 really had me on | |
the edge of my seat. I began watching the live broadcast around 8:30pm. | |
When I began watching, the shooting was still a very active situation. The news | |
reporter was crouched down behind a car with a couple of police officers. All | |
I could think at this time was when will the heavy armored vehicles arrive from | |
the police state. |
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
#!/usr/bin/php | |
<?php | |
function closure_test(&$foobar) { | |
// Repeat for some arbitrary number of executions | |
$x = mt_rand(3, 10); | |
while ($x > 0) { | |
$foobar[] = $x; | |
--$x; |
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
# Enhanced Network Hosts File | |
# Authored by Carl Bennett <https://carlbennett.me> | |
# | |
# How To <https://support.rackspace.com/how-to/modify-your-hosts-file/> | |
# (I do not endorse Rackspace, the document is simply of decent quality.) | |
# | |
# This file is hereby released under the MIT license. A copy of the license can | |
# be found at: <https://opensource.org/licenses/MIT> | |
# |
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
Port 22 | |
AddressFamily any | |
ListenAddress 0.0.0.0 | |
ListenAddress :: | |
Protocol 2 | |
HostKey /etc/ssh/ssh_host_rsa_key | |
HostKey /etc/ssh/ssh_host_ecdsa_key | |
KeyRegenerationInterval 1h | |
ServerKeyBits 4096 # Legacy Protocol 1, meaningless on Protocol 2 | |
SyslogFacility AUTHPRIV |
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
#!/usr/bin/php | |
<?php | |
class Test implements Serializable { | |
public function __tostring() { | |
return "asdf"; | |
} | |
public function serialize() { |
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
# Fix user and directory permissions: | |
find . -type f -print0 | sudo xargs -0 chmod 664 | |
find . -type d -print0 | sudo xargs -0 chmod 775 | |
# Copy user permissions to group permissions: | |
chmod -R g=u . | |
# Make new files inherit the group of the container directory | |
chmod g+s <directory> |
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
#!/bin/bash | |
# vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: | |
# Only display motd if tty and not sudoing as root | |
[ "$PS1" ] && [ "$EUID" -ne 0 ] || return 0 | |
# Run the entire function in its own subshell. | |
# | |
# The local keyword in functions prevents inheriting values. | |
# The subshell prevents exporting them. |
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
#!/bin/bash | |
TODAY=$(date +%Y-%m-%d) | |
LIST=$(sed -e 's/$/\r/g' lunch.txt | perl -MURI::Escape -ne 'print uri_escape($_)') | |
curl -s \ | |
-d "list=${LIST}" \ | |
-d "format=plain" \ | |
-d "rnd=date.${TODAY}" \ | |
"https://www.random.org/lists/?mode=advanced" |
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
namespace Mineserver | |
{ | |
struct Watcher_Login | |
{ | |
void operator()(Mineserver::Game::pointer_t game, Mineserver::Network_Client::pointer_t client, Mineserver::Network_Message::pointer_t message) const | |
{ | |
std::cout << "Login watcher called!" << std::endl; | |
const Mineserver::Network_Message_Login* msg = (Mineserver::Network_Message_Login*)&message; | |
Mineserver::Game_Player::pointer_t player(new Mineserver::Game_Player); |