#general
3141 messages · Page 958 of 4
i think spanish is a great language for music
Well.... there is 1812 Overture, although it has no russian lyrics in it
This one is hitting charts atm https://www.youtube.com/watch?v=J4wf56HbpkY
Слушать сингл «Lollipop»
https://nda.promo/FFD6AB
ELDZHEY SHOW
17 апреля 2021 - Москва @ Adrenaline Stadium
24 апреля 2021 - Санкт-Петербург @ A2 Green Concert
Buy Tickets: http://sayonaratour.ru
ELDZHEY FOLLOW:
Магазин: https://sayonarashop.ru
Website: http://sayonara...
(DiscordBot) Spotify Track: Судно (Борис Рижий) by Molchat Doma from the album Этажи https://open.spotify.com/track/6DONTnamNDOJdO6DzCu71p
its from tiktok though
a song isn't "from" TikTok.. it's just popular on TikTok 🤔
he threatened to do so but, not everyone is american
^^
i mean fortnite's still around and apple and google yeeted it
Even if, there should be still a lot of people on it
From their appstore, not from the existence
They still would be providing download for Fortnite through their website probably, no?
Mobile was like 1/3 of their playerbase
Yeah, it may be
yes they did
It's not like they can't ever get it on phones though
it's not on google play
You can still install it though, so
Yeah
That's what I'm talking about
If people want to play it, they will just download it from other sources
yeah not saying it's impossible
It depends, it may just show in their app "click this link and then this" so
It's just inconvenient
Yeah
started setting up a repo for hosting patches, need to set up some tooling stuff etc etc, but I realized this is my last few hours of my 4 day weekend so I've decided to play doom instead
HI PROXI
that's a cute kitty
is that urs prowoxi?
owo!
i expect many pictures in #adorable-pets
cats are great 🥺
are there any good cat apis
i wanna make my on in place of random.cat
oh nvm it's back
you can pretty much add me on any cat picture submissions
I'm guessing by Cat API, you are not asking for something like this: https://http.cat/
now this is the kind of install speeds I expect from a AAA game (glares at flight simulator)
hehe today is my first day of the rest of the year and probably a good bit of 2021 off
Bah
Why is C++ so annoying
trying to compile something
and obscure thing
/usr/include/c++/10.2.0/bits/unique_ptr.h:270:9: error: no matching function for call to ‘std::__uniq_ptr_data<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter, true, true>::__uniq_ptr_data()’
the more __ in your errors the better, right?
like wtf does that even mean
welcome to the compiler
rusts compiler would even tell you what to do to fix it .. . . . . . . .
like does anyone have any clue
/usr/include/c++/10.2.0/bits/unique_ptr.h:270:9: error: no matching function for call to ‘std::__uniq_ptr_data<std::mutex, std::default_delete<std::mutex>, true, true>::__uniq_ptr_data()’
something is totally screwy
its a template at least 
14 more until hard fork
awe wipes a tear
Why is C++ so annoying
@cosmic raft part of its charm
no one has any idea? <.<
Maybe something is missing? Like some prerequisite it needs
but its in the c++ dir it is erroring!
also part of the charm
Good morning:3
kash is enjoying c++, aurora!
Yay
@cosmic raft I believe its just the lower part of the error - tried to find function with this signature in that file, but t doesn't exist. There should be more info above iirc.
I mean, the real horror is that it's inside of the systems include dir
It just tells you in which file he function should be, if it existed.
/usr/include/c++/10.2.0/bits/unique_ptr.h:270:9: error: no matching function for call to ‘std::__uniq_ptr_data<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter, true, true>::__uniq_ptr_data()’
is the first thing
/usr/include/c++/10.2.0/bits/unique_ptr.h: In instantiation of ‘constexpr std::unique_ptr<_Tp, _Dp>::unique_ptr() [with _Del = std::__future_base::_Result_base::_Deleter; <template-parameter-2-2> = void; _Tp = std::__future_base::_Result_base; _Dp = std::__future_base::_Result_base::_Deleter]’:
/usr/include/c++/10.2.0/future:324:77: required from here
/usr/include/c++/10.2.0/bits/unique_ptr.h:270:9: error: no matching function for call to ‘std::__uniq_ptr_data<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter, true, true>::__uniq_ptr_data()’
270 | : _M_t()
| ^
I'd probably opn that header file at lone 270 and see what's declared there.
I feel like there must be more. I know C++ compiler errors are trash, but it should have more to it.
sent a PM
hi kashikke
no one has any idea? <.<
@cosmic raft what's the cpp file generating it
is there more?
Geeez why is the font massive on mobile
@mighty storm geez why are you still awake
https://paste.gg/p/kashike/472328bb0a534318845bec9a3bdfbb91
@cosmic raft
from /home/kashike/workspace/firestormviewer/phoenix-firestorm/indra/llimagej2coj/llimagej2coj.cpp:27:
show line 27
#include "linden_common.h"
@mighty storm wake up
I'll wake up when I get a review on my essx PR smh
wake me up
outside
save meee
Howbou dah
@cosmic raft are you trying to push unique ptrs to a vector or something by chance
mm
what's your gcc version
and what OS do you run?
iirc on macos by default gcc is a stub for clang, so that error could be by result of an old compiler
doing a double take at that paste, it says 10.2.0
try using gcc 8 or clang++-7 @cosmic raft
🏓
I ping people that I'm talking to every message if they're on DND
that way if they switch guilds they know I replied
How do I make it use one of those instead? I have them installed already
you're using cmake right?
pass these as arguments:
-DCMAKE_C_COMPILER=gcc-8 -DCMAKE_CXX_COMPILER=g++-8
or clang-7 and clang++-7 respectively, if wanted
lol
CMake Error at /usr/share/cmake-3.18/Modules/FindPackageHandleStandardArgs.cmake:165 (message):
Could NOT find Threads (missing: Threads_FOUND)
Call Stack (most recent call first):
/usr/share/cmake-3.18/Modules/FindPackageHandleStandardArgs.cmake:458 (_FPHSA_FAILURE_MESSAGE)
/usr/share/cmake-3.18/Modules/FindThreads.cmake:234 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
cmake/LLPlugin.cmake:13 (find_package)
llplugin/slplugin/CMakeLists.txt:5 (include)
oh yeah
that's common
one sec
try to add
-DCMAKE_CXX_FLAGS="-pthread"
to the command line
No change
clang-7 got further
-- Found Threads: TRUE
-- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE)
-- Configuring incomplete, errors occurred!
See also "/home/kashike/workspace/firestormviewer/phoenix-firestorm/build-linux-x86_64/CMakeFiles/CMakeOutput.log".
See also "/home/kashike/workspace/firestormviewer/phoenix-firestorm/build-linux-x86_64/CMakeFiles/CMakeError.log".
might be missing some dev libraries for the project you're compiling?
blah, c++ is garbage
^
CMake Error at CMakeLists.txt:11 (project):
The CMAKE_C_COMPILER:
clang-7
is not a full path and was not found in the PATH.
same with clang++-7 part
I don't use macOS
aren't you on arch now?
It wouldn't be the default anyway and if you're not on the latest or previous version there is no support anyway
If you're on Linux you must be on CentOS, Debian, or an old Ubuntu LTS
seems it is just clang
Either way, get a newer toolchain or an older version of the software you're trying to build
wrong, amaranth
why would you want an older version
Arch
clang-10: error: unknown argument: '-fabi-version=9'
clang-10: error: unknown argument: '-fabi-version=9'
found this now :D
Arch has shit clang versions?
'-'
Or does this thing only build with old versions?
clang-10
arch has clang-10
clang is supposed to be gcc compatible 😛
youd need to fix the threading thing, I had the same issue yesterday and edited the cmakelists if youre comfortable with that
There are a few things they don't support because they're just wrong or really complex and niche but the goal is that if gcc can compile it so can clang
clang is supposed to be gcc compatible 😛
@magic river for the most part yeah
Just like on Windows it pretends to be MSVC
yea and with gcc:
/usr/include/c++/10.2.0/bits/unique_ptr.h:270:9: error: no matching function for call to ‘std::__uniq_ptr_data<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter, true, true>::__uniq_ptr_data()’
270 | : _M_t()
| ^
yeah gcc8 though
Are you trying to use libc++ with gcc? I thought it only supported libstdc++
I have no clue
TIL gcc seems to support both
Although not easily, you have to build with -nodefaultlibs and then manually link in libc++ as well as all the glibc stuff
Why is c++ such fucking trash?
What other language has multiple state of the art compilers and standard libraries and even has a chance to mix and match them?
Other than the stuff LLVM and GCC support I think the answer is Python
like this makes no sense
does anyone know of any nice timeline tools? https://time.graphics/ looks good but $100/yr kek no
why is an internal c++ file saying that error
no cmake?
nvm
need to specify some env variables/etc to build with it too
kashike can you show me your rice??
that is extremely cursed
@spiral sparrow what?
i have been learning more about linux 😄
i run it now
on gnome
idk what it means but its like a ss of ur desktop
kashike i love u pls show me beans
mmm rice
I think I'd just download the binary at this point 😛
goes good with beans
can isee it kashike
wait fuck
I was meant to say "goes good with curry" but then my brain saw beans and said beans
I blame proxi
Arch is kind of like if you took homebrew and thought you should make a whole Linux distro out of it 😛
ily2 md
Neat, Ubuntu 20.04 has clang 6, 7, 8, 9, and 10
I guess because things use it as a library and API stability is not a thing
@cosmic raft Perhaps when you tried to build with gcc cmake was still configured for a clang install so that's why it tried to use libc++?
Like if you're just flipping environment variables to change compilers I could see that being a thing
Nevermind, I'm just an idiot, /usr/include/c++ appears to be what libstdc++ uses
➜ autobuild configure -A 64 -c ReleaseFS_open -- -DLL_TESTS:BOOL=FALSE --fmodstudio --no-opensim -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=gcc
is what I did
so I assume it finds it at that time
Although I only have libstdc++ 9 which is paired with g++ 9, not sure how you get 10 paired with 7
Huh?
I thought you said you had gcc 7?
~
➜ gcc --version
gcc (GCC) 10.2.0
Copyright (C) 2020 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
~
➜ cmake --version
cmake version 3.18.2
CMake suite maintained and supported by Kitware (kitware.com/cmake).
~
Oh, it was clang 7
yes
It's 3am, I'm going to blame that 😛
or, well
So g++ 10 can't compile something in libstdc++ 10
~
➜ clang --version
clang version 10.0.1
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/bin
~
clang-7 is what @spiral zinc said to use
but arch has clang-10
If I had to guess at a cause I'd say it's just bad error reporting and the actual problem is something with template usage in the project
bleh
You'd have to look further up the error stack and find what call the project is making that leads to that error
Then figure out what template invariant it violated but doesn't have concepts to warn you about beforehand
I'm way too out of practice to figure that out 😛
:D
The lines in the project it points to are probably just #includes
yup
Unless it's linden_common.h line 54
54 is an include
to <memory>
memory:83 includes unique_ptr: # include <bits/unique_ptr.h>
Something something default move constructor
default move constructor?
I think it's saying it's trying to call the internal method to move the pointer out of a std::unique_ptr but the thing in the unique_ptr is missing a move contructor?
I don't know, I haven't done C++ other than a patch here or there since 2011
kashike
Look for uses of unique_ptr in llimagej2coj.cpp maybe
/usr/include/c++/10.2.0/bits/unique_ptr.h:270:9: error: no matching function for call to ‘std::__uniq_ptr_data<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter, true, true>::__uniq_ptr_data()’
270 | : _M_t()
| ^
it makes no sense, it is c++ itself erroring?
I still think it's just bad error reporting and the actual problem is in your code
not my code :P
Well, in this project's code
if so
I am not hunting that down
phoenix-firestorm on master [!]
➜ cloc indra
10977 text files.
10676 unique files.
386 files ignored.
github.com/AlDanial/cloc v 1.86 T=6.01 s (1763.9 files/s, 340283.9 lines/s)
-----------------------------------------------------------------------------------
Language files blank comment code
-----------------------------------------------------------------------------------
XML 7194 16512 7173 732666
C++ 1424 130170 133326 709109
C/C++ Header 1429 39862 70671 133313
HTML 25 225 0 15317
do you use gnome kashike
no
which one
It has to be something in llimagej2coj.cpp or a file it includes
And it's probably some usage of std::unique_ptr
llimagej2coj includes linden_common.h which includes <memory> which includes <bits/unique_ptr.h>
congratulations huck, you answered yourself
Don't follow it that literally, I'm saying it probably is failing at telling you where the problem actually is because the problem is from template substitution and SFINAE is a thing so detecting that correctly is hard
at this point I'm tempted to just grab a DO vps and build it there to see if it works
here, a newer one even: https://i.imgur.com/BVePgMU.png
just don't use C++ 
yea honestly leaf
Rust Evangelism Strike Force
easier to write brainfuck
C is better 
C is never better for reasons that have anything to do with C
I wouldn't want to write more than 1000 lines of C for a project before I'd worry about messing up ownership rules and projects that small usually aren't performance sensitive or could be written in Rust just as easily if they are
C is the language to use if you need portability as a primary feature
ownership rules?
Who allocates, who frees, has something been free'd yet or not
easy, design a missile
kashike do you run high refresh rates or just 60
Missles never free, they just ensure they have enough memory to not run out before they land
I notice you have 2x 1920x1080 monitors
no idea
if you don’t know prob 60
no idea
wbu leaf
i don't really care
60
I've been thinking about getting some 4K monitors for my desktop but the only 24" ones are really expensive and generally bad for gaming
yes michael
gl getting 4k or 1440p high refreshrates on 24"
bought them in 2016
@cosmic raft you should get new ones sometime
4k was insane expensive then
Not sure if 27" would fit well on my desk
27" is where 1080p gets bad
4k ones are still expensive as fuck
And 4k 27" is still either really expensive or junk
ok, find me a good one to replace a 27" 1080p
gl getting 4k or 1440p high refreshrates on 24"
@twin lagoon what
you choose
There is a 28" one that seems to hit a sweet spot on price, quality, and features
you can get high refresh rates on 24”
1440p 120Hz on 24" didn't seem hard
your size doesn’t matter
no
it's not about that
it's about the availability
there is like no monitor available at 24" with either 1440p or 4k, with a high refreshrate
i think it’s just a matter of whether the reso looks good for it
ultrasharp pog
michael what the fuck do you think about nixos
yea those are way to expensive
$502 each
nixos is dope
i run it on a server
wha
but it lacks knobs and shit sometimes
I am generally going to avoid any non-USB-C monitors from here on though
nix is super unfriendly
so you must get your hands dirty more often than you can expect
if things work, good for you. if they don't, then you are very fucked
I want to run linux as my primary OS again but I’ve been having issues getting high refresh rates to work nicely on it
Like, brush up on your graph theory and print a copy of the man pages otherwise you won't even know what terms to search for to figure out how to do what you want
also HDR which is nice
apps run in like 60
linux won't have good high refresh rate support until 2025
gnome-shell/mutter currently only does 60 FPS iirc
There are some recent patches to support other things, even variable refresh rates, but they're either in the version coming out in a few weeks or pending for the version after that
gnome plays nicely with 144 kinda
i wish sway supported proprietary nvidia drivers
there’s some things that unfuck high refresh rates there buut
you know
nvidia hates fucking open source
Higher and variable refresh rates on Xorg are a bit of a shitshow iirc, wayland is your only hope at having something sane but then the compositor needs to support it and mutter doesn't
Although I might be thinking of mixed refresh rates being the thing missing and it does support higher ones currently
Assuming all your outputs have the same refresh rate
yeah wayland is the only hope for anything modern, but then nothing supports it and nvidia can't run wayland so yay year of the linux desktop here we goooo
lets all thank microsoft for bringing us the year of the linux desktop
ughhh
sounds like I'm gonna actually have to stick to Windows for a while
or amd gpu 🙂
maybe soon
as someone who uses linux as their main OS, I wouldn't recommend basically anyone to use linux as their main OS
Of course just because your monitor and gnome-shell support it doesn't mean your apps will, a lot of them have a 60 fps cap hardcoded because the alternative was locking to vsync and getting a frame or two of latency from poor coordination between app, X server, and compositor
Linux fucking sucks
Of course just because your monitor and gnome-shell support it doesn't mean your apps will, a lot of them have a 60 fps cap hardcoded because the alternative was locking to vsync and getting a frame or two of latency from poor coordination between app, X server, and compositor
@magic river Yeah, that's the issue
GNOME works fine on 144hz
the thing is
most apps run in 60hz
on xorg
iirc Windows Vista had the same issue
The underlying issue has always been Xorg
And not everything uses/used the new APIs in Win7+ to make it work right
Windows Vista was basically similar to the X11 model where you have your desktop shell, display server, and compositor as different things
In some future version they merged so now if you kill dwm.exe it'll log you out
desktop shell is still separate though I guess, good old explorer.exe
windows
mikro uses nixos / linux
and sadly osx
nixos is Linux for Computer Science PhDs 😛
linux is for skrubs
mikro uses nixos / linux
I thought he just said he only used it for servers
ur skrub
it's definitely something I want to check out soon
even if im not going to stick on it for long
don't you run on desktop too mikro
i used to run nixos on desktop
o
Seriously though, nixos is like git, an amazing idea with terrible tooling
but i lost the hardware which is able to run vanilla nixos
wat's nixos
now i have to go through 5 gates of hell to get it running on my mbp
no thanks
i run arch on my mbp
git has become slightly more user friendly over time and we've just adjusted enough to muddle our way through it because the improvement was worth it
I have a handy index I wrote somewhere that contains a bunch of useful tools for working with NixOS
i run arch on my mbp
@void void should just run macos tbh
iirc I spent like an hour trying to figure out how to install things with nix (not nixos) because it uses a weird name for the subcommand
Once I realized what I was looking for I just dropped it and went out to find a PPA for what I wanted to install
mm nevermind, discord does not parse markdown
it parses a subset but not hyperlinks, thank jesus
It does, just not that 😛
embeds do
this may be an 'easy' integral, but man. i struggled lol https://owo.whats-th.is/2Zcv7xD.png
btw that newegg link earlier is for a 24" 1440p 144Hz monitor
that was like attempt 6
Is that the math for how to install things with nix?
yes
@void void should just run macos tbh
@static pilot no macos is unusable
TN is what you want for gaming?
@static pilot no macos is unusable
@void void I'd use it if I could tbh
TN is what you want for gaming?
IPS
go install hackintosh or
IPS >
Especially if you're after high refresh rates
.g osx-kvm
(DiscordBot) https://github.com/kholia/OSX-KVM -- kholia/OSX-KVM: Run macOS on QEMU/KVM. Only ... - GitHub: "Run macOS on QEMU/KVM. Only commercial support is available. With OpenCore + Big Sur support now! - kholia/OSX-KVM."
IPS has terrible G2G times
it's fine on high-end monitors
why have an mbp if you just remove macos
they aren't even that powerful hardware
Not compared to TN monitors
either way https://github.com/kholia/OSX-KVM
yeah but TN looks like trash
^
why have an mbp if you just remove macos
also pointless to do that because for firmware updates you NEED macos
Modern TN has overcome most of the downsides with fancy filters and shit
Kind of like IPS has mostly overcome the slow redraws
i do?
so now you're saying it's pointless?
dual boot is a thing?
dear god
The differences between them still exist but aren't as extreme
OSX-KVM requires two video cards anyway
how does dual booting make me a masochist lmao
Unless you want your Linux environment to be something you only remote in to from the macOS environment
dual booting doesnt, dual booting on an mbp does 
how
Dual booting macOS and arch
just the matter of setting up another EFI partition
installing grub in portable mode
that's it
$2000 space heater
Which is a valid setup, you get Linux at native speed and macOS has emulated peripherals so works more sanely on a hackintosh setup
but why?
hey this piece of crap metal was a gift after all
Which is a valid setup, you get Linux at native speed and macOS has emulated peripherals so works more sanely on a hackintosh setup
you could do that, but if you're already running linux at that point just run linux
what's the benefits of running macOS with vfio
i need linux for virt-manager & faster emacs; both what you can not do with macos
I'd prefer to use macOS for my normal laptop things
3rd party virt-manager homebrew tap is severely out of date and buggy
completely unusable
emacs is 20x slower to boot and do anything
It's not terrible at development, it's great for normal user things, and the host Linux environment is available for my vagrant and docker needs
I'd prefer to use macOS for my normal laptop things
most laptops have the screen driven by the dGPU by wiring even when using only the iGPU
only thing that osx does better right now is lower power usage
overcomplicates VFIO
and it can actually use intel gpu
because how dumbly apple wired the gpus
amd gpu is wired to the displays, instead of intel gpu
and that's a setup what linux does not seem to support at all
@spiral zinc that's news to me, I was under the impression it's the opposite and they do a FB copy from dGPU to iGPU when the dGPU is active
im becoming delusional, i just tried to input a math equation into google translate
a lot of laptops have their wiring diagrams online for public view
That way the dGPU can be completely powered down most of the time but when you're using the 40W thing an extra 1-2W for the iGPU is no big deal
Having the monitor hooked up to the dGPU display engine means you rely on the dGPU having really good power management so it can power off the actual GPU parts without turning that part off
aka really low idle power
And by really good I mean it'd better idle at < 1W because according to powertop when reading a webpage in Firefox while having Discord, terminals, IDE, and mail client running too my laptop only uses like 2-3W
So having the dGPU "only" use a couple watts when idle is double my power usage
also to enable intel gpu on non-macos OS-es
you must use this funny thing:
sec
while it does the trick, exposes igpu to linux
you can't actually use it
and you'll lose backlight control
I discovered the best way to run Linux on a MBP is to run it full screen in VMWare 😛
When I got a 2011 MBP (first Sandy Bridge laptop available right when I was looking to buy one) I spent like 4 months trying to get Ubuntu to work well and it ended up more stable and with better battery life running macOS with an always open full screen VMWare instance
Over the next year I slowly transitioned to pure macOS usage though
That way the dGPU can be completely powered down most of the time but when you're using the 40W thing an extra 1-2W for the iGPU is no big deal
@magic river meh dunno
I'm no topic expert on laptops but reconsidering, unless you needed to output like 144Hz 1080p I think most screens would be driven by the iGPU in a laptop so that you can power down the dGPU otherwise it would just ruin the battery lol
my friend says VFIO is possible but most laptop mobos don't actually support it correctly though
maybe you're right, idk honestly lol
I discovered the best way to run Linux on a MBP is to run it full screen in VMWare 😛
unless you want newer opengl
then it's not an option sadly
muh meinkraft sheiders
aand wine! borderlands (only game i play these days) performs a lot shittier on windows than on linux smh
i did triple boot at some point
I saw you play Dead Cells yesterday, mikro!
ok besides minecraft trig
if i didn't play minecraft i wouldn't be even here anymore very likely
Wow mikro you liar
I don't think I have played minecraft ever since I got a minecraft job
oh, no, we had a game night in MC once with the company
my point is: you don't need to play MC to be here, you just need to have played MC
okay alright, lemme reword
if i lost interest of this game, i wouldn't be here anymore
shut up lambda aboozer
booze 😍
so am i
okay, not really, but still
Liar
you're distracting me from my very important class
how will I learn the printf method?!
Drinking is not a class
while I do have a retarded "classmate", I'm not yet at the point where I need to be drunk to be able to bear the classes
go drink with your gf
Do I get 3 more hours of sleep or do I get up
get up
and then use the extra time to work out or take a run, and then have a cold shower
oh well, I tried
oh, then go back to sleep
What lesson
To not go outside at 2 am
Why
Some cunt mugged and assaulted me.
Wtf
To this day I still want to beat the everliving shit out of whoever did it.
Say you're in a company and a higher up emails you, asking if you want to play rock, paper, scissors on who (you or them) should do a task (when task is yours to do), what is a witty reply? Obviously, the higher up doesn't actually expect you'd play it and is semi-playfully letting you know that you need to do it without directly asking
On unrelated note is there something like gsmarena but for laptops
Tell him you'll fax him your choice. And send him an empty document.
@potent fossil
Discord pls I want my emotes
lmao that's a genius answer vic
my original idea was to just email them your answer, so they can obviously reply with the counter to it
but that's a funnier way of doing that :D
See how long it takes for him to realise you chose paper.
Well, it's not for me. However, I just said to reply with: "That wouldn't be fair. I always win rock, paper, scissors. I'll handle it right away."
i rock this job so i'll do it, i don't play rock paper scissors with the one who has the pink slips
Just play rock paper scissors to see who gets written up
I really struggled to understand the joking nature of that, I swear. I got put on the spot and now my fiancee is mad at me for not being able to understand the joke.
What a night
The fax one?
No, the higher up emailing to ask if she wants to play rock paper scissors
Ah
She asked her own manager who informed her it's a joke and to find a witty reply, and then she called me to ask for a witty reply but I didn't understand the joke so couldn't think of one
And now she's mad at me because I couldn't think of one
But, claims she's not mad.
I have emotes again. Nice.
But I can read her tone of voice, she ain't fooling me.
so im just like zed moment
@viral hornet 🥺
@twin lagoon 🥺
michale you 🐌
hello kneny
lol now im getting short replies and " 🙂 "
I HAD TO PUSH RC1 TO THE DEVBRANCH AS A BACKPORT TO THE NON-BREAKING VV VERSION BECAUSE WE THOUGHT THERE WOULDNT BE A .3
get fucked
Mojang hates ViaVersion confirmed
it has some slick optimizations michael you know, but you won't get that because we'll only backport the .3 version support for the next release
🤪
so 🐌
zzzzz
nighty night
It must be way slower than the Series X or something
It looks like an oversized speaker
more like a radio standing on its side
Also no disc drive 😦
don't need a disc drive if you just stay on pc
and even if you buy a console game on a disc
hey kenny
chances are you're going to have to update it after installation
you know how german has some realllllly long words?
yes
I still want a physical disc, though.
canada does that, but with emails
ssc.neubdnengineering-dgrufrdingenierie.spc@canada.ca
Not that I'm gonna buy an Xbox Series, but still
the hell is that
dgrfurudeinienrklsdg
😂
an email
very sexy
ssc.securityoperations-operationsdelasecurite.spc@canada.ca
another
english-french@canada.ca basically
ok but
Donaudampfschifffahrtselektrizitätenhauptbetriebswerkbauunterbeamtengesellschaft might be longer
Series X. Series S. When will they pull a tesla and have a Series E?
I mean Canada is just full of weirdness with domains/emails
ssc.neubdnengineering-dgrufrdingenierie.spc@canada.ca
is....
Government of Canada Science Network
obvious, right?
obviously.
:D
in a couple o years I'll also have to go to canada to see snow lol
kash, I will promise to bring no spiders
YES
are you anaphylactic michael?


