#general

3141 messages · Page 684 of 4

void void
#

oh no wtf

#

i know that manny kid

#

reeeeee

twin lagoon
#

"Gessu/dwhiツ/dwhi71589735/xScapsiclone" - does not know what a float and double is :).

#

what the fuck is a float and a double

pulsar wigeon
#

drama 🚮

void void
#

fucking hell, imagine being top 1 in the skids list

twin lagoon
#

lifegoals

void void
#

now can't even see who starred it

waxen panther
void void
#

wow i have 69 followers

#

Nice

waxen panther
#

someone purposefully blocked me in a license

quasi valley
#

that's illegal barty

#

I'm gonna call the minecraft police

#

giving your sheep splinters I see? 😂

void void
#

select server with compass
is holding wacky shears

#

there's also legit list by the same guy hm

#

haha nice

#

i don't get why you would host your enemys list on github of all places

#

my list is my discord blocked list haha

#

but it's not that proxy we know :(

#

every website that has cloudflare in front basically

#

hcaptcha better

#

barely

#

change my mind

waxen panther
#

lmfao

minor badge
#

bruh

#

who's the impostor @void void

pulsar wigeon
#

dude trying to exclude people from gpl lmao

waxen panther
#

I'm just below Donald trump!

pulsar wigeon
#

hey broccolai, as is my right with the GPL, i sublicense that project to you under the GPL

#

have fun

waxen panther
#

thank you so much, I can finally use his shitty code

pulsar wigeon
shell vine
#

tmw u realize u left a spark sampler going for like a hour

twin lagoon
#

some people think that's the correct usage

limber knotBOT
#

alright im on i3 now, having a fun time relearning all they keybinds

silk vector
void void
#

enjoy

limber knotBOT
#

thanks dad

void void
#

i recommend binding window closing to win+shift+q

#

win+q is pretty easy to press accidentally imho

quasi valley
#

maybe if you close both eyes

void void
#

yeah

limber knotBOT
#

was win+shift+q by default

#

hm cant seem to get rofi to show up for win+d

minor badge
#

i use super+c

void void
#

rofi -show drun ?

quasi valley
#

does anyone know what the default walking/flying speed the client sends in the player abilities packet is?

limber knotBOT
#

i have this bindsym $mod+d exec rofi -show run

void void
#

( ͡° ͜ʖ ͡°)

minor badge
#

drun

#

with a D

void void
#

use drun, shows .desktop files

#

and with certain config, shows also icons

minor badge
#

first time u see one of those huh

limber knotBOT
#

how do i enable it

#

nvm ill look it up

minor badge
#

just replace run with drun

slim nymph
#

@shell vine i left YourKit going for like 8 hours the other day, left home forgetting about it

void void
#

also simple you might want to exec on keybind release

#

exec --release

#

i think

solid oak
shell vine
#

lol

vernal moth
#

TIL you can view patch notes in the launcher

#

Such a horrible site if you want to find shit

void void
#

wait were patch notes not always in the launcher

limber knotBOT
#

idk, can't figure out why that mod+d won't load anything

#

do i uh...need to reload i3 or something after changing config :3

void void
#

yeah

limber knotBOT
#

f

#

oh hey look

#

magic

#

rofi works now

void void
#

mageeek

pulsar wigeon
#

.try

limber knotBOT
quasi valley
#

C is just a pain

#

then do that if it's fun

#

I think with the bit of netty messing I've done I could actually hack together online multiplayer on something

polar sonnet
#

like mentally more retarded then me

#

.8ball is that list more retarded then me?

limber knotBOT
#

shakes the magic 8 ball... Maybe...

quasi valley
#

I'd also give that a maybe

void void
#

no

wide chasm
#

Imagine being Viper

polar sonnet
#

imagine not shitting your pants

pulsar wigeon
#

why are we even posting this shit here

#

no one gives a shit

void void
#

but ur irl skidder

#

haha

polar sonnet
#

penatration

slim nymph
#

penetration*

polar sonnet
#

penetration

void void
#

😳

polar sonnet
#

🦋

quasi valley
polar sonnet
void void
#

just deep fry the pfp

polar sonnet
quasi valley
#

just turn my image 180°, that'll be discount me

polar sonnet
#

nah turn it 179

quasi valley
#

that'd work too, sideways

potent fossil
#

hecc, the no borders really makes everything look so much bigger

#

that saved real estate

void void
#

1px white border best

potent fossil
#

i havent started tweaking to make it aesthetically pleasing yet

void void
#

it'll be useful in a long run

#

because border shows what window you are focusing rn

potent fossil
#

good point

void void
#

sec i'll see if i have my newer config around

polar sonnet
#

i got it

#

clear border

hidden harness
#

Hi.

player.getInventory().getItemInMainHand()

is @NotNull

void void
#

yes

polar sonnet
hidden harness
#

So what does it return when there is nothing in the main hand?

queen crypt
quasi valley
#

look at the docs

polar sonnet
#

air?

void void
#

ItemStack of type AIR

hidden harness
#

Thanks.

polar sonnet
#

np bb girl

void void
polar sonnet
hidden harness
#

i'm a boy though

polar sonnet
#

not anymore

#

we r dating now

pulsar wigeon
#

what the fuck even

waxen panther
potent fossil
left swift
polar sonnet
#

noman want to date too?

#

🥀

pulsar wigeon
#

enough

polar sonnet
#

f

void void
#

get a room smh

polar sonnet
#

I apologize

void void
#

now go to DMs

tired heath
#

I'm not sure if there is a solution, but I store values in an Enum to get my Itemtypes. Yes, I could use a class out of constants, I did it so far, but each constant has only an integer value. That means, in config files and commands you only have nothing saying int values instead of cool enum names. So I switched all to an enum, what is kinda nice and each enum attribute holds the given integer value. I pass this integer value to setCustomModelData what expects an integer, so on pick up event I get an interger back and have to trigger a switch case. Like "OAItemType.HEALTH_25.getValue()" what of course will run into an compile error since switch case wants a constant. So I can not make the enum value constant, since it is the way enums work and create a inner object on each enum. I either replace the "switch case" with "if" conditions, what I really dont like. Or I do a reverse lookup before I pass the value "getCustomModelData" into the switch to get its enum equivalent. What would not be the biggest issue since I could cache the lookup process for the enum on startup so I do not waste the iteration on each event. Later method might be the one I'm going to use. Still I ask myself, do I oversee a easier way solving that problem 😛

