#off-topic

1 messages · Page 806 of 1

fallow crow
#

but on a gradle task

#

so fucking useless

fading grove
#

Lol

#

why does nobody talk about liteloader tho

#

like fabric and forge are popular

eternal apex
#

because it died years ago

fading grove
#

oh

fallow crow
#

hmod cct

fading grove
#

Rip

#

it got discontinued

fallow crow
#

good

eternal apex
#

why didn't they just register spigot as a dependency configuration...

fallow crow
#

I want a cool project but idk what to do

fading grove
#

Yo they think reducing 10 characters is worth like 20 classes of code

fallow crow
eternal apex
#

what would that entail

fallow crow
#

more adrenaline

eternal apex
#

what you guys listening to? youtube isn't recommending any good songs to me atm

fallow crow
#

ive had an idea

fading grove
#

songs hm

fallow crow
#

absolute classic

#

wait i have no clue

#

tf do i listen to

eternal apex
#

bored of stan

#

it comes on all the time through autoplay

fallow crow
fading grove
#

i realize i listen to weird ass songs

eternal apex
#

:doubt:

fading grove
#

i think im a boomer

eternal apex
#

someone should buy me nitro

fading grove
#

lmfao

#

i should be thanking conclure more

#

he gifted me it

fallow crow
fading grove
#

gifted to a poor man

fallow crow
#

Time to use an api from 2018 with no documentation

#

lets go

eternal apex
#

link

#

or name

fading grove
#

make the best indian accent

#

and make a java tutorial

eternal apex
#

don't forget the yellow circle around your cursor when you click

fading grove
#

O shit

#

and also the bandicam logo

fallow crow
#

oh its actually not up anymore

#

it was a rest api thats now down

eternal apex
#

that's too bad

#

idk whether I should be doing aoc or my own rest api

#

think i'm gonna do aoc

fallow crow
fading grove
#

PiggyRest

eternal apex
fallow crow
#

that sound like you're hitting rocks

#

aoc?

fading grove
eternal apex
#

nah about to do it now

fading grove
#

oh lol

#

i mesed something up

#

and i cant tell where

eternal apex
#

I did that yesterday too

#

on part 3

#

I was using String#getChars to add the chars of a string to a 2 dimensional array

#

I had the start at index 0, and the end at index 30

#

no one told me the end index was exclusive

fading grove
#

It's so annoying that they don't tell you when the test input ends

eternal apex
#

took me ages to debug

fading grove
#

at least add some number for the number of cases

#

lmfao

#

i have to use like a while loop

fallow crow
fading grove
#

and check null

fallow crow
#

"index starts at 0" is the shittiest advise

#

think of it as an "offset" instead

#

because that's what it is thinksmart

fading grove
#
Integer.parseInt(5 +"");
fallow crow
fading grove
fallow crow
fading grove
#

Yes

fallow crow
#

come on pulse

#

let's chat

#

I'm this close to level up

fading grove
fallow crow
#

👌 this close

fading grove
fallow crow
fading grove
#

yo

#

I'm level 13

#

already

#

so fast af

fallow crow
#

I mean it do be x10

#

that's A LOT

fading grove
#

Yeah

fallow crow
#

I have a bug report to fill

#

And I have sleep to get

#

A critical** bug report lol

#

But xp is more important

fading grove
#

Lol

fallow crow
#

@long summit

#

icu

fading grove
#

wait

#

does substring

fallow crow
#

intensive care unit kek

fading grove
#

have bounds

#

i always fuck this up

fallow crow
#

yea

fading grove
#

is it like first param

#

is like inclusive

#

second one

#

isnt

fallow crow
#

mhm

fading grove
#

kk

fallow crow
#

after all, a string is just a char[]

#

like

fading grove
#

yeah

fallow crow
#

literally

#

its backend is a char[] lmao

#

it isn't

#

it's a byte[]

fading grove
#

oh

#

kekw

fallow crow
fading grove
#

Pog

#

Piggy is doing advent of code

#

right now

fallow crow
#

I should join

#

but bug report ;(

fading grove
#

Rip

long summit
fallow crow
#

hi

long summit
#

Hi

fallow crow
#

how's your night

long summit
#

Good, yours?

fallow crow
#

can java 15 records be used with spring?

fallow crow
#

k great convo have a good night

#

also what do i need from spring initalizr to make a REST API

#

98%

eternal apex
#

imagine using spring

#

real men make their rest apis from scratch

fallow crow
#

Aj doesn't have to imagine kek

fading grove
#

I DONT GET where im wrong

#

in advent of code

#

I DoNT gEt iT

#

Can someone help me out

#

:)

