"One heap" just means they share a marking phase to kill cross-language cycles.
If JS points to a C++ DOM node, and that C++ node holds a JS event listener, standard ref-counting leaks instantly.
They don't share memory pages (V8 moves objects, Oilpan C++ is pinned). They just pass the tracer back and forth: V8 marks JS -> hits a C++ wrapper -> hands off to Oilpan -> Oilpan traces C++ -> hands JS refs back to V8.
Comparing it to the JVM misses the point. You can't run a moving GC on massive C++ codebases. Oilpan is just there to end the nightmare of UAFs and manual cycle-breaking.
As a student, I went through a critical period of tiredness and fatigue (mostly because of late-night studying before exams). After doing some research, I was surprised to see that not only students are facing constant tiredness, but also workers — particularly remote workers.
I really enjoy solving problems (I chose CS for this at the start, though it’s not exactly what I expected). That’s why I want to create a great solution to this issue.
And why am I telling you this? You may already know — but I made a small survey to help me better understand people who are facing tiredness.
Thanks for reading. (btw it takes a maximum of 2 min).
Is it normal to feel tired all day... As a student in a CS major, experiencing tiredness all week long has just become a "common" thing. Just like all of my friends...
This is why I am writing today — I am really trying to solve this endless problem. For instance, I feel that many people are experiencing the same thing, but not for the same reasons.
This is why I made this little survey; I want to understand the subject better to find a solution to this...
You have the link — it's anonymous and free. Have a great day!
Well it is like eating a bowl of ice cream or two every day, and I only take half of the recommended “servings” at a time, just shake it right up in a 24 oz shaker with water and it’s good to go!
I stay active and all that, so it works for me.
Before all of this I was having a hard time keeping my energy levels up, this works for me!
J'ai toujours adoré ce sport. En 15 ans de jeu, j'ai compris une chose essentielle, c'est en jouant que l'on progresse.
Voulant toujours progresser rien n'est plus frustrant que de régresser. Alors que dire des vacances à l'étranger où il est presque impossible de trouver des partenaires adaptés...
J'ai alors créer ma propre application pour trouver des partenaires de tennis peu importe votre niveau, votre âge, votre localisation.
Si vous rencontrez le même problème, n'hésitez pas à me contacter. Je souhaite vraiment faire évoluer cette plateforme avec des utilisateurs de confiance avec lesquels je peux avoir un retour honnête et sérieux.
For instance I am only launching the app in France. But don't worry it will scale fast and I am sure I will open it to the world.But here is an english version for very early world adopters :
I’ve always loved this sport. After 15 years of playing, I’ve realized one essential truth: the only way to improve is by playing.
And since I’m always striving to progress, nothing is more frustrating than feeling like I’m going backwards. So imagine how it feels when you’re abroad on vacation, and it’s nearly impossible to find the right partners to play with...
That’s why I created my own app — to connect tennis players, no matter their level, age, or location.
If you’ve ever faced the same problem, feel free to reach out. I truly want to grow this platform with trustworthy players who can give me honest and valuable feedback.
I autotranlated that, and it sounded interesting. I agree that for this app it makes sense to start local, to get enough matches.
Where are the most common vacation countries abroad from France? It may be good to add more languages for international trips. My recommendation is to add an English translation and post again. [Hi from Argentina! Most people here know something and English, but there is a lot of variation in something.]
Feature request?: Perhaps show in the front page the cities of the match requests to encourage people to sign in?
If JS points to a C++ DOM node, and that C++ node holds a JS event listener, standard ref-counting leaks instantly.
They don't share memory pages (V8 moves objects, Oilpan C++ is pinned). They just pass the tracer back and forth: V8 marks JS -> hits a C++ wrapper -> hands off to Oilpan -> Oilpan traces C++ -> hands JS refs back to V8.
Comparing it to the JVM misses the point. You can't run a moving GC on massive C++ codebases. Oilpan is just there to end the nightmare of UAFs and manual cycle-breaking.
reply