Skip to content

Instantly share code, notes, and snippets.

@winkler1
winkler1 / gist:3351223
Created August 14, 2012 17:51
Unit-testing Grok assertions
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")
/**
* 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')
@winkler1
winkler1 / gist:3624024
Created September 4, 2012 17:44
Grails TagLib assertAttribute
/**
* 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')
<% def obj=tour as grails.converters.JSON; println obj.toString(true).replace("\n","<br>").replace(" ","&nbsp;") %>
@winkler1
winkler1 / gist:3656296
Created September 6, 2012 13:33
Selectively using H2 database for Grails in Datasource.groovy
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 = ""
# 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' ]
// 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);
@winkler1
winkler1 / gist:027237941426b24ea151
Last active August 29, 2015 14:13
Print DOM elements, dimensions, React ID's
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());
}
@winkler1
winkler1 / gist:429721aa47b61f454988
Last active November 11, 2015 15:33
Find usages
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;})();
@winkler1
winkler1 / gist:9a077e76839503e80ee0
Created January 20, 2015 16:03
Show React Elements
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)})();