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
private val accentRegex = Regex("\\p{InCombiningDiacriticalMarks}+") | |
Normalizer.normalize("camión", Normalizer.Form.NFD) | |
.replace(accentRegex, "") | |
.toLowerCase(Locale.getDefault()) | |
.split(" ") |
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.junit.Test | |
import java.time.* | |
import java.time.format.DateTimeFormatter | |
import java.time.format.FormatStyle | |
import java.time.temporal.ChronoField | |
import java.time.temporal.ChronoUnit | |
import java.time.temporal.TemporalAdjusters | |
import java.util.* | |
import kotlin.time.days | |
import kotlin.time.minutes |
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
xsv join --no-case PRODUCTNDC product.txt PRODUCTNDC package.txt -d '\t' \ | |
|xsv select NDCPACKAGECODE,PROPRIETARYNAME,PACKAGEDESCRIPTION,DOSAGEFORMNAME \ | |
|xsv sample 10 \ | |
|xsv table |
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
drop table if exists medicines_import; | |
CREATE TABLE medicines_import ( | |
country text NOT NULL, | |
code text NOT NULL, | |
name text NOT NULL, | |
quantity int4 NOT NULL, | |
unit text NOT NULL, | |
CONSTRAINT medicines_pkey PRIMARY KEY (code, country) | |
); |
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 CnDetectorProcessor(private val context: Context, private val onCnDetected: ((cn: String, checksum: String) -> Unit)) : | |
Detector.Processor<TextBlock?> { | |
private val pattern = Pattern.compile("^C?\\.?N?\\.? ?(\\d\\d\\d\\d\\d\\d)\\.(\\d) ?[0O]?\$") | |
private var detected = false | |
override fun release() {} | |
override fun receiveDetections(detections: Detections<TextBlock?>) { | |
detections.detectedItems.forEach { _, item -> | |
if (detected) return |
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 OverlayWithHoleImageView(context: Context?, attrs: AttributeSet?) : androidx.appcompat.widget.AppCompatImageView(context, attrs) { | |
private var rect: RectF? = null | |
private val paint = Paint(Paint.ANTI_ALIAS_FLAG).apply { | |
color = Color.parseColor("#a8000000") | |
style = Paint.Style.FILL | |
} | |
private val addMode = PorterDuffXfermode(PorterDuff.Mode.ADD) | |
private val clearMode = PorterDuffXfermode(PorterDuff.Mode.CLEAR) | |
private val radius = 40.dp | |
private val margin = 32.dp |
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
select name, address from customers where country = 'United States' | |
select * from customers order by name | |
/* Retrieve all the products which cost more than 100 */ | |
select * from products where unit_price > 100 | |
/* Retrieve all the products whose name contains the word socks */ |
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
var fs = require('fs'); | |
class LineMatcher { | |
constructor(regex) { | |
this.regex = regex | |
} | |
matches(line) { | |
return this.regex.test(line) | |
} |
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
var a = Math.cos(Math.sin(((4 + 3) * 3))) | |
const PI = 3.14159 | |
const GRAVITY = 9.8 | |
// function concatenate(array) { | |
// let a = "" | |
// for (let i = 0; i < array.length; i++) { | |
// const element=array[i] | |
// a += element | |
// } | |
// return a |
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 com.sergiandreplace.localization | |
import org.junit.Test | |
import org.threeten.bp.LocalDate | |
import org.threeten.bp.Month | |
import org.threeten.bp.format.DateTimeFormatter | |
import java.util.Locale | |
import org.junit.Assert.assertEquals | |
class CatalanDateFormatTest { |
NewerOlder