home.social

Search

40 results for “yugaego”

  1. I must admit AI gives me chills.

    struct addrinfo {
    int ai_flags; // AI_PASSIVE, AI_CANONNAME, etc.
    int ai_family; // AF_INET, AF_INET6, AF_UNSPEC
    int ai_socktype;
    int ai_protocol;
    size_t ai_addrlen; // size of ai_addr in bytes
    struct sockaddr *ai_addr; // struct sockaddr_in or _in6
    char *ai_canonname;
    struct addrinfo *ai_next;
    }

    beej.us/guide/bgnet/html/

    #ai
  2. I would love to see more technical articles and books written with the same level of clarity.

    "Index 1,600,000,000 Keys with Automata and Rust" (2015) by Andrew Gallant.

    burntsushi.net/transducers/

    #article #rustlang #TechnicalWriting #automaton #datastructures #algorithms

  3. I would love to see more technical articles and books written with the same level of clarity.

    "Index 1,600,000,000 Keys with Automata and Rust" (2015) by Andrew Gallant.

    burntsushi.net/transducers/

  4. I would love to see more technical articles and books written with the same level of clarity.

    "Index 1,600,000,000 Keys with Automata and Rust" (2015) by Andrew Gallant.

    burntsushi.net/transducers/

    #article #rustlang #TechnicalWriting #automaton #datastructures #algorithms

  5. I would love to see more technical articles and books written with the same level of clarity.

    "Index 1,600,000,000 Keys with Automata and Rust" (2015) by Andrew Gallant.

    burntsushi.net/transducers/

    #article #rustlang #TechnicalWriting #automaton #datastructures #algorithms

  6. I would love to see more technical articles and books written with the same level of clarity.

    "Index 1,600,000,000 Keys with Automata and Rust" (2015) by Andrew Gallant.

    burntsushi.net/transducers/

    #article #rustlang #TechnicalWriting #automaton #datastructures #algorithms

  7. RE: mas.to/@vnzn/116568465516674741

    "You want to bake me a whole birthday cake? Just put a candle on my sandwich.

    This is what senior developers learn to do: they learn how to give people what they want by being resourceful with existing software."

  8. I had hard time today trying to find a full list of to search in it.

    The best I could find for my use case was

    compart.com/en/unicode/

    Since this was still not exactly what I was hoping for, does anyone know a good alternative?

  9. At last I've found a comprehensible article on managing.

    The is well-named:
    Demystifying Emacs’s Window Manager.

    Short intro by the author:

    "In this article I'll demystify how Emacs's window manager works and how you – with a bunch of templates and examples – can build IDE-like paneling; prevent annoying popup windows; or promote tab-based workflows."

    masteringemacs.org/article/dem

  10. The ideal technical solution is one in which the required function is achieved by itself, without introducing new mechanisms or additional energy costs into the system.

    Paraphrased from G. S. Altshuller, founder of the Theory of Inventive Problem Solving (TRIZ).

    en.wikipedia.org/wiki/TRIZ

  11. Hyrum's Law states that "With a sufficient number of users of an API,
    it does not matter what you promise in the contract:
    all observable behaviors of your system
    will be depended on by somebody."

    Putting it simply: "there is no such thing as a private implementation."

    xkcd.com/1172/

    hyrumslaw.com/

  12. I like writing articles that help myself not once afterwards.

    This case is because of being a rare user of for .

    blog.ego.team/programming/rust

  13. " In a word if you tell me you have a personality problem I am not certain until I know you better whether to say “Good!” or “I’m sorry.” It depends on the reasons. And these, it seems, may be bad reasons, or they may be good reasons. "

    Abraham H. Maslow

    http://blog.ego.localhost/extraction/toward-psychology-of-being.html#good-or-sorry

  14. :

    "
    This command makes it easy for fish scripts and functions to handle arguments.
    "

    Example from docs:
    ```
    function mybetterfunction
    argparse h/help s/second -- $argv
    or return

    if set -ql _flag_help
    echo "mybetterfunction [-h|--help] [-s|--second] [ARGUMENT ...]"
    return 0
    end

    if set -ql _flag_second
    echo $argv[2]
    else
    echo $argv[1]
    echo $argv[3]
    end
    end
    ```

    fishshell.com/docs/current/cmd

  15. An episode from the series Why I Love .

    All of a sudden 👾 I had to start working with the format.

    Well, I just opened the `.rst` file, and _voilà!_ a proper nice highlighting and number of additional tools were already in place.

  16. >>> The word “hexadecimal,” which has crept into our language even more recently, is a mixture of Greek and Latin stems; more proper terms would be “senidenary” or “sedecimal” or even “sexadecimal,” but the latter is perhaps too risqué for computer programmers.

  17. "The IPL-V and FLPL systems for List-processing did not use either a garbage collection or a reference count technique for the problem of shared Lists; instead, each List was “owned” by one List and “borrowed” by all other Lists that referred to it, and a List was erased when its “owner” allowed it to disappear."

    D. Knuth, Vol. 1, p. 461

    So, isn't the first one to use owned/borrowed terms.

  18. According to my own experience with the D. Knuth's TAOCP (The Art of Computer Programming), the following two articles, written by the same computer programmer as reflections on the first and third (final) years of reading it, gives a correct and realistic feedback on what to expect from the monograph. 

    commandlinefanatic.com/cgi-bin

    commandlinefanatic.com/cgi-bin

  19. Sometimes I forget has for almost everything.

    "With just a few keystrokes, it is possible to insert empty structural blocks, such as ‘#+BEGIN_SRC’ … ‘#+END_SRC’, or to wrap existing text in such a block.

    C-c C-, (org-insert-structure-template)"

    orgmode.org/manual/Structure-T

  20. If you've ever dreamt of using more of (or other custom for that matter) in , just save

    github.com/jrus/cocoa-text-sys

    as

    ~/Library/KeyBindings/DefaultKeyBinding.dict

    For more information, read

    github.com/jrus/cocoa-text-sys

    and look around the repo.

    Many thanks to Irreal for the enlightenment 👏

    irreal.org/blog/?p=11357

  21. "Now it’s . If you think these crawlers respect robots.txt then you are several assumptions of good faith removed from reality. These bots crawl everything they can find, robots.txt be damned, including expensive endpoints like git blame, every page of every git log, and every commit in every repo, and they do so using random User-Agents that overlap with end-users and come from tens of thousands of IP addresses..."

    drewdevault.com/2025/03/17/202

  22. The ideal technical solution is one in which the required function is achieved by itself, without introducing new mechanisms or additional energy costs into the system.

    Paraphrased from G. S. Altshuller, founder of the Theory of Inventive Problem Solving (TRIZ).

    en.wikipedia.org/wiki/TRIZ

    #quote #TRIZ #Altshuller #engineering #problemsolving

  23. The ideal technical solution is one in which the required function is achieved by itself, without introducing new mechanisms or additional energy costs into the system.

    Paraphrased from G. S. Altshuller, founder of the Theory of Inventive Problem Solving (TRIZ).

    en.wikipedia.org/wiki/TRIZ

    #quote #TRIZ #Altshuller #engineering #problemsolving

  24. The ideal technical solution is one in which the required function is achieved by itself, without introducing new mechanisms or additional energy costs into the system.

    Paraphrased from G. S. Altshuller, founder of the Theory of Inventive Problem Solving (TRIZ).

    en.wikipedia.org/wiki/TRIZ

    #quote #TRIZ #Altshuller #engineering #problemsolving

  25. The ideal technical solution is one in which the required function is achieved by itself, without introducing new mechanisms or additional energy costs into the system.

    Paraphrased from G. S. Altshuller, founder of the Theory of Inventive Problem Solving (TRIZ).

    en.wikipedia.org/wiki/TRIZ

    #quote #TRIZ #Altshuller #engineering #problemsolving

  26. Quick fix / fallback for an error returned by .
    It's fine enough for local installs, when a client doesn't support `caching_sha2_password` plugin.

    "SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client"

    1. Add to `my.cnf`

    [mysqld]
    default_authentication_plugin=mysql_native_password

    2.

    ALTER USER 'root'@'localhost'
    IDENTIFIED WITH mysql_native_password
    BY 'password';

    Sources:

    dev.mysql.com/blog-archive/upg

    dev.mysql.com/doc/refman/8.0/e

  27. In `C-h C-q` toggles a quick-help buffer.

    A very useful feature for .

  28. does actually bring tasty features.

    I'm enjoying `M-x sqlite-mode-open-file` right now, reviewing data in .

  29. Small reminder: `C-u 29 C-h n` opens info on changes.

    It is bound to the function `view-emacs-news`.

  30. One of the additions:

    ```
    *** New command 'recentf-open'.
    This command prompts for a recently opened file in the minibuffer, and
    visits it.
    ```

    git.savannah.gnu.org/cgit/emac