fallow crow
#

what is it

fading grove
#
public class PartOnePP {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new FileReader("passportprocessing.txt"));
        String line = br.readLine();
        List<String> requirements = Arrays.asList("byr", "iyr", "eyr", "hgt", "hcl", "ecl", "pid");
        String passport = "";
        int count = 0;
        while (line != null) {
            if (!line.isEmpty()) {
                passport += (line + " ");
            } else {
                String[] elements = passport.split(" ");
                System.out.print(Arrays.toString(elements));
                boolean successful = true;
                for (String requirement : requirements) {
                    if (!contains(elements, requirement)) {
                        successful = false;
                        break;
                    }
                }
                System.out.println(" Result: " + successful);
                count += successful ? 1 : 0;
                passport = "";
            }
            line = br.readLine();
        }
        System.out.println(count);
    }
    public static boolean contains(String[] array, String desired) {
        for (String str : array) {
            if (str.substring(0, 3).equals(desired)) {
                return true;
            }
        }
        return false;
    }
}
fallow crow
#

holy fuck

fading grove
#

i wrote this code right

#

it looks ugly

#

but deal with it

#

when you are working with alogirthms you ahve to give up static and that type of stuf

#

lol

#

i cant spel

fallow crow
#

throws IOException

#

nice

fading grove
#

well

fallow crow
#

bruh just try with resources

fading grove
#

this is guaranteeing

#

that i have the txt file

#

if you look at the format of advent of code

fallow crow
#

no it doesn't lol

fading grove
#

they just give you one input

#

and you just need a solution

#

so nobody cares lmfao

#

you dont submit the code

#

you just submit an answer from the input

#

and you do that by code

fallow crow
#

the =xp made me lvl up

#

i happy

#

someone ping me please

fading grove
#

@fallow crow

fallow crow
#

it's translucent

#

subtle

fading grove
#

:/

fallow crow
#

lol

long summit
fallow crow
#

oh the reply has nothing to do with the message

#

perfect

#

"byr", "iyr", "eyr", "hgt", "hcl", "ecl", "pid"

#

what the fuck is that

fading grove
#

if you read the problem

#

you would know

fallow crow
#

I'll start from day 1

fading grove
#

nobody really cares

#

about try resource

#

in algorithm problems

#

lmfao

#

or static abuse

#

or any of that shit

#

in algorithm problems nobody gives a shit about it

#

kekw

#

only in real projects

fallow crow
#

shows how much of an animal humans really are

fading grove
#

i mean

#

the question is

#

do you know the algorithnm

#

cause thats the hard part

fallow crow
#

and you reply with yes

#

and you win

#

ez

fading grove
#

well

#

u gay

fallow crow
#

i uuh

fading grove
#

PIGGgY

#

hElP mE

eternal apex
#

what are you up to?

#

on part 1

fallow crow
#

After saving Christmas five years in a row
okay what the fuck xD

fading grove
#

so i made a list right

#

of the required ones

fallow crow
#

SAVING christmas??

fading grove
#

discluding the cid

#

then i used substring

#

on the first 3 characters

#

of the string to check

#

for the passport property

eternal apex
#

yeah stop

#

use regex

fallow crow
#

regex is pog

fading grove
#

but

#

what if

#

you dont know

#

good regex

#

and me bad

eternal apex
#

I don't know regex and I just made a fat regex which works perfectly

fading grove
#

wTf

eternal apex
#

you don't need to know regex to use regex

fading grove
#

pigs are smart ig

fallow crow
fading grove
#

yep

fallow crow
fading grove
#

well

#

not code

#

answer

#

you get an input

#

and you write a code to read it

#

and then put the answer there

fallow crow
#

oooh so it wants the output

#

that's uuh

fading grove
#

yes

fallow crow
#

that's shit

fading grove
#

uh

#

thats how most competitions

#

work

#

lmfao

fallow crow
#

ig

fading grove
#

its not really competitive tho

#

lmfao

fallow crow
#

hey pulse

#

wanna hear a joke?

fading grove
#

yes

fallow crow
#

you know patrick from the spigot discord righT?

eternal apex
#

who is that

fading grove
#

yes

fallow crow
#

some asshat