void void
#

im bored what to do

polar sonnet
#

holy shit

void void
#

@tired heath nerd smh

#

the nerds shall rule the world

pulsar wigeon
#

switches don't need constants tho

#

oh, the cases

#

idk not gonna bother reading most of that

void void
#

^^

pulsar wigeon
#

doesn't look like he's even asking a question

void void
#

nah he isn't

potent fossil
#

@void void how do i set that white border?

void void
#

.g i3 manual

limber knotBOT
#

(DiscordBot) https://i3wm.org/docs/userguide.html -- i3: i3 User's Guide: "The position and size of a window are not managed automatically by i3, but manually by you. Using this mode violates the tiling paradigm but can be..."

left swift
#

Humble flex wall

void void
#

let's see

potent fossil
#

you gonna rtfm me

#

i ctrl+f'd for border and didnt see one w a color option so

tired heath
#

Well sorry, but I feel better after posting

potent fossil
#

i found it on reddit i think mikro

#

maybe not

void void
#

default_border pixel 1

#

iirc

potent fossil
#

oh shit

#

nice

void void
#

got interrupted lol, didnt rtfm

slate pecan
charred plume
ancient bolt
#

@slim nymph I stay up too late and I'm very tired and feel like I have no energy for like 5 hours, just wondering if you have any advice

pulsar wigeon
slim nymph
#

"5 hours" -> 5Hour_Energy

#

you answered it yourself

pulsar wigeon
#

thatsthejoke.jpg?

ancient bolt
#

yeah that was the joke lol

slim nymph
#

now if you take 2 of them, you get 13 hours of energy 😄

ancient bolt
#

5 + 5 == 13

slim nymph
#

for caffeine it does lol

#

someone did the math/science

#

iirc a single is actually like 6 hours

ancient bolt
#

wtf liers

slim nymph
#

.g 2 5 hour energy how long

limber knotBOT
ancient bolt
#

is 6 hour energy a knockoff brand or is it the same brand with a different "stronger" product?

ashen cliff
#

.g Randy Gardner wikipedia

limber knotBOT
#

(DiscordBot) https://en.wikipedia.org/wiki/Randy_Gardner_(record_holder) -- Randy Gardner (record holder) - Wikipedia: "Randy Gardner (born c. 1946) was an American high school student from San Diego, California, who set the record for the longest time a human has..."

Randy Gardner (born c. 1946) was an American high school student from San Diego, California, who set the record for the longest time a human has gone without sleep. In December 1963/January 1964, 17-year-old Gardner stayed awake for 11 days and 25 minutes (264.4 hours), breaki...

ashen cliff
#

Occupation Record holder

pulsar wigeon
#

ark is free on epic thonk

jagged egret
#

so I'm using sudo iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 3000 but web requests to port 80 still don't go to 3000, what am I doing wrong?

slim nymph
#

open original lol

tired heath
slim nymph
#

if caffine gives you diarreah, something else is wrong in your system

waxen panther
#

so if i take a ton

#

i'll have infite energy?

slim nymph
#

if you survive yes

waxen panther
#

interesting

ancient bolt
#

@tired heath skimming your question - jesus it's way overworded - there's 2 ways to do it. If the int values are specific to the enum ordering, are completely sequential, will never change, and start at 0, you can use ordinal. Even if all of those apply that's still not recommended if it's at all possible things change...or if you ever decide to refactor the enum and move constants around, everything will break. But that looks like:

SomeEnum.values()[<index>]

On the other hand, the better solution is just:

public class enum SomeEnum {
    A(1), B(10);
    private final int value;
    <constructor>
    public static SomeEnum fromInt(final int i) {
        for (SomeEnum e : SomeEnum.values()) {
            if (e.value == i) return e;
        }
        return null; // or throw exception, whichever makes more sense
    }
}
#

basically only do the second solution I gave - the first is just background context

jagged egret
#

