This file contains hidden or 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
| # | |
| # Slightly tighter CORS config for nginx | |
| # | |
| # A modification of https://gist.github.com/1064640/ to include a white-list of URLs | |
| # | |
| # Despite the W3C guidance suggesting that a list of origins can be passed as part of | |
| # Access-Control-Allow-Origin headers, several browsers (well, at least Firefox) | |
| # don't seem to play nicely with this. | |
| # |
This file contains hidden or 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
| Meteor.publish 'paths', (since) -> | |
| pointHandles = {} | |
| publishPath = (pathId) => | |
| pointHandles[pathId] = Points.find({pathId: pathId}).observe | |
| added: (obj) => | |
| @set('points', obj._id, obj) | |
| @flush() | |
| # these two should never happen | |
| changed: (obj) => |
This file contains hidden or 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
| Questa è una traduzione in italiano del celebre Hacker Manifesto. Tutte quelle | |
| esistenti contengono grossolani errori, perlopiù dovuti ad una carente | |
| comprensione della materia e del periodo, o in ogni caso sono poco fedeli al | |
| contenuto e allo spirito dell'originale. Mi auguro che questa mia traduzione non | |
| soffra degli stessi problemi. Sail strong. | |
| -- FiloSottile | |
| **** | |
| Da: Phrack, Volume Uno, Issue 7, Phile 3 of 10 |
This file contains hidden or 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 'underscore' | |
| child_process = require 'child_process' | |
| async = require 'async' | |
| healthCheckInterval = 60 * 1000 | |
| bounceInterval = 60 * 1000 | |
| bounceWait = bounceInterval + 30 * 1000 | |
| delayTimeout = (ms, func) -> setTimeout func, ms | |
| class MonitoredChild |
This file contains hidden or 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
| -- DISCLAIMER -- | |
| il presente elenco consiste in una raccolta di cognomi presenti sul territorio italiano (non necessariamente "italiani") | |
| viene generato prendendo processando automaticamente uno o più archivi anagrafici e non è controllato in alcun modo | |
| è pertanto altamente possibile che ci siano errori o refusi | |
| non è ne pretende di essere un elenco omnicomprensivo di tutti i cognomi esistenti | |
| ---------------- | |
| abbondanza | |
| abu | |
| accadia |
This file contains hidden or 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
| -- DISCLAIMER -- | |
| il presente elenco consiste in una raccolta di nomi presenti sul territorio italiano (non necessariamente "italiani") | |
| viene generato prendendo processando automaticamente uno o più archivi anagrafici e non è controllato in alcun modo | |
| è pertanto altamente possibile che ci siano errori o refusi | |
| non è nè pretende di essere un elenco omnicomprensivo di tutti i nomi esistenti | |
| ---------------- | |
| abaco | |
| abbondanza | |
| abbondanzia |
This file contains hidden or 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 | |
| # WebSocket shell, start & browse to http://<Host>:6655/ | |
| # Requires bash 4.x, openssl. | |
| # Author: [email protected] (which isn't me, apk) | |
| coproc d { nc -l -p 6656 -q 0; } | |
| nc -l -p 6655 -q 1 > /dev/null <<-ENDOFPAGE | |
| HTTP/1.1 200 OK | |
| <html><head><script language="javascript"> | |
| var url = location.hostname + ':' + (parseInt(location.port) + 1); |
This file contains hidden or 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
| /************************************************************************** | |
| * OSM2GEO - OSM to GeoJSON converter | |
| * OSM to GeoJSON converter takes in a .osm XML file as input and produces | |
| * corresponding GeoJSON object. | |
| * | |
| * AUTHOR: P.Arunmozhi <[email protected]> | |
| * DATE : 26 / Nov / 2011 | |
| * LICENSE : WTFPL - Do What The Fuck You Want To Public License | |
| * LICENSE URL: http://sam.zoy.org/wtfpl/ | |
| * |
This file contains hidden or 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:ts=4:sw=4:tw=100:ai:nowrap:formatoptions=croqln: | |
| #*******************************************************# | |
| # tumblr.sh # | |
| # written by Rahul Kumar # | |
| # 2010/01/01 # | |
| # Post, edit, delete, read tumblr.com # | |
| #*******************************************************# | |
| # References: http://www.tumblr.com/api#api_write | |
| # DONE : add read |
NewerOlder