hyper-haskell icon indicating copy to clipboard operation
hyper-haskell copied to clipboard

The strongly hyped Haskell interpreter.

Results 17 hyper-haskell issues
Sort by recently updated
recently updated
newest added

After opening a worksheet with associated `.hs` file (`Main` module) and too soon evaluating a cell, I get: ``` :2:1: Not in scope: `Hyper.displayIO' :3:1: Not in scope: `mooreImg' :5:38:...

Type: Enhancement

Apparently there is some kind of autoscale in the rendering process, which sometimes makes for absurd results: ```haskell -- Should fit on screen without scrolling, but does not. dia $...

I was very impressed by your demo of HyperHaskell at ICFP, Heinrich! I have just tried installing it (Mac 10.14.5, GHC 8.4.3) using cabal. The install went smoothly, but on...

Type: Maintenance

Currently when I alter the module imports I have to choose "Reload imports and options" from the "Evaluation" menu. I'd prefer to just hit Ctrl-Return like in the evaluation cells...

Currently hyper-haskell uses a custom JSON format for its notebooks. What about to also support loading Haskell modules, i.e. parsing LANGUAGE pragmas, import statements and top-level definitions? It would simplify...

Type: Enhancement

How about `Display` instances for lists and tuples? This would simplify displaying the results of functions that return multiple results. E.g. the tuple members could be displayed in tiers.

Type: Enhancement
help wanted
Type: Design Discussion

For `Hyper.Display` instances for container types it would be nicer to work on `Blaze.Html`. I could then call `Hyper.display` on the container elements and arrange the obtained HTML objects on...

Type: Design Discussion

I propose that Hyper.html takes a Blaze.Html type as input. This would mean that Hyper has to decide which HTML standard to use, but the current mixing of standards is...

Suppose I have generated the following plotly ``` Plotly.newPlot('myContour', [{"z":[[10,10.625,12.5,15.625,20],[5.625,6.25,8.125,11.25,15.625],[2.5,3.125,5,8.125,12.5],[0.625,1.25,3.125,6.25,10.625],[0,0.625,2.5,5.625,10]],"x":[-9,-6,-5,-3,-1],"type":"contour","orientation":"h","y":[0,1,4,5,7]}],{}, {displayModeBar: false}); ``` I can render this in my browser. Can it be rendered in a cell in HyperHaskell? I...

Type: Question