emoji-award-marseywholesome
emoji-award-marseynotes
emoji-award-marseyannoyed
emoji-award-marseytrollcrazy
emoji-award-marseyplushieswinging
emoji-award-marseyhotep
emoji-award-marseyhotep
emoji-award-gay
emoji-award-gay
emoji-award-marseytrain2
emoji-award-marseyhotep
Unable to load image
Reported by:
  • Sneed : (changelog) carpathianflorist is a b-word butt neighbor
  • THOMAS : mypoc <3
  • british : change: dont ban for spam (dramaphobic). Let bans be appealled (let me ping you pls). Bardfinn.
  • MOONTEP : Hotep wuz here and we wuz kangz
  • Roll : Imagine wrote something funny here. Now laugh. :marseyrofl:
  • ManBearFridge : Lmao

changelog megathread :marseynotes:

a lot of days, I make a shitton of changes in successsion, and I don't wanna make the whole frontpage my changelog posts, so I don't post about them

this thread solves that, so from now on instead of making changelog posts, I'll make changelog comments here

click subscribe on this thread to get notified of changes :wolfnoticeme:

on desktop:

https://i.rdrama.net/images/16559206177532556.webp

on mobile:

https://i.rdrama.net/images/16559206537045796.webp

Edit: I'm still not gonna post about bugfixes tho, theres way too many

183
Jump in the discussion.

No email address required.

Reported by:
  • removed shut it down award
  • added diminishing returns for early life award:
	if i < 5:
		name = f'((({name})))'
	elif i < 10:
		name = f'(({name}))'
	else:
		name = f'({name})'
Jump in the discussion.

No email address required.

Boo

Jump in the discussion.

No email address required.

Dislike this change capysaurus, early life award was pretty funny

Jump in the discussion.

No email address required.

:marseyitsover:


Putting the :e: in :marseyexcited:

Jump in the discussion.

No email address required.

Please tell me that isn't the actual code

Jump in the discussion.

No email address required.

https://i.rdrama.net/images/17230707172263548.webp

I wanted to to post the smug python logo pepe but couldn't find it, please give it to me if you have it

Jump in the discussion.

No email address required.

this is the fricking actual code

Jump in the discussion.

No email address required.

:#marseyfacepalm:

Jump in the discussion.

No email address required.

how would u write it then

Jump in the discussion.

No email address required.

Share a bit more of the context?

Jump in the discussion.

No email address required.

	@property
	@lazy
	def user_name(self):
		if self.earlylife:
			expiry = int(self.earlylife - time.time())
			if expiry > 86400:
				name = self.username
				for i in range(int(expiry / 86400 + 1)):
					if i < 5:
						name = f'((({name})))'
					elif i < 10:
						name = f'(({name}))'
					else:
						name = f'({name})'
				return name
			return f'((({self.username})))'
		return self.username
Jump in the discussion.

No email address required.

i didn't test this

	@property
	@lazy
	def user_name(self):
		if self.earlylife:
			expiry_days = ceil((self.earlylife - time.time()) / 86400)
			if expiry_days < 5:
				earlylife_mult = 3 * expiry_days
			elif expiry_days < 10:
				earlylife_mult = 15 + (expiry_days - 5) * 2
			else:
				earlylife_mult = 25 + (expiry_days - 10)
			return ('(' * earlylife_mult) + self.username + (')' * earlylife_mult)
		return self.username

completely removes the O(n) nonsense and saves a shitload of string allocations/copies. if you wanted to parameterize it so you can easily change the multipliers you could do that as well but since it's hardcoded in the existing code I figure it might as well be hardcoded here.

I even used tabs for you even though I think using tabs in python code is evil incarnate.

Jump in the discussion.

No email address required.

ty king, even though i think this change is fricking pointless and makes the fricking code harder to read, i added it anyway since u took the fricking time to write it

Jump in the discussion.

No email address required.

More comments

Am I right in thinking that you're looping through for every instance of the award (shenanigans with time, expiry and earlylife)? If so just determine a single multiplier and do something like

name = f"{'('*mult}{name}{')'*mult}"

To save yourself rewriting the string hundreds of times whenever a tard with 400 awards appears.

Jump in the discussion.

No email address required.

i think this would probably save like 0.01ms lol

Jump in the discussion.

No email address required.

More comments

code obfuscation contest award

Jump in the discussion.

No email address required.

More comments

What did the shut it down award even do (i don't remember it but i do remember that i predicted kamala will win)

Jump in the discussion.

No email address required.

https://rdrama.net/h/changelog/post/165657/changelog-megathread-marseynotes/6443691#context

only 4 ppl used it in 2 months

     username      | count
-------------------+-------
 @The10thMan        |   570
 @CREAMY_DOG_ORGASM |   260
 @Xanthia           |     2
 @seal_cel          |     1
Jump in the discussion.

No email address required.

Lol got what I wanted :#gigachad2:

Jump in the discussion.

No email address required.

:#marseyitsover:

Jump in the discussion.

No email address required.

Oh

Seemed kinda pointless, good change king

Kamala will win

Jump in the discussion.

No email address required.

ty king

Jump in the discussion.

No email address required.

Link copied to clipboard
Action successful!
Error, please refresh the page and try again.