-
What is better way how to define a function on RDD?
``` ruby
# as Proc
rdd.map(lambda{|x| x*2})
# as block
rdd.map {|x| x*2}
```
Which method should be supported?
**As Proc:**
- the same way as in…
-
Benchmarks would be nice to help make performance improvements.
I propose to use JMH with some benchmarks that allow us to compare using straight jdbc patterns (lots of try-catch-finally } to using r…
-
Consider this Mirah code:
``` mirah
a = [5,7,4,8,1,3,0,9,2]
b = a[3...6] # b == [8,1,3]
c = a.slice(1...3) # c == [7,4]
```
It would be nice if code like this would be able to properly compile…
-
Is the [c^c] in there supposed to pop up? (underlined)
note: the nlevels parameter is set to 2 and using default syntax sugar
![Screenshot 2023-12-18 165434](https://github.com/Rgetar/rgetar.githu…
-
Integrate with the SugarFOmega variant of SugarJ in order to create SugarPTS.
See [seba--/sugarj](https://github.com/seba--/sugarj) and [florenzen/sugarj](https://github.com/florenzen/sugarj).
-
It would be great if `invokeMethod` could take the return type, similar to `public T get(String name, Class clazz)`
The below code which passes an integer to Python and expects an integer back fai…
-
- ✅ `Deno.writeTextFile(file, string, { append: true })`, – already works!
- ❌ `Deno.writeTextFile(file, string, { prepend: true })`, – no such method :(
It would be cool if `prepend` option would…
-
See the following code:
```fstar
assume val t1: Type0
assume val t2: t1 -> Type0
type pred (a:Type0) = a -> int -> int -> prop
val the_pred: x:t1 -> pred (t2 x)
let the_pred x y i1 i2 =
…
-
## Problem
There is nothing equivalent to `INSERT IGNORE` for MySQL. I have to do an upsert operation with `update: {}` to emulate. But it is not sufficient as it adds unwanted queries for ideally …
-
Right now, the package lacks support of async await. Should this be implemented?