fading grove
#

yeah

fallow crow
#

he was dead convinced that looping through a List<UUID> to check if a certain UUID was in there was "way faster" than using a set

fading grove
#

wtf

fallow crow
#

hashset* I should mention

fading grove
#

lol

#

kekw

eternal apex
#

seems like a knowledgeable guy

fallow crow
#

dude like

fading grove
#

this kid must like

#

made oracle

fallow crow
#

and then I blocked him 🙂

fading grove
#

xD

#

Wait

#

Piggy

fallow crow
#

no

#

no wait

fading grove
#

what rehex

#

did you use tho

#

I give up using my loop code

#

and substring

#

lmfao

honest thistleBOT
#
✳️ Global Multiplier Expired!

The global multiplier has ran out and has been reset!

fading grove
#

Noooo

#

F

fallow crow
#

oh well

eternal apex
#

k regex wasn't the way to go it seems

fading grove
#

wait

#

you tried it?

eternal apex
#

yes

fading grove
#

o

#

should i walk you through my logic

eternal apex
#

no

fading grove
#

its wrong b

#

oh

#

ok

eternal apex
#

talk to a rubber duck lol

fading grove
#

but pigs are smart

eternal apex
#

D:

#

mine doesn't work

#

and I don't know why

fallow crow
eternal apex
#

I'm in the same predicament as you now

fading grove
#

kek

#

im only 6 away from the real answer bee_triggered

#

OHH

#

I GOT IT

#

i understand better now

#

wait

#

no i dont

eternal apex
#

okie

#

i did it

fading grove
#

what

#

how

#

regexes?

eternal apex
#

nah

#

just loop

fading grove
#

i dont get where i fucke dup

#

im so depressed

#

lmfao

eternal apex
#

I mean technically it does involve a tiny bit of regex

fading grove
#

i mean

#

splitting

eternal apex
#

it splits \n\n, \n, " ", and :

fading grove
#

yeah

fallow crow
#

oo its raining

#

nice

#

^ is xor right?

queen jewel
#

Yes

fallow crow
#

for the first time ever in my Java programming career

#

I finally used the xor operator

#

the what now

#

oh

#

it's just a != in 1 bit boolean logic

#

huh interesting

eternal apex
#

how the fuck do you make regex match something

#

it never matches

#

I don't get it

queen jewel
#

Welcome to the fuck of a subject called toc

eternal apex
#

like

#

i've got this

#

(\d+)

#

which highlights my number (187) on regexr

#

but it says no match

#

what

queen jewel
#

whats the question?

eternal apex
#

it doesn't matter lol

#

I just need to get the number

#

as a group

#

if you insist, hgt (Height) - a number followed by either cm or in: If cm, the number must be at least 150 and at most 193. If in, the number must be at least 59 and at most 76.

#

e.g.

#

187cm

queen jewel
#

oh day 4 pt 2

fallow crow
#

afaik match has to match the entire string against the pattern thonk but that's more of a myth I made up myself lol

eternal apex
#

I'm calling matches

#

then using group

queen jewel
#

I just replace cm and in after checking if they are present

#

xD

eternal apex
#

yeah will just do that then

#

I don't understand how regex works

fallow crow
#

weak

queen jewel
#

xD

eternal apex
#

fefo that can't be it, because I'm testing it against just a number

queen jewel
#

I hate regexes after my new class

eternal apex
#

and it doesn't work

queen jewel
#

Its so fucking boring

#

or should I say, annoying

eternal apex
#

I feel like there must be some sort of match operator I need to use to tell the engine that it actually has to match something

#

I just don't know what it is

queen jewel
#

NDFA, DFA god knows what dfa

queen jewel
#

What exactly are you using to match?

fallow crow
#

isn't that what find is for?

eternal apex
#

find won't work unless it matches

fallow crow
#

piggy

#

trust me on this one

#

throw Matcher#matches out the window

#

and use find

eternal apex
#

I see

#

I hate java's regex api

#

it's badly documented

fallow crow
#

¯_(ツ)_/¯

eternal apex
#

nvm I just can't fuckign read

queen jewel
queen jewel
#

group requires find to be called

eternal apex
#

oh

fallow crow
#

bruh why tf my IJ so laggy lol

#

surely its not just rosetta

queen jewel
#

bruh why tf you on a mac

#

xD

eternal apex
#

isn't m1 like super trash

#

performance wise

fallow crow
#

na

#

