https://github.com/golang/go/issues/73581 #GitHubIssues #GreenTea #GarbageCollector #MemoryLeaks #GitHubCopilot #HackerNews #ngated
Mais um dia de passagem do garbage collector
https://retropolis.com.br/2025/05/19/mais-um-dia-de-passagem-do-garbage-collector/
#MundoRetro #6502 #BenEater #CP437 #DEC #GarbageCollector #IBMPC110 #Intel80386 #KenShirriff #LLaMa2 #MicrosoftBASIC #MSDOS #PDP11 #RaymondChen #TCPIP #Venix
Clube do MS-DOS e assemelhados Raymond Chen fala de alguma coisa envolvendo a primeira década do Windows, já sabe, né? A gente para e lê. Agora, por exemplo, ele está falando dos usos dos ícones do moricons.dll, dos programas DOS que usam ícones no progman.exe e dos programas DOS que usam ícones no moricons.dll. Porque
In Java, the Garbage Collector (GC) is one of the most important components.
Read more 👉 https://lttr.ai/AYt5G
#GC #Java #JVM #garbageCollector #JvmMicrosoftContainerize #GarbageCollector #UltraLowLatencyApplications #ImportantComponents #DeepDiveDevjava #KeepingPauseTimes
Looking forward to playing with #JuliaLang 1.12, notably,
* Static, AOT, compilation with #juliac
* The #JET-based language server
* The #MMTK-based immix #GarbageCollector
Sabadaço do Garbage Collector de Retrópolis
https://retropolis.com.br/2025/04/05/sabadaco-do-garbage-collector-de-retropolis/
#MundoRetro #Commodore #Fax #FitaCassete #GarbageCollector #GravadorCassete #KenShirriff #Lotus123 #mainframe #MSDOS #PDP11 #Pentium #UNIX #Windows98
Ken Shirriff x Pentium Sim, isso mesmo, Ken Shirriff resolveu se meter nas profundezas do Pentium. Tem ele debulhando o ponto flutuante, os circuitos de adição, os circuitos de multiplicação por três e até mesmo os circuitos de microcódigo. E ainda teve tempo de escrever sobre a origem e a evolução do termo "mainframe". Links,
#GarbageCollector Saves #Newborn From #Dumpster - Now He Wants To #Adopt Her
G1 (Garbage First) GCUsage: General-purpose, large heap applications.Mechanism: Divides the heap into regions and focuses on collecting regions with the most garbage first.
Read more 👉 https://lttr.ai/AYt41
#GC #Java #JVM #garbageCollector #JvmMicrosoftContainerize #GarbageCollector #UltraLowLatencyApplications #ImportantComponents #DeepDiveDevjava #KeepingPauseTimes
Parallel GCUsage: Multi-threaded applications.Mechanism: Uses multiple threads to speed up GC operations, reducing pause times compared to Serial GC.
Read more 👉 https://lttr.ai/AUufr
#GC #Java #JVM #garbageCollector #JvmMicrosoftContainerize #GarbageCollector
In the first part, we prepared the project and fixed an initialization issue caused by the NativeAOT toolchain. In this second part, we’re going to start the implementation of our GC. The target for now is to build the simplest possible GC that can run basic .NET applications. This GC will only allocate memory and never free it, similar to Konrad Kokosa’s bump-pointer GC. The first step is to write the native interfaces we’re going to need.