-
Hi there,
my plan was to write some specs to test my queries, generate via the "sql" QuasiQuoter are sound. For doing that I wanted to keep everything pure and reusable. I have seen there are two fun…
-
# Purpose
This is a proposal for a basic C API for the runtime. It allows for non-Go main programs and for using specially written Go libraries from any language that can call C functions, with a fe…
-
Testing FRP code can sometimes be tricky and cumbersome.
To solve the problem we are working on a way to FRP code in a way that is declarative and convenient.
Here is a simple example. Let's say…
-
> There's no way to get the fusion-builder back, and thus we don't get to fuse in the consumer module.
Using `{-# INLINE source #-}` does bring back the fusion-builder. And foldr/build fusion relie…
-
The mustache spec gives this example:
```
Template:
{{#wrapped}}
{{name}} is awesome.
{{/wrapped}}
Hash:
{
"name": "Willy",
"wrapped": function() {
return function(text, rend…
-
I can currently transpile GLSL to SPIR-V at runtime via:
``` rust
let vs_spirv = glsl_to_spirv::compile(SHADER_VERTEX, ShaderType::Vertex)
.expect("failed to transpile the vertex shader")…
-
See https://github.com/ghc-proposals/ghc-proposals/issues/544
There are a handful of packages for which the fix will probably not happen timely (e.g. `network-info` issue https://github.com/jacobst…
-
# Abstract
This is a proposal for a mini-library built on top of Workflows for creating "stepped" flows – a DAG of screens that work together to accomplish some task, driven by a single parent work…
-
As an intermediate step towards #1015, and various parts thereof, would it be possible to ignore the syntax for features not currently supported, yet use the parts which are supported in trades?
I'm …
-
In .NET APIs, calling methods for side effects is the norm. Thus, it's generally OK to call a method and discard the result. For example, `List`s `Remove()` method returns a Boolean, indicating whethe…