#general

1 messages Β· Page 296 of 1

merry temple
#

i only broke a rib in that

#

some how

steep bane
#

Anyways goodby for now, timefor exams

glass hinge
#

@steep bane @echo oar yay, i am back broke...

#

Start of my day lol

steep bane
glass hinge
#

Yeh but in -

#

Almost 15k in -

steep bane
glass hinge
#

Is that 100 or 1000

steep bane
glass hinge
#

Oh

steep bane
#

3-5

glass hinge
#

What do you get with that?

#

Can i get chocolate with that?

steep bane
glass hinge
#

Chocolate Bar

glass hinge
steep bane
steep bane
glass hinge
#

Oh

steep bane
#

Cokelate bar is like 8000

glass hinge
#

Is that supposed to be cheap from your pov?

steep bane
west ledge
#

@steep bane damn rich

#

brady pfp

steep bane
steep bane
west ledge
#

did u commission him?

steep bane
#

Phone unzip suck

west ledge
#

wha

steep bane
#

Thats where all my money gone to

steep bane
#

Here

west ledge
#

but if you're eating in malls it costs around 70-90k

glass hinge
steep bane
stone fern
#

How do I get my bot

#

On the site

steep bane
steep bane
#

Wait not that cmd?

#

I forgot what tag

stone fern
steep bane
lilac geyserBOT
#

@stone fern

topgg Adding Your Bot To Top.gg

So you want to list your bot on Top.gg? We have a support article to help guide you through the process! If you need more help please contact us in #support!

topggDotRed Click here to follow our guide!

steep bane
#

Thats it

fallen dirge
steep bane
steep bane
west ledge
steep bane
stone fern
west ledge
#

well not every day

#

once in a while

steep bane
steep bane
west ledge
#

very rich people

steep bane
fallen dirge
steep bane
fallen dirge
#

nah

echo oar
#

You guys flaunting your money

#

I can show you 0's

west ledge
glass hinge
#

Tell me in Won

#

I'll tell you

glass hinge
#

Like 100k won you'll get only 5 lipsticks or 2 body lotion / decent quality

fallen dirge
#

uh

#

maybe try use fast food as comparison πŸ’€

#

i don't think we boys understand which one is decent lipsticks or body llotions

fallen dirge
#

I use Vaseline

glass hinge
#

We don't use that here in Korea lol

fallen dirge
#

oooo

#

I just use what I see and that looks promising KEK

glass hinge
fallen dirge
#

like mcd ig

glass hinge
#

Apples here are about 10k/1kg

fallen dirge
#

oh

west ledge
fallen dirge
#

here's 30k/1kg lmao

#

damn

glass hinge
steep bane
steep bane
glass hinge
glass hinge
steep bane
#

But thats in kg

glass hinge
#

Kg!

#

You buy in kg?

#

I buy in g lol

#

Also i dont use vasline

steep bane
steep bane
glass hinge
#

I mean how you use for projects

teal granite
steep bane
fallen dirge
#

like my biology lab

#

it's to seal air from coming

steep bane
#

But its expensive

steep bane
fallen dirge
#

my school used that

#

well not for a high pressure one

steep bane
#

And cheeper

fallen dirge
glass hinge
#

Hey @sullen dove , how aee you? Long time no see

sullen dove
#

hii

#

im doing good, wbu

echo oar
#

hello cosmic

sullen dove
#

hai

echo oar
#

glad you're doing good

sullen dove
#

thanks

#

wbu

#

how u been doin

echo oar
#

dying

#

πŸ’€

#

frontend is hard

#

idk how you guys do it

west ledge
#

@sullen dove hai hai

#

haven't seen u in a while

sullen dove
#

heloo

sullen dove
quartz moss
#

both are easy it's weaving the two

echo oar
quartz moss
#

passing data between the browser and backend grrrr

west ledge
static tartan
#

hi

ruby dome
#

Skibidi

quartz moss
#

i am amazed at how understandable this document is

#

it's not every day that i read a 550 page ECMA standard but by god i actually understand it!

echo oar
#

why the fuck

#

are you doing that

quartz moss
#

i'm skimming through to read about how the .NET bytecode is defined

#

which i am most certainly not copying in my implementation!

#

