View pom.xml
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
<plugin> | |
<groupId>com.github.eirslett</groupId> | |
<artifactId>frontend-maven-plugin</artifactId> | |
<version>1.12.0</version> | |
<executions> | |
<execution> | |
<id>install node and npm</id> | |
<goals> | |
<goal>install-node-and-npm</goal> | |
</goals> |
View buenos_aires.py
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 math | |
import sys | |
BAC = 2.920050977316134 | |
def primes_BAC(): | |
item = BAC | |
while True: | |
next_prime = int(math.floor(item)) | |
yield next_prime |
View get_branches_jira_status.py
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 subprocess | |
from jira import JIRA | |
from getpass import getpass | |
import requests | |
EXCLUDE_BRANCHES = {"master", "develop"} | |
COMMON_BRANCH_PREFIX = "feature/" | |
COMMON_BRANCH_SUFFIX = "-epic" | |
HEADS_PREFIX = "refs/heads/" |
View close_upsource_reviews.py
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 requests | |
import argparse | |
REVIEWS_LIST_PATH = "{host}/~rpc/getReviews" | |
CLOSE_REVIEW_PATH = "{host}/~rpc/closeReview" | |
REVIEWS_REQUEST = "(state: open) and (accepted-by: 1 or (not (updated: {this month})))" | |
def parse_args(): |
View Main.scala
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 org.apache.kafka.clients.consumer.ConsumerConfig | |
import org.apache.kafka.common.TopicPartition | |
import org.apache.kafka.common.serialization.StringDeserializer | |
import org.apache.spark.streaming.kafka010.KafkaUtils | |
import org.apache.spark.streaming.{Seconds, StreamingContext} | |
import org.apache.spark.{SparkConf, SparkContext, SparkEnv} | |
import org.apache.spark.streaming.kafka010._ | |
import org.apache.spark.streaming.kafka010.LocationStrategies.PreferConsistent | |
import org.apache.spark.streaming.kafka010.ConsumerStrategies.Subscribe |
View Main.java
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
//works with 0.3.10 but fails with OOM with 0.4.4 | |
//see https://github.com/flipkart-incubator/zjsonpatch/issues/77 | |
import com.fasterxml.jackson.databind.JsonNode; | |
import com.fasterxml.jackson.databind.ObjectMapper; | |
import com.flipkart.zjsonpatch.JsonDiff; | |
import java.io.IOException; | |
public class Main { |
View TestDuration.scala
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 com.typesafe.config.ConfigFactory | |
import scala.util.Try | |
object TestDuration extends App { | |
val strings = Seq("1s", "2s", "2m", "2h", "2d", "2y", "1h30m", "86000000ms") | |
def getISOPrefix(duration: String): String = if (Set('y', 'd').contains(duration.last)) "P" else "PT" | |
val parseAndProcessDuration: Map[String, String => String] = Map( |
View kibana_to_rm.js
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
(function logs_data_main(){ | |
const ui_id = "logs_ui"; | |
const data_id = "logs_data_ui"; | |
function addLogsData(){ | |
let text = document.getElementById(data_id).value; | |
let lines = text.split('\n'); | |
let urlsAndNames = lines | |
.filter(x => x.length > 2) |
View build.gradle
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
apply plugin: 'java' | |
apply plugin: 'idea' | |
apply plugin: 'kotlin' | |
buildscript { | |
ext.kotlin_version = '1.1.51' | |
ext.quasar_version = '0.7.9' | |
repositories { | |
mavenCentral() |
View Main.kt
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
package mwe | |
import co.paralleluniverse.fibers.Suspendable | |
import co.paralleluniverse.kotlin.Actor | |
import co.paralleluniverse.kotlin.register | |
import co.paralleluniverse.kotlin.spawn | |
import co.paralleluniverse.strands.Strand | |
class LazyActor : Actor() { |
NewerOlder