its good for other stuff

eternal apex
#

like watching porn?

fallow crow
#

yep

queen jewel
#

lol

eternal apex
#

yeah well hate to break it to you

trim raft
#

l

eternal apex
#

porn isn't very hard for the computer to show

#

only person that'll be breaking a sweat is you

fallow crow
#

it is if its VR

trim raft
queen jewel
fallow crow
#

its specifically IJ

#

all other apps are running smooth AF

queen jewel
#

Yea my friends mac was also acting weird with IJ

#

it never shows any suggestions or shit

fallow crow
#

yeah mine does if i wait like 5 seconds

queen jewel
#

so its like intellij without intellisense

queen jewel
fallow crow
#

apparently updating to the dev version of big sur fixed alot of peoples issue

#

since its not just happening to me as far as i can tell from IJs twitter post on it

#

can I even get the dve version lol

naive agate
#

Anyone here good with linux?

queen jewel
#

Piggy is

velvet crescent
#

A pig

#

@queen jewel Goddamn timezones.

inner mural
#

hi

queen jewel
#

lmao

fallow crow
#

So what section would i have to go to, if i want to try and find a server dev ?
One who setups servers. The requests, under services ?

tawdry tree
#

yes?

magic summit
#

Haha lol.
MCM is self-aware.
Just had the loading text "Outch your eyes (Why isn't this dark theme?)"

velvet crescent
#

Only a lunatic would say white theme is better

magic summit
#

There are some moments, where you use white theme.
For example when writing a lettrr by hand :^)

sturdy bobcat
#

Incorrect

#

Dark theme for that aswell

mellow zinc
#

^ :)

#

black paper white pens

fallow crow
#

No

#

It do b nice

nocturne fossil
#

nearly tier 4 🙃

light scaffold
#

We're tier 1 🙂

mellow zinc
#

where u from sellinq?

velvet crescent
#

The planet called Earth

nocturne fossil
#

i meant in helpchat level 😂 but w he re i live right now it’s tier 3 lockdown

#

this is in kent

mellow zinc
#

o

light scaffold
#

That's rough

boreal escarp
#

@wraith pasture couldnt find your account on spigot, maybe you typed the wrong id?

wraith pasture
#

Right I'd, I forgot I have it private xd

sharp sky
#

Just ordered myself 6 of the bad boi 7-segment components (common cathode) for the test :)

#

What display should I do with them first thonking

fringe sigil
#

KentUcky Fried Chicken

fallow crow
#

Multiplex "ASSHAT" in them

trim raft
#

I read that as Mineplex

barren nacelle
fallow crow
#

uuh

#

I uuh

barren nacelle
#

Sad its not

static quest
#

How do I get giveaway role?

barren nacelle
static quest
#

Thank you dab mitten!

barren nacelle
#

np

uneven tree
#

dab

fading grove
#

my friend was trying to fill a chest full of banned books

#

and he ended up accidently book banning himself

uneven tree
#

lol

barren nacelle
#

ruby_horny @fallow crow 😉

fallow crow
#

pulse

#

efe is cheating on me

#

with dab

barren nacelle
#

🤮

fading grove
#

Fefo

#

Leave him

#

We can be together

fallow crow
wraith pasture
#

thanks BlitzZzZzZzZ

velvet crescent
#

@woven prairie Interesting shade

nocturne fossil
#

frosty the snowman is a very jolly lad, he probably smokes crack and that’s facts

wary willow
light scaffold
#

auto snipers 😬

wary willow
#

ye

#

they got 3 of them

#

well now 0

#

they lost them all lmao

#

nvm

#

they got money for more 😦

velvet crescent
#

Get gud?

wary willow
#

yes let me stop an auto sniper that can just 2 shot me thru doors and boxes

#

lmao

#

also we won

#

3 rounds in a row

#

I mean they're trash

#

they literally saved on pistol round

#

they have a glock now lmao

#

just got killed by a guy with dual beratas

#

lmao

#

SE

fallow crow
#

i hope you CRASH

wary willow
#

no

fallow crow
#

you crashed a plane in New York

wary willow
#

I hope your pc crashes lmao

#

not your plane

fallow crow
wary willow
#

:)))

#
Damage Given to "swyzak" - 49 in 3 hits

Damage Taken from "swyzak" - 178 in 1 hit
#

sucks to be me

#

yes

#

15-14

#

its either lose or tie

#

yes

#

probably

#

