Skip to content

Instantly share code, notes, and snippets.

View carlbennett's full-sized avatar
💙
Fedora Linux

Carl Bennett carlbennett

💙
Fedora Linux
View GitHub Profile
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.
@carlbennett
carlbennett / newrelic.mod
Last active May 8, 2016 08:41
New Relic PHP Agent SELinux Policy
#!/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;
# 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>
#
@carlbennett
carlbennett / sshd_config
Created October 19, 2015 03:03
Customized SSH configuration
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
@carlbennett
carlbennett / serialize_test.php
Created October 12, 2015 22:15
Tests serializing a class with custom serialize functions
#!/usr/bin/php
<?php
class Test implements Serializable {
public function __tostring() {
return "asdf";
}
public function serialize() {
@carlbennett
carlbennett / linux-cheatsheet.sh
Last active January 22, 2024 18:03
Cheatsheet for Fedora, CentOS, and RedHat family members of Linux
# 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>
@carlbennett
carlbennett / motd.sh
Last active March 5, 2020 05:29
Prints a dynamic message of the day upon login. To install, copy the file to the `/etc/profile.d/` directory.
#!/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.
@carlbennett
carlbennett / lunch.sh
Last active July 10, 2017 16:28
Lunch Location Randomizer
#!/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"
@carlbennett
carlbennett / login.h
Created November 18, 2011 05:36
Pointer problem most likely
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);