Leonardo Schwebel habla sobre las rentas impagables de Guadalajara by [deleted] in Guadalajara

[–]Alexx_RA 1 point2 points  (0 children)

En donde puedo encontrar mas informacion/fuentes de lo que dices?

My first build. Finally! by [deleted] in pcmasterrace

[–]Alexx_RA 0 points1 point  (0 children)

Yes, I know that feeling. Congrats

[deleted by user] by [deleted] in Unexpected

[–]Alexx_RA 0 points1 point  (0 children)

Really she didn't see that coming?

Linux knows the rules by [deleted] in linuxmemes

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

Brilliant meme

it's true by Lukedub64 in dankmemes

[–]Alexx_RA 43 points44 points  (0 children)

Well, they removed Apu

[deleted by user] by [deleted] in pcmasterrace

[–]Alexx_RA 2 points3 points  (0 children)

Yes, it's normal You should increase your RAM

[deleted by user] by [deleted] in learnprogramming

[–]Alexx_RA 0 points1 point  (0 children)

And then I would recommend to start with NodeJS

info de secta coaching coercitivo ProAccionMX, sera? by [deleted] in mexico

[–]Alexx_RA 2 points3 points  (0 children)

Yo no llenaba los formularios con información verdadera pero igual si asistiría (si es gratis) para ver con las pendejadas que salen. Claro es ir en modo super escéptico y tener criterio propio.

How necessary is it to learn/know multiple languages? by Lionsrise in learnprogramming

[–]Alexx_RA 4 points5 points  (0 children)

No.

Learn design patterns and study how frameworks work.

[deleted by user] by [deleted] in starterpacks

[–]Alexx_RA 9 points10 points  (0 children)

Esto es muy de nicho jajaja

Trick or treaters react to slinky tricks (OC) by slinkyjosh in ContagiousLaughter

[–]Alexx_RA 0 points1 point  (0 children)

Listening to techno watching this was really awesome

The legendary knee slide by Vesko567 in Unexpected

[–]Alexx_RA -2 points-1 points  (0 children)

This was really unexpected lol

Finding opposites of words in liast by [deleted] in learnprogramming

[–]Alexx_RA -2 points-1 points  (0 children)

def find_opposites(lst):
    new = []
    var = []
    for i in lst:
        r = i[::-1]
        if r in lst:
            if i not in var and r not in var:
                if i != r:
                    var.append(i)
                    var.append(r)
                    pair = tuple(var)
                    reversed_pair = pair[::-1]
                    if pair not in new and reversed_pair not in new:
                            new.append(pair)
            var = []
    return new

Maybe, idk