but still

#

....

#

nvm

#

they lost a 4v2

#

yep

#

hd cs:go since 2016

#

I had another account before

#

since 2012 or something idk for sure.

#

Sold it lmao

#

someone gave me like 50$ or something and I needed the money

wary willow
#

:)))

#

kinda late

#

pretty sure they also made a cure game or whatever its called

#

oh yeah The Cure

#

have you played that

#

?

regal juniper
#

Well, it does sound like there's a vaccine that's making rounds higher up, so, maybe in the next few months, we'll see something.

long summit
#

My country will start vaccinating January 5th, but only old people and essential workers

regal juniper
#

Giving them something to help prevent getting COVID.

#

Like an antibody shot.

#

So your body just tells covid that you're simply built different and it will go away.

long summit
#

I wanna take it so I can finally travel to the US

regal juniper
#

You don't want to come to the US until at least April.

light scaffold
#

Ours is being deployed on Tuesday😎

long summit
#

It should be fine if i can get the vaccine Glare

#

Though doubt I'll before like march

light scaffold
#

But the microchips!!!

long summit
#

The 5G!

regal juniper
#

What's sad is that trump is finally trying to push this quickly so he can take credit for it before Biden takes office.

long summit
#

Omg it's so sad that he tries to take credit for it instead of giving the credit to all the scientists that were working on it nonstop

regal juniper
#

Is that flight simulator.

#

Shut up Barry

#

That looks like a cool game

long summit
#

Bring Garry back

wary willow
#

Ye cool game. To cool for my laptop tho

#

Didn't even think about installing it when I had gamepass. I knew its too cool for me 😦

regal juniper
#

Oh I forgot I have that.

#

I might go try it out.

wary willow
#

:)))

#

go into optsions lmao

#

and see what the keybinds are

#

:))

#

wait what

#

you can buy .army domains?

#

reset them

fringe sigil
#

I absolutely would love to be able to have a machine capable of running that game.

long summit
#

Same

#

Need to get an RTX 3060 TI

velvet crescent
#

3090

long summit
#

Hell yeah, just a kidney nothing more

#

Though tbh 3060 is pretty nice, same performance as an 2080 super for $400

velvet crescent
#

I have an AMD Radeon 6500

#

If I remember the number correctly

wary willow
#

I have a NVIDIA GeForce 920MX xD

long summit
#

I have an gtx 1050 TI

queen jewel
#

gtx 1070

nocturne fossil
#

^

velvet crescent
#

Old but gold Blitz

nocturne fossil
#

used to have a gt 720

wary willow
#

My CPU is a dual core I5-4288U

nocturne fossil
#

then a gtx 750ti

#

now a gtx 1070

#

laptop user

regal juniper
#

Oh yuck, you have to add a payment method to activate the 3 month thingy.

nocturne fossil
#

yes

#

and yes

velvet crescent
#

It's dumb

nocturne fossil
#

land in nyc

velvet crescent
#

Ah yes "landed"

#

Efe, fly to slovenia

regal juniper
#

You can cancel the payment method after you add it to redeem the 3 month code, right?

velvet crescent
#

And then crash a spaceship into it

normal sable
#

did u get that from the xbox game pass

queen jewel
#

"Good afternoon passengers, this is your Captain speaking. As we tend closer to our destination, I would like to let you know that we will be landing in Central Park for my co-pilot says he needs to go for a walk. Thank you"

normal sable
#

did u do the thing where u pay the $1 and cancel the reoccurring payment>

#

^ thats u

velvet crescent
#

Look for a chicken shaped country, bellow austria

barren nacelle
#

Lmfao

velvet crescent
#

An absolute unit of a chicken

#

Ljubljana is the capital

#

Man you failed geography didn't you

barren nacelle
#

queen jewel
#

Damn that looks very detailed

#

How much does flight sim cost?

barren nacelle
#

1$ through game pass or

#

Idk but prob like 50$?

#

It will look so much cooler with rtx

#

Ah

#

So they made something useless till new graphic cards come out

#

Pretty cool

wary willow
#

Yo did they actually add Controller to XBox pass?

fringe sigil
#

I believe you can link it up to real time data as well, so you can fly alongside real planes. Pretty sure it also connects to VATSIM? So you can be playing alongside other pilots and air traffic controllers.

light scaffold
#

throw

light scaffold
#

yes

fallow crow
#

100%

fringe sigil
#

