Skip to content

Instantly share code, notes, and snippets.

View acyuta's full-sized avatar
🌐
Digital Nomad

Akim Glushkov acyuta

🌐
Digital Nomad
View GitHub Profile
import android.text.TextUtils;
import io.realm.Case;
import io.realm.Realm;
import io.realm.RealmObject;
import io.realm.RealmResults;
public class RealmFullTextSearch {
public static <T extends RealmObject> RealmResults<T> search(Realm realm, Class<T> modelClass, String query, String fieldName, boolean partialSearch){
@tapanpandita
tapanpandita / .gitignore
Created May 11, 2012 12:11
Serving password protected files from Nginx
.*.swp
@skrb
skrb / Test.java
Created April 8, 2012 02:04
JavaFX WebView Sample
import java.io.IOException;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;
import javafx.stage.Stage;
public class Test extends Application {