home.social

#v8 — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #v8, aggregated by home.social.

fetched live
  1. Have now got to a state where I can start the build of Google's #V8 JavaScript interpreter outside #NodeJS on #RISCV ... Took a while to get a valid toolchain and configuration in place here but it's now shugging away and is about 10% of the way through (Running under Ubuntu 25.10 for "reasons" in a qemu container on my x64 laptop...)

    Have taken laptop out of it's usual lower power mode and will leave it running overnight. Hopefully it'll be done by morning.

  2. Have now got to a state where I can start the build of Google's JavaScript interpreter outside on ... Took a while to get a valid toolchain and configuration in place here but it's now shugging away and is about 10% of the way through (Running under Ubuntu 25.10 for "reasons" in a qemu container on my x64 laptop...)

    Have taken laptop out of it's usual lower power mode and will leave it running overnight. Hopefully it'll be done by morning.

  3. Have now got to a state where I can start the build of Google's #V8 JavaScript interpreter outside #NodeJS on #RISCV ... Took a while to get a valid toolchain and configuration in place here but it's now shugging away and is about 10% of the way through (Running under Ubuntu 25.10 for "reasons" in a qemu container on my x64 laptop...)

    Have taken laptop out of it's usual lower power mode and will leave it running overnight. Hopefully it'll be done by morning.

  4. Have now got to a state where I can start the build of Google's #V8 JavaScript interpreter outside #NodeJS on #RISCV ... Took a while to get a valid toolchain and configuration in place here but it's now shugging away and is about 10% of the way through (Running under Ubuntu 25.10 for "reasons" in a qemu container on my x64 laptop...)

    Have taken laptop out of it's usual lower power mode and will leave it running overnight. Hopefully it'll be done by morning.

  5. Have now got to a state where I can start the build of Google's #V8 JavaScript interpreter outside #NodeJS on #RISCV ... Took a while to get a valid toolchain and configuration in place here but it's now shugging away and is about 10% of the way through (Running under Ubuntu 25.10 for "reasons" in a qemu container on my x64 laptop...)

    Have taken laptop out of it's usual lower power mode and will leave it running overnight. Hopefully it'll be done by morning.

  6. AMG V8 Confirmed for 2026: Mercedes vs BMW M5 Rivalry

    Article SummaryMercedes-AMG confirms new V8 models arrive before the end of 2026, starting with SUVs and reaching the…
    #Germany #DE #Europe #EU #Europa #BMW #amg #s68 #V8
    europesays.com/germany/69158/

  7. 🤦‍♂️ Kitesurf: The browser nobody asked for, especially not one running on Cloudflare's #V8 #isolates. Apparently, it's "agent-first," which makes you wonder if the agents are the only ones using it. 🤷‍♀️ Kudos to #Cloudflare for tackling the problem nobody knew existed! 🚀
    blog.cloudflare.com/kitesurf/ #Kitesurf #agent-first #web #development #innovation #HackerNews #ngated

  8. 🤦‍♂️ Kitesurf: The browser nobody asked for, especially not one running on Cloudflare's #V8 #isolates. Apparently, it's "agent-first," which makes you wonder if the agents are the only ones using it. 🤷‍♀️ Kudos to #Cloudflare for tackling the problem nobody knew existed! 🚀
    blog.cloudflare.com/kitesurf/ #Kitesurf #agent-first #web #development #innovation #HackerNews #ngated

  9. 🤦‍♂️ Kitesurf: The browser nobody asked for, especially not one running on Cloudflare's #V8 #isolates. Apparently, it's "agent-first," which makes you wonder if the agents are the only ones using it. 🤷‍♀️ Kudos to #Cloudflare for tackling the problem nobody knew existed! 🚀
    blog.cloudflare.com/kitesurf/ #Kitesurf #agent-first #web #development #innovation #HackerNews #ngated

  10. 🤦‍♂️ Kitesurf: The browser nobody asked for, especially not one running on Cloudflare's #V8 #isolates. Apparently, it's "agent-first," which makes you wonder if the agents are the only ones using it. 🤷‍♀️ Kudos to #Cloudflare for tackling the problem nobody knew existed! 🚀
    blog.cloudflare.com/kitesurf/ #Kitesurf #agent-first #web #development #innovation #HackerNews #ngated

  11. 🤦‍♂️ Kitesurf: The browser nobody asked for, especially not one running on Cloudflare's #V8 #isolates. Apparently, it's "agent-first," which makes you wonder if the agents are the only ones using it. 🤷‍♀️ Kudos to #Cloudflare for tackling the problem nobody knew existed! 🚀
    blog.cloudflare.com/kitesurf/ #Kitesurf #agent-first #web #development #innovation #HackerNews #ngated

  12. Объекты в JS не бесплатные

    Поговорим про микро-оптимизацию. Про, казалось бы, самую безобидную вещь: обычный {} . [object Object] выглядит почти бесплатной абстракцией. Создал объект, напихал полей в любом порядке, удалил ненужное, передал дальше и забыл. Но, внезапно, одинаковые для тебя объекты могут оказаться разными для V8, порядок присваиваний влияет на машинный код, а “безобидный” delete оставляет после себя совсем не пустое место. Для 99% систем это не имеет значения. А вот если у тебя hot path, через который проходят десятки тысяч объектов в секунду, или ты пишешь библиотечный код, стоит знать, что V8 на самом деле делает с твоими объектами. И чего V8 там делает?

    habr.com/ru/articles/1066944/

    #JavaScript #Nodejs #V8 #hidden_classes #inline_cache #object_shape #JITкомпиляция #оптимизация_производительности #микробенчмарки #dictionary_mode

  13. Объекты в JS не бесплатные

    Поговорим про микро-оптимизацию. Про, казалось бы, самую безобидную вещь: обычный {} . [object Object] выглядит почти бесплатной абстракцией. Создал объект, напихал полей в любом порядке, удалил ненужное, передал дальше и забыл. Но, внезапно, одинаковые для тебя объекты могут оказаться разными для V8, порядок присваиваний влияет на машинный код, а “безобидный” delete оставляет после себя совсем не пустое место. Для 99% систем это не имеет значения. А вот если у тебя hot path, через который проходят десятки тысяч объектов в секунду, или ты пишешь библиотечный код, стоит знать, что V8 на самом деле делает с твоими объектами. И чего V8 там делает?

    habr.com/ru/articles/1066944/

    #JavaScript #Nodejs #V8 #hidden_classes #inline_cache #object_shape #JITкомпиляция #оптимизация_производительности #микробенчмарки #dictionary_mode

  14. Объекты в JS не бесплатные

    Поговорим про микро-оптимизацию. Про, казалось бы, самую безобидную вещь: обычный {} . [object Object] выглядит почти бесплатной абстракцией. Создал объект, напихал полей в любом порядке, удалил ненужное, передал дальше и забыл. Но, внезапно, одинаковые для тебя объекты могут оказаться разными для V8, порядок присваиваний влияет на машинный код, а “безобидный” delete оставляет после себя совсем не пустое место. Для 99% систем это не имеет значения. А вот если у тебя hot path, через который проходят десятки тысяч объектов в секунду, или ты пишешь библиотечный код, стоит знать, что V8 на самом деле делает с твоими объектами. И чего V8 там делает?

    habr.com/ru/articles/1066944/

    #JavaScript #Nodejs #V8 #hidden_classes #inline_cache #object_shape #JITкомпиляция #оптимизация_производительности #микробенчмарки #dictionary_mode

  15. europesays.com/ro/247562/ Germanii au lansat noul Audi SQ9, cu motor V8, însă, din cauza normelor Euro 7, acest model nu fi disponibil în Europa | PiataAuto.md #7 #Afaceri #audi #benzina #Business #euro #europa #germani #indisponibil #lansat #model #motor #norme #nou #RO #Română #Romania #Romanian #sq9 #sua #v8

  16. Hooray for the V8 replay today. DJ Minghao you are too cool.

    #V8 #Livestream #Seventeen

  17. Hooray for the V8 replay today. DJ Minghao you are too cool.

    #V8 #Livestream #Seventeen

  18. Hooray for the V8 replay today. DJ Minghao you are too cool.

    #V8 #Livestream #Seventeen

  19. Hooray for the V8 replay today. DJ Minghao you are too cool.

    #V8 #Livestream #Seventeen

  20. Hooray for the V8 replay today. DJ Minghao you are too cool.

    #V8 #Livestream #Seventeen