/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.jeremykun.com
| | schmidhuberj.de
3.9 parsecs away

Travel
| | In this blog post, I will talk about dynamic graphs, which will be the area of work in which I will start writing my master's thesis soon. While this blog post will be more mathematical than any of my other blog posts so far, I tried to make everything as beginner-friendly as possible. Even if you don't have any knowledge about theoretical computer science, or you are just getting started, this blog post should be understandable.
| | www.adamconrad.dev
3.4 parsecs away

Travel
| | Follow along with Steven Skiena's Fall 2018 algorithm course applied to the JavaScript language.
| | adrianmejia.com
2.5 parsecs away

Travel
| | JavaScript tutorials and web development articles including topics like NodeJS, Angular, VueJS, Data Structures and Algorithms.
| | boats.gitlab.io
22.8 parsecs away

Travel
| Today I realized a new crate called pin-cell. This crate contains a type called PinCell, which is a kind of cell that is similar to RefCell, but only can allow pinned mutable references into its interior. Right now, the crate is nightly only and no-std compatible. How is the API of PinCell different from RefCell? When you call borrow_mut on a RefCell, you get a type back that implements DerefMut, allowing you to mutate the interior value.