Nicola Squartini

Results 12 issues of Nicola Squartini

It was proposed in https://github.com/tensor5/haskell-happstack/issues/11 to add `systemd` service file to the `haskell-gitit` Arch Linux package. We agreed that this issue should be discussed upstream. We think that there should...

This is done in the [`electron_gtk3`](https://github.com/tensor5/arch-atom/tree/electron_gtk3) branch. Atom and Electron's default app crash on keypress. No problem arises during the build of libchromiumcontent, but there are some warnings from Electron:...

We disabled the use of system `protobuf` in Electron 1.3 due to this error: ``` [227/13300] ACTION Generating download_file_types.pb. FAILED: gen/chrome/browser/resources/safe_browsing/download_file_types.pb cd ../../chrome; python browser/resources/safe_browsing/gen_file_type_proto.py -w -i browser/resources/safe_browsing/download_file_types.asciipb -o ../out/Release/gen/chrome/browser/resources/safe_browsing/download_file_types.pb...

Electron apps are usually packaged with [`asar`](https://github.com/electron/asar), as explained [here](http://electron.atom.io/docs/tutorial/application-packaging/). In Atom [we disabled it](https://github.com/tensor5/arch-atom/blob/master/atom/PKGBUILD#L41) because the package [`asar-require`](https://github.com/electron/asar-require) didn't work with new Node. This has been fixed in version...

Since v0.37.0, Electron uses Chromium 49 which causes the final link of libchromiumcontent to fail with: ``` ../../mojo/shell/public/cpp/initialize_base_and_icu.cc:40: error: undefined reference to 'base::i18n::InitializeICUFromRawMemory(unsigned char const*)' ``` For this reason we...

### Is there an existing issue for this? - [X] I have searched the existing issues ### What is the issue? I'm trying to install Linkerd using the Helm chart,...

bug
area/cni
env/cillium

I structured my TypeScript NodeJS app as ES modules (`"type": "module"` in package.json). This is the output of `testyts`: ``` An error occured while executing the following command: /usr/bin/node /node_modules/.bin/testyts....

bug

Updated dependencies and migrated.

Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action. ``` Flake lock file updates: • Updated input 'flake-utils': 'github:numtide/flake-utils/c0e246b9b83f637f4681389ecabcb2681b4f3af0' (2022-08-07) → 'github:numtide/flake-utils/5aed5285a952e0b949eb3ba02c12fa4fcfef535f' (2022-11-02) • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/767542707d394ff15ac1981e903e005ba69528b5' (2022-09-18) → 'github:NixOS/nixpkgs/227de2b3bbec142f912c09d5e8a1b4e778aa54fb' (2022-11-30)...

Suppose you have two files in your working directory: `test1.js`: ``` javascript /*jslint browser, this */ document.createElement("div"); console.log(this); ``` and `test2.js`: ``` javascript document.createElement("div"); console.log(this); ``` `jslint --edition=es6 test1.js test2.js`...