Output is:
Yellow is RED and GREEN
Cyan is BLUE and GREEN
Purple is RED and BLUE
// Parse the output of a Chrome .HAR and output a simple CSV with the URL and size in bytes (one per row) of every file loaded | |
// Usage: node parse.js <input.har> <output.csv> | |
// Example: node parse.js input.har output.csv | |
var fs = require('fs'); | |
if (process.argv.length < 4) { | |
console.log('Usage: node parse.js <input.har> <output.csv>'); | |
process.exit(1); | |
} |
C:\hostedtoolcache\windows\jdk\bin\java.exe -Dorg.gradle.internal.worker.tmpdir=D:\a\xjmusic\xjmusic\workstation\build\tmp\test\work -Dorg.gradle.native=false --module-path D:\a\xjmusic\xjmusic\workstation\build\classes\java\test;D:\a\xjmusic\xjmusic\workstation\build\resources\test;D:\a\xjmusic\xjmusic\workstation\build\libs\workstation-1.7.40-plain.jar;C:\Users\odind.gradle\caches\modules-2\files-2.1\org.springframework.boot\spring-boot-starter-webflux\3.1.2\2da7a1c02b1725e4594842307e283fc539d480d7\spring-boot-starter-webflux-3.1.2.jar;C:\Users\odind.gradle\caches\modules-2\files-2.1\org.springframework.boot\spring-boot-starter-json\3.1.2\c48d521879dbbcebe1a99f47257612968e022f5b\spring-boot-starter-json-3.1.2.jar;C:\Users\odind.gradle\caches\modules-2\files-2.1\org.springframework.boot\spring-boot-starter\3.1.2\c09a48df6fbc2b07b7aef1256b45260a3478b49f\spring-boot-starter-3.1.2.jar;C:\Users\odind.gradle\caches\modules-2\files-2.1\org.springframework.boot\spring-boot-starter-logging\3.1.2\4e47bd132fdd0d60ad57 |
// by Charney Kaye <charneykaye.com> | |
package com.charneykaye; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import javax.sound.sampled.AudioFileFormat; | |
import javax.sound.sampled.AudioFormat; | |
import javax.sound.sampled.AudioInputStream; | |
import javax.sound.sampled.AudioSystem; |
// by Charney Kaye <charneykaye.com> | |
package com.charneykaye; | |
import org.slf4j.Logger; | |
import java.io.*; | |
public class StreamLogger implements Runnable { | |
private final Logger LOG; | |
private final InputStream _inputStream; |
package com.charneykaye; | |
import javax.sound.sampled.AudioFormat; | |
import java.nio.ByteBuffer; | |
import java.nio.ByteOrder; | |
/** | |
Utilities for converting back and forth between a `double` and various `byte[]` for different bit-rates | |
a double is a single value for a channel of a frame of some audio. |
Name | Gender | Description | |
---|---|---|---|
ADELFA | f | American (Hispanic, Rare), Spanish (Latin American, Rare), Filipino (Rare) | |
ADELPHA | f | American (Rare), Filipino (Rare) Variant of Adelfa. | |
ADIELLE | f | Hebrew (Rare), Filipino (Rare), Dutch (Rare) Variant of Adiela. | |
AGAPITA | f | Italian (Rare), Spanish (Latin American), Filipino Feminine form of Agapito. | |
AILEEZA | f | Filipino, Muslim | |
AILYN | f | Filipino, Spanish (Latin American, Modern) | |
AINJYL | f | Filipino Modern respelling of Angel. | |
AISA | f | Filipino (Rare), Dutch (Rare), Muslim | |
AIZEL | f | Filipino |
Output is:
Yellow is RED and GREEN
Cyan is BLUE and GREEN
Purple is RED and BLUE
#!/usr/bin/env bash | |
# | |
# Clean Thesaurus Lookup with Multi-word Intersection | |
# | |
# Author: Charney Kaye <charney.io> | |
# | |
# Requires *nix packages: | |
# dict dictd dict-moby-thesurus | |
# |