and you can go see ben too ig

@quasi valley kneny pls fix [ViaVersion] ERROR IN Protocol1_7_6_10TO1_8 IN REMAP OF 0x33->0x33
🐌

@twin lagoon just why? No one cares if 1.7.10 or 1.8.x isn't working.
But the pvpers!

I agree with Duck
@woven otter ur ugly
City im using cloud tonight And there's nothing you can do to stop me
Just rip of the Aether Logo. 😄
boo
tf camm
The font is early 2000's
why are you so mean
IM SORRY D:
I spent a good 5 minutes on that
I'm not trying to be mean
well u sure r
your is spelled your, but CLOYD would be weird
Cloud cloyd
@heady spear its really ugly please delete it. Also delete your repo too.
@quasi valley ur upsidedown 
@quasi valley
Fixed it for you City
Mixing opposing colours 😷
wtf why would I delete the repo
http://cloud.alexander-soderberg.com
there i made redirect for it
I should prolly work on the code instead
Ur a typo
stop being mean
Don't be sad city
I am tho
just cheer up smh my head
v sad
stop feeling sad everything will be ok
am gonna go n write dum parsers for dum cmd library
they r so boring
who uses any other primitives than integer
n y
double
no doubles are gross
@viral hornet alarm is set for 7 am PST. Kinda hungry first tho lul.
ur gross
wtf wtf wtf
City release cloud and you'll be less gross
just make your design simple city
am gonna go n write dum parsers for dum cmd library
@heady spear ur a parser
comic sans, white background
*clown
not comic sans 0/10
that is very ugly
Not upside down 10/0
ur command library should be called cum - command ultimate manager
dumb simple and odd name
It's ugly yes
sell api jars on spigot for 20€
no it's clearly cloyd so camm doesn't get confused
"man I love cum. I'd suggest cum to all my friends"
wtf
This discussion has a big cloud flair/flare. 😄
wait so
the nukkit 2.0 module will be cloud-cloudburst
that's ugly, ima force Zed to rename cloudburst
Mikro I got one even worse
Nuke it. The idea of supporting Nukkit.
Command Utility Module?
this is not a competition, aikar's command framework is amazing and I would never say otherwise
Hey it means Command Ultimate Manager
I am not making this as a replacement for ACF, it's just an alternative.
so players stop yelling at me zzzzzzzz
I'm eating pizza I haven't eaten in 15 hours v
REEEEE
you neither 
im busy
also, my avatar is it already 😎
Ok so I am gonna name my brig mapping thingy Ares, because that's the Greek god of war, and their gods lived on Mt. Olympus, which is above the clouds
o
😄
can't do gay stuff in case I wanna move to Russia, wouldn't look good
so am gonna marry a girl and make lots of children, she will be my beard
😿
nah
ur cute, nice n smart
very likeable
ofc u will find someone
multiple people, u will have an entire harem
lol
Clownlib
lmao @quasi valley
BIGG DADDY
It makes me really uncomfortable someone would name themselves that on Spigot
Also im using your plugin ty
Can I hop on your face for pets too?
You can sit on it
Why does that phrase make my phone suggest the winking and blushing emotes. Phone?
your phone knows what you're up to
:^)
He keeps booping me
Ok ow I just accidentally poured hot wax on my leg
I swear it was an accident
Oh so you are into BDSM

