Skip Navigation

Search

  • For the Atari ST, although I actually preferred Hisoft Basic.

  • And now, this:

  • Original tweet

  • huh? or did I miss something here?

    edit: or are plain-text curlable websites a feature I'm not aware of? Or curl'ers use some striptags feature?

  • If you want to see more sites like this, check out neocities.

  • [...] in my other jobs we were using Google Workspace which only shows metadata because of that[...]

    Rare moment when Google is mentioned as behaving GDPR compliant... I mean, I know that big tech is vacuuming up all data and doesn't care about GDPR, but still.... You can be worse than effing Google?

  • @Kyrgizion @boredsquirrel I assume you"re using 365 version of Copilot wich can access Active Directory data which if they're correctly setup contains a supervisor field

  • Both of those declarations look weird to me. In Haskell it would be:

     
        
    a :: Stringbob :: (String, Int, Double) -> [String]bob (a, b, c) = ...
    
      

    ... except that makes bob a function taking a tuple and it's much more idiomatic to curry it instead:

     
        
    bob :: String -> Int -> Double -> [String]bob a b c = ...-- syntactic sugar for:-- bob = \a -> \b -> \c -> ...
    
      

    The [T] syntax also has a prefix form [] T, so [String] could also be written [] String.

    OCaml makes the opposite choice. In OCaml, a list of strings would be written string list, and a set of lists of strings would be string list set, a list of lists of integers int list list, etc.

  • This obviously just illustrates a point, but callbacks and decorators are not uncommon. And iterators are exactly like that:

     
        
    type (
        Seq[V any]     func(yield func(V) bool)
        Seq2[K, V any] func(yield func(K, V) bool)
    )
    
      

    Which is very readable.

  • Programmer Humor @lemmy.ml

    In case Copilot was too much work

    Programmer Humor @lemmy.ml

    TasteNotFoundError: No flavor matching the query could be located." ErrorId -0x2214slt404

    Programmer Humor @lemmy.ml

    Using comments as arguments in python.

    Programmer Humor @lemmy.ml

    Every OS Sucks - a song from circa 2001 by Three Dead Trolls in a Baggie

    Programmer Humor @lemmy.ml

    Real Programmers Implement Functions On Top Of Classes

    Programmer Humor @lemmy.ml

    I love Rust

    Programmer Humor @lemmy.ml

    This email seems to have gotten lost

    Programmer Humor @lemmy.ml

    93% of Paint Splatters are Valid Perl Programs

    Programmer Humor @lemmy.ml

    Developer vs Tester

    Programmer Humor @lemmy.ml

    npm install

    Programmer Humor @lemmy.ml

    The C++ learning process

    Programmer Humor @lemmy.ml

    My Technical Romance

    Programmer Humor @lemmy.ml

    Crowdstrike! Baby Crowdstrike!

    Programmer Humor @lemmy.ml

    Writing documentation

    Programmer Humor @lemmy.ml

    Companies updating their websites

    Programmer Humor @lemmy.ml

    Verification badge prices are too damn high

    Programmer Humor @lemmy.ml

    Web app frontend talking to the backend

    Programmer Humor @lemmy.ml

    Dangers of Refactoring

    Programmer Humor @lemmy.ml

    Python is great, but stuff like this just drives me up the wall

    Programmer Humor @lemmy.ml

    There's no place like [::1]