These things are (were) metaspaces.
| diff --git a/src/electron-main.ts b/src/electron-main.ts | |
| index 8ff217f..e9a33f3 100644 | |
| --- a/src/electron-main.ts | |
| +++ b/src/electron-main.ts | |
| @@ -21,6 +21,7 @@ import { | |
| session, | |
| protocol, | |
| desktopCapturer, | |
| + WebContents, | |
| } from "electron"; |
(Transcript of the audio of https://youtu.be/OyuqM7RbX5E, thanks to OpenAI's Whisper turbo model and some minor tweaks and fixups)
Hi everyone, and welcome to Matrix Live Season 11 Episode 7 where you are stuck with me, Matthew, Project Lead for Matrix. I guess I'm going to be wearing both Matrix and Element CEO hats in this week's recording and I will try to identify which hat I'm wearing at any given point.
What I wanted to talk about this week is that there is clearly a lot of unhappiness being expressed out there about Matrix and Element this week. I think we've basically seen a blog post a day, sometimes twice, ending up on the front page of Hacker News or Lobste.rs or wherever, where folks are expressing quite reasonable disappointment and irritation at where Matrix and Element are at the moment. And so I basically wanted to try to respond, so was thinking of putting out a blog post to try to articulate this a bi
(Context: this is a lightly edited transcript of a self-appraisal I posted as Matrix project lead into the TWIM offtopic room a few months ago: https://matrix.to/#/!xALORqBdeiSfgdrmUb:bpulse.org/$4bGbRTxNAa4inTTo8zb5rQnmU5HQCyF3J0poX5qnTw8?via=matrix.org&via=envs.net&via=element.io, posted as a gist here so I could link to it from https://news.ycombinator.com/item?id=44621077 for the benefit of folks who might not want to follow a permalink).
i spend quite a lot of time talking about the things i've screwed up (c.f. much of my FOSDEM talk this year: https://youtu.be/lkCKhP1jxdk?t=740)
fwiw, a current snapshot of things i feel i've got wrong would look like this:
| #!/usr/bin/env python3 | |
| import requests | |
| import pandas as pd | |
| import matplotlib.pyplot as plt | |
| # Replace these with your own repository details and personal access token | |
| GITHUB_TOKEN = 'hunter42' | |
| REPO_OWNER = 'matrix-org' | |
| REPO_NAME = 'matrix-doc' |
The problem is that rustc emits synthetic libraries (symbols.o and lib.rmeta) which Apple's ld then chokes on when targetting aarch64-apple-ios-macabi, as they lack an LC_BUILD_VERSION load command to identify them as being intended for use with Catalyst.
The errors produced look like:
ld: in /Users/matthew/workspace/matrix-rust-sdk/target/aarch64-apple-ios-macabi/dbg/deps/libstatic_assertions-fdafb4b8ba800a8a.rlib(lib.rmeta), building for Mac Catalyst, but linking in object file built for , file '/Users/matthew/workspace/matrix-rust-sdk/target/aarch64-apple-ios-macabi/dbg/deps/libstatic_assertions-fdafb4b8ba800a8a.rlib' for architecture arm64
| import olm from "olm"; | |
| import sdk from "matrix-js-sdk"; | |
| import { MatrixEvent } from "matrix-js-sdk"; | |
| import { LocalStorage } from "node-localstorage"; | |
| global.Olm = olm; | |
| const myUserId = "@matthewtest94:matrix.org"; | |
| const myAccessToken = "secret"; | |
| const matrixClient = sdk.createClient({ |
| import olm from "olm"; | |
| import sdk from "matrix-js-sdk"; | |
| import { LocalStorage } from "node-localstorage"; | |
| global.Olm = olm; | |
| const myUserId = "@matthewtest94:matrix.org"; | |
| const myAccessToken = "secret"; | |
| const matrixClient = sdk.createClient({ | |
| baseUrl: "http://matrix.org", |
| t='t9688-1300128700_757269739_329105_458837962_294315883_1132696_45078565_22513400_82822' | |
| while true | |
| do curl -s 'https://matrix-client.matrix.org/_matrix/client/r0/rooms/!pcfWjiETvnVuspPLPl:mozilla.org/messages?from='$t'&limit=20&dir=b&filter=%7B%22lazy_load_members%22%3Atrue%7D' -H "authorization: Bearer $at" > msg.json >> msgs.json | |
| cat msg.json | jq '.chunk[].origin_server_ts' | |
| t=`cat msg.json | jq -r '.end'` | |
| sleep 0.5 | |
| done |
| dendrite-sw.js: v0.0.2 SW init | |
| 19:34:08.387 dendrite-sw.js?6ec0:45 dendrite-sw.js: v0.0.2 starting dendrite.wasm... | |
| 19:34:11.092 wasm_exec.js?3f15:44 dendrite.js starting... | |
| 19:34:11.092 p2pLocalNode.js?8092:42 p2plocalnode called with org.matrix.p2p.experiment and /dns4/rendezvous.matrix.org/tcp/8443/wss/p2p-websocket-star/ with seed | |
| 19:34:11.092 p2pLocalNode.js?8092:49 init existing ed25519 key from seed... | |
| 19:34:11.093 dendrite-sw.js?6ec0:51 dendrite-sw.js: v0.0.2 claiming open browser tabs | |
| 19:34:11.116 p2pLocalNode.js?8092:52 Public key bytes: Ed25519PublicKey | |
| 19:34:11.117 p2pLocalNode.js?8092:61 added PeerInfo | |
| 19:34:11.117 p2pLocalNode.js?8092:62 id: {"id":"12D3KooWR7weBT7ecN5tQMyAESw7tWpcENq7gW7rMeCZaVg646Vj","privKey":"CAESYIw1dXRfV9XomJMZDCso+BgK2QMK0PhpFPaIhCI1x3eW42AGlvThjJ3T/7cAw0WApfI8WDPbqEhL6Ubff8N7rt7jYAaW9OGMndP/twDDRYCl8jxYM9uoSEvpRt9/w3uu3g==","pubKey":"CAESIONgBpb04Yyd0/+3AMNFgKXyPFgz26hIS+lG33/De67e"} | |
| 19:34:11.124 p2pLocalNode.js?8092:122 p2p starting now |