This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
package="com.example.dummy"> | |
<application | |
android:label="@string/app_name" | |
tools:targetApi="31" | |
android:name=".MyApplication"> | |
<provider |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Collection<Integer> ss = Collections.synchronizedSet(new HashSet<Integer>()); | |
new Thread() { | |
public void run() { | |
for (int x = 0; x < 1000; x++) { | |
ss.addAll(IntStream.range(x*1000, (x + 1)*1000) | |
.boxed() | |
.collect(Collectors.toList())); | |
} | |
} | |
}.start() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(gtools) | |
installed <- c() | |
update <- function(p) { | |
pd <- packageDescription(p, fields=c('Built')) | |
pd <- gsub(";.*", "", pd) | |
if (!is.na(pd) && pd != 'R 4.0.4') { # mention the target versions here | |
for (d in getDependencies(p)) { | |
update(d) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
localhost slots=9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import statistics | |
from timeit import default_timer as timer | |
def time_function(f, data): | |
times = [] | |
for _ in range(0, 20): | |
start = timer() | |
f(data) | |
times.append(timer() - start) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import glob | |
import hashlib | |
import logging | |
import os | |
import pathlib | |
import re | |
import shutil | |
import sys | |
import time |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Producer<out T: Any>(val e:T) { | |
fun read(): T = e | |
} | |
class Consumer<in T: Any>() { | |
private lateinit var e: T | |
fun write(v: T): Unit { e = v } | |
} | |
fun main() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import scala.collection.mutable.ArrayBuffer | |
import scala.util.Random | |
object M { | |
def main(args: Array[String]) { | |
val t = new ArrayBuffer[Long]() | |
while (true) { | |
t += Random.nextLong | |
if (t.length % 10000 == 0) { | |
System.gc() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import kotlin.streams.asSequence | |
import kotlin.system.measureTimeMillis | |
val k = 500000000L | |
println(measureTimeMillis { | |
java.util.stream.LongStream.range(1, k) | |
.parallel() | |
.asSequence() | |
.map { it.toString().length.toLong() } |
NewerOlder