Bobinas P4G
  • Login
  • Public

    • Public
    • Groups
    • Popular
    • People

Notices by Bernie (codewiz@mstdn.io), page 19

  1. Bernie (codewiz@mstdn.io)'s status on Monday, 23-Oct-2023 07:27:26 UTC Bernie Bernie
    in reply to

    There is no "diaries" in the original title, which would have been 日記 (nikki) = day writing

    https://jisho.org/word/%E6%97%A5%E8%A8%98

    In conversation Monday, 23-Oct-2023 07:27:26 UTC from mstdn.io permalink
  2. Bernie (codewiz@mstdn.io)'s status on Monday, 23-Oct-2023 07:25:20 UTC Bernie Bernie
    in reply to

    The original title is Kusuriya no Hitorigoto (薬屋のひとりごと).

    薬 (kusuri) = drug, medicine
    屋 (ya) = shop
    ひとり (hitori) = alone
    言 (koto) = speech

    Together: pharmacy soliloquy.

    #japanese #anime

    In conversation Monday, 23-Oct-2023 07:25:20 UTC from mstdn.io permalink

    Attachments


    1. https://media.mstdn.io/mstdn-media/media_attachments/files/111/283/109/412/419/325/original/28799899739d7d02.png
  3. Bernie (codewiz@mstdn.io)'s status on Monday, 23-Oct-2023 07:16:59 UTC Bernie Bernie
    in reply to

    The story follows Maomao, a young pharmacist who works at the Imperial Palace.

    She's a very likable #anime protagonist: intelligent, but goofy and a bit insecure. In the first episodes, at least...

    In conversation Monday, 23-Oct-2023 07:16:59 UTC from mstdn.io permalink
  4. Bernie (codewiz@mstdn.io)'s status on Monday, 23-Oct-2023 07:08:57 UTC Bernie Bernie

    I started watching The Apothecary Diaries today, and it's already my favorite #anime series for this season.

    I initially thought it was set in the Forbidden City, the palace of the emperor of China in Beijing, but it's actually a fictional country with strong similarities.

    In conversation Monday, 23-Oct-2023 07:08:57 UTC from mstdn.io permalink

    Attachments


    1. https://media.mstdn.io/mstdn-media/media_attachments/files/111/283/051/906/069/185/original/63afb90d719140d7.png
  5. Bernie (codewiz@mstdn.io)'s status on Monday, 23-Oct-2023 01:05:08 UTC Bernie Bernie
    in reply to
    • veer66

    @veer66 How about Cpp2? 😏

    https://www.youtube.com/watch?v=8U3hl8XMm8c&list=PLHTh1InhhwT7gQEuYznhhvAYTel0qzl72&index=4

    Herb Sutter is the chair of the ISO C++ committee, and author of a few books on C++ which I read long ago...

    ...and he wants to redesign C++ around safety and simplicity. Yes. Unlike previous failed attempts, he actually seems to know how to make this succeed.

    In conversation Monday, 23-Oct-2023 01:05:08 UTC from mstdn.io permalink
  6. Bernie (codewiz@mstdn.io)'s status on Monday, 23-Oct-2023 00:58:54 UTC Bernie Bernie
    in reply to
    • Nuncio Bitis ✷ ✅

    With GCC's old-school coding style, it's very easy to call a function with the wrong type of node. My code compiles just fine, but crashes at runtime with my testcase.

    I haven't tried, but my change would likely pass the entire GCC testsuite with thousands of tests.

    Morale: to speed up software development and eliminate entire classes of bugs, we need abstractions that can be verified at compile-time. Modern C++ incorporates some of these ideas, and Rust is built entirely around them.

    @nuncio

    In conversation Monday, 23-Oct-2023 00:58:54 UTC from mstdn.io permalink
  7. Bernie (codewiz@mstdn.io)'s status on Monday, 23-Oct-2023 00:48:23 UTC Bernie Bernie
    in reply to
    • Nuncio Bitis ✷ ✅

    A few months ago, I tried fixing a bug in one of GCC's optimization passes.

    GCC was originally written in C and is now compiled in C++ mode, but mostly remains a C-style codebase.

    I understand the bug and I have some idea of what should be done to fix it, but all my attempts failed with crashes or ICEs 😞

    @nuncio

    In conversation Monday, 23-Oct-2023 00:48:23 UTC from mstdn.io permalink
  8. Bernie (codewiz@mstdn.io)'s status on Monday, 23-Oct-2023 00:44:33 UTC Bernie Bernie
    in reply to
    • Nuncio Bitis ✷ ✅

    @nuncio That's *always* the case when you work on a large codebase: no human can write one million lines of code on their own, and established projects such as Chrome, Firefox, Android, Linux and GCC are multiple millions of lines written by thousands of people over decades.

    In conversation Monday, 23-Oct-2023 00:44:33 UTC from mstdn.io permalink
  9. Bernie (codewiz@mstdn.io)'s status on Monday, 23-Oct-2023 00:35:37 UTC Bernie Bernie
    in reply to

    That "Caution wet floor" sign over the pool of blood is a nice touch 😂

    #linuxgaming #amdgpu #doom2016 #doom

    In conversation Monday, 23-Oct-2023 00:35:37 UTC from mstdn.io permalink
  10. Bernie (codewiz@mstdn.io)'s status on Monday, 23-Oct-2023 00:32:22 UTC Bernie Bernie
    in reply to

    #Doom2016 has all the satanic elements that we've come to expect from the Doom series. I'm not disappointed 👍

    #linuxgaming #amdgpu

    In conversation Monday, 23-Oct-2023 00:32:22 UTC from mstdn.io permalink

    Attachments


    1. https://media.mstdn.io/mstdn-media/media_attachments/files/111/281/498/711/899/613/original/6144ab7c2652fbbf.jpg
  11. Bernie (codewiz@mstdn.io)'s status on Sunday, 22-Oct-2023 19:22:09 UTC Bernie Bernie
    in reply to
    • mbo77

    @mbo77 You're right, I was.

    But I suspect the required OS updates played a major role in slowing down the product. Small batches of A1222+ have been manufactured and distributed to developers several years ago.

    There's also an ongoing legal dispute around who owns the rights to distribute AmigaOS 4 beyond the "Final Edition".

    In conversation Sunday, 22-Oct-2023 19:22:09 UTC from mstdn.io permalink
  12. Bernie (codewiz@mstdn.io)'s status on Sunday, 22-Oct-2023 19:13:46 UTC Bernie Bernie
    in reply to
    • Nuncio Bitis ✷ ✅

    @nuncio That's in the eye of the beholder: I find modern C++ much more readable than old-school C/C++ with void* and casts everywhere.

    And by "readable", I actually mean: being able to verify that it works correctly, without leaking resources, stepping off the bounds of arrays, using uninitialized objects, etc.

    In conversation Sunday, 22-Oct-2023 19:13:46 UTC from mstdn.io permalink
  13. Bernie (codewiz@mstdn.io)'s status on Sunday, 22-Oct-2023 19:09:55 UTC Bernie Bernie
    in reply to
    • Johann Uhrmann

    @uhrmann Sure, anyone who is starting a new project today would be better served by #Rust than C++23.

    But Stroustrup is addressing the context of a large existing codebase. He claims that considerable gains are possible by simply adopting modern C++ and enforcing "safety profiles" with static analyzers.

    To which, I don't disagree: I see horrifying C++ code every day at work, and more being added to the pile.

    In conversation Sunday, 22-Oct-2023 19:09:55 UTC from mstdn.io permalink
  14. Bernie (codewiz@mstdn.io)'s status on Sunday, 22-Oct-2023 19:03:00 UTC Bernie Bernie
    • Jonas H

    @bjonte There's one major issue: the NXP P1022 lacks the classic PowerPC FPU. Its replacement, the SPE, requires recompiling applications with different compiler flags OR software emulation (slow) OR hot-patching (tricky).

    This is likely one of the main reasons for the delays.

    https://www.nxp.com/docs/en/fact-sheet/QP1022FS.pdf

    In conversation Sunday, 22-Oct-2023 19:03:00 UTC from mstdn.io permalink
  15. Bernie (codewiz@mstdn.io)'s status on Sunday, 22-Oct-2023 18:22:27 UTC Bernie Bernie

    Bjarne Stroustrup on delivering safe C++:

    "First of all, we have to get people who are not up-to-date on C++ become up-to-date".

    https://www.youtube.com/watch?v=I8UvQKvOSSw&list=PLHTh1InhhwT7gQEuYznhhvAYTel0qzl72&index=1
    #programming #cpp #cppcon2023

    In conversation Sunday, 22-Oct-2023 18:22:27 UTC from mstdn.io permalink

    Attachments


    1. https://media.mstdn.io/mstdn-media/media_attachments/files/111/280/043/415/819/323/original/352cdf3a7ed43566.png
  16. Bernie (codewiz@mstdn.io)'s status on Sunday, 22-Oct-2023 10:29:40 UTC Bernie Bernie
    in reply to
    • mbo77

    @mbo77 Well... yeah, it might not have been very active, but year after year there's at least *some* observable software development activity on the PowerPC platform beyond AmigaOS 4.1 FE:
    http://wiki.amiga.org/index.php/Enhancer_Software#Releases

    In conversation Sunday, 22-Oct-2023 10:29:40 UTC from mstdn.io permalink

    Attachments

    1. Enhancer Software - wiki.amiga.org
  17. Bernie (codewiz@mstdn.io)'s status on Sunday, 22-Oct-2023 03:07:19 UTC Bernie Bernie
    in reply to

    It's exciting to see this 38-years-old platform being under active development, with new #Amiga hardware and software being released in 2023 ❤️

    I just wish I had more time to contribute.

    #amigaos #amiwest #amiwest2023

    In conversation Sunday, 22-Oct-2023 03:07:19 UTC from mstdn.io permalink

    Attachments


    1. https://media.mstdn.io/mstdn-media/media_attachments/files/111/276/447/229/855/399/original/e1998a8086ce5cc2.jpg

    2. https://media.mstdn.io/mstdn-media/media_attachments/files/111/276/447/996/504/372/original/84e8baeb4f2e7804.jpg
  18. Bernie (codewiz@mstdn.io)'s status on Sunday, 22-Oct-2023 03:01:20 UTC Bernie Bernie
    in reply to

    At the ReAmiga4091 booth, I meet Stefan Reinauer, engineering lead of #Coreboot at Google.

    As a side-project, he made a perfect replica of the fantastic 4091 SCSI II host controller. I had the original one and loved it.

    There are actually a few enhancements to the software and to the programmable logic arrays which make the fastest Zorro 3 controller a little faster.

    They even reprinted the A4091 user manual and the box.

    In conversation Sunday, 22-Oct-2023 03:01:20 UTC from mstdn.io permalink

    Attachments


    1. https://media.mstdn.io/mstdn-media/media_attachments/files/111/276/436/431/572/870/original/c2cd22d7dac46bf0.jpg
  19. Bernie (codewiz@mstdn.io)'s status on Sunday, 22-Oct-2023 02:50:52 UTC Bernie Bernie
    in reply to

    I noticed lots of small usability changes, such as being able to push windows outside the screen border and resize them from any border. These things are a given on modern desktop environments, but the Amiga user interface Intuition was designed 38 years ago, well before Windows 3.1!

    The super-detailed release notes of Intuition reveal the dedication of the #AmigaOS kernel team ❤️

    In conversation Sunday, 22-Oct-2023 02:50:52 UTC from mstdn.io permalink

    Attachments


    1. https://media.mstdn.io/mstdn-media/media_attachments/files/111/276/381/437/039/672/original/8dc4a87f3c164c6d.jpg

    2. https://media.mstdn.io/mstdn-media/media_attachments/files/111/276/382/241/186/641/original/d081469ec78eea4c.jpg
  20. Bernie (codewiz@mstdn.io)'s status on Sunday, 22-Oct-2023 02:46:07 UTC Bernie Bernie
    in reply to

    The single most interesting addition to #AmigaOS 3.3 is the new console handler WCON, which supports tabbed terminals and more.

    #amiga #amigaos

    In conversation Sunday, 22-Oct-2023 02:46:07 UTC from mstdn.io permalink

    Attachments


    1. https://media.mstdn.io/mstdn-media/media_attachments/files/111/276/357/810/769/018/original/a359190c0a19f267.jpg
  • After
  • Before

User actions

    Bernie

    Bernie

    🇮🇹 → 🇺🇸 → 🇯🇵 → 🇹🇭 → 🚀Nomadic Linux developer, currently in Los Angeles.#linux #rust #anime #spacex #cycling #travel #vegan #retrocomputing #amiga #fedi22𝑨𝑴𝑰𝑮𝑨 :amiga:

    Tags
    • (None)
    WebSub
    Pending
    ActivityPub
    Remote Profile

    Following 0

      Followers 1

      • Galip (Inactive)

      Groups 0

        Statistics

        User ID
        7840
        Member since
        27 Jan 2018
        Notices
        6555
        Daily average
        2

        Feeds

        • Atom
        • Help
        • About
        • FAQ
        • Privacy
        • Source
        • Version
        • Contact

        Bobinas P4G is a social network. It runs on GNU social, version 2.0.1-beta0, available under the GNU Affero General Public License.

        Creative Commons Attribution 3.0 All Bobinas P4G content and data are available under the Creative Commons Attribution 3.0 license.