Skip to content

Instantly share code, notes, and snippets.

View tikorth's full-sized avatar
💭
Always online

Stargazer Technology tikorth

💭
Always online
View GitHub Profile
@romach
romach / concatenate-strings-in-thymeleaf.html
Created April 22, 2017 14:25
Concatenate strings in Thymeleaf
<p th:text="${bean.field + '!' + bean.field}">Static content</p>
th:text="'static part' + ${bean.field}"
th:text="${'static part' + bean.field}"
@mikeplate
mikeplate / HttpHelper.java
Created February 23, 2014 15:47
Android very simple HTTP helper class and get method
package se.mobileapplab.lib;
import android.os.AsyncTask;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
/**