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
/* | |
Copyright (c) 2011, The Mineserver Project | |
All rights reserved. | |
Redistribution and use in source and binary forms, with or without | |
modification, are permitted provided that the following conditions are met: | |
* Redistributions of source code must retain the above copyright | |
notice, this list of conditions and the following disclaimer. | |
* Redistributions in binary form must reproduce the above copyright | |
notice, this list of conditions and the following disclaimer in the |
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
diff --git a/src/app.cpp b/src/app.cpp | |
index a6adf14..1c82aa3 100644 | |
--- a/src/app.cpp | |
+++ b/src/app.cpp | |
@@ -38,6 +38,7 @@ | |
#include <mineserver/network/protocol/notch/protocol.h> | |
#include <mineserver/network/server.h> | |
+#include <mineserver/watcher/keepalive.h> | |
#include <mineserver/watcher/login.h> |
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
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); |
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
#!/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 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 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 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 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 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 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; |
OlderNewer