Skip Navigation
Posts
148
Comments
95
Joined
2 yr. ago
  • Source: https://lwn.net/ml/all/CAHk-=whNGNVnYHHSXUAsWds_MoZ-iEgRMQMxZZ0z-jY4uHT+Gg@mail.gmail.com/

    Ok, lots of Russian trolls out and about. It's entirely clear why the change was done, it's not getting reverted, and using multiple random anonymous accounts to try to "grass root" it by Russian troll factories isn't going to change anything. And FYI for the actual innocent bystanders who aren't troll farm accounts - the "various compliance requirements" are not just a US thing. If you haven't heard of Russian sanctions yet, you should try to read the news some day. And by "news", I don't mean Russian state-sponsored spam. As to sending me a revert patch - please use whatever mush you call brains. I'm Finnish. Did you think I'd be supporting Russian aggression? Apparently it's not just lack of real news, it's lack of history knowledge too. Linus

  • I like super simple things that I can use from a single window of my editor or IDE. Most frequently I use vscodium, I use this https://marketplace.visualstudio.com/items?itemName=unjinjang.rest-api-client

  • Hide to tray has been requested by users for 20 years. It even has been promised multiple times.

  • Kubernetes @programming.dev
    agilob @programming.dev
    Programming @programming.dev
    agilob @programming.dev

    The Thirty Million Line Problem

    Java @programming.dev
    agilob @programming.dev
    www.infoq.com Java 24 to Reduce Object Header Size and Save Memory

    JEP 450 (Compact Object Headers) has been targeted for delivery in JDK 24. This currently experimental feature optimizes heap utilization by shrinking the size of the mandatory object header in HotSpot. This should reduce overall heap size, improve density of deployments, and increase data locality.

    Java 24 to Reduce Object Header Size and Save Memory
    Java @programming.dev
    agilob @programming.dev
    www.infoq.com Java 24 to Reduce Object Header Size and Save Memory

    JEP 450 (Compact Object Headers) has been targeted for delivery in JDK 24. This currently experimental feature optimizes heap utilization by shrinking the size of the mandatory object header in HotSpot. This should reduce overall heap size, improve density of deployments, and increase data locality.

    Java 24 to Reduce Object Header Size and Save Memory
  • I have an apostrophe and it’s super annoying as some companies see it as a SQL injection hack and sanitize it.

    My surname contains a character that's only present in the Polish alphabet. Writing my full name as is broke lots of systems, encoding, printed paperwork and even British naturalisation application on Home Office website. My surname was part of my username back at uni, and everytime I tried to login on Windows, it would crash underlying LDAP server, logging everyone in the classroom out and forcing ICT to restart the server.

  • How is your son X Æ A-12?

  • It was my turn to post it this week

  • I would like to confine it to firms using AI recruiting tools

    and actively do damage to companies that don't.

  • DevOps @programming.dev
    agilob @programming.dev
    berthub.eu Cyber Security: A Pre-War Reality Check - Bert Hubert's writings

    This is a lightly edited transcript of my presentation today at the ACCSS/NCSC/Surf seminar ‘Cyber Security and Society’. I want to thank the organizers for inviting me to their conference & giving me a great opportunity to talk about something I worry about a lot. Here are the original slides with ...

    Cyber Security: A Pre-War Reality Check - Bert Hubert's writings
    Kubernetes @programming.dev
    agilob @programming.dev
    Performance @programming.dev
    agilob @programming.dev
    Linux @programming.dev
    agilob @programming.dev

    To be clear, I don't blame the poster of this comment at all for the content of their post – this is accepted as "common knowledge" by a lot of Linux sysadmins and is probably one of the most likely things that you will hear from one if you ask them to talk about swap. It is unfortunately also, however, a misunderstanding of the purpose and use of swap, especially on modern systems.

  • I'm not sure if you understand what swap actually is, because even machines with 1Tb of RAM have swap partitions, just in case read this post from a developer working on swap module in Linux https://chrisdown.name/2018/01/02/in-defence-of-swap.html

  • Java @programming.dev
    agilob @programming.dev

    Creating Asynchronous Applications with Virtual Threads Venkat Subramaniam BackEnd

    Java @programming.dev
    agilob @programming.dev

    Continuations: The magic behind virtual threads in Java by Balkrishna Rawool @ Spring I/O 2024

    Programming @programming.dev
    agilob @programming.dev
    www.ietf.org New UUID Formats

    This document presents new time-based UUID formats which are suited for use as a database key. A common case for modern applications is to create a unique identifier for use as a primary key in a database table. This identifier usually implements an embedded timestamp th...

    This document presents new time-based UUID formats which are suited for use as a database key.

    Programming @programming.dev
    agilob @programming.dev
    www.ietf.org Universally Unique IDentifiers (UUID)

    This specification defines the UUIDs (Universally Unique IDentifiers) and the UUID Uniform Resource Name (URN) namespace. UUIDs are also known as GUIDs (Globally Unique IDentifiers). A UUID is 128 bits long and is intended to guarantee uniqueness across space and time. UUIDs were originally used in...

    This specification defines the UUIDs (Universally Unique IDentifiers) and the UUID Uniform Resource Name (URN) namespace. UUIDs are also known as GUIDs (Globally Unique IDentifiers). A UUID is 128 bits long and is intended to guarantee uniqueness across space and time. UUIDs were originally used in the Apollo Network Computing System and later in the Open Software Foundation's (OSF) Distributed Computing Environment (DCE), and then in Microsoft Windows platforms.

    Performance @programming.dev
    agilob @programming.dev
    Programming @programming.dev
    agilob @programming.dev
    Java @programming.dev
    agilob @programming.dev
  • The Linux kernel uses the CPU default scheduler, CFS,

    Linux 6.6 (which recently landed on Debian) changed the scheduled to EEVDF, which is pretty widely criticized for poor tuning. 100% busy which means the scheduler is doing good job. If the CPU was idle and compilation was slow, than we would look into task scheduling and scheduling of blocking operations.

  • EDIT: Tried nice -n +19, still lags my other programs.

    yea, this is wrong way of doing things. You should have better results with CPU-pinning. Increasing priority for YOUR threads that interact all the time with disk io, memory caches and display IO is the wrong end of the stick. You still need to display compilation progress, warnings, access IO.

    There's no way of knowing why your system is so slow without profiling it first. Taking any advice from here or elsewhere without telling us first what your machine is doing is missing the point. You need to find out what the problem is and report it at the source.

  • The CPU is already 100% busy, so changing number of compilation jobs won't help, CPU can't go faster than 100%.

  • Performance @programming.dev
    agilob @programming.dev
    maarten.mulders.it Measure Your Maven Build · Maarten on IT

    This blog introduces three mechanisms to investigate the execution time of a Maven build. Having a reliable way to measure build execution time can help identify bottlenecks. This in turn helps making effective improvements, thereby contributing to higher developer productivity. Find out how to effe...

    Measure Your Maven Build · Maarten on IT
    Java @programming.dev
    agilob @programming.dev

    Efficient containers with Spring Boot 3, Java 21 and CDS by Sébastien Deleuze @ Spring I/O 2024

  • Yeah this survey is super inappropriate and offensive. Please do not ask such personal questions.

    Did you notice that more inappropriate questions appear and disappear based on your previous answers?

  • Performance @programming.dev
    agilob @programming.dev
    Java @programming.dev
    agilob @programming.dev

    Welcome to the Leyden Prototype Repo!

    Security @programming.dev
    agilob @programming.dev
    berthub.eu Cyber Security: A Pre-War Reality Check - Bert Hubert's writings

    This is a lightly edited transcript of my presentation today at the ACCSS/NCSC/Surf seminar ‘Cyber Security and Society’. I want to thank the organizers for inviting me to their conference & giving me a great opportunity to talk about something I worry about a lot. Here are the original slides with ...

    Cyber Security: A Pre-War Reality Check - Bert Hubert's writings
  • Old issue, so why post it now make it sound like MS demands something?

    Opened 11 months ago Last modified 11 months ago

    It's a regression, so ffmpeg should fix a regression.

  • It really depends on where you set the limit on what ORM is, JOOQ is kind of a thing you're looking for.