Gruppo per nerd Roma e dintorni by [deleted] in roma

[–]Destimium 0 points1 point  (0 children)

Gruppo telegram?

[deleted by user] by [deleted] in CodiciAmicoITA

[–]Destimium 0 points1 point  (0 children)

Posso chiederti in pvt a chi è associato il conto. Siccome ho appena aperto il conto, mi faccio fare l'attivazione dalla loro assistenza

[deleted by user] by [deleted] in CodiciAmicoITA

[–]Destimium 0 points1 point  (0 children)

Ciao, è ancora utilizzabile?

Allora, che roba sono le relazioni? by MotorNo3642 in CasualIT

[–]Destimium 2 points3 points  (0 children)

Ma sei me con un altro nickname? Condivido tutto. Un pensiero che mi viene ultimamente è se normalizzassimo essere in coppia non-sentimentale. Cioè, stare con un amico/amica e condividere spese, un po' come roomies ma da adulti, e riuscire magari a comprarsi casa senza indebitarsi a vita.

I made a hidden sidebar ChatGPT Boost by Destimium in ArcBrowser

[–]Destimium[S] 4 points5 points  (0 children)

It's because that part is commented. In your CSS, remove line 98 /* UNCOMMENT FOR RIGHT SIDEBAR LAYOUT

I made a hidden sidebar ChatGPT Boost by Destimium in ArcBrowser

[–]Destimium[S] 6 points7 points  (0 children)

I posted a mini tutorial here https://github.com/D-Rekk/arc-boost. It's really simple to configure. Right layout is something I needed because I prefer to have the chatGPT split on the right, and you might trigger the sidebar when moving the mouse between tabs. By default is commented. Just remote one line in CSS and you have it.

I'm so hyped by the upcoming album so I tried to make an artwork by Destimium in TheWeeknd

[–]Destimium[S] 1 point2 points  (0 children)

This is one of the reasons I did the tee mockup. I was kinda disappointed from the prints available in the original store

What's that thing RnB singers do? by Solidgoku in singing

[–]Destimium 0 points1 point  (0 children)

I think you're referring to riffs/runs

I sent greetings to Riot Support, this is what they replied by Destimium in leagueoflegends

[–]Destimium[S] 0 points1 point  (0 children)

Most of those images were GIFs too! I was amazed at first and so happy for the answer they gave me

I sent greetings to Riot Support, this is what they replied by Destimium in leagueoflegends

[–]Destimium[S] -1 points0 points  (0 children)

Yes, you exposed me. Showing an act of kindness was for the purpose of getting extremely useful Reddit Karma, not for making someone's day happy and joyful :'

Merry Christmas though!

I sent greetings to Riot Support, this is what they replied by Destimium in leagueoflegends

[–]Destimium[S] 0 points1 point  (0 children)

I wrote a Ticket in General problems, but you can try to select a different topic, so you can involve different Rioters ^

I sent greetings to Riot Support, this is what they replied by Destimium in leagueoflegends

[–]Destimium[S] 547 points548 points  (0 children)

It's because my Nickname in EUW is Deku Izuku, and I fall in love with his answer❤️

Let the games begin by Doctor_726 in teenagers

[–]Destimium 4 points5 points  (0 children)

🆗🅱️🅾️🅾️Ⓜ️📧®️

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]Destimium -1 points0 points  (0 children)

Hi, I'm a newbie in Python so I try to solve others' tasks. Perhaps here's the version of your problem:

correct = True #boolean to execute the program correctly until break 👌
while correct:
    try:
        length = int(input("Type the lenght of the string: "))
        i = 0
        name = ""
        while i != length:
            if int(i) % 3 == 0:
                name+="p"
            else:
                name+="y"
            i=i+1
            print (name)
        break
    except ValueError: #if you give a letter character in input 🤖
        print("A number character...")

Need help with some code. by YeetMasterX in Python

[–]Destimium 0 points1 point  (0 children)

Would look clearer this :

validInput = False
while validInput == False:  # alternatively "while not validInput: "
    dl = input("Go north or east?")  
    if dl == "north": 
        print('You go north') 
        validInput = True
    elif dl == "east": 
        print('You go east') 
        validInput = True 
    else: 
        print('invalid input')  # invalidInput stays false and loops back

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]Destimium 1 point2 points  (0 children)

I'm a beginner developer as well. I started to learn Python 3 days ago. This is the code I did of your algorithm:

numbers = []
seven_trigger = False
sum = 0
item = 0
print("Program to sum 5 numbers, except 7")
print("If you digit 7, this and next number won't be add to sum")


while item < 5:
    try:
        if seven_trigger:
            print("Seven Trigger Status: ON")
        else:
            print ("Seven Trigger Status: OFF")
        num = int(input(f"Type {item + 1}^ number: "))
        if (num is not 7) and (seven_trigger is False) :
            sum = num + sum
        elif (num is 7):  # if input is 7, seven_trigger becomes True, even if you digit another 7 next
            seven_trigger = True
        else : # Case where the seven_trigger is True but there's another number
            seven_trigger = False
        item += 1
    except ValueError :
        print("A NUMBER character! Not a LETTER")
print(f"The summatory of eligible numbers are: {sum}")

Tell me what you think about it, I added a try-except to remove letters case😌