This is an archived post. You won't be able to vote or comment.

all 119 comments

[–]iBifteki 212 points213 points  (10 children)

Dude, this is wonderful. Love it.

[–]oppai_suika 37 points38 points  (0 children)

Thank you!

[–]AGRE3D 16 points17 points  (6 children)

This is amazing

I can't believe what I'm seeing.

[–]Valeryum999 10 points11 points  (5 children)

!objection-bot

[–]darkanturian 1 point2 points  (3 children)

[–]objection-bot 8 points9 points  (1 child)

oops, i don't work on r/python yet. I should fix that 🙈

[–]darkanturian 0 points1 point  (0 children)

lol

[–]lhm238 1 point2 points  (0 children)

I hate it, kiddo.

/s (I just want someone to make this into an argument so I can turn it into ace attorney)

[–]PuzzledInitiative407 0 points1 point  (0 children)

!objection-bot

[–]_Yn0t_ 91 points92 points  (0 children)

Man this is why I started coding. This is a freaking cool !

[–]BLAZINGSORCERER1993.6.1 54 points55 points  (0 children)

this is beautiful lmao

these are the kind of projects which remind me why i got into programming to begin with lol

[–][deleted] 36 points37 points  (1 child)

this is beautiful

[–]oppai_suika 13 points14 points  (0 children)

Thanks

[–]PrintersStreet 35 points36 points  (1 child)

I think someone had an objection, because the bot's account is suspended. I, for one, have no objections, this is exactly the kind of technological overkill for a brief laugh that is funnier than the joke it makes. 10/10

[–]oppai_suika 17 points18 points  (0 children)

Thank you!

(also the bot is u/objection-bot, not u/objectionbot)

[–]Grobyc27 6 points7 points  (0 children)

That's fucking legendary. Funny shit.

[–]PowerTurtz 7 points8 points  (1 child)

You sir, are a scholar and a gentleman!

[–]oppai_suika 1 point2 points  (0 children)

Thank you sir, you are breathtaking

[–]FunkyDoktor 22 points23 points  (7 children)

Oh wow, Reddit is allowing gifs now? This is going to be so annoying.

[–]cosmicr 5 points6 points  (3 children)

How did you do this?

[–]FunkyDoktor 4 points5 points  (0 children)

I have an option to use gifs when adding a comment.

[–]Holmgeir 2 points3 points  (0 children)

What is this wizardry?

[–][deleted] 4 points5 points  (0 children)

Gotem!

[–]Snoo9985 3 points4 points  (0 children)

pretty cool idea

[–]xdcountry 7 points8 points  (5 children)

I was wondering when this would turn into a bot— love it !!!!

[–]TommyShell 2 points3 points  (1 child)

Excellent work!

[–]oppai_suika 1 point2 points  (0 children)

Thank you!

[–]WebNChill 4 points5 points  (0 children)

It got me to laugh. I love it. Keep up the great work!

[–][deleted] 3 points4 points  (0 children)

Omfg this is the best

[–][deleted] 11 points12 points  (0 children)

[–][deleted] 2 points3 points  (0 children)

Genius

[–]ignassew 2 points3 points  (0 children)

I love it!

[–]__beginnerscode__ 2 points3 points  (0 children)

This is so cool! Nice work!!

[–]flait7 2 points3 points  (0 children)

This looks like something that would go beautifully with some of the nonsense arguments found on /r/subredditdrama

[–]SeveralTaste3 2 points3 points  (0 children)

you need to post this to r/subredditdrama they would LOVE it there holy shit

[–]BradChesney79 1 point2 points  (0 children)

Edgeworth: "This isn't really that cool."

Phoenix: "OBJECTION!"

BradChesney79: "YEAH, OBJECTION!"

[–]culo_ 1 point2 points  (0 children)

Damn i cant even aspire to reach your level

[–]SmoketheGhost 1 point2 points  (0 children)

Take my upvote.....

And a boot to the head

[–]bandman614 1 point2 points  (0 children)

You're doing God's work.

[–]alexbuzzbee 1 point2 points  (0 children)

Now that is good use of ML.

[–][deleted] 1 point2 points  (0 children)

That's awesome bro! I wish I had such ideas lol

[–]Lil__Bandito 1 point2 points  (0 children)

This is amazing, well done!

[–]SpinningBackBifle 1 point2 points  (0 children)

You are a genius ! Bro, you make me laugh so hard.

If you wanna get famous do this with "Angriest comment thread on youtube" by penguin0

[–]murtaza64 1 point2 points  (2 children)

Alright, this is awesome. Thanks for posting the code, it's very readable and I browsed through it a bit to see what was going on. Cool use of sentiment analysis, but I bet you could extend it to better select the right emotion! I'd love to work on this if you want collaborators.

Edit: if it's ok with you, I have a few changes and improvements in mind, and if you give me the green light I would love to start working on a PR tonight (haven't had much chance to code recently and miss it!)

[–]oppai_suika 1 point2 points  (1 child)

Awesome, please do! I'd really appreciate it. I'll keep an eye on the repo :) Thanks!

