#general
3141 messages · Page 43 of 4
^
I use that almost obsessively
Good
i hate when people put spaces in brackets like that
That's because you shouldn't ever do that
md_5's code style is like going full retard, and you never go full retard.
I hate the bracing style the most
only if you are md :p
And the spaces is just pedantically annoying to the point that I kinda don't care about people skipping that one
Utils.getUser( DiscordServer.getServer( "PaperMC", true ), "SamB440" ).cringe( bracketSpaces() );
google style vs ide default style tell me
Ctrl-R
and input
replacement:\( (.*) \)
to:($1)
(enable regexp)
done and ur free from shitting man style
ahno
plz tell me
Byteflux google style vs ide default style
lol
google style for me is ew
the one thing I really dislike is only having 2 spaces for block indentation
the one thing I really dislike is the line breaks in google style
never really looked at it that much, but most of it seams reasonable when dealing with code hundreds of people should later edit
yeah that seems odd, too
what's wrong with line breaks
wait
plugin. getServer(). getScheduler(). runTaskTimer( plugin, () -> { // something });
No
?
Leave
ok having override on the same line as the method is weird
ivan use triple ` for codeblocks
jesus
thats how google formatting did a 2 line lambda into 10
also i can't see where they say to do that?
breaks should come before the symbol, so that's just as anyone would do it normally
not after
also, they say the 4 whitespaces are only added to the original first line's amount
More than likely they mean to keep those other method calls in line with the higher one ^^
plugin
.getServer()
.getX...
each line after the first (each continuation line) is indented at least +4 from the original line.
yep
its kashike's code style boii
looks like mrivan just sucks at reading
You should always assume Ivan doesn't know what he's talking about, anything he says is usually wrong. 😃
Byteflux no seriously
i had an update checker
and did a google format on it
and literally 5 line lambda
did it 10+
eitherway what you sent above above is most certainly not what they want you to do 
sori mi bed on inglish
like
Yes, because automated tooling deals with all formatting cases well...
whatever you did clearly isn't following the google style guide
I just do whatever the specific JetBrains IDE tells me to
I do this in Rider, IJ, PyCharm
I honestly just prefer IDEAs default set of styling
Pretty close to googles, just... not as weird in some cases
why is that dumb?
yea, I disable stuff like that
replacing imports with * is bad
.g wildcard imports are evil
y tho
(DiscordBot) https://stackoverflow.com/questions/147454/why-is-using-a-wild-card-with-a-java-import-statement-bad -- Why is using a wild card with a Java import statement bad?...: "The only problem with it is that it clutters your local namespace. For example, let's say that you're writing a Swing app, and so need java.awt.Event..."
reads
^^
oh, wrong terms, http://www.javadude.com/articles/importondemandisevil.html is the generally referred to article, but that covers it
I can understand that, but then I'm the only one in my codebase
static imports ewww
makes my code a lot more readable tbh
static imports are useful for a few select static methods
Then you're using too many static methods :p
things like checkNotNull
if you're using them all over, you're overusing statics for sure
They're all usually helper methods
ok i will use kashike one
string formats, etc
its like the google style, but without that weird line breaks
Roomie’s video: https://www.youtube.com/watch?v=ojvqIumZtnU Dave’s BTS video: https://www.youtube.com/watch?v=3E_1fspZQ4c Stream “Congratulations”: http://sm...
(DiscordBot) Congratulations - length 4m 19s - 3,528,740 likes, 157,244 dislikes (95.7%) - 25,700,659 views - PewDiePie on 2019.03.31
anyone know how to add paper to multicraft? (where i can add to the config to download the latest version)
avoid to write Preconditions.checkNotNull(value, "Can't deflate null!")
@surreal moth why
thanks @golden gust
yes
how about FatYoshi
ぴ!Today at 12:52 PM
avoid to write Preconditions.checkNotNull(value, "Can't deflate null!")
what was point of that statement
ivan said static imports are ew, yoshi said that they're nice to they can avoid writing the whole of that
i meant "to use static import is useful to avoid to write Preconditions each either null or not"
type 11key * number of usage versus static import
I just use my IDE
or use autocomplete
english is difficult for me
I tend to avoid static imports, tbh
For personal use it's fine, but when it comes to other people working on the same project they might or might not be confused when looking at those lines of code for the first time
well at least if it's not a common method like the Preconditions methods
...btw why not Objects.requireNonNull()
It doesn't really offer any real pros to statically import it
i didnt get it
Preconditions is basically just the defacto version that's just still in use
Objects was only added in java 1.7
also preconditions has things like checkargs etc
not just checknotnull
but yea guava 10/java 6 was the bukkit environment back in the day
Objects didn't exist
shit newface objects
its still useless method groupin
someone explain me whats the magic behind multi module projects
groovy
my big blin called announcementseverywhere may need multi module creation
i need 3 pictures to show how big the project root it is
speaks more about your design choices than your needs for multiple modules
this project was created on... lemme check the 1st release date at spigot
6th of August, 2018
then i created it as a small plugin
now its total big blin with a bunch of features
it's pretty much 100% down to designing your plugin in a way that it can be segregated into modules
tbh unless you have separate dependency needs (bukkit and forge modules, for example), multimodule projects probably aren't what you need
tbh idk what blin even is
pancake in russian transcripted in latin
i use it for big projects and such things that are big
but im bulgarian, dont think me russian
this proves it
i mean that proves nothing for starters
i mean it proves that im Bulgarian
but idk why you'd expect us to understand your usage of a foreign word for pancake, never mind its meaning as "something big"
no it doesn't
show my passport then ?
i don't want it?
i am bulgarian, and i can prove it
i'm not questioning that you're bulgarian
i'm just saying your PR doesn't prove anything about your ethnicity
not that it's even relevant
it adds bulgarian language
wat
I can speak French, but am I French? 
and i've taken like 4 different languages in the past 6 years
what does that make me?
i can speak english, but am I from england ?
i mean with your english, you might be
i heard of lot of people in england aren't native speakers of english these days
LUL
in england there are 200k+ bulgarians because of the big exchange of the pound to bgn
1 pound -> 2.28 BGN
back on the theme
how is the best way to create that multi moduled ?
copy pasta /
once again, my suggestions is not to split a project into modules unless there's an explicit need
there's no need for multiple modules unless you depend on different depends (as wiz said), have an api module or parts that work on different platforms
but i'm guessing you just want to do it anyway for the fun of it?
so what?
maybe better to create it multi moduled, /shrug
that's the entire fucking point of packages
if I expand, those will be in 20 pictures, still, one module https://kennytv.eu/files/p3wv4.png
no
but i've been contributing to them since almost the beginning
pretty much the de facto maintainer
since sk hasn't done any MC stuff in years
if u can, can u do RegionEnterEvent and RegionLeaveEvent inside worldguard
^-^
My plugin has that many packages in one module
thats only 2 events, 2 classes, 2 calls
it's also retarded
don't tell me how to write my plugins
if you don't even know how to write yours
or u dat lazy dat u dont wanna check this shit
or you're lazy and don't want to use the proper api?
Calm down folks
i mean it's all explained in the docs
you can fuck off too chasewhip, you're not my mother
Stop being such a dick m8
stop backseat modding m8
gets popcorn
share
gets porn wait wrong stash
:^)
Someone is having a bad Monday
lmao
its tuesday
Monday?
😂
Tuesday lol
Stop it, get some help
cough
i'm glad my officemate is on vacation this week
1st of april was yesterday, ktnx
Oh yeah we’re still selling dunder mifflin by the box
overstocked for april fool's
got any graph paper there? i know someone who was looking...
No no graph paper
Not necessarily. They said they were mainly focusing on bug fixes to make 1.14 release ready.
So I'd imagine it'd be soon.
The client performance is so much better than 1.13's, though I the server I played on with a snapshot with a handful of others crashed regularly 
Probably its optifine, but... 1.14 snapshots are hell for me
I think even 1.13 without optifine was faster than 1.14 snapshots tbh
Oh well, for me the snapshots are even better than 1.13 with OF
why the hell is google killing successful products
I didn't even know they killed chromecast audio
and people loved inbox
I think everyone knew inbox was never going to stick around, but they were led to believe the features would go into gmail
well yeah
gmail is kind of a giant mess anyway
So maybe they even tried then went nah
They definitely have that pattern going on though
I mean google works in a "whoever comes up with a cool idea gets promoted" kinda way internally so that makes sense xD
I've seen two or three out of the many of people I know that actually used Inbox
I don't know anyone but I've seen people rave about it on reddit
Yeah their employees have long since said that maintaining and fixing doesn’t get you promoted
I've had proper filters setup for ages now, never saw tha appeal ¯_(ツ)_/¯
what is inbox exactly?
yup. filters in gmail are great
Why would they kill Google Fi lol
Shit is awesome
It's live still, you can see @pulsar wigeon
but it's a ton of effort
that redirects me to gmail
It does? Huh
Google Fi seems to be doing well
what? something saying Fi is dead?
No, Fiber was virtually an unmaintainable infrastructure project
Fi runs off of third party infrastructure
They are completely different.
Saying Google FI would shutdown because Fiber is going downhill is not an explanation for why Fi would be shut down.
oh
Make a better argument.
at one point my gmail had those folders like social/updates/promos
lol
That’s a nice ask toolbar you’ve got there
no clue what they were for but i think i hid them
I didn't say it would get shutdown
they still have that, but they aren#t customizable
but it seems like exactly something they would shut down
I don't work at google
jesus christ
Why? Fi is good, and it costs them next to nothing.
wiz its to let you segment email so you filter to only important stuff in primary
Verizon, Sprint and T-Mobile does all the heavy lifting for Fi.
I mean, inbox cost them a lot less than fi does
oh yea i disabled them
That’s also a bad argument
i use custom filters for everything anyway
promotions gets the marketing emails out of primary
@pulsar wigeon you can just switch the classic view ¯_(ツ)_/¯
i def enjoy the categories
That being said, google could pretty much kill whatever however and expecting any less is naive at best
They could, so could any business, but that's really beside the point. Not seeing any solid argument for why
Aikar did you ever right any hologram apis?
They don’t need a solid argument for why
Obviously these things precede a cost-benefit analysis.
^
They don’t always have a solid argument for why
Christ, hell fi would be easy to kill, most of it could be ported to voice
If something is unprofitable or unmaintainable, sure.
The discussion was about them shutting things down willy nilly, not to provide a valid reason to shut down Fi
Fi is not really one of those things from where I'm standing.
No one asked where you were standing
Google doesn’t always look for explicit reasons like that was the point
maintaining things is harder than killing things
Your flip out over fi is still random
I can see a clear reason why Fiber would be killed.
especially if you have to maintain the relationship with all those third party providers
who are flaky at best
Fiber is pitched as an affordable (often free) fiber internet with the infrastructure being almost entirely owned by Google. Laying down fiber is expensive as fuck.
Cost-benefit dictates it's not worth it
Thats the only actual argument I can see for them getting rid of fi, is if the carrier agreements were limiting or they wanted out
that being said, google doesnt always look for obvious reasons
they could very well introduce some new thing and just slowly kill it in favor of that
thats one of their favorite things to do
the SMS and voice part of a phone plan they already have many competing products for
SMS and voice would be easy to migrate
If anything, I would see the threat to Fi as coming from a third party and not necessarily Google.
They might just end up selling data only
I dont remember if its actually going through google voice
but if not it'd be easy to migrate it there
theres already 3rd parties doing the same thing as fi
and actually even cheapeer
just noones heard of them
ting is a good example
As a carrier plan that offers the coverage of 3 major networks, it's a really attractive consumer choice.
thats why I use it 😛
I have met one other person who uses fi in the real world
and they're leaving because the coverage sucks lol
Coverage is really still a problem?
but its wireless networks so ymmv with location
The coverage really doesn't get better than Fi lol
lol
youd have to live in an area thats GSM only
thats a stupid blanket statement to make
AT&T even loses out on coverage to Verizon
new server icon is better, change my mind
in canada no one has been concerned about coverage for years
The combined Sprint+Verizon+T-Mobile coverage shits all over AT&T.
So not a far fetched blanket statement.
its still a stupid one
I think verizon is also screwing them a bit
I get much better coverage here than he does and Im on verizon
so either Fi isnt switching properly or verizon isnt giving them good enough access
ofc they do, they have some of the better coverage and networks
if sprint or tmobile ever get there so will they
about that dead google project page
business gonna business
I didn't like it before but trying it now it seems nicer than actual gmail
I tried Inbox, I prefer Gmail
its focused on a different workflow than gmail
so if you like/can adapt to that workflow its probably gonna be better for you
if you cant, youre not going to like it
it'd be neat if inbox by google was just a viewing mode for gmail
its very spartan if you arent in that workflow
exactly, they could just throw it in the settings
it's like google can't decide whether or not they want options
they have 50 messaging platforms
Google isnt deciding anything
they're still setup like they were when they were smaller
apparently as of 2015, Google's codebase was 2 billion lines of code that stretch across 1 billion files and require 86 terabytes of storage
individual teams doing lots of new projects with little communication
@cosmic raft 
features overlap and no one cares
google - the king of inconsistency
eventually some team wants to keep moving on and google brass has to decide if they wanna move someone else to maintain it
and zero communication
and usually thats a no lol
oh google+ only just now got the axe? I thought they killed that years ago
its been dead for a while basically usage wise
Probably takes a while to phase out something as entrenched as Google+
they finally killed it after they lost a bunch of data
They really promoted that hard
I don't think it was ever alive usage wise
"oh shit we lost people's info, uh uh uh alright just kill it"
it was just forced down people's throats
Despite their intensive marketing, I doubt it as well.
the archival sites are going at it now before its finally taken offline
tbh Im surprised inbox lasted as long as it did
yeah, if they would've made it optional then people would've accepted it more
it was billed as a shot term experimental thing from the get go
lots of ingress communities were on g+ for example xD
quick, someone copy inbox and make it its own web app
lol
then just log in with google
inb4 google just blacklists you
I wonder if any of the google reader clones are any good
that has to already have happened
.g google widewine hackernews
(DiscordBot) https://news.ycombinator.com/item?id=18813851 -- Google's Widevine L3 DRM has been broken | Hacker News: "Jan 3, 2019 ... Do many sites use L3 widevine anymore? I've been running Android with an unlocked bootloader and no verified boot for a while, and..."
err ok
thats not news
reminded me this
its more like the media providers blocked him
but google has the keys I guess
the comments on HN are the only sane part of that story
inbox has some nice integrations too
tl;dr if the media companies that wanted this garbage DRM allowed google to just hand out the code for their DRM all the time, it would be much less effective so as it turns out if youre just fucking around with electron and no one's ever heard of you, you don't get access
I'm not seeing it in gmail
how does video drm work anyway. never bothered into looking into it
what prevents someone from just capturing out video output
nothing
Nothing.
huh
shows up when you hover
Some operating systems allow you to implement secure views and enforce them, android and iOS as examples
Capturing output is what webrips are
to convert encoded video into human viewable format, wiz
but ripping it from your screen is still going to be worse than the source files they distribute
just usually not enough anyone cares
that's the job of the decoder mikro, not the drm
it doesn't @cosmic raft
there's also all the broken HDCP devices
Webrips still tend to be pretty good enough that yeah, nobody really cares if they really would go that far
oh now it does
Certainly leagues better than cam lol
alright, i didn't go into details
nice
so you could just hdmi out to one of those and record that
not if it's encrypted hdmi
s /encoded/encrypted/ on my msg
and yea, android/ios enforcement only works because the hardware itself is pretty closed. i'm sure roots can get around that
base64-encrypted hdmi!
:D
ffs
encrypted hdmi relies on both ends
oh HDCP was broken a long time ago
i saw one site here what used base64 and rot13
to "encrypt" web requests they do client side
there are plenty of devices that say they support it and lie
it's like 64 bit encryption anyways
at some point you have to go from an encrypted data stream to pixels on the screen
I think there's a newer version of hdcp that isnt broken
but there are definitely still hardware devices that lie about it
I kinda have a deja vu to the time where pay tv tried to encrypt their stuff and failed...
*when
When DRM fails, we all win 😃
20 years later the media companies have learned nothing
drm is basically a cat-mouse game
I mean, the RIAA and media companies have basically been their own worst enemy
see games for example
from DRM to suing people randomly
denuvo lul
theyve done more damage to themselves than piracy ever did imo
I just don't buy any ubisoft games anymore because of their DRM issues ¯_(ツ)_/¯
I used to pirate because it was the easier way to obtain digitized media.
i still pirate - to try out games before actually buying them
Looks like these days it's getting even easier to streamline the whole process of torrenting and cataloging directly into your Plex library
only really playing multiplayer games makes pirating difficult :S
or movies sometimes, when i can't go to cinema at right time
just about the only place where I can see DRM benefiting the companies more than harming them is movies
but the problem is to implement it for that they have to do it the whole way
which then fucks with everything else
if they make it stupid easy to get their movies and don't need a subscription or special app to watch it then I will willingly pay for the stuff I watch...
they just gotta cut their losses for the greater good
put as long as it doesn't work in my kodi on a pi then please fix it xD
you will need 15 subscriptions and 15 apps to buy from the 15 different streaming services
because no one wants to give up any slice of hte pie to netflix or hulu
That's always been the worst enemy of media. Difficulty accessing the media on your preferred devices without paying obscene amounts.
Still making the same mistakes they did in the 90s.
I mean I would even agree to not use my preferred device if they just gifted me one where things simply worked ¯_(ツ)_/¯
This is starting to happen with games too
but buying something just to have it not work properly? not going to happen
I mean at least music has moved away from DRM a bit
idk if we'll ever see movies do it
won't be an issue when movies are free with paid DLC
just got a "Welcome to Inbox by Gmail" mail after visiting the inbox url 🤔
"get the good ending for only 4.99"
@merry talon So-called triple-A games not worth more than $20 trying to sell themselves off as $60, with extra DLCs on top of that, also spending a lot of money trying to DRM their shit, and then wonder why people pirate their shit.
yeah that's rough for old links
ripperino
are they actually deleting old links? or do they just not accept new ones?
goo.gl is going away as well? lol
already has
nothign lasts forever :P
it was one of the first
Forever lasts forever 😃
fuck google, seriously
and yeah I haven't bought a full priced game in more years than I can remember
can't justify that at all without knowing if I'll enjoy it
I haven't dropped $60 on a game in a long time, either
Plenty of good games that cost less than $20 but have weeks of content or replayability
it's actually closer to $80 in canada too
youtube, search, and gsuite are probably the only truly safe things
and youtube is still a net loss for them
Google Cloud is probably in the truly safe category, too.
yeah cloud, admob (are they still calling it this?)
if yt competed with patreon with a built-in version they could rake in tons of money
they're making some good progress in competing with AWS
they are trying to do that in a youtube-y way
you can "join" channels now for a monthly fee
that's twitch they're copying
they're working it more like a subscription for normal media than patreon
well, twitch and cable tv
i dont see them ever going past that for true patreon
their loss
they don't need to switch
the people on patreon have patreon
it would be enough to just get people to stop going there from that point on
those are the people theyre going after with subscriptions
yt is a massive platform, they would instantly have free advertising of their built in service to billions of people
how much of a cut do they take from that?
and tbh I bet that's more than enough for those people
most people on yt don't even know patreon exists, statistically speaking
most people on yt will never subscribe or pay in any way shape or form
they don't need to
so that statistic doesnt mean much
you'd have to compare a few different numbers for that to be relevant
wasn't it less thank 0.01% that made 99% of the revenue for mobile apps
no idea
the answer is yes
lol Im not going to blindly trust that figure
youre not a reliable source for stats my dude
for mobile games
certainly could be, certainly could not be
and it's gotta be closer to 1%
Im sure its something egregious
it could work if you actually get cool rewards from it, I mean I dropped around 100 bucks to a youtuber/streamer for their show already just for cool emotes, profile icons and behind-the-scenes stuff ¯_(ツ)_/¯
and I don't even have lots of money xD
Looks like Valve is making their own "second gen" VR headset. It's called the Valve Index.
google is large enough they could undercut patreon on %
that might get some creators to leave
there are people who donate hundreds of dollars to streamers every single day... whales exists there too
Thought it might be an April Fools joke from yesterday, but it was announced days before.
iirc it wasn't announced, more like accidentilly posted xD
announcement is May 11 iirc
so yeah 0.15% of people for 50% of revenue
Well, yeah, "revealed"
But no details other than coming in May
I wonder what they'll price it at.
are ads included in that figure?
probably in the area of the Vive release price
If it's like a Vive and it only targets enthusiasts, then it's probably not all that interesting
Those lenovo VR headsets are looking promising
someones going to have to make that leap towards consumer VR
for the consumer level
I wonder if Index will target lower specs with cheaper hardware or even bite the bullet on cost to penetrate the VR market.
but no I dont think VR as a platform is there yet either
any headset that requires base station isn't conumser friendly imo
it will always seem too early until someone just does it
Valve does seem to sometimes show interest in eating the cost of hardware
^ the new ones are just one unit
LIke their 90% sales they sometimes do on their controller
the issue is VR as we know it now is still going to require quite the performance tax
I think they still have controllers but they track themselves
And Steam Link
and most people dont have it
good luck tracking individual fingers without putting sensors on them
so their limited to enthusiasts and prosumers
@acoustic pilot Steam Link is dead, that's why they have heavy sales for the last batches
a VR glove could be cool
atm VR requires too much investment so yeah it's just for enthusiasts, but I'm wondering is if Valve will change that
Or if Index is just another enthusiast VR headset
steam link is very dead and it makes me sad I didnt buy one
they started to push their android streaming app
I think they fucked up with roomscale tbh
it simply requires too much space
which works quite well, even on a phone so ¯_(ツ)_/¯
the few people left selling are cashing in on resale
http://www.audible.com/Smarter or text "Smarter" to 500-500 Click here to subscribe for next video: http://bit.ly/Subscribe2SED A huge thank you to HaptX Inc...
(DiscordBot) A Real Life Haptic Glove (Ready Player One Technology Today) - Smarter Every Day 190 - length 11m 5s - 75,691 likes, 1,223 dislikes (98.4%) - 2,209,715 views - SmarterEveryDay on 2018.03.01
I should sell my link, haven't used it in a year 🤔
is steam controller selling well?
jesus christ that glove would make thanos blush
the last really big sale that I saw for the controller was with the link together
every review I saw of it said it was pretty niche
otherwise it's 50% off at a max iirc
cool but niche
Steam Controller is always sold out during their sales lol
but I will probably get another one just so I can tinker with the hardware a bit xD
Gotta get it within the first day
I would love to have a real d-pad
steam link did too and even then its market penetration is tiny
even among gamery pc prosumer bros
Doesn't Valve keeps stats on this, I thought they did
well
definitely
but thats not what you meant lol
idk if theyre published, that'd be cool
I just have a dualshock 4 for the few times I want a controller on PC
and it works really really well
I thought about getting a steam controller but it wouldnt really work for most of the games I use a controller for
Steam Controller numbers pretty good if it's a third as much as PS4 controllers.
you need a sony dongle to use bluetooth on those right?
Oh, that's PS3
I really hope next-gen consoles will have the back-pedals too... honestly the coolest feature of teh steam controller
Not as good
no
but seriously I don't know that roomscale can ever be consumer grade
you can pair it to any* bluetooth dongle
dualshock 4 is ps4
Naturally XB 360 dominates the controller market share
though I know the drivers are picky about internal ones
if you guys live in homes where you can dedicate 4 meters by 4 meters to vr then you have a home much larger than mine
the bluetooth dongle is what sony supports
and mine isn't exactly a tiny apt
their* bluetooth dongle
ah
I thought I read that they use a special version of bluetooth
My apt is 700 sqft 😃
I dont think so
13ft
I think the dualshock 3 did
yeah looks like it
65 m2, apparently
basically 13ft by 13ft of space with no obstacles whatsoever
do mobos nowadays come with bluetooth?
some do Sweepyoface , mine does
some do yeah
my previous mobo didn't even have wifi
otherwise there are pcie cards that bundle it with wifi
and then the usb donglerinos
none of mine have had wifi
because not everyone uses a desktop with a hard wire
I get it in one direction, not both.
most homes in the US arent wired for ethernet
Roomscale VR is not 4 meters x 4 meters
Your Vive base station won't work that far.
just lay your own cables ¯_(ツ)_/¯
lol, I have coax running across my room so I can do that
but most people dont buy desktops anymore either
I ended up laying my own cables but a lot of people wouldn't bother
it's not too hard, 100m cables only costs like 20 bucks or something
you lost most people at buying cable, laying it down, running it along the wall, etc
might even be cheaper, dunno how much I paid a couple years ago
Roomscale cuts off at just about 12' x 12' for Vive (16' diagonal)
the internet speed on my phone is 340 mbps in my office so using wifi wouldn't be that bad in the first place
The main thing is latency
8ms ping
recently upgraded it
@upper flicker wym? you don't bring your desktop to work every day?
I'm a believer in thin & light laptops docked to an external GPU and peripherals being the way of the future
but we just keep making desktop sized laptops
Wow, you're filthy.
i am very filthy, and i love it
I love myself my Surface Book
mac, without the overpriced screen
You probably carry it around in your filthy backpack, too!
who would do that
Some filthy people I know who work at Apple 😛
isn't the whole point of a mac mini to be a dekstop with no screen - i.e. you don't move it
I worked for Apple doing web development for a few years and we'd fly out to Cupertino a few times a year for a week to do a hackathon. Some people did.
god they're awful humans. pls tlel me you turned up with a windows laptop
Right, peripherals were at the office. All they had to do was carry the mini back and forth to where peripherals are.
my god
Do they only use Macs at Apple
Nah I used a MacBook Pro back then, my roommate, also working the same job as me, had a Thinkpad with Linux though
Got some looks at Apple offices
POG
@gusty idol there was that embarrassing moment at an apple launch event when a windows laptop was broadcast everywhere by accident
can't use your mac mini anywhere you want then
would rather have a macbook and just dock that
when i got my mac mini - either 2012 or 2013 - it wasn't that overprices. the idea was a mac without the screen and for once a fair price. i had enough to give it 16gb of ram too.
now, there's no way ican affoard a mac.
what am i meant to do? buy a fucking windows laptop for development? piss off
or linux
Could by any cheap laptop and throw Linux on it 😃
lmao I just came here to say that, dw I'm not saying your choice is bad
in fact I didn't read half of the chat
30% of the cost you put into an Apple product is product design 😛
dw dw, not talking to you logic just generally ranting haha
I just saw y'all were talking about apple
and the inner iphone hater me spoke louder
@acoustic pilot i would, if i knew how to use linux at all, i'm an idiot
altho ik it's about macs but still
yea i don't use an iphone anymore
modern distros are really not that hard
you get a desktop environment like you would on windows or mac
there's the problem, all the rants about which distro is best. i'm lost already
Also, I develop on Windows, it ain't so bad 😛
Repeat until system stops breaking
As long as it's Windows Pro
Since having to use linux on this old PC I wish I could combine aspects of both
@acoustic pilot same rn lmfao, i can't be botherd to keep switching to mac and windows for gaming, so gradually i just use windows ;-; but i do hate it
but, the only saving grace is i'm on windows 7
depending on who you ask, that's a great or awful thing
I haven't yet found a DE anywhere near as polished as windows 10
but you're still filthy
z750 yes you do, join me.
if the price was a bit lower and it came with a gpu I'd get one
dw he has a mac mini, just too afraid to admit it
Basically the sentiment towards any Apple product
"if the price was a bit lower"
😃
@merry talon I think Linux DEs aren't well polished too
**That's why I use a tiling WM 😎 **
I did the "oh just buy a windows laptop that costs as much as mac and then judge" thing
and that one died
so Im like fuck it
i looked at student prices for apple laptops, they looked really high, thought it didn't work. i removed the discount and it jumped up i was like "wtf"
KDE has just been a buggy mess for me
i3-gaps gang
that may be because it's a weird unofficial install on mint
I've had 2 MacBooks (one was a regular MacBook, the other a MBP) that developed inflated batteries lol
with a student discount, in the uk it still cost > £1000 for some shitty i5 and 128gb of ssd
Never bought another MB again
the ram upgrades are still ridiculous on the newer stuff
might just go to dubai to buy a macbook tbh.
the plane ticket + macbook would probably still be cheaper lmao
http://prntscr.com/n6lzzg yea ok no thanks
and then your OS will be permanently in arabic
all they do for student pricing is drop mbp's price to macbook's price, which is still shitty lol
what's the difference between the macbook and macbook air? I thought they just had the air and the pro
When is casual "build your own laptop" going to be a thing? 😛
Is it already a thing?
one's hot air and the other one is enterprise-grade hot air
it's not, the laptop parts are too fiddly, as to fit it all in that small space, regular people can't do it
yeah it's a thing apple does it
Nah not where the vendor custom builds it for you
i built my regular pc, which i'm glada bout. i was only 11/12 years old but it's still going
They’ve flipped places since they introduced them
lol
windows 7 gang anybody here?
Windows 10 Pro masterrace.
I know
It used to be the air performed worse but was thinner
Now the air performs better but is thicker
The Air was so nice when it first came out
Great development box for people on the move
Shit felt like a feather
When they got rid of the stupid flippy door
also no macbooks have ports anymore lol. they won't have usb ports soon, if they do now
they have usb C only
^ yea
Yup
like excuse me? thanks.... £1000 to not be able to use my shit
You don't have to buy a first party adapter though
they say that i can trade in my mac online 😮 but i cba to find my serial number, and i doublt they'll take it since i did my own ram modifications
I don’t mind it on the laptops
USB C is the way of the future, they just made people mad by doing it too early and not including a dongle
I basically never use it on my system
mostly the latter
If they tried that on the desktops they’d run into trouble
they make ppl mad, because they decided it was the future, for everything... no devices really have usb-c atm, except for phone chargers.
I think the iMac they refreshed still has usb a
You use the trackpad?
The trackpad is the nicest part of the laptop lol
also samsung fucked me off... i can't steal my friend's charge from their phone. but they can steal mine. even my friend's iphone 6 can steal my charge if it's plugged into my phone
yeah but I feel like it's still frustrating no matter how good it is lol
Are the Mac Pro's any good? That shit is expensive >_>
bring back the nipple mouse
@acoustic pilot i feel like if you're going to buy a mac pro, you either want to host your own vps or you need a dekstop pc.
I suppose if you're used to keyboard shortcuts for development
Their new one is a bit of a hype spectacle atm
I find myself using the mouse in editors more than I should
the only thing that annoys me from switching between mac and windows, is the keyboard shortcuts
no matter how often i used to do it, i'll never get used to command, then when i do i forget about ctrl. it's so annoying
can you remap it to that fn key? :P
I thought they always used AMD?
I remember when they used NVIDIA Quadro
looking at macbook pro, "up to 2.7GHz" yea um somebody should tell them that sounds extremely bad for £1500
I remember them having firepros
they havent used nvidia since nvidia fucked up their laptops
Which was AMDs workstation offering
and now theyre having a spat about drivers in the latest macOS
ok going to go and work now. stop fantacising about a computer i don't even want, and realise that i also don't want any otehr type of computer. cya dirties.
Whoo, been one month since I took a break from weed. Probably my longest stretch in 10 years lol
It's been easier on my wallet without the munchies 😛
Gotta say the first best part of it all is I'm having vivid dreams again. Haven't been able to remember dreams for the past decade, but they're coming back to me now. Second is I'm saving a lot of money 😄
I was really into weed in my late teens but not so much now, weeds just the productivity killer and I like being productive
just turned 30 for reference 
Nice! Yeah for me it wasn't so much of a hit to my productivity (can say that now that I've been off it for a month and can draw a comparison), but more of a feeling like I was too dependent on it, so I challenged myself to see if I really was.
I don't feel a strong need anymore, but I do feel a trigger when I smell it.
And it's California so the smell is everywhere lol
I'd like be able to be a casual user, but my personality is addictive, not just with weed, but with things in general. So I think for my own good, might be better to just stay off of it for a long while.
yeah that's a really positive look on the situation
some people get hooked on weed, I know a few
Yeah, for sure. People can develop an addiction or dependence on it, and anyone who argues otherwise is a fool.
Key is moderation, but some people are incapable of moderation.
Like me 😃
says the moderator
demotes

Damn, rip me 😭
it's ok aikar is addicted to 5 hr energy
but as long as he administers he's fine
no need to moderate
wait fuck it's not an admin role, joke doesn't work
Haha
just realized it's actually "project developer"
I used to buy a lot of 5 hour energy but then I kind of cut caffeine out of my life, now I have the occasional coffee
i drink milk and water exclusively
i do feel great off of it...
I like caffeine, hate pissing all day though, so yeah I cut back too
i just dont get enough work done
going to bed at 11pm cuts out 3 hours of working time
To be fair, how many hours a day are people TRULY productive?
It's probably not more than 3-4
You're probably the exception 😛
I believe the 8 hour work day should be shortened to 5 or 6
many of my peers rather move to 4 day work weeks
Studies show that people on average aren't actually productive for more than 3 hours out of the 8 hour work day
lool
@slim nymph you might tempt me into buying it since I'm a workaholic 
caffeine is a mental stimulant. increases focus
discord is my anti 5 hour though
yall keep me from working
Shut up and write us some patches!
im still at dayjob
Can't even multitask
@acoustic pilot often I work about 12+ hours a day on my plugin, although lately I've been hating the current thing I'm working on so I've struggled to do 8
Yeah it's easy to get excited/passionate about something that's yours
i just wanna get past 1.13/1.14 so ican get back to mc feature work
my Survival Update v2 was so much fun
1.13 is demotivating me 😦
its like every step forward, I get beat in the head with something else wrong
md5 released such broken garbage
and im not ok with data loss like all these other servers on 1.13 😛
I demand perfection
Well you run one of the few servers that never resets, I think
I doubt its 'few' lol
but external inventory was main thing missing
and virtual storage concepts is a popular plugin idea
all of those servers who used virtual storage solutions lost data on conversion
well outside of 'simple' items
but item meta, nbt data, spigot didnt convert anything
No guarantee md5 won't royally fuck up 1.14 either 😃
also prob lost any item that was saved in super old mc versions that changed numerical ID's even
as his conversion for that only used 'latest' versions
the whole item meta system is screwed. it needs to go to only storing nbt data, and convert the stack before parsing out item meta properties
I really look forward to when Paper hits 60% adoption
50, even, but 60 is nice too
Just gives us more leverage
im still pondering over that to see if i can fix it for paper, though if do that, that data then cant go back to spigot as safely 😛
Is it mostly just not being added because Spigot might add it?
no, its not being added because im too busy 😛
gotta get my own server updated
but if spigot can get it in, i can store our data in same location, and just expose my better API
so both api's work for same data
a new guy PR'd the item meta system
and now hes working on entities
its not md5
That's one of those APIs that could significantly drive adoption, IMO
Not really a paper question. But does anyone know how to set a login world with Multiverse?
agreed, but im just so filled with work 😛
im loking to update my local version of it to use newer paper storage format, so i can simplify migration from my fork to paper
Yours actually does more than mine did in my old private fork, too
I think yours does blocks and locations
Which is really neat
the way I stored in nbt in my own fork was meh
so i wanna clean that up
_BlockMeta 😛
where ChunkMeta is stored at 0,-1,0 lol
Oh right, and chunks
i gotta write data fixers for my itemstacks too
thats the big thing for me to fix
im still working on such critical pieces of the update for me
You thinking we can maybe see it in 1.14, whether Spigot adds it or not?
hopefully
i mnot 'waiting' for spigot
just would be more convenient
as i was considering should we use external storage
but its super hard to handle that for entities
if they load a chunk in spigot, entity moves, now we dont know where the entity is
or if entity died
Yeah, storing it directly with the entity NBT is easiest
