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
$ brightbox-servers create --user-data="#include https://gist.githubusercontent.com/johnl/3129203/raw/d4b591546f1987803771bbc8c303c62cbca93538/puppet-git-receiver-install" img-9h5cv | |
Creating a nano (typ-4nssg) server with image Ubuntu Precise 12.04 LTS server (img-9h5cv) with 0.10k of user data | |
id status type zone created_on image_id cloud_ip_ids name | |
----------------------------------------------------------------------------- | |
srv-3te8u creating nano gb1-a 2012-07-17 img-9h5cv | |
----------------------------------------------------------------------------- | |
$ git init |
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/naxsi/naxsi_src/naxsi_runtime.c b/naxsi/naxsi_src/naxsi_runtime.c | |
index 1d32f78..7ae0e4f 100644 | |
--- a/naxsi/naxsi_src/naxsi_runtime.c | |
+++ b/naxsi/naxsi_src/naxsi_runtime.c | |
@@ -116,7 +116,12 @@ ngx_http_process_basic_rule_buffer(ngx_str_t *str, | |
tmp_idx = 0; | |
len = str->len; | |
while | |
-#if defined nginx_version && (nginx_version > 1001011) | |
+#if defined nginx_version && (nginx_version >= 1002002) |
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/env ruby | |
require 'ostruct' | |
class LinuxProcess < OpenStruct | |
def initialize(args) | |
super | |
read_status! | |
end |
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
RewriteEngine On | |
RewriteCond %{REQUEST_METHOD} !GET|HEAD | |
RewriteCond %{SCRIPT_FILENAME} \.xml$ [OR] | |
RewriteCond %{HTTP:Content-Type} xml | |
RewriteRule . - [forbidden,last] |
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/sh | |
# sleep 1 | |
echo -e "classes:\n" |
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 | |
# | |
# Copyright 2013 John Leach <[email protected]> | |
# | |
# Distributed under terms of the MIT license | |
# | |
# Takes a screeshot using scrot and uploads it via scp and sticks the | |
# url on the clipboard as quickly as possible. | |
# | |
# For speed, it cheats and puts the url on the clipboard *before* |
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
require 'openssl' | |
require 'socket' | |
ssl_context = OpenSSL::SSL::SSLContext.new | |
ssl_context.verify_mode = OpenSSL::SSL::VERIFY_PEER | |
ssl_context.cert_store = OpenSSL::X509::Store.new | |
ssl_context.cert_store.set_default_paths if File.exists? OpenSSL::Config::DEFAULT_CONFIG_FILE | |
socket = TCPSocket.new('api.gb1.brightbox.com', 443) | |
ssl_socket = OpenSSL::SSL::SSLSocket.new(socket, ssl_context) |
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
class MyArray < Array | |
end | |
a = MyArray.new | |
puts a.class | |
b = a.compact | |
puts b.class |
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
mysql> select * from general_log; | |
+---------------------+---------------------------+-----------+-----------+--------------+-------------------------------------+ | |
| event_time | user_host | thread_id | server_id | command_type | argument | | |
+---------------------+---------------------------+-----------+-----------+--------------+-------------------------------------+ | |
| 2013-07-08 10:27:30 | root[root] @ localhost [] | 37 | 0 | Query | create table databasea (id integer) | | |
| 2013-07-08 10:27:35 | root[root] @ localhost [] | 37 | 0 | Query | insert into databasea values (1) | | |
| 2013-07-08 10:27:36 | root[root] @ localhost [] | 37 | 0 | Query | insert into databasea values (2) | | |
| 2013-07-08 10:27:37 | root[root] @ localhost [] | 37 | 0 | Query | insert into databasea values (3) | | |
| 2013-07-08 10:27:38 | root[root] @ localhost [] | 37 | 0 | Query |
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
irb(main):001:0> require 'shellwords' | |
=> true | |
irb(main):002:0> 'once upon "a time" there was\ a\ giant'.shellsplit | |
=> ["once", "upon", "a time", "there", "was a giant"] | |
irb(main):003:0> puts "one upon a time there was a giant & 'her dog' `hack`".shellescape | |
one\ upon\ a\ time\ there\ was\ a\ giant\ \&\ \'her\ dog\'\ \`hack\` | |
irb(main):004:0> ["ls", "/home/john/secret stuff/"].shelljoin |