Skip to content

Instantly share code, notes, and snippets.

View takawitter's full-sized avatar

Takao Nakaguchi takawitter

View GitHub Profile
@takawitter
takawitter / axis14.patch
Created January 5, 2015 06:20
A patch let axis1.4 support Java8 code when generating wsdl.
### Eclipse Workspace Patch 1.0
#P axis-rt-core
Index: src/main/java/org/apache/axis/utils/bytecode/ClassReader.java
===================================================================
--- src/main/java/org/apache/axis/utils/bytecode/ClassReader.java (revision 1649462)
+++ src/main/java/org/apache/axis/utils/bytecode/ClassReader.java (working copy)
@@ -59,6 +59,10 @@
private static final int CONSTANT_Double = 6;
private static final int CONSTANT_NameAndType = 12;
private static final int CONSTANT_Utf8 = 1;
@takawitter
takawitter / CallServiceManagementSearchServices.groovy
Created May 12, 2015 19:09
The script that call searchServices method of ServiceManagement service.
@Grab('net.servicegrid:jp.go.nict.langrid.client.soap:1.0.5')
@Grab('net.servicegrid:jp.go.nict.langrid.service.management_1_2:1.0.5')
import jp.go.nict.langrid.client.soap.SoapClientFactory;
import jp.go.nict.langrid.service_1_2.foundation.MatchingCondition;
import jp.go.nict.langrid.service_1_2.foundation.Order;
import jp.go.nict.langrid.service_1_2.foundation.servicemanagement.ServiceManagementService;
new SoapClientFactory().create(
ServiceManagementService.class,
new URL("http://langrid.org/service_manager/services/ServiceManagement"),
@takawitter
takawitter / InvokeTranslation.js
Last active August 29, 2015 14:21
Codes to invoke Translation service on Language Grid.
/*
Copyright 2015 Takao Nakaguchi.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
@takawitter
takawitter / Sample.java
Last active August 29, 2015 14:22
書いてみた。executeメソッドのみ。元ネタ: http://bufferings.hatenablog.com/entry/2015/06/03/082323
public Result execute(Input in) throws IllegalArgumentException{
assertNotNull(in, "In must not be null.");
try{
Integer productId = in.getSelected();
assertNotNull(productId, "ProductId must not be null.");
assertInRange(productId, 1, 10, "ProductId must be in the range 1-10.");
Product product = dao.findById(productId);
assertNotNull(product, "Product doesn't exist.");
List<Integer> coins = in.getCoins();
@takawitter
takawitter / HtmlEncoderTest.java
Last active August 29, 2015 14:23
ちゃんと5回呼ばれるやつ(シングルクオートをバッククオートに修正)
import java.util.HashMap;
import java.util.Map;
public class HtmlEncoderTest {
static public void main(String[] args) {
System.out.println(new HtmlEncoder().encode("<script>alert('注意!');</script>"));
System.out.println(HtmlEncoder.count);
}
}
@takawitter
takawitter / EventListenerList.java
Created July 24, 2015 17:26
Typed and easily to fire event, EventListenerList
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.util.EventListener;
public class EventListenerList<T extends EventListener> extends javax.swing.event.EventListenerList{
public EventListenerList(Class<T> clazz){
this.clazz = clazz;
this.fireProxy = clazz.cast(Proxy.newProxyInstance(
Thread.currentThread().getContextClassLoader(),
import static java.util.Arrays.asList;
import static org.junit.Assert.assertEquals;
import org.json.JSONArray;
import org.json.JSONObject;
import org.junit.Test;
public class JSONObjectExample {
@Test
public void java_json_literal() throws Throwable{
public TwitterFuture getTrends() throws TwitterException {
final HttpResponse res = get(conf.getRestBaseURL() + "trends.json");
return new TwitterFuture(){
@Override
public void get(TwitterListener listener) throws TwitterException {
listener.gotTrends(new TrendsJSONImpl(res, conf));
}
};
}
@takawitter
takawitter / gist:1033764
Created June 19, 2011 04:41
gaeasync twitter4j implementation sample
class GAEAsyncTwitterImpl extends TwitterBaseImpl
implements Twitter {
public QueryResult search(Query query) throws TwitterException {
try {
return LazyEntityFactory.newQueryResult(
get(conf.getSearchBaseURL() + "search.json", query.asHttpParameterArray())
, conf);
} catch (TwitterException te) {
if (404 == te.getStatusCode()) {
return new QueryResultJSONImpl(query);
// workaround for http://jira.twitter4j.org/browse/TFJ-556
System.setProperty("http.keepAlive", "false");
TwitterStream s = new TwitterStreamFactory().getInstance();
s.setOAuthConsumer("CONSUMER", "SECRET");
s.setOAuthAccessToken(new AccessToken("ACCESSTOKEN", "SECRET"));
s.addListener(new StatusAdapter(){
public void onStatus(Status status) {
System.out.println(String.format("[%s] @%s: %s"
, status.getCreatedAt()
, status.getUser().getScreenName()