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 "twitter" | |
require "logger" | |
require "csv" | |
require "geocoder" | |
# Need to get: | |
# all mr_c posts | |
# if is reply to then who mr_c replied to | |
# from that who can then work out where |
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
delimiter $$ | |
DROP TABLE IF EXISTS OSDATA.locator; | |
CREATE TABLE OSDATA.locator ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`name` varchar(255) NOT NULL, | |
`classification` varchar(45) NOT NULL, | |
`centx` int(11) NOT NULL DEFAULT '0', | |
`centy` int(11) NOT NULL DEFAULT '0', |
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
# | |
# Simple map to return the character required for correct | |
# climacon based on yahoo weather code. | |
# https://gist.github.com/rob-murray/4120977 | |
# | |
# @params {integer} the Yahoo weather code ID | |
# @returns {string} the Climacon character | |
# | |
# @see http://adamwhitcroft.com/climacons/font/, | |
# https://developer.yahoo.com/weather/documentation.html#codes |
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
(function() { | |
// create global namespace | |
window.game = {}; | |
// add some data | |
game.player = { | |
name: 'rob', | |
score: 5 | |
}; |
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
'================================ | |
' | |
' VBScript Source File -- Created with SAPIEN Technologies PrimalScript 3.0 | |
' | |
' NAME: Unused_Printer_Drivers.vbs | |
' | |
' AUTHOR: Robert Murray | |
' DATE : 20/10/2008 | |
' SEE: http://robertomurray.co.uk/blog/2008/how-to-list-all-unused-printer-drivers-on-a-print-server-using-vbscript/ | |
' |
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
<script type="text/javascript"> | |
var map, layer; | |
var key = "YOUR_KEY"; | |
var e = 437303; | |
var n = 115542; | |
var zoom = 5; | |
function 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
var options, myQ; | |
var TEN_SECS = 10000; | |
// Set up options | |
options = { | |
outputElementId: "output-id", | |
delay: TIME_IN_MSECS, | |
emptyDisplayString: "STRING" | |
}; | |
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
@travels = Travels.all(:order => "id DESC") | |
respond_to do |format| | |
format.html # index.html.erb | |
format.json { render :json => @travels } | |
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
SELECT sub.ip FROM | |
(SELECT set_masklen(((generate_series(1, | |
(2 ^ (32 - masklen('10.10.100.0/24'::cidr)))::integer - 2) + | |
'10.10.100.0/24'::cidr)::inet), 32) as ip) AS sub | |
WHERE sub.ip NOT IN | |
(SELECT ip_address from ip_table) | |
AND sub.ip > set_masklen('10.10.100.0/24', 32)+10 | |
AND sub.ip < set_masklen(broadcast('10.10.100.0/24')::inet, 32)-5; |
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
CREATE FUNCTION nextips_for(cidr) RETURNS SETOF inet AS | |
$$ | |
SELECT sub.ip FROM (SELECT set_masklen(((generate_series(1, (2 ^ (32 - | |
masklen($1::cidr)))::integer - 2) + | |
$1::cidr)::inet), 32) as ip) AS sub | |
WHERE sub.ip NOT IN | |
(SELECT ip_address from ip_table) | |
AND sub.ip > set_masklen($1, 32)+10 | |
AND sub.ip < set_masklen(broadcast($1)::inet, 32)-5; | |
$$ LANGUAGE SQL STABLE STRICT; |
OlderNewer