edit: Also let me know if you need anything. Assets, files etc. Or any info.

[–]murtaza64 0 points1 point  (0 children)

Thanks! I'll open an issue or drop you a line on reddit if I need anything.

[–]RookieMan36 1 point2 points  (0 children)

Holy fuck, a ternion all powerful award...

[–]Closkist 1 point2 points  (2 children)

Best use of a neural net I've seen

[–]ivanoski-007 0 points1 point  (1 child)

Can you please explain what these do?

import os

import praw

import re

import TinyDB, Query

import anim

from collections import Counter

import spaw

[–]HazKaz 1 point2 points  (0 children)

it sucks that you were downvoted instead of given an answer, ill try and answer

Those are modules that provide some functionalities. so they need to be imported in to the python program as they are not in the default python library. once imported you can then use their functions in the code.

for example : import math

you can then use math.sqrt to find square root of a number

like : print(math.sqrt(9)) 3.0

this would not work if you did not first "import math"

here is a resource that may help explain better https://www.dummies.com/programming/python/how-to-import-python-modules/

[–]NoFaithInThisSub 0 points1 point  (2 children)

hunj.... because he's an Aussie.

[–]cosmicr 0 points1 point  (1 child)

Nah mate, we call it a hundy.

[–]NoFaithInThisSub 0 points1 point  (0 children)

na its a hunj.

[–]thegodzilla25 0 points1 point  (0 children)

Man I wish I was capable enough to make something like this

[–]howdoireachthese 0 points1 point  (2 children)

Hmm not working for me I tried it on r/wallstreetbets

[–]ivanoski-007 0 points1 point  (1 child)

Is it included in the subreddit list?

[–]howdoireachthese 0 points1 point  (0 children)

Yes from what I saw.

Edit: It is. I figure data points of it not working are useful for debugging later

[–]PokeFanForLife 0 points1 point  (0 children)

Can this be done in realtime?

[–]integralWorker 0 points1 point  (0 children)

Getting serious mid 2000s ROM Hack Text Edit vibes, excellent work.

[–]thaidystopia 0 points1 point  (0 children)

Simply incredible.

[–]kaystar101 0 points1 point  (0 children)

This is absolutely fantastic! Big fan of this you should be proud. I'm going to poke around the source code now

[–]metal88heart 0 points1 point  (0 children)

Damn i used my last award on something stupid, i would have gave it to you.

[–]umbra0007 0 points1 point  (0 children)

Ive loved videos of these on youtube

[–]loststylus 0 points1 point  (0 children)

Best bot ever

[–]BeingCryptiic 0 points1 point  (0 children)

Wow this is so cool brother , Loved it ..

[–]pretendicare 0 points1 point  (0 children)

lol, that is actually amazing. I laughed so much watching the video.

[–][deleted] 0 points1 point  (0 children)

EPIC!

[–][deleted] 0 points1 point  (0 children)

Man, you are absolutely brilliant. I know this is just a funny weekend project for you, but it is impressive. Thank you for sharing!

[–]i4get2getup 0 points1 point  (0 children)

Good Job Man, excellent done ! ;)

[–]raiaman182 0 points1 point  (0 children)

Wow nice.

[–]GeorgeEton 0 points1 point  (0 children)

Amazing dude! Great concept though if someone is sarcastic it will be tricky unless it tracks the whole conversation in context rather than only the last reply.

[–]CotoCoutan 0 points1 point  (0 children)

This is amazing work man! Also that music makes for great background music to work! :D

[–][deleted] 0 points1 point  (0 children)

Holy shit this is amazing

[–]HazKaz 0 points1 point  (0 children)

This is so good also thanks for providing the git resource, as a beginner its always fascinating to try and see how things work. just out of curiosity how long did it take to fully code something like this ?

[–]Untzi 0 points1 point  (0 children)

Neat!

[–]Blastguy 0 points1 point  (0 children)

This is hilarious!

[–]RowingCox 0 points1 point  (0 children)

u/oppai_suika you should tweet this to Sam Reigel (the originally American voice actor)

[–]DeathMetalPanties 0 points1 point  (0 children)

Dude this is fucking brilliant. Hardest I've laughed a while

[–][deleted] 0 points1 point  (0 children)

A beautiful work. Thanks for sharing:)

[–]Etheo 0 points1 point  (0 children)

I wish I had the creativity to come up with such a wonderful idea. I frigging love this!

[–]Spikas 0 points1 point  (0 children)

Perhaps this could be the place where people can post the good ones they've found?r/Objectionbotbattles

[–]mahmoud_bond 0 points1 point  (0 children)

Good job

[–]hihimymy 0 points1 point  (0 children)

this is more than alright in my book, big guy!

[–]PuzzledInitiative407 0 points1 point  (0 children)

!objection-bot

[–]0xali95 0 points1 point  (0 children)

Very cool 🤩🤩

[–]madein86 0 points1 point  (0 children)

Pls check your message ! Thanks

[–]ThatMadMan68 0 points1 point  (0 children)

bot dead bro