Does anyone know of a decent library for doing string based context resolving/parsing? I dun wanna havs to redo evryting
Yo kash you gotta just find yourself man!
@heady spear time to make me do more :')
@cosmic raft you're cute af 
Plz
anyone can recommend a good (lot of RAM for cheap $) minecraft host for paper in EU?
I love your definition of good
Have u heard about this host called bisecthosting
Kash u ignored me yesterday when I asked about #community-guilds 😦
@vestal jasper Heya :)
?warn @heady spear This is not a marketplace; you're free to recommend hosts, but personal gain takes it over the line to sales.
Warning logged for Citymonstret#8560. I couldn't DM them. || This is not a marketplace; you're free to recommend hosts, but personal gain takes it over the line to sales.
sry
Rekt
shut up, bullying is mean n illegal
It's not if we are bullying you
that is not true
aww kash :(
Are the people mean to you again?
Are people not mean to city all the time
nah it's mostly you
Uwu
What I wanna know is are you only a weeb here, or does weeb transcend your username
I think he’s only a weeb here
to fit in with the other scary people here, like duck
Ewww no
If Duck was upside down, would it be Upside Duck, or Duckside Down
Spigot has this nice API to check for updates, but is there also some way to download that update?
I'm talking about that: https://api.spigotmc.org/legacy/update.php?resource=25
would like to expand our update script to finally support spigot ressources
Hangar when
Ah, yes, Spigot
/legacy/
What else did you expect 😄
Ducks naturally flip upside down dont try to hide it from us duck
We have this nice site to check and automatically download updates, but since Spigot is behind cloudflare it's not working for spigot ressources
It's a lie
stop bashing my command framework n get a life dude
don't ruffle duck's feathers
Ändern
N it sucks and u suck too
ur just salty bcuz u life on the wrong side of the baltic sea
Löschen
Im only salty because i ate some salt
Spigot update kek
Roasted duck yum
Ur out of mana

nmf how come u haven't starred my repo
It's just that bad
Which one?
my command one >:(((
Dont star that one
I've abandoned what... two projects?
It's named cloud
the permission one and irongolem
Name alone tells that it's bad
Ignoring the stale branches
I've finished the libraries I've started soo
And the banner is atrocious
fuck off duck
Damn city be up in flames right now cuz be gettin roasted
It's the worst
why not name it cloyd city
:(((
Čłøüđ
Clown 🤡
http://cloud.alexander-soderberg.com/
The library was named cloud because using it makes you feel like you're floating around on a cloud in heaven. It's an experience of pure bliss and joy. This is unlike the experience of using any command framework that currently exists for the JVM, which can be compared to drowning in a pool of lava while watching your family get eaten by a pack of wolves.
the name has meaning
ffs
That looks pretty gae
bleh
It's ugly 🤢
it uses comic sans for effect
Weirdo
"Allow for commands to be defined using builder patterns" <3
g a e
kashhhhhhh what a mans gotta do to get in #community-guilds
City ur weird
kashhhhhhh what a mans gotta do to get in #community-guilds
Those who aren't annoying
runs
bro im trying to get is in there you moron
That doesn't look like Piston 🤔
/me is not having a good night
Chains? What?
bro im trying to get is in there you moron
Smh
Yes I have kash 😠
I don't think he likes IS, nmf
City is the worst
Chain me up into pieces this is my last report

but if MOSS can be in there then we deserve it too D: kash has a ❤️ role in there after all
docs wen city?!?
Probs needs a better bribe
City
Paper hasn't ever had a bear attack, and it doesn't have the IS discord linked... Could just be a coincidence, but is it worth the risk? 👀
I guess I have to write my own command framework then ¯_(ツ)_/¯
send me a DM asking about adding IS, will do it tomorrow if I can
city ^
include an invite link

kash if you just want city to slide in your dms there are easier ways
ok, dw no rush lol, take care of urself because we care about u
You guys try to hard to compete with acf 








