22 Mar 2023 |
DoctorCringe | not outside the ROTC community | 22:52:35 |
Raph | matt on twitter, the end is neigh | 22:52:40 |
DoctorCringe | im always there | 22:52:48 |
DoctorCringe | just not important to me | 22:52:55 |
trueauracoral | oh it was my instance of nitter acting up again I should use twitter the normal way | 22:52:57 |
Raph | to savor the chaos I'd assume | 22:54:03 |
Raph | u've fallen too deep into the meme | 22:54:57 |
DoctorCringe | nitter wont let me tweet | 22:55:44 |
DoctorCringe | i have no use for that | 22:55:49 |
Raph | the only good think elon cusp has ever done to twitter is that now it won't stop me from reading threads and profiles for as much as I want | 22:56:56 |
Raph | it used to be that without an account after 2 pages it'd force me to sign in | 22:57:11 |
trueauracoral | In reply to @_discord_679283565996933142:t2bot.io u've fallen too deep into the meme indeed | 23:13:03 |
25 Mar 2023 |
| Salih2#8673 changed their display name from Salih Muhammed to Salih2#8673. | 10:43:16 |
29 Mar 2023 |
trueauracoral | Raph Hello i see the PR you did. The majority of it is indentation and making the code prettier. I have vscodium but like if I am not using a special editor that does all this how am I supposed to modify the code afterwords | 22:37:28 |
trueauracoral | well maybe no I would be fine. But like at less I am editing this code on the size of a game boy advance I don't really need enters between the content inside parantheses | 22:38:56 |
trueauracoral | why would I? | 22:39:24 |
Raph | I ran your code through a linter and made it adhere to the standards, yeah | 22:42:14 |
Raph | I fixed a bug | 22:42:19 |
Raph | you did this if variable == None but it should be if variable is None | 22:42:46 |
Raph | also you did this
{True: "something", False: ""}[returnsBool()]
I changed this to
"something" if returnsBool() else "" | 22:43:36 |
Raph | * also you did this
{True: "something", False: ""}[returnsBool()]
I changed it to
"something" if returnsBool() else "" | 22:43:54 |
Raph | * I ran your code through a linter and made it adhere to the standards, yeah you can just install something like prettier and let it take care of the formatting for u but I don't really expect u to adhere to it, it was just a PR I did out of boredom and makes things more readable | 22:46:38 |
trueauracoral | In reply to @_discord_679283565996933142:t2bot.io I ran your code through a linter and made it adhere to the standards, yeah you can just install something like prettier and let it take care of the formatting for u but I don't really expect u to adhere to it, it was just a PR I did out of boredom and makes things more readable so basicly every time I code I would need to run it through a linter after and like have two sets of versions? | 22:54:41 |
trueauracoral | In reply to @_discord_679283565996933142:t2bot.io you did this if variable == None but it should be if variable is None why is that. Is that because != and == are for integers or soemthing | 22:55:00 |
trueauracoral | In reply to @_discord_679283565996933142:t2bot.io also you did this
{True: "something", False: ""}[returnsBool()]
I changed it to
"something" if returnsBool() else ""
interesting | 22:55:15 |
Raph | I have no idea what u're on about lol u can run it thru a linter if you want, u can just not if u want as well I generally don't want to be bothered so I run my code thru a formatter and linter and just let it take care of that part for me | 22:57:18 |
Raph | well None is an object, if you do == on it you can get other shit to be true when compared to none you should avoid comparing to none like that | 23:01:28 |
Raph | yeah u should take a look at python list comprehensions | 23:02:04 |
30 Mar 2023 |
| DoctorCringe changed their display name from DoctorCringe to DoctorCringe#5475. | 23:06:55 |
| DoctorCringe changed their display name from DoctorCringe#5475 to DoctorCringe. | 23:07:02 |