anyone here know how iptables works? I'm trying to get port 80 to redirect to 3000 and it's not working (doesn't redirect. Can access on port 3000 but not 80)

tired heath
ancient bolt
#

that's a waste of memory

tired heath
#

An use OAItemType oaTypeItemValue = OAItemType.getValueByCode(item.getItemStack().getItemMeta().getCustomModelData()); to get tha cached enum

ancient bolt
#

and probably slower than my solution

tired heath
#

your code is mine without cache

#

am I wrong

ancient bolt
#

your cache isn't doing anything useful

#

hashmap lookups are "fast" but you're boxing integers and you have a very small enum

#

my for loop would likely complete before the integer was boxed, looked up, and collisions were handled

#

the jit may even inline the for loop

#

your hashmap is unoptimizable

tired heath
#

hmm I c

ancient bolt
#

this is a classic example of a micro-optimization

#

it's completely unnecessary

jagged egret
#
> sudo iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 3000
> sudo iptables -S PREROUTING
iptables: No chain/target/match by that name.
tired heath
#

I thought iterating each time would waste more, I did not think about that

jagged egret
#

what am I doing wrong

ancient bolt
#

I guarantee you - I mean completely guarantee - an enum lookup method is not going to ever be the cause of any performance issues

jagged egret
#

but my hashmapsss

#

part of me is tempted to just run my webserver as root on port 80 😂

tired heath
#

Well in this case I will get rid of my cache

#

thank you

ancient bolt
#

If it's nginx then that's fine probably

tired heath
#

did nt expect an answere at all 🙂

ancient bolt
#

I always try to have nginx being the only outward facing webserver for security purposes

#

I don't know anything about iptables except that they are a pain in the ass

tired heath
#

May just use UFW

ancient bolt
#

ufw can't redirect ports...

tired heath
#

A did'nt know that, never needed that

#

I just see redirect, sorry, dumb answere

void void
#

hmm my mouse is blinking a lot, i wonder if thats the battery or a warranty warning

tired heath
#

@ancient bolt well thank you again

feral mirage
shell vine
charred plume
waxen panther
#

because slimefun has a file with 100000000000000 runnables

shell vine
#

yep that would probably be it

vagrant niche
#

Quick, post the story of Bob

dull umbra
waxen panther
#

.g r/programmerhumor how not to use llambdas

limber knotBOT
waxen panther
#

ugh

limber knotBOT
#

(DiscordBot) How -> { to -> { NOT -> { lambda -> { } } } } : badcode - 33 comments, 144 points - mikroskeem, 2y ago

vagrant niche
#

.spacex

limber knotBOT
#

(DiscordBot) A SpaceX Falcon 9 is scheduled to launch from CCAFS SLC 40 in 1 days 13 hours 54 minutes

austere ivy
#

.ps5

tired heath
#

.ofunny

#

!/issue add .ofunny

potent fossil
#

i forgot how damn good linux looks

neat smelt
#

but how unusable it looks to windows users

potent fossil
#

fuck windows users

vagrant niche
#

my ubuntu 20.04 firefox crashes on xnxx

#

dot com

potent fossil
#

that is unfortunate

#

depest condolodences

twin lagoon
vagrant niche
#

I only got a PC so

#

¯_(ツ)_/¯

potent fossil
#

ok am log off very tired didnt slep all night

vagrant niche
#

ya aint listened to my song 4 u yet pimple

potent fossil
#

no im too tired to listen

#

bye

#

:D

vagrant niche
#

k, fk off

potent fossil
#

k fk u

void void
void void
ashen cliff
worn ember
#

uwu

austere ivy
#

I'm watching the ps5 stream thingy

#

it just highlighted "3d audio"

#

what does that mean

#

did console just discover stereo?

waxen panther
#

buzzwords

alpine tendon
torpid bloom
devout prism
limber knotBOT
#

So the PS5 won't fit on my desk or my TV stand

#

Those sides aren't even, it has to be vertical

void void
#

thats stupid

limber knotBOT
#

I guess it might fit hidden behind my TV

twin lagoon
#

the new ps5 looks fucking disgusting

void void
#

*all ps

twin lagoon
#

it's like they hired some fucktard from alienware

#

no the older playstations looked decent

waxen panther
#

i hate it

cunning raft
#

why is it white

ashen cliff
#

Must it be vertical?
As there was one shot with it sideways.

limber knotBOT
#

They didn't say how much it costs either

left swift
#

$799

cunning raft
#

free PogU

limber knotBOT
#

Was there? I thought that was just the camera rotating as it zoomed out to show the whole thing

upper flicker
#

if youre brave you could probably pull all the decorative crap off and end up with a normal box

left swift
limber knotBOT
#

They had one shot where it looked like one side was flat enough to put it horizontal but then every other shot had a clear curve so I think that was a trick of the light (not that there is any light, this is a render)

upper flicker
#

3D print a little holder bracket for it I guess

#

am curious what the price will be too

ashen cliff
#

Yeah, but it think that shot is just to show of the Sony logo.

left swift
#

$799 for the ps5 and $299 for the ps5 holder

#

Taking tactics from apple

limber knotBOT
#

I wonder if it will be $600 or $700

#

More than $700 is definitely out

ashen cliff
#

Under 700 might be a nice Linux PC.

cedar spade
#

There was literally one split second where it was horizontal

twin lagoon
#

$700 - $800 can get you a decent rig

cedar spade
#

Watching a stream where they've put a screencap of it up and it looks fuck awful on its side

limber knotBOT
#

I'm going to guess $650 or $700 for the main system, $600 for the digital one

#

These things have what would be a $500 GPU in them

cedar spade
#

I could be mistaken but I think I saw a report saying it was $450 to produce

#

Granted I can't find that article any more and I can't remember who published it

ashen cliff
#

Someone in the stream chat said that is has a bracked that mounts in the middle.

#

So it just floats there.

cedar spade
#

Yeah the shot on its side shows a black stand under it

#

Also looks fucking huge (though idk how big the Xbox One/PS4 are since I don't own either)

ashen cliff
#

Got to cool that Zen.

white lark
void void
#

oh that looks like garbage

lament patio
#

Hm, that's cool looking

#

The controller, not much, but cool design on the console

void void
#

thing is if i want my console to look cool i'll paint orange stripes on it or smthin

limber knotBOT
#

Wow I didn't expect it to lay that way

#

And yeah, looks like it does a weird floating thing, eww

void void
#

i doubt the cooling solution is gonna be that good anyway to want all that space

clever lintel
limber knotBOT
#

That's why the XSX is so big

#

They wanted it to always run at full clocks and never throttle and not need to be really loud

void void
#

they should've hired noctua to cool it haha

limber knotBOT
#

PS5 is already confirmed to run at variable clock rates but they say it'll never thermal throttle

#

They probably did, noctua's solution is a big ass heatsink :D

void void
#

well knowing console history, i doubt the heatsink is gonna be all that big

#

or all that well designed either

limber knotBOT
#

Yeah but this time Microsoft spent a lot of time talking about cooling

#

So they think they've done a really good job and want you to know how much better it is

#

Usually they just don't talk about that kind of stuff

void void
#

only time will tell

#

and how many developer units fail hehe

upper flicker
#

traditionally they take a loss for several months in order to try and dominate the market

#

might be less of a loss now and more of a "slimmer margin"

limber knotBOT
#

Neither one did that for the last generation

void void
#

maybe now they're leveraging their loyal community

upper flicker
#

last gen they were slim but I doubt at a real loss

#

margins definitely went up over time as they always do though

limber knotBOT
#

afaik they didn't even sell them at cost

void void
#

yes ugly af

limber knotBOT
#

They made money on them from day 1

#

PS5 looks cool but I don't want it in my living room :P

upper flicker
#

looks like one of those ISP consumer tv boxes

limber knotBOT
#

And it's not very practical

upper flicker
#

dont find it even remotely attractive

#

then again I wasnt going to buy it either way so pffffft

#

all black dualshock 5 when though

void void
#

Z finds other hardware attractive

upper flicker
#

didnt see the game announcements

#

they had some pretty good exclusives last gen though

polar sonnet
#

pc master race

void void
#

^

left swift
#

Buy it then spray paint it black

unreal quarry
#

starts singing the bugsnax theme song and dancing

void void
#

wat

limber knotBOT
#

Don't you mean the buttsex theme song?

#

I swear that's what they were saying, it wasn't until they put the title on screen I had any clue what they were actually saying

unreal quarry
#

Lmao

#

It's a catchy tune, no doubt. Most memorable thing from the whole show imo

left swift
#

Andromeda has the best facial animations ever

polar sonnet
#

really striving to play fullback this year?

#

Anyone in here still in highschool and play football

vagrant niche
#

kashike is, but he's doesn't do sports, just anime club

waxen panther
slender jay
cunning raft
#

ok ps shill

left swift
#

What's wrong with a black cube

#

U like white towers instead?

safe zephyr
unreal quarry
#

but the looks are pretty unimportant, imho, because its just going to get tucked away in my entertainment center lol

twin lagoon
#

now that

#

that is epic

void void
#

i would imagine snapping that plastic on the edge

#

by accident

#

probably by dropping it

#

yes

#

out my windy

vagrant niche
#

thank u md_5 for boosting paper discord

upper flicker
#

Im not big on the looks but definitely want to see what theyve done with the ds5

slender jay
#

imagine touching that white plastic with dirty hands

upper flicker
#

all black when aPES2_Lightsaber

slender jay
#

stainz for life

void void
#

also the white makes it look ass

unreal quarry
#

they showed part of one in the video, z

upper flicker
#

😮

#

I didnt catch the full stream

unreal quarry
#

i hope it wasnt just some crazy effects, and they actually sell it

vagrant niche
#

ayyy, it looks like a dilapidated taco

upper flicker
#

just some of the edited clip teaser things after

unreal quarry
#

def looks good in black, tho. want to see more

#

same

#

might just be the lighting (crazy effects i mentioned)

#

but i have hope

upper flicker
#

to me that just looks like some edgy marketing lighting

#

but Im hopeful

#

although tbh it could be bad too, who knows

spring rampart
unreal quarry
#

if not at launch, i'm sure they will eventually. they've done all colors of the rainbow for all consoles in the past

#

i have 6 controllers for ps4, only 1 is black

#

what? i cant hear you over my ps4, barty

upper flicker
#

the ps4 jet engine meme is the best meme

void void
polar sonnet
#

What's everyone up to

limber knotBOT
#

What do we know about existing nethers after the 1.16 update?

upper flicker
#

in regards to ?

ancient bolt
#

is the ps5 backwards compatible

upper flicker
#

appears to work the same as the overworld

#

new gen is new, old gen is old

#

hard doubt demon

ancient bolt
#

that's the only thing I care about. if it is, I'll wait for it and then play all the ps4 games I missed on it. if it's not then idk what I'm gonna do

#

because there's so many ps4 games I want to play

#

I guess I can play RDR2 on PC now, so there's that at least

limber knotBOT
#

So a reset isn't required?

#

There are rumors that wither farms and gold farms will break.

upper flicker
#

I havent seen anything to suggest a reset would be required

#

gold farms arent going to break, theyve reneged on the zombert pig farm changes

#

but they will break eventually in the future

#

as they should

ancient bolt
#

how are you supposed to farm gold if they break gold farms?

upper flicker
#

theyre not wrong, players are just butthurt they cant game the system

ancient bolt
#

being able to farm iron and gold is a really fundamental aspect of the advanced stages of survival servers

limber knotBOT
#

Ok, thx

upper flicker
#

there is a gamerule so you can manually flip that change on though if you want

static badge
#

PepeLaugh balancing in minecraft

upper flicker
#

or at least i thought there was

#

but no the way theyre doing it is stupid and clearly a bug

limber knotBOT
#

What's the gamerule?

ancient bolt
#

it's a reward for tons of time and energy put in to 1. mine it all manually at first to build all the things you need to eventually get to the point when you can 2. build out all of the infrastructure necessary to build said gold farm

upper flicker
#

end game or no, thats stupid and glad itll get fixed eventually

ancient bolt
#

if they remove that kind of stuff, for me, they are removing the biggest things that keep the game rewarding and fun

upper flicker
#

people say the same shit about zero tick

#

not a good argument

static badge
#

what mechanic does gold farming rely on

ancient bolt
#

no very broken...

upper flicker
#

pig zombies giving the same loot when theyre killed by random shit as by players

static badge
#

do you have any idea of how little that narrows it down

upper flicker
#

an obvious bug

static badge
#

oh

upper flicker
#

player interaction oh nooo

static badge
#

yeah sounds like a bug that needs fixing

ancient bolt
#

the amount of effort it takes to build a gold farm like that

#

jesus it takes weeks of work in normal survival

limber knotBOT
#

What is the gamerule to flip it?

static badge
#

the amount of time it takes to successfully plan and actually carry out a bank robbery is pretty large

ancient bolt
#

when I did it way back years ago when I played minecraft it was really satisfying to finally see all of that work come to fruition

#

nice argument spotted

static badge
#

my arguments are always great thank you

ancient bolt
#

but more and more things in survival keep getting removed in favor of constant, nonstop mindless grinding and it's one of the biggest reasons why I put the game down and havent played it since

#

it's just not fun if there's no progression

#

so?

upper flicker
#

yeah I dont have any sympathy, good change, cant wait until it land

#

s

void void
#

aren't bugs the point of minecraft

static badge
#

did they fix the thing in 1.16 z

#

or did they back down

upper flicker
#

the thing?

ancient bolt
#

bugs which result in nice mechanics are common as fuck in video games

static badge
#

I saw them back down for gold mining on twitter

upper flicker
#

they did yes

#

they will re-add it in the future

#

if you wanna add some fun bugs back, where's my booster carts

limber knotBOT
#

Any way to shut off creeper farms?

ancient bolt
#

a bug which crushes performance and gives ridiculous output with little effort is not the same thing as a massive late-end game type build which requires huge time and energy committment to build and only produces slightly more resources then grinding does

#

have gold farms changed since I last built one years ago?

limber knotBOT
#

Nope

ancient bolt
#

it required hundreds of stacks of obvisidian, lighting all caves in all loaded chunks around the base, removing all other nether portals, fuck loads of hoppers for piping

void void
#

exactly, can't tell me thats not a lot in vanilla

ancient bolt
#

iron golem farms are really cool, get 8 or 12 of them stacked up in a base and it looks dope

upper flicker
#

also hey mojang where's my void fog

#

put it back

#

the new nether biomes are like 50% particles, performance cant be that bad anymore

ancient bolt
#

I'm the kind of player which doesn't mind grinding and putting work in as long as the game allows that work and some creativity to pay off in the later stages of the game where I can get to a point where I don't need to worry about those mind-numbing mediocre tasks and can instead divert my attention to the more interesting aspects of the game and more interesting projects

#

if you want a game where the whole game is nothing but grinding with no payoff then we just want different things from the games we play

static badge
#

kek tnt duping

upper flicker
#

fixing one obvious bug doesnt turn the whole game into a giant grind with no pay off

#

wont suddenly become gta online

polar sonnet
#

@twin lagoon

#

give me the sauce

#

custom terrain

#

i need

#

to know

ancient bolt
#

of course those more interesting projects I'm talking about also have huge resource requirements that wouldn't be possible without abilities of gathering tons of rsources

#

it's just gold dude

twin lagoon
#

i know we're all interested in the Intellectual Property™️ of the new project

#

but it's not yours

#

😗

polar sonnet
#

u just dont love me

void void
#

kiss*

ancient bolt
#

it isn't huge resource reqs
maybe your projects aren't

polar sonnet
#

Intellectual Property™️ good comms

raven grotto
#

hi guys. I have a quick question. I'm reinstalling Debian right now. What type of partition should i choose for my 2nd disk? It will be only for minecraft backup. I never mount a second disk on installation

void void
#

ext4

#

i protect my ip

static badge
#

ext4 is fine

void void
#

24/7

raven grotto
#

ext4 like the sda disk? ok thanks

ancient bolt
#

that's how I always played survival minecraft, the longer into the game I got the bigger and bigger my projects got. They would have been impossible / unbelievably boring if I had to worry about iron and gold mining on top of the 100s of other block types I needed

#

this just illustrates why I hate playing minecraft I think

void void
#

ext4 is like NTFS

#

but for linux

ancient bolt
#

I just don't like the game I think

raven grotto
#

Thank you very much.

static badge
#

ext4 is better than ntfs :>

void void
#

yeah, to me the goal of minecraft is automation, thats the part that i like

polar sonnet
#

^

void void
#

i'd rather be creative and build farms or smthing than grind for hours on end

static badge
#

don't think people made the argument against that kind of gameplay

#

except for barty

#

because barty ruins everything

#

but other than that

void void
#

bad barty!

static badge
#

maybe not encourage broken ass mechanics to get gold mining

ancient bolt
#

as long as the pigmen spawning from nether portals mechanic isn't being what's patched out it's fine

upper flicker
#

no

ancient bolt
#

just collect them and kill them like you do with blaze farms or ender farms

upper flicker
#

thats an intentional game design thing

polar sonnet
#

^

ancient bolt
#

when I read "gold farms are getting broken" that's what I assumed it meant

upper flicker
#

their change breaks a specific type of farm thats gotten popular because it doesnt rely on any interaction whatsoecer

ancient bolt
#

doesn't seem very breaking imo to just change how you have to kill the pigmen

upper flicker
#

and I think we either fixed it or got a pr to fix it

#

because its super a bug

ancient bolt
#

that makes more sense

static badge
#

wait did paper get a pr

upper flicker
#

idk I definitely saw a patchfiel somewhere

ancient bolt
#

paper doesn't get PRs

static badge
#

kek that reminds me

ancient bolt
#

we send them straight to md_5 and he closes them for us

static badge
#

you want my patch to fix dumb piston physics

upper flicker
#

the worldeater thing?

static badge
#

yee

void void
#

wow

upper flicker
#

Im for fixing stupid dupe bugs like that yea

void void
#

u guys collab with md_5

#

neat

ancient bolt
#

fix dumb piston physics
so you're getting rid of pistons then?

#

everything about them is dumb

static badge
#

kek

polar sonnet
#

just delete paper tbh

static badge
#

no just a specific bug in them

limber knotBOT
#

If paper gave us the option to break gold farms, that would be fine by me.

static badge
#

where they did physics but didn't read the updated block type

heady spear
#

is it the shit where extended pistons can be updated to break blocks?

static badge
#

so it duped some shit like tnt

heady spear
#

because that's quite annoying

static badge
#

I'll open the pr and link you city

#

it's a pepega bug

ancient bolt
#

tbh if minecraft just had a central "block change engine" thing instead of manually putting all the logic in 1000 different places for each different interaction I bet most of the dupe bugs would go away

static badge
#

they sorta do

#

physics update is the big one

#

this one was just not re-reading the type after physics

#

they also have onPlace

void void
#

piston lag

ancient bolt
#

I just remembered that big project idea I had that I'll never do because if I started it I would never come close to completing it

#

ah what a dream

void void
ancient bolt
#

speaking of I should get paperd ready to merge

void void
#

systemd

vale lake
leaden kiln
vale lake
#

paper at 1.16?

waxen panther
#

paper at 1.16?

void void
#

1.16

limber knotBOT
#

.spacex

#

(FatherWh0) A SpaceX Falcon 9 is scheduled to launch from CCAFS SLC 40 in 1 days 8 hours 52 minutes

vestal jasper
#

Borty how essential is bungee support to you

#

For chat

still cape
#

paper spigot updates so often it's almost good for a drinking game

vestal jasper
#

paperspigot

still cape
#

reload the website. update? drink.

limber knotBOT
#

@vestal jasper [Auto] We're now known as Paper.

slender jay
#

we are not paperspigot

limber knotBOT
#

@slender jay [Auto] We're now known as Paper.

slender jay
#

yes dum bot

still cape
#

well better find the right drinking game partner before starting

#

not grumpy ones, lol but thank you for informing me i will not call it that again

vestal jasper
#

Bot dum

#

Smart but dum

static badge
#

.wa 84 xor 2

limber knotBOT
#

(DiscordBot) Result: 86 - https://is.gd/LF4kx8

Wolfram|Alpha brings expert-level knowledge and capabilities to the broadest possible range of people—spanning all professions and education levels.

vestal jasper
#

.wa 2 + 2

limber knotBOT
#

(DiscordBot) Result: 4 - https://is.gd/0gki5m

Wolfram|Alpha brings expert-level knowledge and capabilities to the broadest possible range of people—spanning all professions and education levels.

vestal jasper
static badge
#

needed to see if 84 had the flag u dumfuk

vestal jasper
#

Ok

#

Idk about syncing towny and bskyblock cross bungee but normal channels should be doable

#

You'll need the plugin on each server and bungee once implemented as well

polar sonnet
#

.8ball is paper still paperspigot

limber knotBOT
#

shakes the magic 8 ball... Most likely

#

DiscordBot: [Auto] We're now known as Paper.

polar sonnet
#

sorry its still paperspigot guys

limber knotBOT
#

@polar sonnet [Auto] We're now known as Paper.

vestal jasper
#

.8ball is fresh dumb

limber knotBOT
#

shakes the magic 8 ball... You may rely on it

upper flicker
#

> me clicking This PC
> windows taking 25 seconds to figure it out and just spinning pepegahammer

vestal jasper
#

.8ball is your reply to this a lie

limber knotBOT
#

shakes the magic 8 ball... My reply is no

vestal jasper
#

Fuck

limber knotBOT
#

shakes the magic 8 ball... It is decidedly so

finite summit
vagrant niche
#

,8ball is barty a big fat l000ser

limber knotBOT
#

shakes the magic 8 ball... Indubitably

fallen oracle
#

Damn, gotchu there.

polar sonnet
#

.8ball is glare a good developer

limber knotBOT
#

shakes the magic 8 ball... Concentrate and ask again

polar sonnet
#

.8ball is glare a good developer

limber knotBOT
#

shakes the magic 8 ball... Yes

polar sonnet
#

good shit

#

.8ball is barty a person

limber knotBOT
#

uncrosses finger

#

shakes the magic 8 ball... One would be wise to think so

polar sonnet
#

He dont miss

#

.8ball will i be a good fullback

limber knotBOT
#

shakes the magic 8 ball... Maybe...

polar sonnet
#

ooo

vagrant niche
#

@static badge oi u wanna?

polar sonnet
#

.8ball will our football team go 0-9 again for the 3rd year in a row

limber knotBOT
#

shakes the magic 8 ball... Better not tell you now

polar sonnet
#

fuck

#

.8ball will we atleast win 1 game?

limber knotBOT
#

shakes the magic 8 ball... Yes

polar sonnet
#

thank god

#

Cant go 0-27

static badge
#

am busy

vagrant niche
#

k

vestal jasper
#

good shit

polar sonnet
#

yes good shit indeed

vestal jasper
#

xD bot uncrossed it's fingers

cunning raft
#

why did i ever use gyazo

#

sharex is so much better

potent fossil
vagrant niche
#

well well well

potent fossil
#

Just woke up smh

vagrant niche
#

u got a boner?

vestal jasper
#

@potent fossil

potent fossil
#

What

vestal jasper
#

Lax wants to get in ur bed

potent fossil
#

Wants to.

#

He already is vic

vestal jasper
#

Nice

potent fossil
#

We send messages all day from 7inches apart

pulsar wigeon
#

...

vestal jasper
#

Is that why you guys vanished for 5 minutes?

potent fossil
#

Yes

pulsar wigeon
#

im about to kick yall

vestal jasper
#

Me mod me kick

static badge
#

PepeLaugh moderators

potent fossil
#

Alright I'ma go make coffee pepegaroll

vestal jasper
#

Make some for lax too

potent fossil
#

He doesn't need coffee

#

He's always a hyper piece of shit

vestal jasper
#

In that case it'll make him calmer peepoJuice

cunning raft
#

@vestal jasper @unkempt portal are you both clinically brain dead

vestal jasper
#

I'm defending you retard

unkempt portal
#

Why in discord tho

cunning raft
#

oh you quoted my message

vestal jasper
#

Yes

cunning raft
#

smh

vestal jasper
#

Sorry I see how my message is ambiguous about that

static badge
#

holy shit guys I just opened it a min ago

#

no need to explode immediately kappa

#

do that on merge instead KEKWHYPER

cunning raft
#

took 12 mins for someone to suggest a config option

#

world record?

static badge
#

I ain't adding one unless devs tell me

cunning raft
#

it is a dupe so i don't see the need for one

unreal quarry
#

Doubt they will. It's against paper's ideals. I still don't know why they did it for 0tick tbh

cunning raft
#

zero tick was prob more controversial than this

unkempt portal
#

And I'm not clinically brain dead I did think you were joking just had to make sure

static badge
#

yeah this is probably far less controversial

#

it's a pretty obvious duplication issue

cunning raft
#

And I'm not clinically brain dead I did think you were joking just had to make sure
do you know what "inb4" means

unkempt portal
#

No

potent fossil
slim nymph
#

how about we merge as is as if someone cares enough about it they can pr a damn toggle lol

#

make them do the work

#

imo the 0 tick toggle was a mistake

static badge
#

yeah that was an error

potent fossil
#

discord does not look very aesthetic on i3

#

its missing something

slim nymph
#

Paper and people waiting to exploit mechanics are not friends. we've never tried to act like we were

#

i wonder if this also fixes carpet and rails too?

#

with the added | 2

unreal quarry
#

he mentioned it did in the notes

#

i'm hyped for it

golden gust
#

Yea, it's all the same underlying issue

#

Mojang literally never verifies states in those areas

#

Tripwire hook dupe ez

static badge
#

| 2 is just notify

#

and only on the air blocks

#

the other set types already have the notify

#

it was just that mojang didn't have | 2 for air specifically

#

if anything it just makes dumbass issues with physics and pistons consistent

#

well.. behave better

#

.wa 67 xor 2

limber knotBOT
#

(DiscordBot) Result: 65 - https://is.gd/d1Jgmj

Wolfram|Alpha brings expert-level knowledge and capabilities to the broadest possible range of people—spanning all professions and education levels.

static badge
#

yeah the other set type does notifu

waxen panther
cosmic raft
#

lol

#

ordered chinese

#

gave me multiple fortune cookies

#

no, restaurant, it is just me!

unreal quarry
#

its in case you didnt like the first fortune

cosmic raft
#

lol

fallen oracle
#

You got chinese? Smh

#

Jealous

slim nymph
static badge
warm anchor
#

Aikar can make him leave this server too 😉

potent fossil
#

so far so good with setting up arch, though i really need to get a nicer bar

#

trying to set up polybar

low gyro
golden gust
#

polybar looked nice, but, wasn't available for whatever arm version of arch I got on my pi

#

Kinda wanted to have some universal setup between my laptops arch partition and my pi

potent fossil
#

yea im gonna save all my dot files when i have it perfect and start tracking them with gh so i can easily repro my whole system

#

well, look and feel-wise anyway

gleaming finch
#

there's lemonbar

#

never used it though

heady spear
#

How harsh is the arch learning curve

#

For someone who has only ever used Ubuntu

potent fossil
#

its really not

#

new package manager and you get a shitton more updates

#

so like, i guess, dont be a tard and look to see what updates will be applied before you do it and if such an update breaks your GUI have an idea of how to fix it (switch TTY, kill X, troubleshoot, start X, continue with life)

#

I just like it

heady spear
#

I wanna give arch a go but I am also super happy with my current setup

potent fossil
#

then dont

golden gust
#

General gist is that it's still linux at the end of the day

#

There are some extra headaches in that you don't have this fancy company tryna shove out ISOs which work for as many setups as possible by default, so, the installation is defo much more involved, but, past that it's basically the same

heady spear
#

I might install it on my other laptop just to play with it

golden gust
#

Some major pros are that stuff is consistently updated

#

You don't really lose anything bar commecial offerings, e.g. ez live kernel updates, but, thats for servers, where you gotta question why you'd be deploying arch on a server

tranquil kelp
potent fossil
#

ok unironically how do i stop my speakers from going above 100% lmao

#

thats gonna tick me off

vagrant niche
#

nice speakers, shame it aint playing my song 4 u

potent fossil
#

pak yu bitch, trash ka :) totoo to man

vagrant niche
limber knotBOT
potent fossil
#

wow

vagrant niche
#

凸(ツ)凸

potent fossil
#

my fonts aint set up

#

i just see question marks

vestal jasper
#

@heady spear the only hard part about arch is the install

#

Once it's installed it's ez fucking pz

#

Arch wiki is a godsend and the package manager is really nice to use

limber knotBOT
vestal jasper
#

Lax ur a teenage girl

pulsar wigeon
vestal jasper
#

Yeah get out of my chat reeeee

vagrant niche
#

ye, wiz

vestal jasper
#

Yeah wiz

vagrant niche
#

he's jelly cuz no one gives him songs

brisk harness
vagrant niche
#

Hello @brisk harness Would you like some of our complimentary chocolate peppermint toffee banana flavoured milkshakes?

vestal jasper
#

Lax wtf I can't shitpost in ur dms

#

Add me

vagrant niche
#

idk u

#

stranger danger

vestal jasper
#

Fuck u

vagrant niche
#

fk u too, what time?

vestal jasper
#

Now

#

In @potent fossil's bed

vagrant niche
#

better lube up ur butt

vestal jasper
#

OwO

cunning raft
#

Jesus fucking Christ this channel

#

Why do I leave it unmuted

vagrant niche
#

Lol, just mute every server. Life's much better that way

potent fossil
#

spotifyd + spotify-tui makes for a pretty sick experience

vestal jasper
#

Block lax. Life's much better that way.

vagrant niche
#

Life will be more dull and unappetizing

vestal jasper
#

Eat the world

vagrant niche
#

If you ever think about blocking me, call this # first 1-800-273-8255

heady spear
#

Ok daily gym check in

#

I didn’t get here until 5:30 today tho

#

Two annoying skiddos here tho

vagrant niche
limber knotBOT
#

LaxWasHere: mfw I gotta wait 10 min to talk again

vestal jasper
vagrant niche
#

yay

#

who tf kicked me

polar sonnet
#

me

vestal jasper
#

Who do you think LUL

potent fossil
#

one of my screens so far, no bar yet

vagrant niche
#

arch, disgusting

potent fossil
#

ur disgusting

vagrant niche
#

pls dnt tlk to me

slim nymph
#

i still need to update to mint 19 in prep for mint 20

#

im still on mint 18 😦

potent fossil
#

the future is now old man

vagrant niche
#

who kicked me Aikar!

potent fossil
#

it was wiz

#

more than likely

vagrant niche
#

damn wizard

#

howd u get that spotify thing

potent fossil
#

?

slim nymph
#

well 95% of kicks are wiz

vagrant niche
#

CLI spotify

potent fossil
#

spotifyd to actually play the music, and then spotify-tui to show in terminal

polar sonnet
heady spear
#

Imagine kicking people lol

#

Wait I kicked lax from is

#

Ok kicking lax is understandable

vagrant niche
#

ye, aint goin back there

potent fossil
#

If there's a fat guy in a pastry shop
With a twenty dollar bill and he's ready to buy,
In order to predict his volume change
You'll need to know the value of pi

pulsar wigeon
#

yea not sure why anyone would be surprised giving how many warnings have been given

potent fossil
#

wat

fallen oracle
#

What

potent fossil
#

thats what i said

vagrant niche
#

0

potent fossil
#

hmm thinksUp

#

transparent discord and vscode

vagrant niche
#

tf, I aint giving my # to discord

#

hell no

potent fossil
#

give ur # to me

pulsar wigeon
#

ffs

fallen oracle
#

Someone did a fucky wucky. My network just went down. Time to see how long it takes before a family member starts to complain.

potent fossil
#

Nice!

vagrant niche
#

GJ

fathom zealot
potent fossil
#

okay i unironically love this transparency on whatever app i want

#

works nicely on discord

fallen oracle
#

Bro you can change it in the config

#

F

#

Set it to whatever the original is for the item

#

Okay

slim nymph
#

@vagrant niche you gave me your number. I feel honored you trust me more than Discord

potent fossil
#

I have his address

#

i think

slim nymph
#

need to go drinking and drunk dial lax

potent fossil
#

👀

#

am i the only one that thinks this mf transparent discord is sexy

#

could be slightly more opaque

#

i dont think i like that wallpaper tho tbh

#

gonna find a new one

heady spear
#

I think I have a crush on this girl but girls give u cooties

#

I think ima become a monk

fallen oracle
#

🥵🥵

potent fossil
#

such a hottie

#

that is extremely high quality

#

very nice

void void
fallen oracle
#

Go to bed barty

potent fossil
#

xbsx?

#

oh you mean ScamBox 360 and relatives

#

i will never buy a console in my life

#

pc masterrace

#

unironic

scenic agate
potent fossil
#

$400 is a joke

#

if i would buy one, i'd pay MAX $200

#

i know they skimping on hardware anyway

#

.g xbsx hardware specs

limber knotBOT
#

(DiscordBot) https://news.xbox.com/en-us/2020/03/16/xbox-series-x-tech/ -- Xbox Series X: A Closer Look at the Technology Powering the...: "Mar 16, 2020 ... ... the reins to dive deep into the technological bells and whistles that will be powering Xbox Series X. We've listed the full..."

A few months ago, we revealed Xbox Series X, our fastest, most powerful console ever, designed for a console generation that has you, the player, at its center. When it is released this holiday season, Xbox Series X will set a new bar for performance, speed and compatibility, ...

potent fossil
#

i like how the cpu and gpu are just "custom"

fallen oracle
#

Technology is expensive

#

I wouldn't put it past them, my phone was $1,500

potent fossil
#

my phone was like 1000 (galaxy s9+)

fallen oracle
#

I'm chilling with the S20 Ultra

#

I think I had the S8 before

potent fossil
#

S5, S6, S7, S8, S9, S10

S20

fallen oracle
#

It's so nice though, I charge my phone every 3 days.

#

Fully charges back up in 70 minutes.

potent fossil
#

thats actually crazy o.O

#

glare are you being real or are you shilling

#

you're shilling, i've decided

#

fk off

fallen oracle
#

No I'm dead ass

#

I'll take a screenshot the next time I charge my phone

golden gust
#

do you actually use it or does it just sit around mostly?

#

Coz, most phones can ez last a few days if you're not running background apps/running the display all the time

fallen oracle
#

I use it for music about 4 hours a day and I also do a lot of Reddit , discord, and Snapchat. I don't do video games on it really

golden gust
#

i call BS

#

there is no way you can run discord without killing the battery

#

runs

fallen oracle
#

I removed tiktok after I saw it was using my mic without me even having the app open

golden gust
#

gg

#

depends, some days I just kill the battery in a few hours with the odd game, other days I don't touch the thing and I go to bed having lost like 30%

#

My watch is the real bitch though...

fallen oracle
#

My watch worked great, until it didn't.

golden gust
#

So, if I use a cheapo charger, the battery life will dwindle down and sharply hit the point where it won't last a day even

#

If I charge with the bundled charger, or my OP charger, it will last a day easy, sometimes bordering on 2

#

that was a bitch finding that one out

fallen oracle
#

Yeah , the phone came with a nice charger, it's called Super Fast Charging vs the Fast Charging 3.0, it's like 4.0 or something.

#

I typically try not to charge it using anything else

#

I just checked and I apparently average 4 hours of screen time a day

potent fossil
#

that is some rookie shit

scenic agate
#

hi im new here just wondering where do you guys host your servers

#

should i be asking here or paper-help

golden gust
#

that's more general

scenic agate
#

okie cool

golden gust
#

I generally host whereever whoever is paying wants to host, generally steer them towards places like OVH, ReliableSite themselves are amazing, but their peer is shit, so, probs best avoiding...

#

Saying that, I only deal with dedis, so, shared hosting is 🤷‍♂️

scenic agate
#

was wondering if hosting paper mc will be the same as hosting any minecraft servers

#

i dont really know how it works

#

i can just go to any minecraft server provider and host it there?

pulsar wigeon
#

🚮

golden gust
#

Yea, it's still java software, any competent host will let you select it from their thing or at least let you specify a custom jar

scenic agate
#

sounds good thanks for the help cat!!

peak dirge
#

quick pathway to Java development jobs in India

potent fossil
#

lolwut

granite verge
#

Hello, I have a visual error that makes my users see mobs that do not move but are actually despawn, does anyone know how to fix it? :(

The mobs freeze and you can't hit them, apparently it's a visual error from the client, but I have no idea why it happens

potent fossil
vagrant niche
#

Hi @potent fossil

potent fossil
#

hi

vagrant niche
#

do u still hav usenet sub

potent fossil
#

ye

vagrant niche
#

can u find Jonathan Strange & Mr Norrell 1080 < 15Gb?

#

I only got 720p :(

potent fossil
#

thonk

#

is that a movie

#

or show

vagrant niche
#

show

potent fossil
#

whole thing < 15?

vagrant niche
#

ya

potent fossil
#

tf

vagrant niche
#

I can only find 19gb ones

#

dont wanna re-encode

potent fossil
#

sonarr isnt being a good boy

vagrant niche
#

oh I got 500+ movies now :D

potent fossil
#

boss

vagrant niche
#

1.75TB left

potent fossil
#

oh thats why my shit is being slow af

void void
#

Prrr

potent fossil
#

sabnzbd just queued 1200 downloads

vagrant niche
#

lol, why

potent fossil
#

backlog

void void
#

tswizzle what the fcl

vagrant niche
#

is it cuz u deleted greys anatamoy

void void
potent fossil
#

nah i set it to go find all the dr who episodes

#

all the specials

#

of which there are like 200 individual ones, no packs

#

so lel

vagrant niche
#

oof

#

Wanted to DL DW but couldn't find good packs with low file size

heady spear
#

I've been watching secret eaters. Do British people eat anything other than jacket potatoes?

potent fossil
#

yea i said the other day DW is one i dont skimp on the file size

#

i just want it

#

idc

#

wtf polybar wont fucking use the workspace names i want

#

:(((((((((((

heady spear
#

they are always like "I eat healthy. I eat jacket potatoes and chicken sometimes"

vagrant niche
#

ye, My House MD is 250GB, aint gonna skimp on that

#

greatest show

heady spear
#

British people are Americans with worse taste in food

vagrant niche
#

It's the only food over there

heady spear
#

like some girl was like "o i just eat salads and healthy and stuff" then she had 2800kcal of alcohol in a single day

#

😐

quasi valley
#

but alcohol is good for your soul! .. or something

vagrant niche
#

.wa 2800 kcal to calories

limber knotBOT
vagrant niche
#

oh jesus

heady spear
#

also can these shows stop saying that an average size woman is supposed to eat 2000kcal per day

#

it's too much for most sedentary women

void void
#

Hey guys is there a plugin or a dscrd bot to show my server’s console on a channel?

heady spear
#

congrats you saved a total of 2 letters by omitting i and o from discord

potent fossil
#

yes

#

discordsrv

#

sorry @vagrant niche idk, sonarr search aint workin

vagrant niche
#

k

heady spear
#

I should complete my PT license and make the world healthier and shit. This makes me sad 😐

waxen panther
vagrant niche
#

tf, why are portable blu-ray readers xpensiv af

short yarrow
#

people still use blu ray 😮

heady spear
#

no