This script is created as an example to show how easy it is to use gstorm to crunch and consume data from rest apis.
Either download the script and run:
groovy ghstarred.groovy <your_github_id>
Or hotload it:
This script is created as an example to show how easy it is to use gstorm to crunch and consume data from rest apis.
Either download the script and run:
groovy ghstarred.groovy <your_github_id>
Or hotload it:
| #!/usr/bin/env python | |
| """ | |
| Requirements: | |
| android2po | |
| opterator | |
| Sample: | |
| $ python android2po_plurals.py pl |
$ docker build -t java-utf8-test --no-cache .
nding build context to Docker daemon 47.62 kB
Sending build context to Docker daemon
Step 0 : FROM java:8-jdk
---> 1fc1263652ea
Step 1 : ADD TestUtf8.java /src/
---> c5d7dabbce96
Removing intermediate container 21cc173682b4
Step 2 : WORKDIR /src| /** | |
| * For registering Java {@link Runnable runnables} as event listeners on GWT DOM elements. | |
| * <p> | |
| * This class allows for registering listeners for all DOM events including those not supported by GWT. | |
| */ | |
| public class NativeDomEvents { | |
| public static native void addEventListener(Element element, String event, Runnable listener) /*-{ | |
| var eventListener = function() { |
| #!/bin/sh | |
| perl -ne'/END:/ && $i--; print "\t" x $i . "$_\n"; /BEGIN:/ && $i++;' |
| *.scala diff=scala |
| import sublime_plugin | |
| import sublime | |
| import time | |
| import os | |
| class MyEvents(sublime_plugin.EventListener): | |
| def on_deactivated_async(self, view): | |
| s = view.file_name() | |
| if s: |
<logger category="com.arjuna.ats.jta">
<level name="TRACE"/>
</logger>
<logger category="org.jboss.as.jpa">
<level name="DEBUG"/>
</logger>
| #!/bin/bash | |
| # This must be run from master | |
| git checkout master | |
| # Update our list of remotes | |
| git fetch | |
| git remote prune origin | |
| # Remove local fully merged branches | |
| git branch --merged master | grep -v 'master$' | xargs git branch -d | |
| # Show remote fully merged branches |
| let autoNext = () => { | |
| Array.from(document.querySelectorAll('.player-modal.is-active button')) | |
| .filter(b => b.textContent === 'Continue to next module') | |
| .forEach(b => b.click()); | |
| }; | |
| setInterval(autoNext, 5000); |