#general
3141 messages Ā· Page 4 of 4 (latest)
I was going to write a joke about going to the shop, but then I remembered that the UK slang for cigarettes is a bit offensive
Like, going to the shop these days isn't too bad, but if I need something, I find that if I don't keep saying it to myself it disappears
"milk" "milk" "milk" "milk" oh, they have twinkies! *completes walk around the shop* *walks outside and is about 1/2 way home* FUUUUUUUUU
you see, this is why i married a woman whose primary hobby is notebooks and writing things in them
works quite well
When I lived with my grandparents I adopted my grandfathers habit of having a pen and paper on his desk at all times, when I moved out didn't really often have the space, but figured it was time to readopt it; I use my phone for event scheduling, etc, but 200 txt files around the place are useless when I forget to open them again
I just use a checklist in Keep on my phone for quick trips to make sure I get the handful of items I wanted and don't just walk out with only ice cream
-# unless it's an ice cream trip
That would imply that I don't tell myself that I don't need to write it down because I could never forget something so important to my day
Hoping that a pencil + paper on my desk kinda reduces the activation energy for that sorta thing
found this to be quite the interesting read for anyone interested: https://malus.sh/blog.html
doesnt suppor build.gradle.kts 
š At start I was like:
- Oo' oh such nice compliments.
Until I read: - Now: it is time for you to stop.
šš»
finish it. as much as some of the stuff might hurt to read as someone who contributes to OS i honestly very much agree with most of it
Actually I cant, it literally flashbangs me...
for info the guy who made the website is Mike Nolan (open source researcher at UN)
fair enough haha
I'ma read it anyways.
i mean you can just go back to ma... ew.. maven

