thezjy
thezjy
Subsetted fonts file has "hmtx table usability" issue when installing on Mac. Very strangely, the issue only occurs when running on Linux. On my local Mac, the same font and...
Code: ```elixir def list_course(_parent, args, _resolution) do Absinthe.Relay.Connection.from_query( Courses.Course, &Composure.Repo.all/1, args, max: 5 ) end ``` After I add the `max` option, the code works correctly, but dialyzer gives a...
The demo in allsorts-tools seems not to support non-roman chars. How to use the subsetting feature with character set like Chinese?
Got error "bash: clang: command not found" after running `make o3` on Ubuntu 20.04 LTS. Change the default `CC = clang` to `CC = gcc` then it works.
First I get the error: ``` PackagesNotFoundError: The following packages are not available from current channels: - pyqt Current channels: - https://conda.anaconda.org/conda-forge/osx-arm64 - https://conda.anaconda.org/conda-forge/noarch ``` which is solved by installing...
## Hot to reproduce rum version: 0.12.3 react & react-dom version: 17.0.2 ```clojure (defonce the-count (atom 0)) (rum/defc counter < rum/reactive { :did-mount (fn [] (println "did mount")) :should-update (fn...