• 21 Posts
  • 521 Comments
Joined 1 year ago
cake
Cake day: May 31st, 2023

help-circle


  • 7heo@lemmy.mltoMemes@lemmy.mlMy friends never got Vine but all love TikTok
    link
    fedilink
    arrow-up
    26
    arrow-down
    1
    ·
    edit-2
    4 months ago

    I guess the data mining was the missing ingredient for popularity?

    Data mining was the missing ingredient for its sustainability (in the case it is “free” and centralised. The other two options are “paid”, and “federated”.)

    Once the system is sustainable that way, and the owners get greedy, they then add addiction inducing elements to the platform, designed by psychiatrists and psychologists.

    That is why it is popular.







  • I would have work sign a legal discharge that from the moment I use the technology, none of the recordings or transcription of me can be used to incriminate me in case of an alleged malpractice.

    In fact, since both are generated or can be generated in a way that both sounds very assertive but also can be adding incredibly wild mistakes, in a potentially life and death situation, they legally recognise potentially nullifying my work, and taking the entire legal responsibility for it.

    As you can see in the most recent example involving Air Canada, a policy has been invented out of thin air. Such policy is costing the company. In the case of a doctor, if the administration of the wrong sedative, the wrong medication, or if the wrong diagnosis was communicated to the patient, etc; all that could have serious consequences.

    All sounding (using your phrasings, etc) like you, being extremely assertive, etc.

    A human doing that job will know not to derive from the recording. An AI? “antihistaminic” and “anti asthmatic” aren’t too far off, and that is just one example off of the top of my head.












  • 7heo@lemmy.mlto196@lemmy.blahaj.zonefixed rule
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    5 months ago

    Hear me out: brainfuck, but with parentheses only.

    >    )))
    <    (((
    +    ())
    -    (()
    .    ()(
    ,    )()
    [    )((
    ]    ))(
    

    Hello world example:

    ()))(((()(())))(())(())))))()))))(()
    (()(()(()(()(((((())(((((()(()((((()
    (()(()))()))(()()()))))))))())()()))
    )))()(()(())())()))((()()))))(((((((
    ((((((()(())())())()((()(()(()(()(()
    (()()((((((((()()())))))))))))())()(
    

    Ancient aliens meme with the caption "LIPS!!"

    Python transpiler:

    #!/usr/bin/env python
    """Lipsfuck to brainfuck transpiler"""
    
    from sys import stdin
    
    OPS = {")))": '>', "(((": '<',
           "())": '+', "(()": '-',
           "()(": '.', ")()": ',',
           ")((": '[', "))(": ']'}
    
    
    def main():
        """Obvious main procedure"""
        _d = ''.join(stdin.readlines()).rstrip('\n')
        for _op in [_d[x:x+3] for x in
                    range(0, int(len(_d)), 3)]:
            print(OPS[_op], end='')
        print()
    
    
    if __name__ == "__main__":
        main()