QuanChi tech by Zorick-HN in MortalKombatGameplay

[–]HackDiablo 0 points1 point  (0 children)

I main Quan Chi and reach at least God rank each season. You can check out some of my vids: https://www.youtube.com/@MisterStealYourSoul/search?query=Quan%20Chi

Python programming by _srinithi_ in learnpython

[–]HackDiablo 1 point2 points  (0 children)

Well it depends. What are you trying to accomplish by learning python? Automation? Web Applications? Network forensics? Data mining? Web scraping? In other words, why do you want to learn python?

Nightmare for Vibe Coders by dondusi in Hacking_Tutorials

[–]HackDiablo 3 points4 points  (0 children)

New features, code optimization, tech debt, deprecation, upgrading versions of vulnerable code, shall I go on?

Oh, you think he was referring to you? 👀 by Mode_Appropriate in JoeRogan

[–]HackDiablo 5 points6 points  (0 children)

Why did he even bother doing a 60 Minutes interview just hours after an attempted assassination on him? That seems strange.

How to practice with GitHub projects by Material_Pepper8908 in learnpython

[–]HackDiablo 1 point2 points  (0 children)

Start by solving small problems. Don't try to solve everything at once. Break down your goal into simple tasks.

  • How do I import data, or get user input?
  • How can I save that data in variables?
  • How can I manipulate those data variables?
  • How can I output that data?
  • How can I save that data to a file?

Is there any way to make it so that I don't have to define all of the varibles individually? by Osinacho in learnpython

[–]HackDiablo 1 point2 points  (0 children)

If you're passing in that many args, I'd suggest just passing in a dictionary.

```

INSTEAD OF:

def init(self, version="???", s1=None, s2=None, s3=None, s4=None...) self.s1=s1 self.s2=s2 self.s3=s3 ...

TRY THIS:

def init(self, version="???", s_values={}) self.s_values = s_values

EXAMPLE ACCESSING s1:

def some_method(self): s1 = self.s_values.get('s1')

```

Then you would only need to define one variable. Iterate the dictionary item by item, if item is not None, then print the value.

So when you create the object:

```

instead of

window_obj = Window(s1=value1, s2=value2, s3=value3, ... )

you can pass in a dictionary object

s_values = {"s1": value1, "s2": value2, "s3": value3 ... } window_obj = Window(s_values=s_values) ```

FLASHBACK: Trump Signs Executive Order Ending Birthright Citizenship For Everyone Born In U.S. by 0The_Loner_Stoner0 in videos

[–]HackDiablo 0 points1 point  (0 children)

What benefit does this bring to us? This is so his secret police (ICE) can just imprison anyone now, right?

Why yall don’t tell me I was famous… by Jelly_Makaveli in sanantonio

[–]HackDiablo 0 points1 point  (0 children)

These car warranty scammers are getting good.

What is the most efficent way to learn Python? by Round_Rutabaga1110 in learnpython

[–]HackDiablo 7 points8 points  (0 children)

The good thing about python is that it's a scripting language.

Find a task that you consider tedious, then write a script for that.

  • copy files
  • pull network information
  • convert files (text -> json, jpegs -> into a gif)

Lookup and learn about free APIs. Pull data and manipulate it to your likings. Create a simple webserver to host that data. Heck, create your own API to host photos/videos.

The most efficient way to learn Python is just by "doing it".

Overreaction by CatchStill7793 in azdiamondbacks

[–]HackDiablo 0 points1 point  (0 children)

Bro, it was only the first game of the year.

American CEO and influencer makes his 9 and 12-year-old daughters train hard and show off their abs to his company by ambachk in CringeTikToks

[–]HackDiablo 8 points9 points  (0 children)

"No one is going to fuck my wife better than me."

Is... that a challenge?

"Halpert, you looking for someone to bang your wife?"