no one needs that, you have lockfiles for that matter
and well.. CycloneDX
same i had to close it. might read tomorrow
When I read it, then open dark mode disord, I see words twisting.
Now I understand why you said that.
yeah i mean most people when they first hear what the website does would probably find it morally unaccaptable (at least that was my first instinct). tho interesting thing to think about is what would you would think if the roles are reversed (proprietary software being recreated by ai as an OS project)
Correct. I'd say that is both sick and suck. One used tech other used manpower. One put low efforts, one put real struggle. For the one who used tech: It is indeed sick, but that sucks too.
i don't think it should matter whether ai was used to replicate or just human work (when looking at it morally)
like with ai at least you can actually ensure its a clean room implementation without access to the original
what do y'all mean with "flashbang", just use darkreader 
Historically, the open-source community *has *done this manually (like Samba replicating Windows file sharing, or Wine replicating Windows APIs). But when a giant corporation does it to open-source, it feels predatory. It completely weaponizes the open-source community's transparency against them.
Its like "free labour" š„
always has been free labor
I've used such in past, these conflict with default browser and windows dark mode toggle.
sure tho i don't think the reason you're replicating software should change anything about replicating being allowed or not. like when OS projects replicate something its done for openness and transparency, when big companies do it its done for stability and freedom from a software source you have absolutely no control over see the node-ipc example
gotta head out now tho
(im not saying that companies breaking OS licenses is ok btw)
Was going to write a reply, but enjoy your time, out š
thanks 
the logic of the article is solid, but the writing is highly pretentious and condescending for that reason im out
feel free to reply anyways maybe i can reply on the way haha
yeah the website is sort of half joke and half serious from what i understand
given the reviews on the homepage are also satiraclly fake
The legality of a cleanroom might be the same, but the intent changes the entire ecosystem. When open-source replicates proprietary, it opens a closed door for everyone. When a corporation uses AI to cleanroom open source, it shuts the door, strips the attribution, and isolates the tech behind a corporate paywall. One builds a utility; the other exploits a community. If this becomes the norm, the incentive to open source anything collapses, and then thereās nothing left for their AI to copy anyway. Simple š
That is way insane.
Dinner time š½ļø Cya.
Hi
i feel like that opinion applies to closed source and corporate in gerneral tho. like youre essentially just saying you think selling software is bad. as for attribution i would say that depends on what information exactly the one thats recreating has access to. if its just the idea along some vague specs inspired by the original, then by that logic every compiler would need to credit the author of the very first compiler. if it actually has access to parts of the original implementation then yeah i ageee. as for that becoming the norm, yeah not an optimal world to live in
but just taking the risk of trusting a random person online to deliver good software not being something a company wants to do is understandable imo
Back from dinner. I don't think selling software is bad at all; people should get paid for their work. The problem isn't commercialization. Building a new compiler from vague specs takes massive human effort and creates a new tool.
The MalusCorp model isn't inventing a new concept; it's using an automated pipeline to actively strip copyright, liability, and attribution from existing code lines in under five minutes just to dodge a license. That is what I think atleast.
If a company wants a closed-source ecosystem with zero open-source obligations, they should pay their own devs to build it from scratch, not use AI to launder a volunteer's hard work. But yeah, glad we agree that it's definitely not an optimal world to live in if this becomes the norm.
(Mean while finnaly my Lowdb v7 working š After a hour debugging... )
heya, quick math question i need help with: given an nxn grid and two randomly-selected cells, what is the range of integers X at which a path of length x ā X could be traced from those cells with any cell in the path only ever touching its direct neighbors (i.e., m-1, m+1)
lower bound i'd imagine is just Manhattan distance, which would be (y2-y1) + (x2-x1) with cell 1 being (x1, y1) and cell 2 being (x2, y2)
Thats just manhattan distance, so x1+x2+y1+y2
Or do you include diagonals
no diagonals, but i'm looking for a range
Then just anything larger or equal than the distance, or am I missing something about your path definition?
let me draw an example
I think this is getting out of hand for paper general, wanna go to dms?
then sell your project instead of making it open source.
so you would be fine with a company clean rooming using actual humans. i dont think it makes a difference if a real intelligence puts in the effort or an artificial one
Exactly what I am saying, I mean sell it or pay your developers to make a new concept idea and functionality.
Because the case here is: Open source + AI replica + no dev which is equal to no paying.
xD. Cya, thanks for hoppin in the convo with me :)
Do note that the SMB one, MS published the spec, somebody took the spec and implemented it and now samba is one of the goto solutions for sharing files across a mixed OS network
Does this view go back further than a year?
Might be a iOS 18 issue but Apple doesn't support iOS 26 with my iPhone
Charge your phone xD
The battery only lasts 5 hours
What on earth phone model
iPhone XS
the lower bound is manhattan, the upper bound is n^2-1 assuming you donāt revisit cells and n is even. If n is odd then you have edge cases that Iām too tired to think about. Given d = |dx|-|dy|, then range should be [d, n^2-1], with interval d+2m, m = step number, 2<=m<=d (?) i think. Anyway Iām really going to bed now
It's not great
But does the job right? I phone X series are great imo.
Not updated but, enough I'd say.
It overheats when charging which is quite annoying (other people I know also had that issue)
(it displays something like "stopped charging because temperature too high")
Do you step away from the bomb while charging it or sleep with it next to your pillow?
You should move to Samsung, that is all I'd say. THat thing is a literal bomb you carrying around šš»
pay their own devs
They will, when the AI generated stuff has issues and the "original authors" can't help
And I assume he does not use any powerbank, which sucks. Carry both powerbank and phone in pocket, rest is you know.
Correct.
Speaking of phone batteries... I need to change mine somedayā¢
g2g for now but i'll be back to elaborate on the restrictions, ty for your thoughts on it so far @calm rune and @potent fossil !
simplesleep
.
Heh I'll bookmark that one
Exists a web for all xd
I think the percentage is exponentially decreasing. The longer you have the phone, the longer it takes the number to decrease.
This was the solution, TR4s best motherboards are like $400 and the CPUs can be 4GHz for $200 with 16 cores or $400 for 32 cores, overall being way more affordable
The guy who should recode EssentialsX in c++ cause he hates his life
Performant.
essential is bloat
Not really
mbax is bloat
Most plugins take the philosophy of only changing what they need and you opt in to changes, essentialsx just changes everything it possibly can by default for no reason
You forgot to install EssentialsXAntiBuild.
slopsentialsX
There are a few of this on hangar now
sounds like you installed every addon without checking
and also vault + luckperms for that matter.
EssentialsXGemini addon when
I install EssentialsXMPP and I donāt even know what it does 
Vibecode a gemini xmpp bot to talk over it
Me I did
well firstly, May 2024 is further than a year ago lol
but idk iāve never used it, i always use the main calendar view
no no no it was just a couple months ago
in fact, itās still barely 2017
how time flies
Well the world is gonna end in 2012, so if the world hasn't ended yet, that means it can't be any later than 2011
And everybody knows it's the first decade of the 21st century, so the 80s were only like 20 or so years ago, and the 90s were only like 10 or so years ago
Some day I wanna take a trip to new york city and see the empire state building and the twin towers. I hope the Y2K bug doesn't destroy the economy before then
I wonder what will it looks like if mojang never invented text component and still using § for everything
like spigots rgb formatting probably 
Speaking of, how is spigot managing object components now? 
Donāt tell me is &h:Player or smt like that
most complex stuff just doesn't have chat codes in spigot, only via api
Which means every spigot plugin devs will very likely come up with their own format each 
If they want to allow the user to add those components as plain text in the config
most people seem to end up just shading adventure + minimessage tbh
As soon as someone does meta.getCustomName() it all goes poof, no?
Will paper ever remove all of the old bukkit/spigot stuff?
Like the big removal update or whatever
Honestly for those considering how easy they are to keep working probably not but so long as using is lossy people will complain which should naturally get people to stop using them, at least in public stuff
As soon are there are no public uses maybe they can just be yeeted but that'll probably be 2040
You know it will simply be never.
As long as plugin devs don't feel a sense of pressure (since there's no chance of discontinuation), many maintainers of old codebases will absolutely keep a few &c around in messages that need to be a single, solid color.
In a large plugin there could be a hundred such messages and if the plugin doesn't have some sort of standardized message manager (due to the ever increasing cost of refactoring everything, it's often too late when you realize you might need one), it's likely it has randomly hardcoded formatting codes here and there.
Instead, paper could realistically add a config line for these legacy codes and set it to false by default.
Why though?
Windows 11 can still run 32-bit Windows 95 programs. Little reason to drop compatibility just for sake of removing it.
OpenRewrite and Regex our beloved can help
If it is for the sake of having a more modern api and dropping all of the old, deprecated apis?
What's deprecated about Bukkit API?
Nothing bad with making a new Paper one, sure. But whatever works on Bukkit API already can still work. š¤·āāļø
The api is just old and a modernisation wouldn't hurt imo. Paper specific apis are just a lot nicer to work with
guys what is better paper for smp server or folia?
i wonder what happened to itemtype and blocktype
I eat them
were they tasty at least?
Your phone is about to stop being yours. In September 2026, Google will block every Android app whose developer hasn't registered with them.
Nothing burger, you can still install apks
Won't there be a developer setting to allow it again anyway? Afaik this is only so normal users do not have the risk of installing random apks
Guys read the whole thing
there is...
So what's the deal
Independent developers
A teenager's first app, a volunteer's privacy tool, or a company's confidential internal beta. It doesn't matter. After September 2026, none of these can be installed without Google's blessing.
Wrong
I don't mind 
You can still install per adb and/or accepting the risk
Read the whole thing he says, after having not read the whole thing himself
that site is ungodly amounts of FUD 
If I want to create a public android app, I'm going to publish it to the play store anyway
whats wrong
this ye
Developer account for 20 ppl doesn't need id verification
Adb can be used and apk can still be installed without it being signed
Company's internal apps are set on the company's address and name anyway
You will still be able to install unverified apps
not after that sept 2026
just gotta hope google doesn't randomly ban your account :^)
ye
Uhm well yes, you just have to allow in dev options
Yeah, that that 9 steps -_-
2 steps for me since activating dev options is literally one of the first things I do on a new phone
me when apple did this recently 
no, u have to wait 24 hrs for there

