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 'rubygems' | |
require 'solid_assert' # http://jorgemanrubia.net/2011/09/19/solid_assert-a-simple-ruby-assertion-utility/ | |
require 'grok-pure' | |
SolidAssert.enable_assertions | |
# Grok Docs: http://rubydoc.info/gems/jls-grok/Grok | |
g = Grok.new | |
# Test SU Patterns. | |
g.add_patterns_from_file("E:/downloads/logstash/SUPatterns/SU") |
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
/** | |
* Renders the body if none of the specified roles are granted to the user. Roles are | |
* specified in the 'roles' attribute which is a comma-delimited string. | |
* | |
* @attr roles REQUIRED the role name(s) | |
*/ | |
def ifNotGranted = { attrs, body -> | |
String roles = assertAttribute('roles', attrs, 'ifNotGranted') |
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
/** | |
* Renders the body if none of the specified roles are granted to the user. Roles are | |
* specified in the 'roles' attribute which is a comma-delimited string. | |
* | |
* @attr roles REQUIRED the role name(s) | |
*/ | |
def ifNotGranted = { attrs, body -> | |
String roles = assertAttribute('roles', attrs, 'ifNotGranted') |
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
<% def obj=tour as grails.converters.JSON; println obj.toString(true).replace("\n","<br>").replace(" "," ") %> |
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
dataSource_DSName { | |
dbCreate = "update" | |
pooled = true | |
boolean useFastLocalH2DB = true | |
if ( useFastLocalH2DB ) { | |
assert grails.util.Environment == grails.util.Environment.DEVELOPMENT.current, 'Only use H2 DB in Development mode!' | |
driverClassName = "org.h2.Driver" | |
username = "sa" | |
password = "" |
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
# Install bower, node, rails gems. | |
# Put this into your ~/.bash_profile | |
function inst() { | |
set -m # fork things in separate jobs | |
if [ -e 'bower.json' ] | |
then | |
bower install & | |
fi | |
if [ -e 'package.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
// Search tags for [query], find matches, return results. | |
suggestTags(query) { | |
query = query.trim().toLowerCase(); | |
if (!query || query.length<2) { | |
return null; | |
} | |
var goodMatches=[], partialMatches=[], allTags = db.tags; | |
for (var x=0; x<allTags.length; ++x) { | |
var pos=allTags[x].toLowerCase().indexOf(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
console.clear(); | |
var all = document.getElementsByTagName("*"); | |
var TAGS_TO_SKIP=['BODY','HEAD','HTML','IFRAME','LABEL','LINK','NOSCRIPT','SCRIPT','STYLE','TITLE']; | |
for (var i=0, max=all.length; i < max; i++) { | |
var el=all[i]; | |
if (TAGS_TO_SKIP.indexOf(el.tagName) == -1 ) { | |
// var reactID=el.dataset.reactid; // You might want to do something with this.. | |
console.log(i, el.tagName,el, el.getBoundingClientRect()); | |
} |
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
Logic: | |
- Look at URL. If it's github, react-components.com, react.rocks or npmjs.com, use the last part of the URL as module name. | |
- Else, get selected text on page as URL. | |
- Else, ASK. | |
- THEN: Run a Github query for uses of the module in package.json. | |
// BOOKMARKLET | |
javascript:(function(){ | |
var e,t,n,r=window.getSelection().toString();r||(e=location.href.split("/"),t=e[2],r="github.com"===t||"react-components.com"==t||"react.rocks"==t||"npmjs.com"==t?e[e.length-1]:prompt("What module?")),n="https://github.com/search?utf8=%E2%9C%93&q="+r+"+filename%3Apackage+language%3AJSON&type=Code&ref=searchresults",location.href=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
Bookmarklet for https://gist.github.com/petehunt/ccb1b42e6608449a039b | |
//--- As a bookmarklet: | |
javascript:(function(){setInterval(function() { Array.prototype.slice.call(document.querySelectorAll('[data-reactid]')).forEach(function(element) { element.style.background = 'rgba(255,0,0,0.1)'; }) }, 500)})(); | |
OlderNewer