My main account, for mainly English content

Alternative for mostly French content: @Jakylla@jlai.lu

  • 6 Posts
  • 131 Comments
Joined 1 year ago
cake
Cake day: June 18th, 2023

help-circle










  • Do I need to precise that my post was a /s ? It was ! Actually already 2 comments are saying that US is missing, so I joked about it and about the fact some said this is biased because countries are missing

    Actually there is all the source given in the picture itself, if a country is missing, maybe check the data before complaining about people hiding things to you; maybe the data itself does not exists for the country you think is missing










  • $ rm -rf /
    Removing /etc/passwords...
    ~ WITH XXXXX ANTIVIR, PROTECT YOUR PASSWORDS FOR ONLY 5.99$ PER MONTH ~
    Removing /home/user...
    ~ WITH XXX VPN, ACCESS ALL YOUR CONTENT ONLINE FROM ANY COUNTRY IN THE WORLD, 19.99$ PER YEAR FOR NEW SUBSCRIPTIONS ~
    Removing /bin/bash...
    ~ DO YOU WANT A BIGGER D ? TAKE XXXX PILLS, 99.9% SUCCESS ~
    ...
    

  • Not any standard (and actually not at all something to do for real), but try it, it works

    def magic(a, b, c):
        if a > 0:
        	if b > 0:
        	   		if c > 0:
        	   		  return 'All positive'
        
        return 'Not all positive'
    
    print(magic(1,2,3))
    print(magic(-1,1,2))
    print(magic(1,-1,0))
    print(magic(-1,-1,-2))
    

    (you should be able to verify I used both tab and spaces f*cking bad way in this example, like I described)

    Output:

    All positive
    Not all positive
    Not all positive
    Not all positive
    
    
    ** Process exited - Return Code: 0 **
    Press Enter to exit terminal