So what, then I wait for a day first
i was referring to a bug in 2024 where Google permanently closed hundreds of thousands of developer accounts, then shrugged in response to it
oh
classic google
You are making too big of a problem out of it
the solution was just "make a new account and pay the fee again"
The goal of the "advanced flow" is to slow down installation from untrusted sources by unexperienced ppl
When apple yeeted my developer agreement all of my sideloaded apps with it (and anything I signed on my mac) uninstalled themselves after like 2-3 days 
Wow
Imo a reasonable security measure for inexperienced people
why was yours banned out of curiosity?
Or well, when I went to run them apple told me they will not work and to uninstall them
Pursuant to Section 3.2(f) of the ADP Agreement, you agreed that you would not ācommit any act intended to interfere with any of the Apple Software or Services, the intent of this Agreement, or Appleās business practices including, but not limited to, taking actions that may hinder the performance or intended use of the App Store, Custom App Distribution, TestFlight, Xcode Cloud, Ad Hoc distribution, or the Programā¦ā Apple has good reason to believe that you violated this Section due to documented indications of fraudulent conduct associated with your account.
is the reason I got
I emailed asking for the documented indications but have got nothing 
I never publicly made software signed by that so it doesn't really matter, just annoying
i wonder if they close accounts that are purely used to bypass their app store, rather than make software
I technically used AppDB to do the sideloading and signing but it was with my personal dev account which should've been fine but w/e
I can still sideload the old fashioned way for my like 2 apps
So much bullshit and Google wants to make android the same...
For like 99% of people Google's change will literally not matter
If it does, just wait the 24hours
you'll live
Is Java 25 supported
Required even
It is?
Yeah
Bet
26.1 requires it
Iām on Java 21 1.21.11
Ya you'll need to update java then
I'd make a local copy of your server to test 26.1.2 with
Donāt want to mess up server generation
I cannot make that judgement call for you lol
Fair lol
The 24h isn't the issue but the direction is.
But itās generally safe for a survival server to upgrade versions?
what do you mean with server generation exactly
It's generally "safe"
I meant world generation
Plugins will need updates
I don't care about what Google will do in September.
I absolutely care about what they'll justify later.
If you have backups and/or do the update on a test server you've got very low risk
Iāll just do backups and call it a day
Minecraft itself is always backwards compatible with older saves since the MCA format was introduced.
Major plugins almost always seamlessly migrate data or are backwards compatible with it but this is not a guarantee.
Thanks for the help
Last wuestion. Is Java 25 safe to upgrade to if I do stay in 1.21.11
there's no world gen differences between 1.21.11 and 26.1 so you're good on that front, since 1.18 they also have chunk blending which prevents those noticeable seams from older times
the latest builds of 1.21.11 support java 25
Awesome thanks
Would do it but my anticheat only supports 1.21.11 atm and would want to wait until the add 26.1 support
Note that I get a TON of depreciation warnings with my plugins that were built against java 17 or 21.
They all work though.
why does it keep kicking all bedrock players randomly and sending this in console before it
[11:54:09 WARN]: [org.cloudburstmc.netty.handler.codec.raknet.server.RakServerRateLimiter] [/198.178.119.237] Blocked because packet limit was reached
Go to the bedrock plugin support
Because your proxy is sending too many packets probably
i haven o proxy
this only started happening after i used tcpshield and they just said i gotta add a startup flag
so yea that was the issue
TCPShield is a proxy!!
With all your connections coming from the same IP (TCPShield's) you get that.
kk im slow af
Yep this single IP is TCPShield's
yea they just told me to add a startup flag and whitleist their ip in geysers config
Or maybe misconfigured paper's max PPS.
But there must be a way to make the server aware of the IPs of individual players, right?
Otherwise large servers would struggle detecting alts if all their connections seem to originate from the same IP.
IP isnt a good way of detecting alts either
But there must be a way to make the server aware of the IPs of individual players, right?
that is the issue yes
That's not papers PPS limiter, that's raknets
papapa parapa para para rapapa
Wht other ways the ip could you use
there isnāt really a reliable way of finding alts other than looking at behaviour
eg, someone is banned⦠someone new logs on and takes over their base and continues it
IPs are extremely unreliable, especially if youāre not using IPv6
iām very routinely blocked from sites because someone else on the IP did something malicious/suspicious
at least thatās what we tell her
CGNAT is a problem, proxies are everywhere, its not a solved problem unfortunately
@tribal rivet I hope consumers start switching to IPv6, we are basically whats left to switch
maybe CGNAT usage will push that movement more
The good old day of disconnect your router for 10 minute to get a fresh ipv4 is gone.
if it were to happen, it would already
I have to restart my router every month because it just dies. Its only job is to be in bridge mode
sadly dreams are dead
ISP router is like government issues gears, itās made by the lowest bidders.
i mean it largely has in many areas
first time it happened I thought I botched my MikroTik config, but realised the ISP just dropped the connection for some reason
the places that donāt bother are the ones with massive ipv4 allocation
Sounds like first hand experience 
yk what now that I think of it, my UNI's data center still largerly uses IPv4 while us students are allocated an IPv6 adress
they bought some adresses 30 years ago and still hold onto them
well itās really the US and western europe that doesnāt bother with ipv6
and then that trickles down to services made by engineers in those areas
so you have australian engineers very into ipv6 as we rely on it, and americans calling it dumb/useless/dead/etc
Minecraft java doesn't support ipv6.
Also for ban evading IPv6s are free, v4s aren't.
It does support v6
Huh WHAT?
it would be extra work to not support it lol
It will ONLY work if both the server and the client has fully supported v6 network though
if I type an IPv6 in the direct connection interface it just says unknown host.
That means part of your network chain donāt support it.
(or you typed it wrong š )
Considering that both my server and client are on the same network, and every device has a unique IPv6...
It should not do unknown host. If something's blocking the connection it should be connection refused or timed out.
I'll try again.
iirc it requires square brackets around the address, that throws people
or maybe thatās changed and it no longer does
When you have time can you find the first part of your v6 address.
2003
but that's the public one, I'll try the local IPv6
oh my public ipv6 actually returns connection refused and not unknown host
and the private ipv6 fe80::62cf:84ff:fe76:104 "invalid argument"
the first result indicates that minecraft does have ipv6 support and recognizes the IP, but that my firewall or network policies are blocking it.

Yayy rust server software finally is almost done finishing everything
java supports it
bedrock does not
is it worth it setup IPv6 on my home network?
sure. There are some ipv6-only sites already
(although often non-essential, private ones)
My ISP is testing IPv6 implementation for business users on FTTH, DOCSIS, and VDSL/ADSL as of 2014. No support for personal customers is available as of 2024.
damn they don't care lmao
The MC server community: ah shit, here we go again.
we're still talking about hytale in the big 26?
They're only on their 5th published update as an early access project out for half a year? Huh.
nooooooooo
meh
What else do they wanna do to it tbh?
From what I heard it worked pretty well...
Not sure... and strange because the friend system was not removed only the p2p
lol
Thatās odd
Wth
Tbh, one thing I wonder is... how will they make java edition profitable lol
My only question
In game ads
you're assuming it isn't already
Do they make enough money from bedrock to sustain both versions and specially keep resources focused in java?
Questionable with a one time payment
that is how games work yes
Well, sadly not nowadays
Minecraft is a live service
True...
Wonder if they have a lot of revenue from merch etc
most certainly
minecraft is everywhere
50% chance i see some kid wearing minecraft merch if i go into any city
Yeaaa true
So I guess updating minecraft, specially java edition is just part of the marketing budget lmao
Cause java edition is the one really bringing people due to it being popular in social media
Aka YouTube
minecraft doesn't want you to separate the games
whether you're playing java or bedrock it doesn't matter, both are minecraft
They shouldn't have done it then, cause there are very clearl lines between the two
are there
Yes.
looks like the same game to me
not relevant to the average user
Still diff. Game
core concepts, visual styling, gameplay etc are all the same
The marketplace in bedrock is also different
the subtle differences don't matter in the grand scheme of things
And the biggest part: both editions can't play with each other without smt like geyser
i agree for a normie there's no big difference
bedrock is the default, cross platform etc
It matters enough, people watch videos on YouTube, with modded mc etc, want to play those modpacks and bedrock doesnt have those. Not 1 to 1 at least
java is just an additional way to play it on pc
Before Bedrock you had different versions for each console, people didn't care back then either
that too lol
So, they are 2 different things.
I am not trying to say they care, trying to argue that they are still 2 distinct versions
I mean, yes, but for 95% of people it's the same
whether someone drives a ford or a volkswagen doesn't matter, they're both cars and they achieve the same for 95% of people
minecraft java and bedrock is the same
the subtle differences do not matter, they both implement the core game
they both look the same to the average user
Eh fairs
like i get what you're saying and id prefer java too but it just does not matter for the average user
- you get both versions as pc player for free
gta 5 vs gta 5 enhanced is a similar vibe
you can't crossplay between the versions, both gameplay & visually nearly the same though
That would make an update each month, which is pretty good
Well, redstone, the entire codebase, the language, the bugs, the packet system, modding too, It's really a "big" difference
all completely useless to the average player
the basics of redstone work the same
but to the average user stumbling upon it, it's the same brand
I remember trying to explain the differences between bedrock and java to an older friend of mine
they didn't really care about those differences (other than bedrock marketplace)
a lot of people grow up playing bedrock now aswell
java might feel wrong to them and vice versa
itās easy for some of us in the server and technical communities to forget how the average person plays and experiences the game
there is no right or wrong version of the game, it is both minecraft in the end
most people probably do not care at all, at least until they go to join a multiplayer server assuming they ever do
you can argue the specific details but they're just not relevant for the average user
With the personal computer price going the way it is going, we will also produce more bedrock players 
there are most certainly more bedrock players than java players already
there are, yes
99% of redstone doesnt work on bedrock mate
if you try any door (even 2x2!!!) it wont work from Java -> Bedrock (atleast, probs also other way around)
is your cousin's 9 year old going to build a 2x2 door
Well, I built 3x3's when I was 9
relevant https://xkcd.com/2501/ at that point
Quasi Connectivity is why it doesn't work, if it was in bedrock it would revive half the builds that are broken
Not only QC
Thats why its only half
i don't even know what quasi connectivity is and i've been playing this game for 10+ years
you expect a 9 year old to know what that is and call it a dealbreaker for bedrock
activating pistons with a piston from above
basicly
When did I say that?
I said it wasnt really the same game
No
I did...
the point is that the differences aren't large enough for someone to consider it's a completely different game
Ehh believe what you want to
And still not so little to be the same
if someone were to start their first time playing minecraft on any versions of the game it wouldn't matter
We arent talking about 5 y/o's
Posted by Manuel@NVIDIA: āGeForce GRD 610.47 Feedback Thread (Released 5/26/26)ā
R.I.P. Nvidia control panel
lol
insane how many of you don't understand how much of a bubble we're all in
the average Minecrafter isn't in a Minecraft server software discord
or anywhere near it
the current generation of players, even just the 15 year olds are growing up playing the game on bedrock
it's the most accessible version
Well.. not to be annoying but I read online the average Minecraft community was ~22?
yes i am sure they're marketing all of the minecraft merch, food, brand integrations towards 22 year olds
i cannot wait to eat some minecraft ice cream and wear my minecraft pyjamas
I think we have different definitions of community
What is your defenition?
For me it's every player that has atleast played a little while
They should pay more attention to attract new players. You canāt sell games to people who already own the game.
Correct
I would almost thing there are more existing Minecraft players that need a new account/lost an old one than new players
source: i made it up
For my message? Yeah
For me at least engages with other people and understands something about the topic.
And well, with that definition I think 22 is feasable.
With the opposite "plays the game" is not someone part of the community, so more 13-19?
And then there is the money target group with merch and ingame cosmetics ^^
As I said, I would almost think
Many sources say 22-24
As average
My source tell me thatās wrong
there are no reliable sources on that
Correct
I mean, many people who play the game are not even allowed to do that by age.
Even if the average was 22 they still most likely started playing on bedrock
Isnt the PEGI a recommendation?
found some paper on demographic evolution of the minecraft playerbase by someone at the university of north carolina and it basically only quotes unreliable sources lol
There aren't any reliable sources
Even Microsoft wouldn't now
Just get the age of the payment method used to buy the game and merch /s
microsoft can certainly get a good enough number on it
Lying about your age, parent's accounts?
-# Why would you lie about your age when pegi is just a recommendation?
there's enough data / telemetry on most services to get a good enough estimation + paid research surveys with a large enough userbase
i think you can again make a good estimation yourself if you're just looking at how minecraft is marketed vs other games
The age estimate algorithms are interesting and graving at the same time, in my opinion.
They can pretend they believe whatever you set your age to when thats convenient but they have an age or age range estimated for you based on behavior
My sources who like to remain anonymous say, that some ppl who started playing on bedrock because of kids having it on console
even discord is predicting your age off of your message data as we speak
But is it?
yeah lol it's in your account data, even predicts your gender
They even made it publicly used in UK when I am not wrong? Or at least planned to?
Whut
you think the average user who doesn't use an adblocker or have like any opsec would not have a reasonably predictable age by now
100% you can request this data
2019?
mine doesn't have any data :(
the pronouns
the age is accurate, I'm apparently an unc
Can ya send me that "my time is your X" thingy pls?
I just use - https://r.3v.fi/discord-timestamps/
I am on mobile
well, for mobile use that 
shrimple
Danke
My 12:00 AM (00:00) is your <t:-3600:t> it is
tho, I still dunno if 12:00 AM is midnight or midday

Do you really need to prefix it with an \ to edit that thing?
if you use @time? yes
like you would do with emojis, channels, mentions, etc.
[#paper-dev](/guild/289587909051416579/channel/555462289851940864/) i.e.
Midnight
Just give me my unrendered input back :')
@viscid oar
on PC, not mobile
yeah I'm on PC
then click arrow up to select the bottom one
wrongly mentioned some random person
self inflicted pings, like those nicknaming themselves @nullable in a java community
I like the 12 m
Why is the afk timeout in my discord user settings and where can I change that oO
We donāt care about what UK people think
you should use #paper-help for help
oki thx
taco
since paper-help is now for paper help
what happened here?
** THE RESHUFFLING **
hey can I get some help with paper
does anybody know any premade application i can use to transform my phone in a web audio conferencing app?
am no good with paper pls to help
i just came back and everythig is wiped out
No
Stop copying intellectualsites
The chairs are still covered in paint
lol š
what about standing or sitting in another channel? is that ok?
copying is the best form of flattery @heady spear
We've been meaning to do this for a while, I believe that we just hit the "We need to do it now" phase š
He just told you to do it
I left only for a mere 2 minutes and then the chat was purged
Yes, you need to because we did it.
it wasn't purged
Copycat.
@void void boop
ex #paper-help
Electronic copycat.
@vestal jasper vicarius
3:19 PM Citymonstret: He just told you to do it
wtf is this now
You must not be familiar with the personalities of all the team
there is very little dictatorship going on
@golden gust I am a better cat
its more oligarchical
Smh I only run dictatorships. Makes me feel stronk
electroniccat is a mere robot while i am an actual real cat
Nah but itās a good idea to actually have help channels on here. Good initiative.
Although, the clusterfuck was a big part of the charm
it looks like paper is finally becoming a true discord guild
To thank you for being a valued 2 TB Google One member, we're giving you a Google Home Mini at no charge. We'll even cover shipping. lol wat
2 terabytes?
2 terabytes google one member
they want to listen to you...
I dont even let my phone do the always listening thing
pls keep your google home mini
If I owned intellectualsites Iād shut it down, no need for it with the new organised paper shit
send everyone over here :>
its funny because edward snowden must be bashing himself in the head with all these lame ass government spying devices being pushed to consumers just because they cant fucking push 2 buttons for a song
Fuck ya paranoid asses, I'm taking it lol
here we go :>
i hope the government launches an attack in australia and kills md_5 with help of YOUR data
I bet you have loads of juicy info that the government would be interested in.
Yāall seem important and all, bet they are targeting you specifically.
ye im actually a Chinese spy
when WW3 happens online and your fucking google mini home starts walking on its own you know youve fucked up
Just install FAWE and it wonāt hurt you.
Or stay on your plot
PlotSquared is a worse meme
only way to kill one of these devices is a 48v poe dont forget that
Who the fuck has a room where coral would look nice? Are you my Russian grandma?
I guess I have a thing for bright colors lol
bye bye private life
chalk is better
igave my nephew my google home cause he annoyed me too much with it when he was over
might be color blind and ya dont even know it
so i just wanted it out of my home
So then am I also the only one who likes the red Beats Pill? lol
Coral works fine in pretty much every Swedish home, as youāre legally forced to leave the country unless you have all black ikea furniture
Or just because it looks cool and doesn't have to match anything else
thats not true, im swedish and i have a charcoal one
excuse me FAWE threatened to kill me once
https://cdn.discordapp.com/attachments/268444645527126017/527206197917384707/unknown.png
You are not a real Swede.
Neat
š®
I wish iron would release FAWE so I could stop getting daily messages about it
But then again, we have no way to access the spigot page, lol.
Would be nice if there were other people also working on FAWE
instead of a single person with little free time
You could donate your time š
I'm no where near good enough to contribute to FAWE
Combustible did make some important contributions
@heady spear have whoever is actually running the FAWE project shoot me a PM here on Discord
Lol spelling
I can probably help you out with the page
Not even intentional
prooooobably
@lean gale
Listen to the dude.
Honestly, Jesse should have transferred it to I-S, smh. Canāt believe he didnāt just give me his resource.
Too many things that can kill you in Aus, don't do it
I have his personal info, I shall fly there and fight him
Jesse also posted the resource on literally every site and I canāt access it anywhere
Iām not even listed as the owner on Bukkit.
Hello
Hi.
Is it just with Portugal that Instagram is high asf?
Feed doesn't load properly, messages take 20 minutes to send if not more
Ooooh, discord has evolved :o
indeed
gotta enjoy the last few months without ads on WA
Whatsapp has ads?
not... yet
Ah fuck
Yeah that's from IRC
Death to IRC
I remember there was a Google bot but I think it got down and never came back
Time to do a cool discord bot š
hurt me 
New IRC for every channel in Discord
@quasi valley anyway I might get courage to install lucky patcher just to remove whatsapp ads if that happens lol
The bot had the right idea.
hopefully another app will fill the void through some big old drama and replace whatsapp for more than just a few people
nice bot
What no
Delete your internet
i like twitter the most haha
Yeah Twitter is like, the intelectual social media website
Twitter is just for sjw feminist genderqueer alt right nazis
The rest is old people and fake bodies
š
sorry I don't like you therefore you cannot view my public tweets
āYeah Twitter is like, the intelectual social media websiteā excuse me what
intellectual social media website
Twitter is the least intellectual
@heady spear I don't know what kind of people you follow but I follow people from my age range and I can see myself on the tweets I get on my feed
insta
let's be real here the true intellectual social media website is paper mc discord #paper-help channel
Intellectualsites is intellectual
70 year olds on facebook have more fucking brain cells than the average twitter user
twitter will pair you with people similar to you
IS is not intellectual at all :>
halfs
halfs
Spottedleaf, actually I start following people through retweets, someone who I follow retweets someone, the tweet was funny/interesting, I check their profile, I follow
aren't those halfs for different purposes
He is clearly a Facebook user.
wtf
Spotted is a tumblr kid
logic we have to rebel, they want to silence us
am tumbl u down a hill
try
ask if he succeeded
it's very hard for me to open up my panel and click a few buttons city :(
Donāt talk to me like that. You know it turns me on.
Tbh is whatsapp a social media app? A classmate told me thst it is... But for me it's just an instant messaging service
He says it's a social media because of the statuses

By that logic github is a social media
And he keeps "hitting on the same key" about it
Because you can see other people's statuses and they have pics and videos
tell him hes a facebook user
i'm going to change my nickname constantly and use it as a status
discord's now a social media
Thatās hot.
Every status = new git repo?
and sub stati with commits
Github has user statuses lol
stati
let the memery commence
issues = comments
SpigotMC is a social media
spotted, hush
It has Status updates
SpigotMC also has 12 year old kids threatening to commit suicide if you donāt do as they wish
Itās basically tumblr without the quality memes
really where
Then he's like "ask to anyone else on the class" well maybe they'll agree with you because they don't understand about it l o l
Well, not on spigot, but from spigot.
āMy server will die if you donāt help me and then I will die tooā basically
"you speak with people, it's social media"
the best part about spigot are the ones posting a new 1kb resource every hour to show their awesome skills
"I'm rating 1 star and will only rate 5 if you give me support in the reviews!!!"
Can fuck off with your 1 star. Should be banned from spigot on sight for performing review terrorism.
(in Portuguese we call it "social network" or "social web" which makes it harder to counter tbh)
Oh, and people cutting themselves and sending pictures of it to underage kids because of bad reviews.
wait wait wait
spicy
where has that happened
To be fair though, they did get a 1 week ban.
didnt know spigot is so dark haha
not spigot, just some edgy devs
It's time to say it became Black Spigot
Yes, there was.
BA DUM TSS
There were loads of threads, but theyāre all gone now
Someone on codevision saved the entire history
I also talked directly to the person at the time, fun stuff.
is it publicly archived
As an update, #paper on IRC will be bridging here and we'll be making a new #paper-help for bridging to the help channel
What bothers me, and still bothers me, is that it was never fully dealt with.
thatll get changed in a few hours
sounds good
aboose
The person is still allowed to go on about their daily business
They even asked for donations during their ban
From people that had already paid for the plugins
Because they couldnāt communicate with them for that week.
https://i.imgur.com/0yOEj3N.png
that doesn't seem ok
I'd expect registering listeners to be expensive
Spongie ā¤
Spongie is pretty great
so apparently mozilla is making a new mobile browser called fenix?
Can people stop releasing half assed browsers
Since our screens are only getting bigger, it makes sense to put the most used UI elements right at the bottom of our devices.
I don't agree with this at all tbh
I mean, at least I hope they give an option to put it on the top
well if your phone has a notch then congrats they moved from the best place to block a bit from to the worst
@heady spear it's still in development, but there's a nightly build
im actually kinda interested i nthe idea
I personally use a raw JavaFX WebView for browsing
i have a really tall phone thats inconvenient to reach to the top
mozilla has been kinda killing it lately all around
My hand doesn't reach the top of my screen, have to use both hands
be cool to see what they do with that
Brave is still amazing
I know chrome and others are looking at a bottom address bar too
Use brave.
for exactly that reason
yeah i have to move my hand on the device or stretch hard
thats my biggest complaint about the 6P, its too tall
and i have HUGE hands
Yesterday they released Send, a free to use encrypted temp file storage
Hereās a concept: donāt get giant phones if you have small hands.
i have big hands š
Ok trump
lol trump still rocks a galaxy S3
I cant believe I said nexus 6p lol, i meant pixel2
Err, yuuuuge hands.
hmm what's the minimum android version
google has a page of distribution numbers that still connect to the play store
its ... not great
but better than it used to be
@slim nymph see ping!
having the address bar at the bottom reminds me of some generic "adblock browsers" from play store that actually don't block ads at all
that's why I use firefox, I have actual extension support
I dont mind the address bar at the top of my phone but Its not that much work to get to it
those random one off jumbo things samsung keeps making
that might be bad
or people with smaller hands I guess
idk just give me a toggle
I donāt know why youād buy a giant phone in the first place
And certainly not why youād then complain about it being too big
well i like big real estate, its just i dont like its vertical, wish it pushed more horizontal a tad
The Samsung phones are really tall and skinny
not like they give you a choice "P2XL vs P2XL but shorter"
So yeah, I guess that makes sense
I got it for the real estate yeah
its nice
I assume personal preference, your hand size, etc all factor in
its not really an issue for me
I use my phone to take dick pics and play temple run
my gf probably wouldnt like it
I donāt need a 50ā screen
its fine overall, but i wouldnt of minded a .5" height reduction honestly
.3"~
.5 maybe too much
Put some electrical tape over the top
are 6 inch phones a thing now
I remember when nexus 6 dropped it was criticised for being too big
now phones are much bigger
Can I sue youtube for constantly breaking / disabling dark theme?
Yes
my eyesight is worsening because of it
maybe you're clearing cookies?
Is that fat shaming?
I'm not
@tropic flame P2XL is 6.2" height
The feature stays enabled but it doesn't switch to dark theme
I have those too
tbh it's the industry's fault that tablets are dying, advertise them in place of bigger phones ffs
use them for different things
The s8 is 5.8 and I almost think itās too big
OMG both a laptop and a phone. Rich kid.
Honestly save $600 and spend that on a better laptop / tablet / surface
why do you need a $1000 phone
waste of money imo
Ok let me rephrase
Why do you have both a tablet and a computer? Smh, spoiled.
$1000 is a fucking waste on a phone
And a phone*
consider that someone like me is on my phone as much as my home computer if not more....
I mean, you can make that same argument about everything
why wouldnt yuo ensure you had a great phone?
why'd you get x car I can get y used car
Ok but what do you get out of it?
thats a fucking waste
phone is an absolutely critical element of life
its a dumb argument
I need to sell my second iPad
people spend money where they want to spend money and dont where they dont
Does anyone need an unused iPad 2018?
if you try to apply your own opinions to everyone elses spending habits youre stupid
ĀÆ_(ć)_/ĀÆ
you want a solid phone that has top notch battery, cpu, screen real estate, memory
You're creating a paradox where one doesn't need to be, Z
storage
no
your opinion is stupid
and Im telling you why
because its yours
its not mine
its not his
its not anyones but yours
my p2xl is going to be a solid phone for years
But yāall spend money then complain that the product you spent money on is too big to be usable
you could say anything is stupid
supid compared to what?
city is stupid compared to einstein.
so what?
now, do i wish it didnt cost 1k? hell yeah. it was hard to swallow for me
yes thats how opinions works
thats not a paradox
google that word and get back to us
Where the fuck did that come from V?
Who would spend 1k on anything smh?
Live a minimalistic lifestyle like me
I only own the bare essentials and Iām happy.
jokes on you I dont have $1k
well I probably would if I sold some stuff
I like my stuff though
I would if I sold my graphics card
rip car
I work hard, I want the best š
i grew up poor.
I spent $3000 to read reddit posts.
Some people spend boatloads on the latest nvidia ztx potato8000
then play fortnite
I dont get that
Donāt talk shit about the nvidia potato
but w/e live and let live
My 2080 looks really pretty in my case.
I'm perfectly happy with a 1080 TI
but I am stil lpretty reasonable most of the time. Like I lost my 6th monitor, considered replacing my 3 primary with IPS's lol, but i refrained
pfft look at this poor kid
Couldnāt afford the ti ok Iām poor
probably dont wanna be his friend
as id then have 2-3 monitors sitting around
I couldnāt afford it because I had to buy a second iPad. Remember?
goes to play minesweeper
I usually justify upgrades when I can hand old down to family
Now I have two iPads and a budget graphics card.
didnt you say one of the ipads had a busted screen or something
I know iPads are pretty dirt cheap now
but I think its still cheaper to replace the screen
than get a whole new one
maybe that was your replacement then
Lol they just fucked up
My dad had a first gen ipad up until last week
finally convinced him to let me spend $300 and get him a replacement
Honestly though, I use it as a feet warmer
I have a 4th gen or whatever
he uses it all the time
The first one with the lightning cable
birthday present I know he'll actually use and, I mean its not nothing but its not that bad for me atm
win/win
I honestly regret spending as much money on my computer as I did
You should
Itās 6 months worth of rent.
i only play minecraft on mine
why is your computer levitating
I donāt even play games :/
magic
I compile some random C shit for classes, and then I read pdfs
an rtx2080 is 6 months of rent?
I use my iPad to spam discord
wtf is your rent
The entire computer wtf
ill give you a box and a spot outside my house

Lol, I live in the most expensive apartment complex in my town
I spent 1300 on a 1080 TI, i7 8700k, water cooling, 256GB NVME, 1TB HDD
Itās across the street from uni tho
whats an rtx2080 go for anymore
conputers are fucking expensive
like $800
thats ... about 1 month of rent at an okay place here
Ill take the box
i want a threadripperoni
good place to sleep
I pay more for my single bedroom apartment than people at the other side of town do for three bedroom apartments
I got a nice 30 inch hp omen 1440p 165hz for 300 when it was normally 800
So I think I did good
Computer parts are really fucking expensive here
Just dropped 100 last night for a 1TB nvme
i sold a gtx 1070 when they went for $600 and then bought one a month later for $200
Will be here tomorrow
Spent 30 on a pcie card to turn my old nvme into a regular hard drive
And then I also have a 3TB HDD in there
A 2080 would be around $1000 here
jesus
nossr50 where are the mcmmo updates
Itās cheaper for me to go to the uk and buy the shit, and then fly back home
yeah used parts are the smartest
@gloomy sphinx


I just picked up 16GB 3200hz DDR4 RAM for $50
Itās very common to leave the country when buying expensive shit over here
Because everything in this fucking country is overpriced as hell
leave the country
Well, temporarily.
I need to replace my GPU but I don't wanna spend that kind of dosh when I barely play games
move to australia i hear its good

Although Iād happily move away from here, lol.
@stiff yarrow whats your GPU currently
980 TI
bah its fine
980 ti is fine wot
I need to replace it because its failing


