-
-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Monthly Performance Meetings: 2022 #88
Comments
19 Jan 2022 Monthly meetingAttendees
Notes
|
16 Feb 2022 Monthly meetingAttendees
Notes
|
16 March 2022Attendees
Notes
|
16 April 2022Attendees
Notes
|
11 May 2022Attendees
Notes
|
8 June 2022Attendees
Notes
|
6 July 2022Attendees
Notes
Discussion of how to deal with memory leaks happened. What cocalc does is this. But WeakRef's can be even better... export function close(obj: object, omit?: Set<string>): void {
if (omit != null) {
Object.keys(obj).forEach(function (key) {
if (omit.has(key)) return;
if (typeof obj[key] == "function") return;
delete obj[key];
});
} else {
Object.keys(obj).forEach(function (key) {
if (typeof obj[key] == "function") return;
delete obj[key];
});
}
} This is similar to the disposable interface in Lumino. But with a more radical approach as it deletes all keys. |
3 August 2022Attendees
Notes
|
28 September 2022Attendees
Notes
|
26 October 2022Attendees
Notes
|
Here is a record of the agenda/minutes for our monthly meeting. Everyone is welcome to join.
jovyan
ZoomLet's avoid using this thread for discussion. If you'd like to discuss something in the minutes, open a separate issue and reference this thread.
Meeting Notes
The text was updated successfully, but these errors were encountered: