home.social

#pointer — Public Fediverse posts

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

  1. RE: mastodon.social/@Kletskous/116

    Daarna kun je dan doorschakelen naar #Pointer, waar hysterische nationalisten tekeer gaan tegen een #AZC in gemeentes waar ze niks te zoeken hebben.

    #NieuwLekkerland #Pointer #Defence

  2. RE: mastodon.social/@Kletskous/116

    Daarna kun je dan doorschakelen naar #Pointer, waar hysterische nationalisten tekeer gaan tegen een #AZC in gemeentes waar ze niks te zoeken hebben.

    #NieuwLekkerland #Pointer #Defence

  3. RE: mastodon.social/@Kletskous/116

    Daarna kun je dan doorschakelen naar #Pointer, waar hysterische nationalisten tekeer gaan tegen een #AZC in gemeentes waar ze niks te zoeken hebben.

    #NieuwLekkerland #Pointer #Defence

  4. RE: mastodon.social/@Kletskous/116

    Daarna kun je dan doorschakelen naar #Pointer, waar hysterische nationalisten tekeer gaan tegen een #AZC in gemeentes waar ze niks te zoeken hebben.

    #NieuwLekkerland #Pointer #Defence

  5. RE: mastodon.social/@Kletskous/116

    Daarna kun je dan doorschakelen naar #Pointer, waar hysterische nationalisten tekeer gaan tegen een #AZC in gemeentes waar ze niks te zoeken hebben.

    #NieuwLekkerland #Pointer #Defence

  6. Nu op NPO2. Het zijn steeds dezelfde mensen die opduiken bij lokale AZC demonstraties, met steeds dezelfde slogans over het beschermen van hun “eigen” (niet dus) leefomgeving. #pointer

    RE: https://bsky.app/profile/did:plc:cr3ydadzcsj5ewbfm3a6fhkt/post/3miitucvjxk2a

  7. Nu bij Pointer:

    De zorg in vrouwengevangenissen is abominabel geregeld. Jonge vrouw ging lopend de gevangenis in en kwam er in een rolstoel weer uit. Al haar lopende afspraken werden stopgezet.

    Ook bij medicatie worden ernstige fouten gemaakt.

    Eerder verscheen hier al een kritisch rapport over van de Klara Wigman Stichting:

    clara-wichmann.nl/nieuws/staat

    "Zorg voor gevangenen is voor de Tweede Kamer niet sexy."

    #Pointer #vrouwen ##NPO2

  8. Nu bij Pointer:

    De zorg in vrouwengevangenissen is abominabel geregeld. Jonge vrouw ging lopend de gevangenis in en kwam er in een rolstoel weer uit. Al haar lopende afspraken werden stopgezet.

    Ook bij medicatie worden ernstige fouten gemaakt.

    Eerder verscheen hier al een kritisch rapport over van de Klara Wigman Stichting:

    clara-wichmann.nl/nieuws/staat

    "Zorg voor gevangenen is voor de Tweede Kamer niet sexy."

    #Pointer #vrouwen ##NPO2

  9. Nu bij Pointer:

    De zorg in vrouwengevangenissen is abominabel geregeld. Jonge vrouw ging lopend de gevangenis in en kwam er in een rolstoel weer uit. Al haar lopende afspraken werden stopgezet.

    Ook bij medicatie worden ernstige fouten gemaakt.

    Eerder verscheen hier al een kritisch rapport over van de Klara Wigman Stichting:

    clara-wichmann.nl/nieuws/staat

    "Zorg voor gevangenen is voor de Tweede Kamer niet sexy."

    #Pointer #vrouwen ##NPO2

  10. Nu bij Pointer:

    De zorg in vrouwengevangenissen is abominabel geregeld. Jonge vrouw ging lopend de gevangenis in en kwam er in een rolstoel weer uit. Al haar lopende afspraken werden stopgezet.

    Ook bij medicatie worden ernstige fouten gemaakt.

    Eerder verscheen hier al een kritisch rapport over van de Klara Wigman Stichting:

    clara-wichmann.nl/nieuws/staat

    "Zorg voor gevangenen is voor de Tweede Kamer niet sexy."

    #Pointer #vrouwen ##NPO2

  11. Nu bij Pointer:

    De zorg in vrouwengevangenissen is abominabel geregeld. Jonge vrouw ging lopend de gevangenis in en kwam er in een rolstoel weer uit. Al haar lopende afspraken werden stopgezet.

    Ook bij medicatie worden ernstige fouten gemaakt.

    Eerder verscheen hier al een kritisch rapport over van de Klara Wigman Stichting:

    clara-wichmann.nl/nieuws/staat

    "Zorg voor gevangenen is voor de Tweede Kamer niet sexy."

    #Pointer #vrouwen ##NPO2

  12. Память в JavaScript: Stack и Heap

    Последние пару лет изменили то, как пишется код. Copilot, Cursor, ChatGPT, Claude - все это генерирует вполне работающий JavaScript быстрее, чем успеваешь сформулировать задачу. Это удобно. Но у этого удобства есть обратная сторона, сгенерированный код работает правильно в смысле делает что просили , но не всегда правильно в смысле не течет по памяти и не роняет прод под нагрузкой . Модели хорошо знают синтаксис и паттерны. Они значительно хуже разбираются в том, что происходит под капотом конкретного движка. Closure, захватывающий лишние данные. Event listener, который никогда не снимается. Объект, который непреднамеренно продлевает жизнь половине DOM дерева. Все это - настоящие ошибки, которые реально встречаются в проде и ни один линтер их не поймает. Чтобы замечать такие вещи при ревью, нужно понимать, как именно V8 хранит объекты и когда решает их удалить. Это не академическое знание - это инструмент, который меняет то, на что смотришь в коде. Эта серия состоит из трех частей. Первая - про то, как V8 вообще организует память, что такое Stack и Heap, чем они отличаются и что такое pointer. Вторая - про сборщик мусора, как он определяет, что живо, а что нет и как делает это, не останавливая программу надолго. Третья - практическое применение, откуда берутся утечки памяти, как их искать и как писать код, который не создает лишней работы для GC. Смотреть под капот

    habr.com/ru/articles/1003702/

    #v8 #javascript #память #garbage_collector_javascript #stack #heap #pointer #garbage_collector #nodejs #node

  13. Память в JavaScript: Stack и Heap

    Последние пару лет изменили то, как пишется код. Copilot, Cursor, ChatGPT, Claude - все это генерирует вполне работающий JavaScript быстрее, чем успеваешь сформулировать задачу. Это удобно. Но у этого удобства есть обратная сторона, сгенерированный код работает правильно в смысле делает что просили , но не всегда правильно в смысле не течет по памяти и не роняет прод под нагрузкой . Модели хорошо знают синтаксис и паттерны. Они значительно хуже разбираются в том, что происходит под капотом конкретного движка. Closure, захватывающий лишние данные. Event listener, который никогда не снимается. Объект, который непреднамеренно продлевает жизнь половине DOM дерева. Все это - настоящие ошибки, которые реально встречаются в проде и ни один линтер их не поймает. Чтобы замечать такие вещи при ревью, нужно понимать, как именно V8 хранит объекты и когда решает их удалить. Это не академическое знание - это инструмент, который меняет то, на что смотришь в коде. Эта серия состоит из трех частей. Первая - про то, как V8 вообще организует память, что такое Stack и Heap, чем они отличаются и что такое pointer. Вторая - про сборщик мусора, как он определяет, что живо, а что нет и как делает это, не останавливая программу надолго. Третья - практическое применение, откуда берутся утечки памяти, как их искать и как писать код, который не создает лишней работы для GC. Смотреть под капот

    habr.com/ru/articles/1003702/

    #v8 #javascript #память #garbage_collector_javascript #stack #heap #pointer #garbage_collector #nodejs #node

  14. Память в JavaScript: Stack и Heap

    Последние пару лет изменили то, как пишется код. Copilot, Cursor, ChatGPT, Claude - все это генерирует вполне работающий JavaScript быстрее, чем успеваешь сформулировать задачу. Это удобно. Но у этого удобства есть обратная сторона, сгенерированный код работает правильно в смысле делает что просили , но не всегда правильно в смысле не течет по памяти и не роняет прод под нагрузкой . Модели хорошо знают синтаксис и паттерны. Они значительно хуже разбираются в том, что происходит под капотом конкретного движка. Closure, захватывающий лишние данные. Event listener, который никогда не снимается. Объект, который непреднамеренно продлевает жизнь половине DOM дерева. Все это - настоящие ошибки, которые реально встречаются в проде и ни один линтер их не поймает. Чтобы замечать такие вещи при ревью, нужно понимать, как именно V8 хранит объекты и когда решает их удалить. Это не академическое знание - это инструмент, который меняет то, на что смотришь в коде. Эта серия состоит из трех частей. Первая - про то, как V8 вообще организует память, что такое Stack и Heap, чем они отличаются и что такое pointer. Вторая - про сборщик мусора, как он определяет, что живо, а что нет и как делает это, не останавливая программу надолго. Третья - практическое применение, откуда берутся утечки памяти, как их искать и как писать код, который не создает лишней работы для GC. Смотреть под капот

    habr.com/ru/articles/1003702/

    #v8 #javascript #память #garbage_collector_javascript #stack #heap #pointer #garbage_collector #nodejs #node

  15. Память в JavaScript: Stack и Heap

    Последние пару лет изменили то, как пишется код. Copilot, Cursor, ChatGPT, Claude - все это генерирует вполне работающий JavaScript быстрее, чем успеваешь сформулировать задачу. Это удобно. Но у этого удобства есть обратная сторона, сгенерированный код работает правильно в смысле делает что просили , но не всегда правильно в смысле не течет по памяти и не роняет прод под нагрузкой . Модели хорошо знают синтаксис и паттерны. Они значительно хуже разбираются в том, что происходит под капотом конкретного движка. Closure, захватывающий лишние данные. Event listener, который никогда не снимается. Объект, который непреднамеренно продлевает жизнь половине DOM дерева. Все это - настоящие ошибки, которые реально встречаются в проде и ни один линтер их не поймает. Чтобы замечать такие вещи при ревью, нужно понимать, как именно V8 хранит объекты и когда решает их удалить. Это не академическое знание - это инструмент, который меняет то, на что смотришь в коде. Эта серия состоит из трех частей. Первая - про то, как V8 вообще организует память, что такое Stack и Heap, чем они отличаются и что такое pointer. Вторая - про сборщик мусора, как он определяет, что живо, а что нет и как делает это, не останавливая программу надолго. Третья - практическое применение, откуда берутся утечки памяти, как их искать и как писать код, который не создает лишней работы для GC. Смотреть под капот

    habr.com/ru/articles/1003702/

    #v8 #javascript #память #garbage_collector_javascript #stack #heap #pointer #garbage_collector #nodejs #node

  16. Mouse improvements in Terminaux 8.1

    Since Terminaux 4.0, mouse support was added to make C# console applications more interactive. This was done by abstracting the implementations of both the Windows API for detecting mouse clicks in the terminal using the combination of PeekConsoleInput() and MOUSE_INPUT_RECORD, and the Linux method for mouse clicks using the SGR/X10 VT sequences that we have to parse ourselves. The end result is a single function that handles mouse and keyboard input on a ReadPointerOrKey() function, further branched to a non-blocking version.

    As a result, we’ve integrated mouse support to all kinds of interactive user interfaces within Terminaux, which resulted in both the library and Nitrocid handling all mouse input, as well as Terminaux programs having mouse support built-in without re-implementing support. However, there was room for improvements when it comes to the selection-based user interfaces.

    Terminaux 8.1, which will be released two weeks from now, will feature improvements to mouse support when it comes to the choice selection style TUIs, as well as the interactive selector TUIs. Starting from this version:

    • In the selector TUI, double-clicking on an item in either the first pane or the second pane will trigger the “submit” action, which, by default, is defined to an action bound to the Enter key. For example, in Nitrocid 0.2.0, if you double-click on an SMultivar settings entry in the second pane, the child settings entries underneath this entry will be revealed.
    • In both the selection style and the infobox selection input TUIs, double-clicking on an item in the list of choices will confirm the selection. This allows you to confirm your selection without accidentally selecting a wrong item, since those TUIs always show a list of choices.

    This is a behavioral change to the three affected Terminaux input components, which will land to Nitrocid 0.2.0 and 0.1.0 Service Pack 6 next month.

    Photo by Rainer Eli on Unsplash

    #Net #Net100 #Net80 #C #Console #ConsoleApp #ConsoleApplication #csharp #dotnet #Mouse #MousePointer #news #Pointer #Tech #Technology #terminal #terminaux #Terminaux8 #Terminaux81 #update

  17. Mouse improvements in Terminaux 8.1

    Since Terminaux 4.0, mouse support was added to make C# console applications more interactive. This was done by abstracting the implementations of both the Windows API for detecting mouse clicks in the terminal using the combination of PeekConsoleInput() and MOUSE_INPUT_RECORD, and the Linux method for mouse clicks using the SGR/X10 VT sequences that we have to parse ourselves. The end result is a single function that handles mouse and keyboard input on a ReadPointerOrKey() function, further branched to a non-blocking version.

    As a result, we’ve integrated mouse support to all kinds of interactive user interfaces within Terminaux, which resulted in both the library and Nitrocid handling all mouse input, as well as Terminaux programs having mouse support built-in without re-implementing support. However, there was room for improvements when it comes to the selection-based user interfaces.

    Terminaux 8.1, which will be released two weeks from now, will feature improvements to mouse support when it comes to the choice selection style TUIs, as well as the interactive selector TUIs. Starting from this version:

    • In the selector TUI, double-clicking on an item in either the first pane or the second pane will trigger the “submit” action, which, by default, is defined to an action bound to the Enter key. For example, in Nitrocid 0.2.0, if you double-click on an SMultivar settings entry in the second pane, the child settings entries underneath this entry will be revealed.
    • In both the selection style and the infobox selection input TUIs, double-clicking on an item in the list of choices will confirm the selection. This allows you to confirm your selection without accidentally selecting a wrong item, since those TUIs always show a list of choices.

    This is a behavioral change to the three affected Terminaux input components, which will land to Nitrocid 0.2.0 and 0.1.0 Service Pack 6 next month.

    Photo by Rainer Eli on Unsplash

    #Net #Net100 #Net80 #C #Console #ConsoleApp #ConsoleApplication #csharp #dotnet #Mouse #MousePointer #news #Pointer #Tech #Technology #terminal #terminaux #Terminaux8 #Terminaux81 #update

  18. Mouse improvements in Terminaux 8.1

    Since Terminaux 4.0, mouse support was added to make C# console applications more interactive. This was done by abstracting the implementations of both the Windows API for detecting mouse clicks in the terminal using the combination of PeekConsoleInput() and MOUSE_INPUT_RECORD, and the Linux method for mouse clicks using the SGR/X10 VT sequences that we have to parse ourselves. The end result is a single function that handles mouse and keyboard input on a ReadPointerOrKey() function, further branched to a non-blocking version.

    As a result, we’ve integrated mouse support to all kinds of interactive user interfaces within Terminaux, which resulted in both the library and Nitrocid handling all mouse input, as well as Terminaux programs having mouse support built-in without re-implementing support. However, there was room for improvements when it comes to the selection-based user interfaces.

    Terminaux 8.1, which will be released two weeks from now, will feature improvements to mouse support when it comes to the choice selection style TUIs, as well as the interactive selector TUIs. Starting from this version:

    • In the selector TUI, double-clicking on an item in either the first pane or the second pane will trigger the “submit” action, which, by default, is defined to an action bound to the Enter key. For example, in Nitrocid 0.2.0, if you double-click on an SMultivar settings entry in the second pane, the child settings entries underneath this entry will be revealed.
    • In both the selection style and the infobox selection input TUIs, double-clicking on an item in the list of choices will confirm the selection. This allows you to confirm your selection without accidentally selecting a wrong item, since those TUIs always show a list of choices.

    This is a behavioral change to the three affected Terminaux input components, which will land to Nitrocid 0.2.0 and 0.1.0 Service Pack 6 next month.

    Photo by Rainer Eli on Unsplash

    #Net #Net100 #Net80 #C #Console #ConsoleApp #ConsoleApplication #csharp #dotnet #Mouse #MousePointer #news #Pointer #Tech #Technology #terminal #terminaux #Terminaux8 #Terminaux81 #update

  19. Mouse improvements in Terminaux 8.1

    Since Terminaux 4.0, mouse support was added to make C# console applications more interactive. This was done by abstracting the implementations of both the Windows API for detecting mouse clicks in the terminal using the combination of PeekConsoleInput() and MOUSE_INPUT_RECORD, and the Linux method for mouse clicks using the SGR/X10 VT sequences that we have to parse ourselves. The end result is a single function that handles mouse and keyboard input on a ReadPointerOrKey() function, further branched to a non-blocking version.

    As a result, we’ve integrated mouse support to all kinds of interactive user interfaces within Terminaux, which resulted in both the library and Nitrocid handling all mouse input, as well as Terminaux programs having mouse support built-in without re-implementing support. However, there was room for improvements when it comes to the selection-based user interfaces.

    Terminaux 8.1, which will be released two weeks from now, will feature improvements to mouse support when it comes to the choice selection style TUIs, as well as the interactive selector TUIs. Starting from this version:

    • In the selector TUI, double-clicking on an item in either the first pane or the second pane will trigger the “submit” action, which, by default, is defined to an action bound to the Enter key. For example, in Nitrocid 0.2.0, if you double-click on an SMultivar settings entry in the second pane, the child settings entries underneath this entry will be revealed.
    • In both the selection style and the infobox selection input TUIs, double-clicking on an item in the list of choices will confirm the selection. This allows you to confirm your selection without accidentally selecting a wrong item, since those TUIs always show a list of choices.

    This is a behavioral change to the three affected Terminaux input components, which will land to Nitrocid 0.2.0 and 0.1.0 Service Pack 6 next month.

    Photo by Rainer Eli on Unsplash

    #Net #Net100 #Net80 #C #Console #ConsoleApp #ConsoleApplication #csharp #dotnet #Mouse #MousePointer #news #Pointer #Tech #Technology #terminal #terminaux #Terminaux8 #Terminaux81 #update

  20. Mouse improvements in Terminaux 8.1

    Since Terminaux 4.0, mouse support was added to make C# console applications more interactive. This was done by abstracting the implementations of both the Windows API for detecting mouse clicks in the terminal using the combination of PeekConsoleInput() and MOUSE_INPUT_RECORD, and the Linux method for mouse clicks using the SGR/X10 VT sequences that we have to parse ourselves. The end result is a single function that handles mouse and keyboard input on a ReadPointerOrKey() function, further branched to a non-blocking version.

    As a result, we’ve integrated mouse support to all kinds of interactive user interfaces within Terminaux, which resulted in both the library and Nitrocid handling all mouse input, as well as Terminaux programs having mouse support built-in without re-implementing support. However, there was room for improvements when it comes to the selection-based user interfaces.

    Terminaux 8.1, which will be released two weeks from now, will feature improvements to mouse support when it comes to the choice selection style TUIs, as well as the interactive selector TUIs. Starting from this version:

    • In the selector TUI, double-clicking on an item in either the first pane or the second pane will trigger the “submit” action, which, by default, is defined to an action bound to the Enter key. For example, in Nitrocid 0.2.0, if you double-click on an SMultivar settings entry in the second pane, the child settings entries underneath this entry will be revealed.
    • In both the selection style and the infobox selection input TUIs, double-clicking on an item in the list of choices will confirm the selection. This allows you to confirm your selection without accidentally selecting a wrong item, since those TUIs always show a list of choices.

    This is a behavioral change to the three affected Terminaux input components, which will land to Nitrocid 0.2.0 and 0.1.0 Service Pack 6 next month.

    Photo by Rainer Eli on Unsplash

    #Net #Net100 #Net80 #C #Console #ConsoleApp #ConsoleApplication #csharp #dotnet #Mouse #MousePointer #news #Pointer #Tech #Technology #terminal #terminaux #Terminaux8 #Terminaux81 #update

  21. De politie zegt altijd dat het geweld met de jaarwisseling ongekend is. Dan moeten nieuwsmedia zelf uitzoeken of het erger of minder erg is dan de afgelopen jaren. In mijn beleving was het 40 jaar geleden (met veel gewonden en soms doden bij de kerstbomen jacht) veel erger maar dat hoor ik nergens. #1vandaag #pointer

  22. De politie zegt altijd dat het geweld met de jaarwisseling ongekend is. Dan moeten nieuwsmedia zelf uitzoeken of het erger of minder erg is dan de afgelopen jaren. In mijn beleving was het 40 jaar geleden (met veel gewonden en soms doden bij de kerstbomen jacht) veel erger maar dat hoor ik nergens. #1vandaag #pointer

  23. De politie zegt altijd dat het geweld met de jaarwisseling ongekend is. Dan moeten nieuwsmedia zelf uitzoeken of het erger of minder erg is dan de afgelopen jaren. In mijn beleving was het 40 jaar geleden (met veel gewonden en soms doden bij de kerstbomen jacht) veel erger maar dat hoor ik nergens. #1vandaag #pointer

  24. De politie zegt altijd dat het geweld met de jaarwisseling ongekend is. Dan moeten nieuwsmedia zelf uitzoeken of het erger of minder erg is dan de afgelopen jaren. In mijn beleving was het 40 jaar geleden (met veel gewonden en soms doden bij de kerstbomen jacht) veel erger maar dat hoor ik nergens. #1vandaag #pointer