Skip to content

Instantly share code, notes, and snippets.

View dant3's full-sized avatar

Viacheslav Blinov dant3

View GitHub Profile
package com.actforex.nst
import java.util.concurrent.{CancellationException, Executors, FutureTask, Callable}
import scala.concurrent.{ExecutionContext, Future}
import ExecutionContext.Implicits.global
trait CancelForFuture {
def cancel(mayInterruptIfRunning:Boolean):Boolean
}
@dant3
dant3 / MainActivity.scala
Created June 17, 2014 00:44
Android Apis in Scala
import android.app.Activity
import android.widget.TextView
import android.os.Bundle
import android.provider.ContactsContract
import android.content.ContentResolver
import android.database.Cursor
import android.util.Log
class MainActivity extends Activity {
import sbt._
import sbt.Keys._
import android.Keys._
object JavaAndroidBuild extends Build {
lazy val rootSettings = Seq(
packageT in Compile <<= packageT in Android in app3,
packageRelease <<= packageRelease in Android in app3,
packageDebug <<= packageDebug in Android in app3
package com.example.jeremybell.myapplication
import android.app.Activity
import android.os.Bundle
import android.view.Menu
import android.view.MenuItem
class MyActivity extends Activity {
override def onCreate(savedInstanceState: Bundle): Unit = {
super.onCreate(savedInstanceState)
/*
* to run from console:
* $scala DuplicatesFinder.scala /path/to/android/project
*/
import java.io.File
import scala.xml._
val folder = args(0)
val project = new File(folder)
@dant3
dant3 / build.gradle
Last active December 23, 2015 09:07
lombok + gradle
apply plugin: 'java'
apply from: 'provided.gradle'
repositories {
mavenCentral()
}
dependencies {
provided group: 'org.projectlombok', name: 'lombok', version:'1.14.8'
}
@dant3
dant3 / build.sh
Created February 3, 2015 11:32
Ivy example
brew install ivy
ivy -retrieve "lib/[artifact].[ext]"
#!/bin/bash
# prerequisites
apt-get install openjdk-7-jdk
NEXUS_DIR=/opt/nexus
mkdir -p $NEXUS_DIR
curl -L http://www.sonatype.org/downloads/nexus-latest-bundle.tar.gz | tar -xzv --strip 1 -C $NEXUS_DIR
@dant3
dant3 / vlcsms.c
Last active August 29, 2015 14:15 — forked from TimSC/vlcsms.c
//To compile:
//cc vlcsms.c -o vlcsms -lvlc
//This source is by Tim Sheerman-Chase and it is released as public domain.
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <unistd.h>
#include <inttypes.h>
#include <vlc/vlc.h>
/**
* Copyright 2013 John Smith
*
* This file is part of Jewelsea Tic-Tac-Toe.
*
* Jewelsea Tic-Tac-Toe is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*