mostly where i'm at now is i need to figure out how to translate something that looks like ```fn main(): int32
{
.entry
.locals[int32, int32]

ldcst.s4 5;
stloc 0;
ldcst.s4 5;
stloc 1;
ldloc 0;
ldloc 1;
call add(int32, int32):int32;
ret;

}``` into a single file that can be executed by a virtual machine

#

so i need to make symbol tables and all that fun stuff

echo oar
#

like

#

ECMAScript?

quartz moss
#

no

echo oar
#

oh ok

#

I was confused

quartz moss
#

ECMA 335

echo oar
#

I was like bro doesnt even use js

#

😭

quartz moss
#

C# and .NET are ECMA standardized basically

west ledge
#

interesting

echo oar
#

indeed

quartz moss
#

it's crazy how many decisions have to be made like the more i read about stuff the more i'm like damn

#

like even something as simple as "what should happen when you divide an integer by zero"

west ledge
quartz moss
#

none

#

i'm implementing the bytecode and vm before i build any languages on top of it

#

it'd be something like

int main() {
  int a = 5;
  int b = 5;
  return add(a, b);
}
west ledge
#

icic

quartz moss
#

everything is still open to change though like i'm probably going to change int32 to s4 to be more in line with how the instructions are named

#

i'm already basically rewriting half the language grammar

#

i'm also starting to think of how i want modules to work

#

which i have made 0 progress on lol

#

lotta shit to do πŸ˜”

#

i am actually kinda a fan of how F# does it

#

every file has to have at least one module, and you manually include them in the specified order to prevent cyclic dependencies

#

to learn

#

i've already learnt a whole bunch of new things and i haven't even made a working product

#

the project is already a success

glass hinge
#

I'm back frands

quartz moss
#

yes

#

specifically i am making a language and a runtime

#

at least the runtime i am set on making now

#

it's actually kinda funny how easy it is to make a very simple language work

#

like waaay easier than you would ever imagine, the hard part is just understanding the concepts and how they all work together

echo oar
quartz moss
#

a very simple compiler is only 3 components

quartz moss
#

it's C# you need a return statement

echo oar
#

return ugly

#

just add(a,b)

#

just cuz your language is written using C# doesn't mean you have to make its syntax follow it

quartz moss
#

yeah well C# isn't an expression-based language like that buddy!

#

nope that's not my language

echo oar
#

do it under the hood

quartz moss
#

that's C#

echo oar
#

πŸ™„

quartz moss
#

i have not crafted any syntax for my language

quartz moss
echo oar
#

oh

#

that makes sense

#

cuz that looked too good

#

uhm

#

why

quartz moss
#

anyways a very simple programming language is basically
Lexer
Parser / these are your compiler stages
Interpreter

#

making an actual programming language that's practically usable is about 1000x more work but

echo oar
#

I mean

#

sure you can execute python code in js

#

you would have to use eval to run python cli but yknow

quartz moss
#

yeah a language that combines both languages would be pretty impractical

echo oar
#

It would also be rather useless

quartz moss
#

you're better off writing a layer over one of the languages that lets you interface between them

echo oar
#

you'd be combining two slow languages

quartz moss
#

the two languages are radically different in nature though

echo oar
#

to make an even slower language

quartz moss
#

javascript is very asynchronous and event driven

west ledge
#

i still never understood how an AST works

quartz moss
#

and then you'd have to deal with how do you translate objects between the two languages

west ledge
quartz moss
#

big tree

#

all it is

#

abstract syntax tree

echo oar
#

hey parm

#

Question

quartz moss
#

it's an abstract representation of what your code does

echo oar
#

how would you handle authentication on a backend

quartz moss
#

do not ask me i have not finished my one attempt at that

echo oar
#

πŸ˜”

#

Fuck man

#

What happened to the good programmers /j

quartz moss
#

there are also concrete syntax trees which represent what your code is in terms of the actual characters in them (more accurately tokens)

west ledge
echo oar
#

js was made for the web buddy

#

that was a thing a LONG time ago

quartz moss
#

compilers basically work as layers of abstractions

#

you have a lexer which abstracts characters in a file into larger tokens

echo oar
#

leaves are the tokens

quartz moss
#

you have a parser which abstracts tokens into a tree

echo oar
#

branches are how each token relates to the other

quartz moss
#

you might have more layers which take that concrete tree and abstract it into an AST

west ledge
echo oar
#

I mean its not much different

#

the only difference is how you parse this tree and evalutate it

quartz moss
#

yeah the AST is not the hard part to understand, it's all of the things you do to it and code gen and ugh

echo oar
#

parsing is where the difference is

#

With languages you have to parse it using a set of guidelines

quartz moss
#

well no it's parsing that's made the tree in the first place

echo oar
#

wait no

#

its the interpreter

#

my bad

quartz moss
#

you don't parse the tree, you visit it

echo oar
#

When I was making my bytecode interpreter in C

#

it was rather interesting

#

I gave up tho cuz uhm no thanks

#

:D

west ledge
echo oar
#

nah im more focused on my current proj

west ledge
#

i understand

#

@echo oar how's the frontend so far btw

echo oar
#

Well

#

I know what to do

#

but now its the backend stopping me

west ledge
silent moth
#

Whatt?????

sullen bridge
#

funny

#

i saw that

west ledge
#

@sullen bridge hai hai

sullen bridge
#

hi

#

wait

#

hi sweetie

west ledge
#

how's your health

sullen bridge
#

i couldn't sleep last night

#

got a cold boo_hoo

#

hru doing

west ledge
#

sobb take care!! get well soooonn!

#

i'm doing great! went back from a barbershop poggythumbsup

sullen bridge
#

ty

#

ooh pog

echo oar
#

bro went to a job interview sick asf

#

πŸ’€

west ledge
sullen bridge
#

My second option is join my family business permanently

#

But ion wanna do that just yet

hardy sun
#

i have a bot called "Giveawaybot", and its verified (like back in 2022 it was)
and now i added a ton of other features, like mod, automod, fun, economy, and etc
but i cant change the name unless i get copyrighted, can my bot go on top.gg because of its false-leading name?

#

it still has the giveaway feature, but it has many other features too

#

im not making a new bot cuz its in like 280 servers and its verified, like old-verified not the new one, lol

echo oar
#

Doesn't matter the name

#

Just display your features out properly

#

:)

hardy sun
#

nice thanks so much

#

its so annoying that i cant change my bot's name unless i get copyrighted

#

kinda wish i would get copy righted now, LOL

#

from a giveaway bot to a multipurpose bot

echo oar
#

you can change your bots name at any time

#

Oh wait

#

Its verified

hardy sun
#

i had an old bot called "Mikio" and i wanted to remake that

fallen dirge
hardy sun
#

its so annoying cuz i bought a whole domain for the dashboard too

#

also i know its not related to top.gg but im just venting about it lol

weak perch
#

Is website down?

hardy sun
fallen dirge
#

time to make a company and sue myself /s

hardy sun
weak perch
torn fiber
#

suna hai bitxier chud gya

#

☠️

hardy sun
#

wait what voting page

echo oar
#

Your grace period of deciding what your bot is, is before 100 servers

#

After 100 servers why would you want to change your bot's main features and purpose?

#

At that point make a new bot.

echo oar
#

not your bot

hardy sun
echo oar
hardy sun
#

where can i apply to be a bot reviewer?

stuck spindle
#

@echo oar

#

Good morning :)

echo oar
#

Morning

stuck spindle
#

What do I eat for breakfast

echo oar
stuck spindle
#

Good idea

west ledge
#

yaaay you two are no longer hating each other again :)

echo oar
#

ewww its lizard /joke

#

jokes aside

#

lizard my frontend and backend communicate with each other!

#

It only took me 3 days

#

but we got there

west ledge
#

congrats misty!!

echo oar
#

oh null

#

dms

west ledge
steep bane
west ledge
#

@steep bane hii

#

the test is tomorrow and i havent studied topggSob

steep bane
west ledge
#

i am too busy working on my c++ app

stuck spindle
echo oar
#

yuh!

#

My vod platform is closer to being done not really still have a TON to do

stuck spindle
#

Don’t forget about us when you’re rich and famous

echo oar
#

wym

#

ima employ you

#

😏

stuck spindle
#

:o

#

Doing what

echo oar
#

backend dev πŸ’ͺ

#

I need your brains

#

I am hoping to get a working concept done in the next few months

#

so I can start getting donators to actually fund the project

fallen dirge
west ledge
#

no u

stuck spindle
#

Wdym

#

I’m very dumb

echo oar
#

nah

#

very smart

west ledge
stuck spindle
#

Lizards can’t even read one book

echo oar
#

null you dont have to do anything to be helpful Sadge

west ledge
#

why so?

echo oar
#

You can read

west ledge
echo oar
#

πŸ’€

west ledge
#

hahahaha yeah

echo oar
#

Not to mention your refactors arguably makes my code better

west ledge
stuck spindle
#

Rust rewrite

west ledge
#

uhm lizard the backend is in Rust

stuck spindle
#

Woah

fallen dirge
#

sick

echo oar
#

yea

fallen dirge
#

πŸ”₯

echo oar
#

Its 100% rust

#

frontend is in svelte

stuck spindle
#

Which crates are you using

#

Don’t say rocket

echo oar
#

Axum

stuck spindle
#

GOATED!!!

echo oar
#

I am also using axum login cuz fuck making auth myself atm

#

πŸ’€

stuck spindle
#

Fair

echo oar
#

I just want to get a working product shipped

stuck spindle
#

Ye

echo oar
#

I will worry about my own auth system l8r

chrome crow
#

hi

stuck spindle
#

Sick

echo oar
#

It also is rather neat, it has permission protected endpoints :D

west ledge
echo oar
#

yea nah

fallen dirge
#

i don't do rust

echo oar
#

I debated on selling my kidney to hire takiyo

fallen dirge
#

😭

echo oar
#

I saw takiyo's frontend

#

and was instantly regretting my life choices

west ledge
#

frfr takiyo so pro

fallen dirge
#

nahh

stuck spindle
#

Front end is too hard

echo oar
#

on fucking god

west ledge
#

nah frontend is not too bad

fallen dirge
#

rust >>> front end

echo oar
#

3 days just to display someone's initials when they login

stuck spindle
#

It sucks

echo oar
#

3 FUCKING DAYS

west ledge
#

you just need to be good at playing around with dev tools

echo oar
echo oar
#

Lets be real real quick

fallen dirge
echo oar
#

I haven't touched frontend since 2019

stuck spindle
#

Someone should make better front end I think

fallen dirge
#

soon you'll think it's easy

west ledge
#

I haven't touched frontend since 2021

echo oar
#

Actually its been longer

#

cuz I made my first portfolio in 2018

#

and thats when I stopped web dev

#

πŸ’€

west ledge
#

I can help ya with frontend if you want misty

echo oar
#

I mean

#

svelte is nice cuz its basically just html

#

svelte is simply a compiler

west ledge
#

mhm

echo oar
#

so yea anyone who knows html and css (of which I barely know) can use svelte

#

:D

west ledge
stuck spindle
#

Are you using a css library or just raw

echo oar
#

def css

west ledge
#

we're using tailwind

echo oar
#

they have a lot of neat prebuilt themes with the ability to make our own and load it up

#

:p

stuck spindle
#

Nice

echo oar
#

btw lizard if you ever use svelte

#

dont use flowbite

#

they blow as a ui lib

stuck spindle
#

You’re using everything I was except I used vue xd

stuck spindle
echo oar
#

vue is not the worst btw

stuck spindle
#

Vue is very nice

echo oar
#

everyone hates on vue

#

I was debating on using vue myself

#

but state management in svelte is just easier once you get used to it

#

after my failure wth next

#

it was vue or svelte

stuck spindle
#

It’s simple

west ledge
#

vue looks like the middle ground between angular and react

echo oar
#

vue came out a year after react

stuck spindle
#

Looks nothing like either imo

echo oar
#

so it very well could of been inspired

#

angular tho is a stretch

#

angular is in its own league

#

It quite literally was built for enterprise applications and honestly has lost a lot of relevancy since react has became more mainstream

glass hinge
#

Hello Everyone

echo oar
#

Sup Finki

glass hinge
#

Lying down

#

On bed

#

Having back pain

echo oar
#

Im also lying down

#

on bed

#

dog on my lap

#

having leg pain

echo oar
#

more like crushing me

glass hinge
#

I pity u

echo oar
#

pity my dog

#

bros bout to get scared awake

west ledge
#

poor doggo topggSob

glass hinge
#

Let me show my cutie

west ledge
#

how heavy is your dog

echo oar
#

hes a big pup

#

like 5-6 months old already

#

but bros heavy asf

glass hinge
echo oar
hollow tundra
#

Dog

stuck spindle
#

Dog

echo oar
#

yuh

west ledge
#

cute doggo

hollow tundra
stuck spindle
#

hello, taz evader

hollow tundra
#

Today I'm taz evading!!

stuck spindle
#

woah

west ledge
#

why are you evading tazes

stuck spindle
#

that's totally awesomesauce

stuck spindle
west ledge
#

what did tazes do

stuck spindle
#

they suck!!

hollow tundra
#

Bolise tazed me :(

stuck spindle
#

unacceptable

#

I am goinb tokill him wityhn a rovk

hollow tundra
#

Granted I was naked in the store but how tf else am I supposed to buy clothes so I'm not naked

stuck spindle
#

(inganme)

hollow tundra
#

Catch 22

#

YES

molten quest
#

@paper quail

stuck spindle
#

why are you pinging the owner

molten quest
#

bc i need to add it to my server

echo oar
#

You cant

molten quest
#

whys it offline

echo oar
#

Its no longer in use

molten quest
#

oh

#

which one is in use

echo oar
#

None of them. You can't / shouldnt invite the bots to your server.

#

Top.gg no longer has a server listing feature.

molten quest
#

why does this server exist then lol

stuck spindle
#

good point

echo oar
warm sphinx
#

Can anyone suggest me how should i grow a new bot?

echo oar
#

Make a good bot

#

Find a niche, milk it

#

In reality growing a bot is just making something people will want to invite

#

If you are just making the average multi purpose bot you can say good bye to that dream as it is a hard thing to accomplish anymore due to how saturated the market is

glass hinge
#

I made Bake & Earn bot when it wasn't a thing and nobody thought about that... And it got 125 server in few hours and after verification got 17k server in 3days

echo oar
#

All it is just finding a niche, sticking to it and riding the wave

#

If you find something no ones done Yes hard but its possible, you can make a successful bot

#

providing you code it properly

glass hinge
#

Ye true

stuck spindle
#

@echo oar

#

you should play the elden ring video game

echo oar
#

I wish I could

#

but as you know

#

I have a macbook from 2015

#

only thing im running is my hopes and dreams

stuck spindle
#

u should build a pc and play the elden ring video game

echo oar
#

you should like give me the money then

stuck spindle
#

ok how much u need

echo oar
#

to play elden ring?

#

Pretty sure that game is one of the beefiest games out there

#

πŸ’€

stuck spindle
#

wouldn't call it beefy but the recent update made it run like shit xddd

echo oar
#

lol

stuck spindle
#

but it's not that difficult to run

echo oar
#

uhm

#

if I dont want to enjoy the game sure

glass hinge
topaz anchor
#

Deja Vu πŸ‘€

echo oar
#

I bought it

#

played it for like 1h

#

and refunded it

#

πŸ’€

torn fiber
#

@echo oar

#

give me some owo cash

stuck spindle
#

insane

echo oar
#

wtf

stuck spindle
#

sharing is caring

echo oar
#

thats my owo cash

torn fiber
#

πŸ₯Ί

#

You have ego

echo oar
#

I WORKED HARD FOR ME 705 COWONCY

torn fiber
echo oar
#

no

#

705

torn fiber
#

☠️

echo oar
#

Lets be nice

stuck spindle
#

woah

#

rude

torn fiber
echo oar
#

Gonna have to report you to the police now

glass hinge
torn fiber
glass hinge
#

Do refund give backs money?

torn fiber
echo oar
#

of course it does

torn fiber
strong spindle
#

One message removed from a suspended account.

echo oar
#

damn

stuck spindle
#

faithie!!!

#

hi

glass hinge
stuck spindle
#

hello

torn fiber
#

how i learn python language

echo oar
#

are the cod lobbies coming to top.gg

glass hinge
#

Lizard hiiii

stuck spindle
#

hiiii

#

hru

glass hinge
#

Who are u?

torn fiber
glass hinge
#

How*

echo oar
#

Hoe

stuck spindle
#

WHAT

echo oar
#

damn

glass hinge
#

Sorry

#

I didn't mean that

stuck spindle
#

u hate me...

echo oar
#

lizard just got called irrelevant 3 times

stuck spindle
#

I knew it

glass hinge
glass hinge
glass hinge
hardy sun
#

obi give me your damn owo cash

stuck spindle
#

damn sorry

glass hinge
torn fiber
#

lizard gave me some owo cash

stuck spindle
#

Idk what that is

echo oar
#

dont tell me these two are together

torn fiber
hardy sun
#

thoughts on this logo?

glass hinge
#

I have about 3-4bil

hardy sun
#

i made the discord logo very old

stuck spindle
#

ai moment

glass hinge
#

Owo cash

echo oar
#

text is unreadable

torn fiber
#

show me some scary things

hardy sun
hardy sun
echo oar
#

why

glass hinge
echo oar
#

that bot is so confusing I gave up trying to use it

stuck spindle
#

@strong spindle can u say hi back

glass hinge
#

I am saving so i can marry

strong spindle
echo oar
#

huh

glass hinge
echo oar
#

marry in owo bot?

glass hinge
#

Ye

echo oar
#

who tf you marrying for 4bil

#

joe biden?

stuck spindle
#

how have u been friend :D

glass hinge
#

You buy ring for 10bil and then marry lol

strong spindle
#

One message removed from a suspended account.

echo oar
#

sounds like a complete scam

stuck spindle
#

:(

#

sorry

glass hinge
strong spindle
stuck spindle
#

hope u feel better soon

echo oar
#

just be a trillionaire

stuck spindle
#

!!

echo oar
#

max bet 4bil

#

hit the jackpot

glass hinge
echo oar
#

400x your profits

glass hinge
#

Instead i can make real cash lol

echo oar
#

yea

#

I wish I could make some real cash

#

πŸ’€

stuck spindle
#

it's easy

glass hinge
stuck spindle
#

am sayin

glass hinge
#

Juat do things you're good in and do that on streets

hardy sun
#

guys i have Parkinson's

echo oar
#

huh

#

What am I doin on the streets?

#

I dont want to be on the streets

#

:c

glass hinge
#

Like you are good painter, then do painting on street makes alot of attention and some might give $

stuck spindle
#

basically u can sell ur body

#

on the street

echo oar
#

im not some 5$ hooker

hollow tundra
#

Was it free or premium bot?

glass hinge
echo oar
#

200$ at least

glass hinge
hollow tundra
stuck spindle
#

hi

#

uhh

#

dw about it

echo oar
#

lizard is telling me to become a sex worker

#

πŸ˜”

glass hinge
#

Then definitely i got it too premium when it hit 41k servers

hollow tundra
#

Not again 042_boohoo 042_boohoo

glass hinge
echo oar
#

AGAIN?!?!?!

#

LIZARD

#

WTF DO YOU DO IN YOUR SPARE TIME

hollow tundra
echo oar
stuck spindle
echo oar
hollow tundra
#

Gonna stab someone with the tetanus blade

echo oar
stuck spindle
glass hinge
hollow tundra
#

Yes

stuck spindle
#

@echo oar

echo oar
#

what

stuck spindle
#

should I make a discord bot in rust but no library

#

4fun

glass hinge
#

I never thought i could make money from bots

echo oar
#

uhm

#

no

#

come work for me instead

#

:)

stuck spindle
#

how much u paying

echo oar
#

uhm

#

400$ in 5 years time

#

:)

stuck spindle
#

so like

glass hinge
#

Later i realized i could then eventually i lost my phone and my discord account with my bot due to 2fa

stuck spindle
#

3 cents per hour

echo oar
#

more like

#

.0000000000000003 cents

#

let me do the math

glass hinge
#

I hate maths, failed alot of time in math in school days lol

stuck spindle
#

same

echo oar
#

.048 cents an hour

stuck spindle
#

I was closer

echo oar
#

sounds appealing right?

stuck spindle
#

yea

echo oar
#

we have benefits to

#

you dont get bullied by parm

#

and if you do

#

we gang up on em

stuck spindle
#

sign me up!!!!

warm sphinx
echo oar
#

Bet just sign on the line that says you sell your soul to me entirely agree to the terms

stuck spindle
#

πŸ‘

echo oar
#

on a serious note

#

sure why not

#

if you want to suffer working with websockets, http, rate limits, etc etc

#

not to mention you will be doing async rust

#

which means blocking calls

stuck spindle
#

I mean I'd be willing to take a look and give advice and SOMETIMES do code but I can't promise to beactive

#

I've done a lot of async rust

echo oar
#

we making the next youtube

#

cant have slackers

#

πŸ’ͺ

stuck spindle
#

I been slacking

echo oar
#

on a real note, I am building a community server/support server for it so if you do want to hang around (only me, zobs and null rn) go for it

#

this is not an ad I promise

stuck spindle
#

caught red handed

echo oar
fallen dirge
glass hinge
#

Imagine having nitro

stuck spindle
#

just say ur broke

fallen dirge
#

me too

frosty flint
#

me too

hollow tundra
topaz anchor
#

You should really be posting that in your own server.
Users of bots rarely join here.

fallen dirge
#

🀨

fallen dirge
#

man nextjs is sick

#

first time using ssr and it's great KEK

#

minimal request from client-side

topaz anchor
#

ISR is so amazing too

strong spindle
#

One message removed from a suspended account.

fallen dirge
hollow tundra
#

Pls don't say stuff like that

strong spindle
hollow tundra
#

It's ait

naive imp
#

hi guys

#

I am the owner of Ali Cabbar, I could not activate the bot, now it is permanently active, you can do any test you want, with love.

torn fiber
#

give me owo

strong spindle
#

One message removed from a suspended account.

#

One message removed from a suspended account.

hardy sun
#

Hi

#

How to add tickets to my own server

north nest
#

hi

fallen dirge
west ledge
fallen dirge
#

static data from api that doesn't require changes

west ledge
#

static data?

#

like what

fallen dirge
#

reactjs: server send html -> client loaded -> fetch data -> done
ssr: server load data -> server send pre-generated html -> client loaded

fallen dirge
#

or maybe you have /ip-checker/:ip page, if you don't want to show loading, you use ssr

west ledge
west ledge
fallen dirge
#

yes

west ledge
#

icic, thanks!

fallen dirge
#

np!

strong spindle
#

One message removed from a suspended account.

fallen dirge
#

nope πŸ˜”

strong spindle
#

One message removed from a suspended account.

#

One message removed from a suspended account.

#

One message removed from a suspended account.

fallen dirge
#

o

#

it's out already?

strong spindle
#

One message removed from a suspended account.

#

One message removed from a suspended account.

fallen dirge
#

😭 my bad

strong spindle
#

One message removed from a suspended account.

fallen dirge
#

yeah damn i'm watching the eps 1 rn πŸ’€

#

sick af

#

damn the ending

strong spindle
#

One message removed from a suspended account.

#

One message removed from a suspended account.

#

One message removed from a suspended account.

fallen dirge
#

1.5x

fallen dirge
strong spindle
#

One message removed from a suspended account.

silk plank
#

I literally don’t see it

strong spindle
#

One message removed from a suspended account.

fallen dirge
#

dw i still get the point

narrow valve
#

whats the prize for banner contest?

west ledge
#

i always skim through youtube videos

fallen dirge
vague blade
#

@sacred lantern
That not a valid reason to reject a bot

#

And the things you told there
Makes no sense

topaz anchor
#

πŸ‘€ whats the bot ID? I dont see any bots denied that you submitted.

vague blade
#

Goushikk

topaz anchor
#

We used to deny bots for that issue all the time. Its much less common now to see it happen but we still deny for it.

vague blade
#

So
I have coded it properly
Some times it does like that

For example like bot is added to a new server

vague blade
faint mountain
topaz anchor
#

Well, they're probably better off reaching out to sohunn themselves. They can just send a dm.

#

If they want to dispute it.

faint mountain
#

you have to accept it

vague blade
faint mountain
#

naw its all fake

topaz anchor
#

Yeah.
Api abuse is a valid decline reason.

#

Specifically presence changing rapidly is something we've denied for a lot.

vague blade
faint mountain
#

why not update it every minute or something

vague blade
faint mountain
#

what happens

#

your code breaks?

vague blade
#

Idk
What
Now I need to change the code

strong spindle
vague blade
strong spindle
#

One message removed from a suspended account.

faint mountain
#

then you have to fix it

strong spindle
#

One message removed from a suspended account.

faint mountain
#

who said it was their code

fallen dirge
fallen dirge
faint mountain
#

trolley

strong spindle
silk plank
strong spindle
#

One message removed from a suspended account.

vague blade
faint mountain
#

good

vague blade
#

Byee

faint mountain
#

bye

sacred lantern
strong spindle
silk plank
topaz anchor
#

60 is enough, but discord might not like it.

silk plank
#

ah

#

ive it set as 60 seconds and i haven’t had any problems with rate limiting yet

topaz anchor
#

I dont remember what the ratelimit actually is, but its pretty loose.

silk plank
#

ill check discord docs when i get to school

topaz anchor
#

Discords docs dont mention specific ratelimits

#

since they're "dynamic"

silk plank
#

true

strong spindle
#

One message removed from a suspended account.

kind isle
#

Hi

topaz anchor
#

yeah fair

worthy bloom
#

HAPPY BIRTHDAY @coral plover !!

topaz anchor
#

boomer

fallen dirge
#

hey ms edge boy @west ledge is this new ms edge real?

west ledge
#

not sure

fallen dirge
#

if yes then I'm switching to it

west ledge
#

i switched to edge because of the mem usage

vivid leaf
#

I switched to edge because I hate firefox shortcuts

west ledge
#

its better to use a browser that starts in like 10 seconds instead of 5 minutes for chrome

#

oh btw

#

happy birthday nom!! @coral plover

coral plover
#

thank you!!!

silent moth
#

Edge is just goated

pine trout
#

been using edge for years

#

like 2 years now

silent moth
#

Saved me 50% of my phone skin

pine trout
#

ever since i saw this one kid flexing it on me

silent moth
#

Idk how edge gets coupon codes

strong spindle
silk plank
strong spindle
#

One message removed from a suspended account.

#

One message removed from a suspended account.

pine trout
#

guys vpn recommendations?

strong spindle
#

One message removed from a suspended account.

pine trout
#

i want a signal kinda vpn

strong spindle
#

One message removed from a suspended account.

strong spindle
#

One message removed from a suspended account.

#

One message removed from a suspended account.

pine trout
#

no

#

u don't understand

strong spindle
#

One message removed from a suspended account.

vivid leaf
#

proton is good if all you want is tho change where you are

#

wouldn't use it for anything related to security tho

pine trout
vivid leaf
#

you can read their pp

pine trout
#

i want one with verified cases like signal

#

FBI: give me all the information regarding this use:
32232323
signal say no more:

fallen dirge
#

pretty easy to setup

worthy bloom
#

windscribe is my favorite one

#

although i have openvpn on my home network

west ledge
strong spindle
west ledge
#

okay

strong spindle
#

One message removed from a suspended account.

shy wadi
#

Good Evening, i'm waiting for my bot review

fading thistle
#

good to know

shy wadi
hearty quarry
vivid leaf
#

thepiratebay was a legend so hard that it has a whole wikipedia page for it

#

The Pirate Bay (sometimes abbreviated as TPB) is an online index of digital content of entertainment media and software. Founded in 2003 by Swedish think tank PiratbyrΓ₯n, The Pirate Bay allows visitors to search, download, and contribute magnet links and torrent files, which facilitate peer-to-peer file sharing among users of the BitTorrent prot...

hearty quarry
#

The P2P news blog TorrentFreak reported on 12 October 2007 that the Internet domain ifpi.com, which previously belonged to the International Federation of the Phonographic Industry, an anti-piracy organisation, had been acquired by The Pirate Bay. When asked about how they got hold of the domain, Sunde told TorrentFreak, "It's not a hack, someone just gave us the domain name. We have no idea how they got it, but it's ours and we're keeping it." The website was renamed "The International Federation of Pirates Interests"[142] However, the IFPI filed a complaint with the World Intellectual Property Organization shortly thereafter, which subsequently ordered The Pirate Bay to return the domain name to the IFPI.

naive imp
#

bro

#

@fresh rose

#

@fresh rose

silk plank
#

Bruh

molten heart
#

Bruh, why'd they make discord bots easier to verify...

upper solstice
#

hi

#

i used to be here a long time ago but i left
now im back

hearty quarry
#

welcome beck

strong spindle
hearty quarry
strong spindle
topaz anchor
strong spindle
#

One message removed from a suspended account.

#

One message removed from a suspended account.

#

One message removed from a suspended account.

echo oar
#

@worthy bloom happy bday

#

(told you I will tell all of top.gg)

worthy bloom
#

lmao

#

thanks

sullen bridge
#

goodnight topgege

echo oar
#

night

west ledge
#

happy birthday! @worthy bloom

ripe junco
#

yellow name yellow name

silk plank
strong spindle
#

One message removed from a suspended account.

steep bane
#

Welp pain

west ledge
#

@steep bane @fallen dirge %%Full_name__c

worthy bloom
worthy bloom
steep bane
strong spindle
#

One message removed from a suspended account.

fallen dirge
acoustic falcon
#

why is this server keeping that server icon

fallen dirge
#

unless there's data loss

fossil path
#

@worthy bloom happy birthday

steep bane