Search results

  1. Jose

    The List (aka "la lista")

    I do believe it's time for das blinkenlights.
  2. Jose

    Claude Code cracks FreeBSD within four hours

    Some people at work have started using Cursor, and have sent me analyses made by same. I can tell that what the Cursor guys have done is hook up a chatbot to a static analyzer, because Intellij's static analyzer found some of the same problems. The problems it reported ranged from a good catch...
  3. Jose

    IPFW How to temporarily disconnect all incoming IPs except mine?

    What shell are you using? Try this, and make sure it prints two lines: echo -e "block in all\npass in from <my IP> to any" If it does you can then pipe it to pfctl -f -. You definitely want a pipe "|" and not a slash.
  4. Jose

    Shell Is sh Bourne Shell or POSIX shell. What is the difference

    I'm clear across the continent 😞
  5. Jose

    Why FreeBSD, if I may..

    I think this has been posted on this forum previously. Hopefully somewhat on-topic: https://levenez.com/unix/
  6. Jose

    C++ Looking for a functioning IDE for C++

    I gave up on VSCode because it's a royal pain to build. It's crazy bloatware, even for an IDE.
  7. Jose

    ARM Board Recommendations.

    I would like it to run astro/opencpn on a reasonable-size monitor (say 27") and maybe support remote X forwarding or XRDP or something like that.
  8. Jose

    ARM Board Recommendations.

    I've looked here: https://wiki.freebsd.org/arm And I've looked here: https://www.freebsd.org/platforms/arm/#hw There are a lot of boards and a lot of caveats. Do you have practical FreeBSD experience with an ARM board you would recommend?
  9. Jose

    attn cpp coders

    Biggest leak I ever found (and one of the first) was in Java code. Turns out it was intentional, but it still got me tons of street cred at my new (at the time) job. Yes, Valgrind is an awesome tool. Many thanks to Dr. Paul Floyd.
  10. Jose

    The Pipe

    Big fan of McIlroy. I've probably posted this before cause it's one of me faves. I beg for forbearance for the old man repeating himself: https://leancrew.com/all-this/2011/12/more-shell-less-egg/
  11. Jose

    Other How would you build your own NAS?

    This is what I used most recently: https://www.bhphotovideo.com/c/product/1561224-REG/fractal_design_fd_ca_def_r5_bk_define_r5_black.html
  12. Jose

    Will FreeBSD be available in California in 2027?

    I'm struggling to think of what "social media" Apple and Microsoft have. To me the social media giants are Meta, Tiktok, and Twitter. In any case, liability for the online experience is no longer hypothetical as of today. Meta is allegedly behind these efforts to add an age API. I doubt it's...
  13. Jose

    attn cpp coders

    Yes, it's Python and it gave me quite a headache. It generates methods with names like query_by_table_foo(...) at run time. I was pulling my hair out trying to figure out where they were defined. I could see they were getting called, and returning results, but I couldn't find them anywhere!
  14. Jose

    attn cpp coders

    No longer valid as of GCC 14 / Clang 16 (which started enforcing C99): https://www.redhat.com/en/blog/new-warnings-and-errors-clang-16 https://gcc.gnu.org/gcc-14/porting_to.html 😞 There's a hash (#) missing at the beginning of this line Compiling with -fpermissive I get: $ gcc -fpermissive...
  15. Jose

    attn cpp coders

    I think Python is gross, but I'm just a weak-minded Java programmer. I can probably be ignored safely. I recently ran into something like this at work: def __getattr__(self, name: str): # If class is extened, or name doesn't start with query_by_ if self.__class__ is not...
  16. Jose

    qemu Starting a 2004 FreeBSD in a VM - can't load kernel

    Interesting project. I'm assuming version 5.3. Do lsdev or show currdev report anything curious? (Love "Syntax for devices is odd." in the man page.)
  17. Jose

    Will FreeBSD be available in California in 2027?

    I think I understand the motivations for this and similar bills now: Protect the social media giants from liability: Shift the responsibility for age verification to the OS providers. Now families get to sue them when Timmy sees something gross on Facebook. Corporatize open source development...
  18. Jose

    Where to find 'Real' programmers online?

    It was "self-healing"! That guy was way ahead of his time! Yes, tongue firmly in cheek. By the way atax1a thanks for the link! That's an awesome repo and blog post.
  19. Jose

    Where to find 'Real' programmers online?

    Care to post it?
Back
Top