Skip to content

Instantly share code, notes, and snippets.

@kastoestoramadus
kastoestoramadus / TakeWhileByFoldRight.scala
Last active June 28, 2017 07:54
WhyFoldRight works here
def takeWhileR[A](s: Stream[A], f: A => Boolean): Stream[A] =
s.foldRight(Stream[A]())((h, t) =>
if (f(h)) Stream(h) #::: t
else Stream.apply())
def takeWhileL[A](s: Stream[A], f: A => Boolean): Stream[A] =
s.foldLeft(Stream[A]())((t, h) =>
if (f(h)) Stream(h) #::: t
else Stream.apply())
@kastoestoramadus
kastoestoramadus / second
Last active April 25, 2025 14:25
second
package org.ekrich.config
import java.io.File
import java.nio.file.{Path, Paths}
import java.nio.file.{Files, Paths}
import java.nio.charset.StandardCharsets
object Formatter {
def main(args: Array[String]): Unit = {
println(s"Running HOCON formatter. pwd: ${new File(".").getAbsolutePath}")
package com.nordea
import java.io.File
import java.nio.file.{Path, Paths}
import org.ekrich.config.{Config, ConfigFactory, ConfigParseOptions, ConfigRenderOptions}
object HoconFormatter {
def main(args: Array[String]): Unit = {
println(s"Running HOCON formatter. pwd: ${ new File(".").getAbsolutePath}")
@kastoestoramadus
kastoestoramadus / hocon.py
Last active February 27, 2025 11:19
python script
import sys
import ddpyhocon
def format_hocon(input_file, output_file):
with open(input_file, 'r') as infile:
# Parse the HOCON file into a Python dictionary
config = ddpyhocon.ConfigFactory.parse_file(infile)
with open(output_file, 'w') as outfile:
# Write the formatted HOCON file