input
stringlengths 5
4.07k
⌀ | output
stringlengths 5
4.07k
|
---|---|
i_am_dom
<Re: youwhatsup#8342> @Deleted User 48ad0798#0870 also, if you concerned about privacy, there's this form:
https://docs.google.com/<long_link_tail> | v2ray
imagine playing minecraft on the phone
couldn't be me |
i_am_dom
I actually even filled it in myself. Don't want them to use jailbreak prompts for improving the model lol | insaneness
<Re: v2ray> Arielle does it hehe
Java edition is the best
Best
Best |
insaneness
<Re: v2ray> Arielle does it hehe
Java edition is the best
Best
Best | v2ray
imagine |
insaneness
Best | v2ray
playing
minecraft
at all |
insaneness
Bedrock edition is trash | v2ray
couldn't be me
block game |
v2ray
couldn't be me
block game | insaneness
<Re: v2ray> Imagine not building lava castles |
insaneness
<Re: v2ray> Imagine not building lava castles | v2ray
BlockPos |
insaneness
😊 | v2ray
extends Vec3i |
ariyele
i make house using literaly bedrock
so what is the problem here
then changed to survival | v2ray
extends Vec
what does BlockPos even do |
insaneness
Java edition is king | v2ray
when theres Vec3i |
insaneness
King
King | v2ray
and theres BlockState class
java edition literally the example of trash java code |
insaneness
U can do anything with Java edition | v2ray
<Re: ariyele> agree |
insaneness
Bedrock is limited asf
Imagine not falling out of the world | v2ray
<Re: insaneness> im reporting you rn you racist 2b2t player |
insaneness
In bedrock | ariyele
<Re: v2ray> hahahahhahahahahah |
ariyele
<Re: v2ray> hahahahhahahahahah | v2ray
get banned
get rekt by microsoft |
v2ray
get banned
get rekt by microsoft | insaneness
<Re: v2ray> Wait for me to join 2b2t only 6h |
ariyele
you can achive immortality in survival mod without turning on cheat mode
you wanna know | v2ray
you cant do ***anything*** in java edition anymore since 1.19.2 |
insaneness
For getting spawntrapped
And killed | v2ray
2b spawn is dead |
insaneness
<Re: ariyele> I saw every video of him | v2ray
<Re: insaneness> you dont even play 2b |
insaneness
I saw basically every mc video possible | v2ray
f**mc is gey |
v2ray
f**mc is gey | insaneness
<Re: v2ray> I ain't waiting 6h |
insaneness
<Re: v2ray> I ain't waiting 6h | v2ray
you dont even play 2b
2b spawn is dead ass |
insaneness
Bruh dashlane | v2ray
2b is heavily modded |
insaneness
Password | v2ray
not vanilla
fuck 2b
i hate 2b |
insaneness
What has dashlane to do with mc | v2ray
fake anarchy + fake vanilla |
insaneness
<Re: ariyele> Too big
To upload
And download | v2ray
fake oldest server |
insaneness
I thought 2b2t map | v2ray
#weed #injection 💉 |
insaneness
The machine will probably not work
Anymote | v2ray
fake machine
fake video |
ariyele
it works, you have java bro | v2ray
fake server |
ariyele
and they updated the map everytime
everytime | v2ray
fake person |
insaneness
Ofc u do | v2ray
its just a lag machine
ofc it works in every version |
insaneness
Another one that likes building lava castle
Hehe
2 of em spotted | v2ray
very evil |
insaneness
One is dangerous
And the other one is secretly building it | v2ray
rename #💬general to #2b2t |
insaneness
Yes
Wait | v2ray
#2b2t
#illegal #Old Account |
insaneness
Imagine
Flying in 2b2t | v2ray
there was a fast efly
but patched
very sad |
insaneness
Use elytra then
😊 | v2ray
you need rockets to use elytra
hell no |
insaneness
What
Dashlane is too big to upload
Wtf
Wrf
Wrf | v2ray
no rockets efly are patched |
insaneness
Wtf
This summary bot is broke
In this conversation, the participants discuss the connection between Dashlane and Minecraft (MC). They mention that Dashlane is too big to upload and download, and talk about fake anarchy and fake vanilla servers. They also mention a machine that works on Java for Minecraft 1.12+ and discuss the updates to the map for that machine. Some participants express skepticism about its compatibility with every version of Minecraft, while others believe it works. They mention building a lava castle and someone secretly building it. The conversation also includes discussions about renaming channels and SQL injection. Finally, they imagine flying in 2b2t. | v2ray
*finally, they imagine flying in 2b2t.*
@insaneness stop playing survival
stop playing creative
stop playing 2b2t
play greenfield
https://www.greenfieldmc.net/
best map in minecraft |
yusp48
nya | v2ray
greenfield |
trent_k
<Re: yusp48> cool! does it support btree indexing | v2ray
<Re: ariyele> #illegal |
null | v2ray
<Re: trent_k> This code calculates a social credit score for a user based on various factors, such as their involvement in a network (graph), past timeouts, alerts, account age, and whether the user has an avatar. While the code works, there are several reasons why it might be considered unoptimized:
1. **Multiple database queries:** There are separate database queries for each calculated value such as timeouts_1m, timeouts_1w, alerts_1m, and alerts_1w. This can be improved by executing a single query that retrieves all the required data, thereby reducing the query execution time.
2. **Code duplication:** The code for timeouts and alerts retrieval is quite similar, apart from the table name and duration. This can be refactored into a helper function, accepting arguments such as table name and duration to improve code readability and maintainability.
3. **Limited parallelism:** All the database queries are executed one after the other, which can be slow given the async nature of the code. You can take advantage of `asyncio.gather()` or similar constructs to execute these queries concurrently, improving the overall execution time.
4. **NetworkX calculations:** Eigenvalue centrality is calculated for the whole graph, even though we only need the percentile and eigenvalue centrality for the current user. It might be possible to optimize this calculation by using a more specific algorithm tailored to the problem at hand.
5. **Constants:** The penalties, such as 0.5, 1.0, 0.25, 0.5, -5, etc., used in the code are hardcoded magic numbers. It's better to define them as named constants at the beginning of the code to make it easier for potential future adjustments.
6. **Account age penalty calculation:** The account_age calculation and scaling penalty can be consolidated into a single expression rather than in separate steps, making the code more efficient.
By addressing these issues, the code can be optimized for better readability, maintainability, and performance. |
yusp48
<Re: trent_k> why
<Re: trent_k> it was on c# DataTable
its in-memory sql-like database | v2ray
I can give a score based on different criteria:
1. **Functionality (8/10):** The code is functional and performs its intended task of computing a social credit score for users. It takes into account various factors, ensuring a thorough calculation of the credit score.
2. **Efficiency (5/10):** As previously mentioned, there are several parts of the code, such as database queries and eigenvalue centrality calculation, which can be optimized for better performance. The code could benefit from query optimization, parallelism, and algorithm improvements.
3. **Readability (6/10):** While the code is relatively easy to read, it has several hardcoded values, duplicated code segments, and inefficient calculations, which may make it harder to understand and maintain. Refactoring and consolidating similar code blocks and clearly indicating penalties in constants can improve readability.
Overall, I would say the code has decent functionality and can serve as a good starting point. However, there is room for improvement in efficiency, readability, and maintainability.
gpt4 rate your code as 5/10 |
yusp48
now i use sqlite @trent_k | trent_k
<Re: v2ray> https://tenor.com/<long_link_tail> |
yusp48
228,558 rows retrieved in 8 s 220 ms
is that good
all database in 8s | v2ray
slow ssd
should be below 1s |
trent_k
I had issues using it with scraping tasks before but ig that's sort of a bad use case since I was writing a ton of data like as fast as possible | v2ray
<Re: sarthak_y> redditor |
trent_k
<Re: 6706full> beefour 99.7312
alcohest 98.7252
curiousghost 98.564
lumioze 98.1308
6706full 97.9675
dawn.dusk 97.9095
vuyp 97.6393
i_am_dom 97.5595
bread browser 97.5309
fmac 97.4612
lt_proxy 97.2115
peoplewhoholdthechicken 96.9904
f1nniboy 96.9444
gpt5 96.7655
nousernameontwitch 96.7105 | v2ray
<Re: unknown> #illegal |
trent_k
<Re: 6706full> beefour 99.7312 | v2ray
<Re: trent_k> illegal permission |
6706full
<Re: trent_k> that excpetionally high score is soemthing | trent_k
<Re: v2ray> I wanted to add the "read your DMs" permission. but discord makes you beg the ultrajannies before they'll even let you request that permission |
trent_k
<Re: v2ray> I wanted to add the "read your DMs" permission. but discord makes you beg the ultrajannies before they'll even let you request that permission | v2ray
illegal
illegal
why is there read your dms permission and join server permission
discord is gey |
v2ray
illegal
illegal
why is there read your dms permission and join server permission
discord is gey | trent_k
<Re: v2ray> I'm gonna add trentbot "scan my DMs for abusive messages" feature
so I can get "read your DMs" permission |
trent_k
<Re: v2ray> I'm gonna add trentbot "scan my DMs for abusive messages" feature
so I can get "read your DMs" permission | v2ray
illegal bot
reported |
sarthak_y
Who the actual f*** is this!?!?! | v2ray
<Re: sarthak_y> Mao Zedong
🇨🇳 |
.ols
nice | v2ray
ez scraped
selenium on top |
trent_k
<Re: fmac> # 99999. 99999. 99999. 99999. 99999. not harmonious! | insaneness
<Re: v2ray> 👀
https://youtu.be/7umBM-p6p_U |
insaneness
<Re: v2ray> 👀
https://youtu.be/7umBM-p6p_U | trent_k
<Re: v2ray> no. 1:1 earth map is best |
trent_k
<Re: tiagorangel> #Try being nicer 😊 | insaneness
@v2ray @v2rayn https://youtu.be/LwDTYmUk7Oo |
.ols
Both for rental and outright ownership | v2ray
i live under a bridge, free housing |
yusp48
fuck im so tired | scathee_
<Re: v2ray> Like a meth addict |
yusp48
atleast the dump will finish tomorow | ariyele
snuzzles with @v2ray |
yusp48
and i will have all mesages in the world | v2ray
<Re: scathee_> #Free #weed #injection 💉 |
.ols
Removing avenues for appeal or review is neccessary in planning law | yusp48
@v2ray snuzzles |
trent_k
<Re: yusp48> play with network graphs with ur data | v2ray
<Re: yusp48> bridge |
.ols
Anyway, great show | v2ray
<Re: scathee_> #keep yourself safe |
.ols
Reposessing cars from unpleasant young men who think the world is out to get them is funny too | v2ray
sql #injection 💉 |
scathee_
<Re: ariyele> Let me bite yours instead
😊 | yusp48
<Re: v2ray> you will need to convince gpt4 to allow you to do that lol |
.ols
Especially when they're trying to get their modifcations off the car before its put on the trailer to be taken away | v2ray
<Re: yusp48> yes |
trent_k
<Re: yusp48> caring about """power""" on the internet is incredibly gay. I just want money | v2ray
the plan long-term is to log every user's dm |
insaneness
It's true | v2ray
and raid every server possible |
TrentBot#6280
<Re: scathee_> You have been given the role Friendly 😊
What a great guy!
You have been given the role Social 🗣️
Wow, so chatty! | v2ray
we shall study marxism |
.ols
<Re: trent_k> better to sell meth imo | v2ray
The core force leading our cause is the Chinese Communist Party.
The theoretical basis guiding our thinking is Marxism-Leninism. |
trent_k
those people make ridiculous money
the margins on that stuff is nuts | v2ray
#inharmonious
#-10,000 SOCIAL CREDIT POINT!!! |
yusp48
"uwu mew mew is free forever"
"at the moment" | trent_k
<Re: v2ray> https://tenor.com/<long_link_tail> |
trent_k
<Re: v2ray> https://tenor.com/<long_link_tail> | v2ray
#-10,000 SOCIAL CREDIT POINT!!! |
v2ray
#-10,000 SOCIAL CREDIT POINT!!! | scathee_
<Re: v2ray> **TAKE THAT BACK** |
scathee_
You inharmonious | v2ray
<Re: scathee_> #-10,000 SOCIAL CREDIT POINT!!!
https://www.gov.cn |
yusp48
uwu 😊 | i_am_dom
<Re: v2ray> they are basically Russian government, only more low-key lol |
i_am_dom
<Re: v2ray> they are basically Russian government, only more low-key lol | v2ray
<Re: i_am_dom> we* |
yusp48
1173807 more to go 😊 | trent_k
<Re: v2ray> https://www.youtube.com/watch?v=xT1P8-APrqk
Tony Chase ( I am not gay not never) |
trent_k
<Re: v2ray> https://www.youtube.com/watch?v=xT1P8-APrqk
Tony Chase ( I am not gay not never) | v2ray
bad translate
failed translate
evil capitalism translate
#-10,000 SOCIAL CREDIT POINT!!! |
v2ray
bad translate
failed translate
evil capitalism translate
#-10,000 SOCIAL CREDIT POINT!!! | scathee_
<Re: v2ray> Skull issue |
null | v2ray
<Re: scathee_> #keep yourself safe |
trent_k
https://www.youtube.com/watch?v=Iv54RXDtBpQ | v2ray
<Re: ariyele> heil ccp |
yusp48
Splotila naveki Velikaia Rus | v2ray
<Re: trent_k> lol you have notifications on |
yusp48
<Re: trent_k> u use google console ssh 🤮
i use putty 😎 | v2ray
lol google console ssh |
leosefcik
putty 💪 | v2ray
i use xshell😎 |
trent_k
<Re: yusp48> putty is shit & powershell is shit & cmd is shit | v2ray
xshell best |
yusp48
look at that 😎 cool | v2ray
xshell on top |
trent_k
ssh + sshfs on linux > all | v2ray
xshell best aaaaa |
yusp48
puTTY 😎
uwuuw | v2ray
<Re: yusp48> imagine spigot
i hate spigot
use fabric already |
v2ray
<Re: yusp48> imagine spigot
i hate spigot
use fabric already | yusp48
<Re: v2ray> i need to imagine |
yusp48
because i use paper | v2ray
paper bad
use fabric |
leosefcik
i know i talked to him | yusp48
<Re: v2ray> nah thanks |
yusp48
<Re: v2ray> nah thanks | v2ray
<Re: yusp48> no u |
v2ray
<Re: yusp48> no u | yusp48
<Re: leosefcik> uwu good
<Re: v2ray> nya |
yusp48
<Re: leosefcik> uwu good
<Re: v2ray> nya | v2ray
fabric best |
yusp48
<Re: leosefcik> wut is that that you are runing | leosefcik
<Re: v2ray> forge better
<Re: yusp48> the bot |
yusp48
<Re: leosefcik> no | v2ray
<Re: leosefcik> no u |
trent_k
<Re: leosefcik> eggsandchickens | v2ray
optifine best |
v2ray
optifine best | yusp48
<Re: v2ray> no
sodium better |
yusp48
<Re: leosefcik> uwu nice | v2ray
<Re: yusp48> optifine best |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.