SPONSORED BY Lantern Cloud 👯♀️
Vector database on top of Postgres for AI
❓ CHALLENGE
Vector database on top of Postgres for AI
const a = { value: 1 };
const b = Object.create(a);
b.value = 2;
console.log(b.value);
console.log(a.value);
Please open Telegram to view this post
VIEW IN TELEGRAM
👍3
🤔13❤6🤣5👍4🔥3🤩1
This media is not supported in your browser
VIEW IN TELEGRAM
SPONSORED BY Lantern Cloud 👯♀️
Vector database on top of Postgres for AI
🌲 Node.js Adds Experimental Support for TypeScript
Wes Bos
Vector database on top of Postgres for AI
Wes Bos
Please open Telegram to view this post
VIEW IN TELEGRAM
👍6🤣4❤3🔥1
SPONSORED BY Lantern Cloud 👯♀️
Vector database on top of Postgres for AI
❓ CHALLENGE
Vector database on top of Postgres for AI
let count = 0;
const counter = (function() {
count = 0;
return function() {
count += 1;
return count;
};
})();
count = 10;
counter();
console.log(count);
Please open Telegram to view this post
VIEW IN TELEGRAM
🤩6👍3🔥2❤1🤔1
SPONSORED BY Lantern Cloud 👯♀️
Vector database on top of Postgres for AI
🥹😂😆emoji-picker-element: A Lightweight Emoji Picker
An emoji picking control, packaged as a Web Component. You can also add custom emoji to it. GitHub repo.
Nolan Lawson
Vector database on top of Postgres for AI
🥹😂😆emoji-picker-element: A Lightweight Emoji Picker
An emoji picking control, packaged as a Web Component. You can also add custom emoji to it. GitHub repo.
Nolan Lawson
Please open Telegram to view this post
VIEW IN TELEGRAM
❤3🔥3👍2
SPONSORED BY Lantern Cloud 👯♀️
Vector database on top of Postgres for AI
❓ CHALLENGE
Vector database on top of Postgres for AI
const target = {
age: 30
};
const handler = {
get: function(obj, prop) {
return obj[prop]++;
}
};
const proxy = new Proxy(target, handler);
console.log(proxy.age);
console.log(target.age);
console.log(proxy.age);
Please open Telegram to view this post
VIEW IN TELEGRAM
👍8🤔7🔥4❤3
🤔8👍7❤5
SPONSORED BY Lantern Cloud 👯♀️
Vector database on top of Postgres for AI
🥶 A Different Way to Think About TypeScript
“a very expressive way to operate over sets, and using those sets to enforce strict compile time checks”
Robby Pruzan
Vector database on top of Postgres for AI
“a very expressive way to operate over sets, and using those sets to enforce strict compile time checks”
Robby Pruzan
Please open Telegram to view this post
VIEW IN TELEGRAM
👍5❤3🔥3
SPONSORED BY Lantern Cloud 👯♀️
Vector database on top of Postgres for AI
❓ CHALLENGE
Vector database on top of Postgres for AI
let obj1 = { key: 'value1' };
let obj2 = { key: 'value2' };
const weakMap = new WeakMap();
weakMap.set(obj1, 'data1');
weakMap.set(obj2, 'data2');
obj1 = null;
setTimeout(() => {
console.log(weakMap.has(obj1));
console.log(weakMap.has(obj2));
}, 100);
Please open Telegram to view this post
VIEW IN TELEGRAM
❤5👍2🤔2🤩1
🔥11👍7🤔6❤3
SPONSORED BY Lantern Cloud 👯♀️
Vector database on top of Postgres for AI
😆 My code after the refactoring
Vector database on top of Postgres for AI
Please open Telegram to view this post
VIEW IN TELEGRAM
🤣17❤3👍3
SPONSORED BY Lantern Cloud 👯♀️
Vector database on top of Postgres for AI
❓ CHALLENGE
Vector database on top of Postgres for AI
const target = {
secret: "hidden",
reveal: "nothing"
};
const handler = {
get: function(obj, prop, receiver) {
if (prop === "secret") {
return "revealed";
}
return Reflect.get(...arguments);
}
};
const proxy = new Proxy(target, handler);
with (proxy) {
console.log(secret);
console.log(reveal);
}
Please open Telegram to view this post
VIEW IN TELEGRAM
❤2
What is the output?
Anonymous Quiz
30%
hidden nothing
49%
revealed nothing
14%
hidden revealed
7%
revealed revealed
🔥8🤔5👍4❤2
CHALLENGE
function* evenNumbers() {
let num = 0;
while (true) {
yield num;
num += 2;
}
}
const gen = evenNumbers();
const evens = Array.from({ length: 4 }, () => gen.next().value).map(n => n + 1);
console.log(evens);
👍2
What is the otuput?
Anonymous Quiz
33%
[1, 3, 5, 7]
36%
[2, 4, 6, 8]
22%
[0, 2, 4, 6]
9%
[1, 2, 3, 4]
🤣12👍8🤩5🔥3
SPONSORED BY Lantern Cloud 👯♀️
Vector database on top of Postgres for AI
This is a treasure!
✌️ Do you have any (old or new) Javascript book laying around? We want to see some pictures.
Share with us
Vector database on top of Postgres for AI
This is a treasure!
Share with us
Please open Telegram to view this post
VIEW IN TELEGRAM
👍13❤4🔥2
Please open Telegram to view this post
VIEW IN TELEGRAM
👍11🤔5🔥3❤1
This media is not supported in your browser
VIEW IN TELEGRAM
SPONSORED BY Lantern Cloud 👯♀️
Vector database on top of Postgres for AI
🆒 Projects on roadmap.sh
Projects are a fantastic way to validate your learning and solidify your knowledge. We're thrilled to introduce projects across all of our 50+ roadmaps!
We're starting with the backend roadmap, which now features 18 project ideas of varying difficulty levels. We'll gradually add projects to all our roadmaps making our roadmaps even more powerful.
Kamran Ahmed
Vector database on top of Postgres for AI
Projects are a fantastic way to validate your learning and solidify your knowledge. We're thrilled to introduce projects across all of our 50+ roadmaps!
We're starting with the backend roadmap, which now features 18 project ideas of varying difficulty levels. We'll gradually add projects to all our roadmaps making our roadmaps even more powerful.
Kamran Ahmed
Please open Telegram to view this post
VIEW IN TELEGRAM
❤10👍2🤩1