HackerTrans
TopNewTrendsCommentsPastAskShowJobs

jpavel2

no profile record

Submissions

WASM memory64 reaches stage 4

github.com
4 points·by jpavel2·2 ปีที่แล้ว·0 comments

comments

jpavel2
·ปีที่แล้ว·discuss
I absolutely love this project - for years I'd been using a homegrown s-exp to MathML translator, but your project is both more intuitive and capable.

mathup's tiny, clean API makes it easy to integrate the project in all sorts of processing workflows, both in-browser and scripting.
jpavel2
·2 ปีที่แล้ว·discuss
I'm not seeing this local scope leak with bash 5.2.15. The below script works as I'd expect:

  #!/bin/bash
  
  declare -A map1=([x]=2)
  echo "1. Global scope map1[x]: ${map1[x]}"
  
  func1() {
      echo " * Enter func1"
      local -A map1
      map1[x]=3
      echo "   Local scope map1[x]: ${map1[x]}"
  }
  
  func1
  
  echo "2. Global scope map1[x]: ${map1[x]}"
outputting

  1. Global scope map1[x]: 2
   * Enter func1
     Local scope map1[x]: 3
  2. Global scope map1[x]: 2
jpavel2
·3 ปีที่แล้ว·discuss
If you're a DeluxePaint fan, then GrafX2 is the way to go these days.