Franklin Chen

Results 45 issues of Franklin Chen

The duplicated use of the name `activeUsers` seem unfortunate: ``` var activeUsers = // however this is defined var app = Elm.Main.init({ node: document.getElementById('elm'), flags: activeUsers }); // after someone...

I checked both https://www.stackage.org/lts-15.14 and https://www.stackage.org/nightly-2020-05-26 and Yampa is in neither. Is there a reason why? I built Yampa for myself just fine using `stack` with LTS-15.14.

enhancement
help wanted
beginner
hacktoberfest

In a discussion of dimensional units at https://disqus.com/home/discussion/khinsen/there_is_no_such_thing_as_software_development/?utm_content=read_more#comment-3900504830 it was noted that there is the question of "the well-known tricky cases such as making both Hz and Bq compatible with...

Using Stack with LTS-15.15 and GHC 8.8.3, I had to use `allow-newer` to build `final-pretty-printer`. Perhaps relax the upper bounds? ``` WARNING: Ignoring final-pretty-printer's bounds on ansi-terminal (==0.6.*); using ansi-terminal-0.10.3....

Recent text-icu version allows build on Mac M1 by accounting for new Homebrew paths.

MLton http://mlton.org/ is a whole-program, optimizing compiler for Standard ML so I'm curious how well it would perform in this benchmark.

help wanted
good first issue

It would be great if someone provided a Scheme version, compiled by Stalin http://manpages.ubuntu.com/manpages/bionic/man1/stalin.1.html It's been almost twenty years since I last used Stalin, but when I did, its ridiculously...

help wanted
good first issue

I noticed that there's a variety of differences in loop iterations across languages. Kotlin has `1..1000000` which means going 1_000_000 times, from 1 through 1_000_000 inclusive. Some of the other...

bug
help wanted
good first issue

I was surprised not to be able to specify ``` grammar); ``` which I really want because I want to return information that takes ownership of the state. The only...