Implementing (some of) the ActivityPub standard with Netlify functions, a post by Lewis Dale
Posts Tagged with 'development'
Notes on interacting with the Fediverse using the ActivityPub protocol
Notes on interacting with the Fediverse using the ActivityPub protocol
Bookmark of https://deno.com/blog/v1.28
Bookmark of https://jrsinclair.com/articles/2022/whats-so-great-about-functional-programming-anyway
Bookmark of https://www.makeuseof.com/java-nobody-want-learn-2022/
JavaScript owes part of its development to a retired open source language with a small community, called E.
Learnings from our recent survey and feedback from across our community. We'll discuss how we're addressing this feedback and the features to expect from Deno in the coming months.
Great features are in store for those who truly learn the editor
Recursion is one of the fundamental primitives of computer science. Many algorithms came to life by simplifying a general problem into recursive sub-problems. From the perspective of code, recursion implies that a function would call itself as part of its logic. Since stack is consumed for each instance of the function, excessive recursion depth will...