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
Grid Sizes: 15x1,4x2,15x2 | |
My Favorite Presets for gTile. | |
Featured/Focus | |
01: 15x1 1:1 4:1 | |
02: 15x1 5:1 11:1 | |
03: 15x1 12:1 15:1 | |
4-Columns | |
04: 4x1 1:1 1:1,2:1 2:1,1:1 2:1 |
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
{ | |
"variables" : { | |
"source_name" : "centos-7.3-x86_64-raw-r1", | |
"headless" : "false", | |
"http_proxy" : "{{env `http_proxy`}}", | |
"https_proxy" : "{{env `https_proxy`}}", | |
"memory" : "2048", | |
"metadata" : "packer/floppy/dummy_metadata.json", | |
"name" : "centos-7.3", | |
"no_proxy" : "{{env `no_proxy`}}", |
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
/c for i=-100,100 do for j=-100,100 do game.player.surface.set_tiles({{name="concrete", position={game.player.position.x+i, game.player.position.y+j}}}) end 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
<mockup version="1.0" skin="sketch" fontFace="Balsamiq Sans" measuredW="1322" measuredH="912" mockupW="861" mockupH="861"> | |
<controls> | |
<control controlID="0" controlTypeID="com.balsamiq.mockups::Label" x="531" y="73" w="-1" h="-1" measuredW="520" measuredH="48" zOrder="3" locked="false" isInGroup="-1"> | |
<controlProperties> | |
<bold>true</bold> | |
<color>15658734</color> | |
<size>40</size> | |
<text>Triaging%20%26joyent/node%20%231234%26</text> | |
</controlProperties> | |
</control> |
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
/// <reference path="../path/to/sugar.d.ts" /> | |
/** | |
* Usage Examples: | |
* sgObject.isArray([1]); // -> true | |
*/ | |
declare var sgObject:ObjectStatic; | |
declare var sgNumber:NumberStatic; | |
declare var sgDate:DateStatic; |
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 "logstash/outputs/base" | |
require "logstash/namespace" | |
require "socket" | |
# Log.io Output | |
# | |
# Sends events to a Log.io server over TCP. | |
# | |
# Plugin is fault tolerant. If the plugin is unable to connect to the server, | |
# or writes to a broken socket, it will attempt to reconnect indefinitely. |
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
# Send syslog to LogStash | |
*.* @@127.0.0.1:5000 |
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
# Error logging to LogStash via UDP client pipe | |
ErrorLog "||/usr/local/bin/udpclient.pl 127.0.0.1 5002" | |
LogLevel warn | |
# Access logging to LogStash via UDP client pipe | |
CustomLog "||/usr/local/bin/udpclient.pl 127.0.0.1 5001" ls_apache_json |
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
# Access Logs | |
LogFormat "{ \ | |
\"@vips\":[\"%v\"], \ | |
\"@source\":\"%v%U%q\", \ | |
\"@source_host\": \"%v\", \ | |
\"@source_path\": \"%f\", \ | |
\"@tags\":[\"Apache\",\"Access\"], \ | |
\"@message\": \"%h %l %u %t \\\"%r\\\" %>s %b\", \ | |
\"@fields\": { \ | |
\"timestamp\": \"%{%Y-%m-%dT%H:%M:%S%z}t\", \ |
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/perl | |
#udpclient.pl | |
use IO::Socket::INET; | |
my $host = $ARGV[0]; | |
my $port = $ARGV[1]; | |
# flush after every write | |
$| = 1; | |
my ($socket,$logdata); |
NewerOlder