Search results

  1. Jose

    Manifesto www.rebuildworld.net

    Looks incredibly limiting: Non-ASCII characters may only be used in documents and other human-readable texts written in natural languages, intended to be read and edited by endusers. No multithreading (and shared memory). (M)achine-readable data formats with recursive nesting are forbidden...
  2. Jose

    Error compiling GNU Octave

    This problem is almost certainly caused by a missing /usr/local/lib in the linker's library search path. See the -L option in the man page. Just another one of those things you gotta do to compile things in Freebsd. Tell us again, why can't you just use the port? Edit: Are you going to try and...
  3. Jose

    Error compiling GNU Octave

    Exactly this: https://codeberg.org/FreeBSD/freebsd-ports/src/commit/18679e34974f7d5d3a24e8a18b3d1c478a6253a7/math/octave/files/patch-liboctave_util_quit.h
  4. Jose

    AI -bugs...

    Right? Who gives a flying f... - I'll keep it PG. I worked at a small company where we only had two conference rooms. We moved to a new office, and had to come up with new names for them. Someone came up with "Tabs" and "Spaces", and I loved it. I was pulled aside and told to keep it down as...
  5. Jose

    AI -bugs...

    Well, I was talkin' Java with Project Reactor. I don't know which is worse. I think we've settled on spaces, and the Checkstyle rules are set up to require "at least x..." In any case, things ain't lining up. I absolutely refuse to get into lengthy discussions about whitespace and indentation...
  6. Jose

    AI -bugs...

    It's odd how it can't seem to get indentation right. What it does passes checkstyle, and I'm being heavily pressured to use AI so... 😈
  7. Jose

    Nextcloud

    Out of curiosity, did you replace it with something else?
  8. Jose

    Rust in the FreeBSD kernel

    I would state it a little more strongly: re-writing time-proven battle-tested code is almost always a mistake.
  9. Jose

    Rust in the FreeBSD kernel

    Server time-out... I'm sure it wouldn't have happened if the server was written in Rust.
  10. Jose

    Rust in the FreeBSD kernel

    Color me skeptical https://www.phoronix.com/news/First-Linux-Rust-CVE https://www.phoronix.com/news/Rust-TARmageddon
  11. Jose

    25 Gbps home internet service launching in Japan

    I'm getting 970 Mbps down / 790 Mbps up right now. I sometimes get 900+ upload too. I think the speed test servers can't handle that consistently. My provider has started rolling out 10 Gbps service.
  12. Jose

    The Case for Rust (in the base system)

    I understood nothing, but cherish my ignorance of the subject.
  13. Jose

    Solved What are *.a files found in /usr/lib/

    The .a files are static libraries in ar format. Files with a .so extension are shared dynamic libraries in elf format. When you link your code with a static library, the actual code you linked is added to your executable at link time. This makes your binary executable larger, but there's no...
  14. Jose

    Proton Mail started relocation out of Switzerland due to changes in Swiss legislation

    Why not encrypt your mail with your public key? Then only your private key can decrypt it.
  15. Jose

    How to route outgoing traffic going to port 25 into different gateway?

    It depends on what you mean by "route". If you mean it in the colloquial sense of "send", then it sure is implementable, as we've shown in this thread. If you mean it in the technical sense of an IP route, then no, routing happens at a layer below TCP that doesn't know or care anything about...
  16. Jose

    How to route outgoing traffic going to port 25 into different gateway?

    Unfortunately, dma does not listen on port 25. I'm a fan of postfix. Looks like it should work out of the box for what you want: https://www.postfix.org/STANDARD_CONFIGURATION_README.html#stand_alone The pf.conf rule then becomes: rdr pass proto tcp from any to any port 25 localhost port 25
  17. Jose

    Development for Linux on FreeBSD

    Looks to me like you can still find plenty of #ifdef harmfulness this century: https://lists.zx2c4.com/pipermail/wireguard/2021-March/006494.html
  18. Jose

    Firefox to go full AI with new CEO

    I'm not panicking yet. There'll be plenty of time for that later.
  19. Jose

    Firefox to go full AI with new CEO

    Not a fan of Palemoon: https://news.ycombinator.com/item?id=16318820 Palemoon is a Firefox fork, no? Try a different fork like Waterfox. Or ungoogled-chromium. I don't run the latter cause I build my own packages and its build time is frankly ridiculous.
  20. Jose

    Porting X11Libre to FreeBSD.

    Was this cleanup the result of trying to integrate with Xlibre?
Back
Top