Was I a good TV antenna? You we`re the best

#

Maybe we could play GeoFS together

velvet crescent
#

So I have a midlife crisis right now, I have an air purifier on my desk, it's got an led blue light and it's loud, but I'm laying down like 2m away from it in my bed, and I want to turn it of but can't reach it. The fuck do I do

fallow crow
#

you wake up

#

you lazy fuck

fringe sigil
#

Lol

woven prairie
fringe sigil
wary willow
#

no kotlin developers :sad-blitz-noises: xD

#

@magic summit please stop. thank you 😦

#

how the hell did you make minecrats sit on a wall

#

minecarts&

#

I'm still confused

magic summit
#

Yes.

wary willow
#

omfg

#

To be honest all that time

#

I thought you retextured rails

#

and you did some weird shit with rails

#

sorry with lanterns*

magic summit
#

4 Armorstands.

  • 2 for the figure
  • 1 for the chest it holds (And to cover the armor stand's feet)
  • 1 for backpack
wary willow
#

were the only things that didn't make sense :))

magic summit
#

Also, you can disable gravity for armor stands

#

Full track of the train

#

If you thought at the wall was already weird

#

Although the track has changed slightly since that gif

wary willow
#

please stop

#

please 😦

#

I think I'm the only person here that was born on his birth day.

magic summit
wary willow
#

Andre?

#

how much to make u stop?

#

lmao

magic summit
#

xD

fringe sigil
twin dune
#

@fringe sigil Mind if I DM about KiteBoard?

wary willow
#

@magic summit how much I asked? just stop lmao

trim raft
#

RealmOrigins second wave went in 2 minutes

#

🥲

wary willow
#

what wave?

trim raft
#

Alpha slots.

wary willow
#

oh

#

they selling them or is it first to join?

trim raft
trim raft
wary willow
#

Ic. I mean it looks like an amazing project

trim raft
wary willow
#

wait its 0.99$

#

and they sold 150 slots

#

that's 150$

trim raft
#

2 waves

wary willow
#

oh

trim raft
#

First was 100 I think, second was 150.

wary willow
#

and first 100 was more expensive I guess?

trim raft
#

No, same price.

wary willow
#

wait but then how $1250 ?

#

oh wait

#

I'm not ok

#

$1 x 250 passes

trim raft
#

lol

wary willow
#

so anyone wanna talk about something?

#

a guy (teammate) just reported me in RL bcz I'm bad... He's playing in silver lmao

boreal escarp
#

@magic summit powerplugins looks amazing 😮

#

also, how did you made that miner lol xd

wary willow
#

he said above 1 sec

#

let me find message

boreal escarp
#

looks hot

fallow crow
#

just like me LewdThinking

boreal escarp
#

is that bluemap plugin worth to use?

sharp sky
#

Really worth 👍

#

Even sx was impressed

boreal escarp
#

I see you can setup an external web server, hmm

normal sable
#

fefofurry

#

do you watch anime? 😳

fallow crow
#

I

normal sable
#

your answer

#

will determine your fate

wary willow
#

he doesn't ...

fallow crow
#

blitz stfu

wary willow
#

also its fury not furry plss

fallow crow
#

Well I don't lol but I used to

#

Been years

wary willow
#

lets talk boys

#

I rly want to get that Tier VII

#

bcz My boost will expire and my xp card color will be ugly with the tier Vi color 😦

fallow crow
#

Sure, I want that Tier IV too, but I still have to go through all lvl 29 😦

#

Seewwwwww

wary willow
#

I'm 74% done

fallow crow
#

blitz

#

day 3 when

wary willow
#

no idea

#

not today lmao

fallow crow
#

k den

#

bye gl

wary willow
#

its all I have remaining

normal sable
wary willow
#

I mean I could literally just steal Pulse's code but I won't

wary willow
#

sorry

#

xD

normal sable
#

kekw

wary willow
#

jesus fucking christ Fefo

#

what's wrong with you?

fallow crow
#

and I have two of them

normal sable
#

hey guys

wary willow
#

here then

#

lets compete

normal sable
#

what are your favourite songs?

wary willow
fallow crow
#

all

wary willow
#

yes and uuuhh best songs ever

#

xD

fallow crow
#

or better yet

#

none

normal sable
#

ok well

#

mine is this

fallow crow
#

it sucks

normal sable
#

it's a masterpiece

fallow crow
wary willow
#

@normal sable please remove embeds

#

you're emberesing yourself

normal sable
#

D:

fallow crow
normal sable
#

It's been removed for the sake of your sanity

fallow crow
#

wait that's not the full thing

normal sable
#

EW WEEBS?!

#

nasty

#

gross

#

disgusting

fallow crow
#

says the one with an anime pfp

normal sable
#

😳

wary willow
#

wait

#

so I can't tell someone that he's Romanian because I am Romanian as well?

#

how does that even work?

fallow crow
#

why isn't the full version on youtube....

normal sable
wary willow
#

he made you a weeb but you said he's a weeb like its some kind of insult

#

ok Remence...

#

you virgin

normal sable
#

😭

#

k back to weeb

fallow crow
#

lol

#

there you go

normal sable
#

I like it better this way

#

baby sasuke is a g

#

what are your thoughts on that statement fefo?

wary willow
#

I'm literally the only one with chat color. Everyone is gray lmao

#

so people notice me 😦

fallow crow
#

sucks to be you

wary willow
#

:)))

normal sable
#

at least ur special

fallow crow
#

Remence

#

@normal sable

normal sable
#

ye

#

yes

fallow crow
#

hi

#

do you play osu?

#

ok

wary willow
#

yesn't

normal sable
#

osu?

#

I've tried it lol

wary willow
#

Yooo LP is laughing at me rn ...

#

I have group A that inherits group B and group A has permission for something but B doesn't. B can use that but A can't ... lmao

fallow crow
#

lol k

#

sounds to me like you did it the other way around but who am I? LP support?

#

pft

wary willow
#

k lmao... xD

#

I didn't tho

wary willow
#

Did matrix stop their free-version thing?

#

now its just the premium one (22usd or something) and the enterprise one ... 105

inner mural
#

bad fortnite

#

fortnite is bad

wary willow
#

fortnite is a good game

sturdy bobcat
#

Fortnite good game but community bad

fallow crow
#

to be fair, no matter what epic games does people are gonna say its shit

#

when the old map was in the game all people did was say it was terrible and they wanted a new one and now its the other way round

#

everytime a new items added its either way to strong or way too weak

#

they can never win

#

Im not saying its a perfect game cos it definitely has some issues but yeah

wary willow
#

wait they changed the map?

fallow crow
#

like a year ago

wary willow
#

oh

#

ye I forgot

#

thought they did it again

fallow crow
#

nope

wary willow
#

I mean I think Fortnite its an amazing game

fallow crow
#

blitz

#

day 3 when

wary willow
#

its just the community that sucks

#

Fefo not any time soon

fallow crow
#

and then everytime theres a new event people always hype it up and say shit like "im pretty sure theres gonna be a new map this time" Then they get disappointed when theres not

fallow crow
wary willow
#

Its why I stopped playing pretty much. A lot of toxic kids mostly

fallow crow
#

its like no one ever told you you were getting a new map

fallow crow
#

people take it way too seriously as well

wary willow
wary willow
#

I'm not going to melt my brain 3 days in a row

fallow crow
#

lol

#

like i log on just to fuck around and have a bit of fun and I get absolutely fucked by some dude who builds like a massive fucking mansion

wary willow
#

I could just take Pulse's code

#

but nah

wary willow
#

and the fact that I was in high school and spent a bit to much time on it without even having fun

#

because of those kids

trim raft
#

ngl i still like the game

#

thats just me tho

wary willow
#

I like it as well just not playing it

#

Oh man I forgot

#

I started Observer_ but left it

#

now I won't remember the story if I start playing again

velvet crescent
#

What game

wary willow
#

Fortnite

velvet crescent
#

Ew

wary willow
#

...

#

why ? Tell me 2 reasons why that game sucks

#

and the game

#

not the community please

sturdy bobcat
#

it has awful rendering issues as 1 issue

fallow crow
#

What is best idea for my pc ?
ram 4
cpu n3710 4core
laptop
???

fallow crow
#

?

nova tree
#

t

fallow crow
#

wdym lol

mellow zinc
#

what is ram 4? 4gb? what is a 3710 cpu?

fallow crow
#

isnt that like an intel pentium or some shit...

#

either way you need all those components, you cant pick one,

mellow zinc
#

pentium kek

wary willow
#

😦

fringe sigil
#

@twin dune For support?

boreal escarp
#

@fringe sigil is there any animation on kb (or anything) I can use to display a random text line from a list on interval?

fringe sigil
#

No

fallow crow
wary willow
#

that's pretty bad to be honest

#

yeah

#

that won't even run minecraft

light scaffold
#

You can

#

Barely

#

My laptop has 3gb and it almost works

wary willow
#

My laptop barely runs minecraft and its: 8 Gb RAM DDR3, Intel Core I5-4288U dual core 2.6Gh and a Geforce 940M or whatever

#

what almost works IIJ?

#

yes

#

around 2Gb, 2and some

#

if you open Mc you need at least 2 for that one

#

but if windows takes a bit to much

#

mc will just crash

#

lmao

#

Lmao

#

...

#

Wasn't laughing at u...

#

My discord just crashed

#

Well my whole windoes

#

Windows*

#

Lmao

#

Can't end it. Time for a full restart I guess

fallow crow
#

Anyone that might know of a plugin that will allow me to have like "npcs" suddenly pop up while you explore and give you, maybe a hidden quest.
And when you complete the quest the NPC will pop up again and give you your reward ?

sturdy bobcat
#

frosty giving away a ton of steam keys because his pc doesn't support the games so he's like bingShrug might aswell give these games away

nocturne fossil
twin dune
frozen escarp
nocturne fossil
#

pog

velvet crescent
#

Ori smh

#

Fucking ruined me

nocturne fossil
#

frosty after that you might wanna start a new life

fallow crow
#

bro i was convinced that this was the dude that keeps emailing me about his shitty course for a sec

#

kangarko tahts his name lol

#

this dude

#

😮

#

o

velvet crescent
#

@fallow crow YOU MEAN THE CHAD

fallow crow
#

yes of course

#

the alpha male himself

queen jewel
#

Kangaroo

fringe sigil
#

@twin dune Ok

#

Or just post question here

twin dune
#

Well... basically on one of my scoreboard lines, I have - '&dPlacement: &f%javascript_.....%'

#

but for some reason it shows "Placement: f#1" for example

fringe sigil
#
- '&dPlacement:&f %javascript_.....%'
twin dune
#

Odd, but ok

muted fern
#

@fallow crow ❤️

#

multi spin?

#

=mutli spin

#

=spin multi

#

=multiplier spin

honest thistleBOT
#
New XP Multiplier...
queen jewel
#

Ayy

muted fern
#

=multi

honest thistleBOT
#
Your XP Multiplier:
sturdy bobcat
light scaffold
#

Amazing

nocturne fossil
#

better start typing

#

do multi spins stack 🤔

muted fern
#

negative

nocturne fossil
#

damn

muted fern
#

multi task <o/

light scaffold
#

Dear moderators please undelete my showcase post

#

Thanks

nocturne fossil
#

only for an hour so better be talkative

muted fern
#

smh

light scaffold
#

I wasn't spamming

nocturne fossil
#

“YOUR” showcase huh

light scaffold
#

And it wasn't even a joke

muted fern
#

use a paste link and repost

light scaffold
#

ok

#

Actually I cba

muted fern
#

chatting earns xp

velvet crescent
#

Better yet, finish the thing and post the repo instead BM

nocturne fossil
#

cube which one of you is santa and which one of you is ms clause

muted fern
#

with certain magic to stop spam counting as xp

#

we're only elves

velvet crescent
#

Piggy is ms clause deffo

light scaffold
#

:))

velvet crescent
#

Do it

nocturne fossil
#

i thought piggy was the christmas dinner

light scaffold
#

who eats pork at Christmas

muted fern
#

he can still be an elf up to the dinner part

nocturne fossil
#

well he’s the only chunky bit of meat here

#

that is true

#

make the most of the elves

velvet crescent
#

It doesn't allow spamming efe..

nocturne fossil
#

it has a system to prevent 😂

muted fern
#

There are certain message requirements that need to be met in order to generate a random amount of xp

nocturne fossil
#

5 words

muted fern
#

wut

nocturne fossil
#

pog

muted fern
#

I'm doing well

#

How are you

nocturne fossil
#

pog should definitely meet the requirements

#

agreed

#

you’re acting a bit sus ever since you boosted

muted fern
#

imposer sus

nocturne fossil
#

mhm it seems to be the case

#

no

#

no!

mellow zinc
#

no

#

self report

nocturne fossil
#

no i went through electrical

#

(never played a game of among us)

honest thistleBOT
#

Kaliber was ejected.

nocturne fossil
#

???

#

=eject