#general
3141 messages · Page 1468 of 4
i remember doing that when i first installed git bash i did that for some stupid reason
whats the grub my bub
spaghet
😩
im SORRY
uh oh
how the great blue has fallen
guess what brocc
wut
i dont speak rune
no thanks!
@potent fossil https://www.youtube.com/watch?v=0AsieTuCKJA
Provided to YouTube by Armada
Hypnotized (Extended Mix) · Cat Dealers · Amanda Collis
Hypnotized
℗ Armada Music B.V.
Released on: 2021-04-30
Producer: Cat Dealers
Music Publisher: Copyright Control
Music Publisher: CAT DEALERS PRODUÇÕES ARTÍSITICAS LTD
Music Publisher: Cloud 9 Holland Music Publishing
Music Publisher: Gold Cloud Music P...
@cosmic raft 
Put, I don’t wanna answer
If there is an option on anything like that, for I don’t wanna answer, I always put that
Lol, Canada doesn’t have people actually living in it.
Can’t have a census for a made up country. 
True
@warm anchor 
Hello and good night @minor badge 
good night!!!



is there a chance when you enter a end portal and it drops you into the void
I don't think americans give a shit about cultural origins lol
you're either murican or not
I don't think there's even a concept of unceded territory
I'm American and my cultural origins are Norway paternally and Ireland/UK maternally
makes sense
aren't u a drunk
nope


Oh, cool https://spidermonkey.dev
And apparently SpiderMonkey optimized the shit out of Object.assign(). Well, I use Firefox and a lot of React apps, so go zoom zoo@.
hi
I want to make a map like Call Of Duty, but I don't want the player to finish the map without killing any enemies, how can I adjust this?
???
I'm fairly sure you annoyed someone enough to spoon feed you a solution last time
refer to that perhaps
yes someone had explained the solution to me but I had to change account: c
@minor badge iwi
@twin lagoon iwi
Interesting. They actually fully deleted Oskars account, even the images. 
get fucked 

Well done
nmf 
morning 
@ashen cliff im pretty sure oskar is alive
#3299 was his old account.
what
no
he sent messages in my server
and there is no way he could have gotten the inv
yk what
never mind
¯_(ツ)_/¯
Rekt
so that guy is saying 100 million accounts COULD have POSSIBLY been exposed? 
ok gamers i am playing automaton modpack
I wanted to play valhelsia, but my friends nub pc cannot run it
Epic.
Ok
where is support?
In #paper-help
tHaTs WhAt ShE sAiD
Gotta love the dark design pattern here tho
Checking the lower checkbox checks all
I didn't even know there were tablets that large
I have one that's 10.1 inch, but it looks like that one is at least double that.
why not
I literally just entered best Android tablet 2021 and brought it
I have more disposable income than I can possible spend rn
see i would've just gotten an ipad since i still believe android tablets are ass
^
Cause you know, I can't spend it on alcohol
just spend some more money on keyboards
I mean, it's a device which should last a good while
Like, I come from a council estate family where "cheap'll do it"
Thing is that it leads to a massive money pit where everything ends up costing more in the long run, rather than saving up a month or two to buy something, it's bought asap, and falls apart within a few weeks
male birthgiver used to joke about my birthgiver in that as soon as they saw my family they'd be like "Shit, it's the Freeders, go grab out the cheap crap nobody wants"
i research the hell out of anything i want to buy
I did as a kid too
But am boomer
I just want stuff that works without me having to do anything
I mean, I'm the same
When I'm strapped for cash I'll research to all shit for something and then just not buy it
When I got the cash, I'll look around for like an hour tops and figure "fuck it" and either grab it or leave it
lol
I generally research quite a bit as well, but more because I just want to see the number on my bank account grow
because samsung
WHY DOES THE PHONE HAVE A DEDICATED BUTTON TO IT
sad part is is that samsung is one of the few companies which make solid phones
outside of their software and shit like Knox, they're one of the better mainstream OEMs
Ah yes it comes with one drive as a system app
Samsung phones are also one of the most expensive phones which is kinda a shame
I like Samsung, but their prices on phones are way too high for me
i just stick to xiaomi & google for phones
Quad speakers that sound kinda ok
My current phone is a motorola and given it was only 80 euro it's pretty good
Oh yeah that
Gestures with your pen will perform gestures on the screen or smth
Even while just in the air
good mornioiiing
Well it's not connecting
So that's great
Maybe my pen needs a firmware update or smth fucked up
Welcome to 2021 where pens need firmware upgrades
y'all I have important news, I reached a important goal in my life yesterday
I reached level 2k in Candy Crush
Oh, you're one of those people
ah yes, King games, or also called, "code that changes depending if you lose or win"
i hate myself for it, dont worry
I don't think I ever got past level 50 or smth, can only swipe candy for so long before it becomes boring
It's impressive how the same app with the same version with the same account has different features depending on your devices and time of the day
I've learned that King Games changes code depending if you win/lose making you go back to the game but also trick you into thinking the levels are hard by making them impossible
utter bullshit company, deleted all of their games
It's designed to make you pay money, pretty much like ever major mobile game
It's pretty gross, but it's kinda to be expected
yeah, that's why I play indies on my phone that don't have any P2W features or anything
Oh it has Dolby Atmos
And that was disabled by default
And now the speakers sound nice
Lmfao
Literally has a boomer mode
Perfect for you /s
no
same 
Dw it's synced with Facebook
facebook ew
Well, all hope is lost then
yes, because they won't have my data any other way, like with Whatsapp, or Instagram, or Facebook itself, or the hundred million websites that use their services
Watch out, Mark now knows you reached level 2000
I hope he congratulates me
I hope so too
The best thing is: For reaching level 2k you get one of every booster. Worth like 3€ or smth for 2k levels
So, a few builders of mine have built a spawn that blends with the surrounding landscape. I'm after a plugin that results in more emerald ore to be generated but without having to regenerate the world in case loads of blocks changes. We have a early version of the world and I'm mainly after something that could replace a certain amount of stone in every chunk to emerald ore only once (whether the chunk has previously generated, or not and only below a certain level). Any ideas? Or is this something I'll have to make myself?
Lol! I guess that'd actually work. Silly that I didn't think of that
is Float.floatToIntBits(a) == Float.floatToIntBits(b) the "best" way to compare floats?
should be
Usually with floats I check if difference between them is small enough.
i've seen a few posts saying the epsilon method isn't recommended but i was too lazy to read too much into it and floatToIntBits seems to do what would be needed to compare two floats
but apparently the only difference to == comparison is that comparing floatToIntBits will properly work for NaN and +-0 values
ahh interesting
i have also seen Float.compareTo() == 0 used elsewhere - might go look into the implementation for that
oh this definitely looks like the best way to do it actually - it doesn't convert it to int bits if it's immediately obvious that they aren't different
The compareTo method also is what IntelliJ auto-generates when creating equals() overrides
Is there a way to have custom symbols work in minecraft like this one ꧂
without it doing this
resourcepacks can have custom fonts
Yeah I figured, but I don't want to burden players with having to download a resource pack, and a server resource pack often results in their game crashing :|
never heard about simple resource packs crashing clients oO
Hypixel smash heroes
Is a resource pack with a bunch of 3d models and textures
A simple font containing custom symbols probably won't do that to your players
That- is very good point
- in my experience the newer versions handle resource packs far better
idk if that's just confirmation bias or not
hi, where can people ban appeal?
and also, most people on Hypixel are using 1.8 clients which are much more susceptible to crashes
read the rules on the website
from discord server ban
yes
person x got banned for being underage (he isnt), he got his age verified by discord
oskar
no not me
No
^
oskar also ban evaded
oskar didn't read the rules...? 😕
also why is that guy your profile picture
because i liek him
who is it
but he's also a holocaust denier
i dont agree with this
( iwanthimtobeunbannedtho)
Lol
lol
i am not a holocaust denier
I said the guy in your profile picture is
having someone on pfp doesnt mean i agree with him 100%
can we not
its still not 100% true
please
yeah "he" wasn't referring to you Kaspian
oh zombiechickenman
you remember that wack python script
I was trying to figure out how to close server safely
err.. no lol
the only "wack python script" I remember is some guy who rented a VPS for 10 years to respond to server pings
The one i was trying to make to backup files to google drive
Yeah
that
I figured out how to close server properly
without just ending the java process
I used a lib to start an rcon instance and then send "stop" and bam
ez
alternatively, a plugin could have launched its own process which would respond to sigterm by Bukkit.stop()ing the server
but that works
I understood nothing but ok
Uff my sister is such a degenerate. She moved out last week and I'll come over to setup internet at her place. She lives like 4 tram stations from me now, and proceeded to explain me where I can park
Google saying I need 14 min by car, 10 by tram, 11 by bike 😂
Do you wish to uninstall VirtualBox (Yes/No)?
y
Aborting uninstall. (answer: 'y').
Saving session...completed.
😡
hehehe
XD
have you heard of qemu
I like qemu, it makes sense to me
qemu is probably faster
doubt it
open source and made for linux isn't gonna beat enterprise and designed for Mac hardware
hmm
qemu is probably faster
but will try either way
depends if you passthrough
we need a doubt emoji
do we have one
if you care about performance and more advanced stuff such as vfio/pci passthrough then yeah qemu is probably the way to go
i just use vmware for ease of use and graphics acceleration without passthrough

yes we do
I used qemu as I couldn't be asked to mess with guis for the simple thing I needed it for
Nothing except VMware that I've tried has handled a virtual desktop well
.
I mean, with qemu you really need an accelerator
niche features such as virtual desktop integration stuff is definitely a vmware or parallels thing
afaik kvm is only available on linux and such?
I use
btw
Oh, so, irrelevant
Don't say that, you'll hurt someone's self esteem


Do you ever just feel that you wanna lick the window?
I love trams
They are called "Bim" here
because they used to make "bim" when they arrive at the station
Is prism better than CoreProtect?
haven't personally use either, but pretty much everyone here says yes
and prism is open source
Seems prism track more event
I've heard CP has issues with sqlite anyway though
But yeah, prism > CP.
Hmmm which database dose prism use?
It for sure supports mysql, not sure what else.
Prism hasn't great integrability with plugins, but so doesn't CP
was def oskar that person was talking ab before; he's back in spigot

I know it was
Oskar DMd me saying, quote, "Note: I see everything", attached a screenshot of IRC with me calling him out for being oskar
Then promptly deleted said message
So, I guess watch out, oskar is always watching
Best be cowering in fear
ah, so ban evasion while waiting on his ban appeal? I understand
Hasn't he ban evaded already before
I think so, yeah
bad oskar
He should learn to take a hint
Why can’t he just go through proper method 
ok
currently writing a github webhook -> discord webhook translator
discord's is garbage
n 
no
google is free
Can we ban this troll? Thanks in advance.
sure, that's literally just what you did 
sheep is weird
duck is cool
shut the fuck up sheep
kneny for core team
We don't condone playing down drugs here
sheep might've eaten the wrong type of grass today
ok
?ban @zinc moss Troll
:raised_hands: Banned sheep#9313 (Troll) [2 total infractions] -- Proximyst#6900.

ouch
Hey I was reading those messages
i wonder if you have to ban them permanently tho
i dont
it makes no sense to tempban
yeah Michael you.... 34-year-old...?
but I can
you can't tempban with warship either
why
10/10 insult
because you might aswell just tempmute them
oh yeah true
warship removed tempban because you're better off tempmuting them
yeah that makes more sense
we don't really care either way, they can appeal in a month or three
They were kicked before for some drug shit too lmao
Always some action on fridays in papermc 2.0
NOO THEY KILLED SHEEP
How about we kill some electronics next
what have i done wrong?
What about electronic ducks?
Educk
Dont
Roboduck
Day 2: Still installing VLC on Ubuntu. 
How SLOW can snap even be? It's legit been installing VLC for 1 WHOLE HOUR.
Y'know if you had a Mac it'd download pretty fast.
sounds like you should restart the installation
That never works.
No.
Budget gear gets budget speeds
apt remove snapd
wait no i keep snap installed for certbot
certbot can be retrieved from pip or python-certbot-nginx
https://www.videolan.org/
VLC is a free and open source cross-platform multimedia player and framework that plays most multimedia files, and various streaming protocols. Download
use mpv or something
Debian buster and bullseye follow the 3.0.x release branch of VLC.
buster (stable) (video): multimedia player and streamer
3.0.12-0+deb10u1: amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x
pnap31629@E3-2288:~$ apt-cache madison vlc
vlc | 3.0.9.2-1 | http://mirrors-phx-1.securedservers.com/ubuntu focal/universe amd64 Packages
snapd is the growing tumor of ubuntu
pnap31629@E3-2288:~$ apt-cache madison certbot
certbot | 0.40.0-1ubuntu0.1 | http://mirrors-phx-1.securedservers.com/ubuntu focal-updates/universe amd64 Packages
certbot | 0.40.0-1ubuntu0.1 | http://mirrors-phx-1.securedservers.com/ubuntu focal-updates/universe i386 Packages
certbot | 0.40.0-1 | http://mirrors-phx-1.securedservers.com/ubuntu focal/universe amd64 Packages
certbot | 0.40.0-1 | http://mirrors-phx-1.securedservers.com/ubuntu focal/universe i386 Packages
literally no one asked for it
wtf we're on certbot 1.15
michael writes his own certs
no cloudflare origin certificates are easier
they're valid for 15 years and can be a wildcard
it takes 1 minute to set up
is anyone though?
Debian+++
u tellin me you dont wanna run snap install helloworld?
canonical pushes their shit hard into ubuntu
never heard anyone say "wow, snap is really what I was looking for"
Debian+++++++++
pnap31629@E3-2288:~$ sudo snap install hello-world
hello-world 6.4 from Canonical* installed
pnap31629@E3-2288:~$ hello-world
Hello World!

At least it didn't need 10 years to install.
It's how they introduce you to snap
and then you have lxc/lxd
which is pre-installed just like snapd on every ubuntu server installation
and it only comes packaged in snap, there's no way to install it from an apt repo
Ugh
i do not like lxc
i don't either
or netplan, tbh.
netplan is also garbage
I don't like netplan either.
systemd-networkd i can live with
glad we all agree
netplan SUCKS
networkd is great it all makes perfect logical sense
smh not even GNU/hello?
snap is cancer, prove me wrong
i dont know which one is gnu hello
woa
a lot of apps are just preinstalled snaps on ubuntu desktop too
yes
pnap31629@E3-2288:~$ hello && hello-world
Hello, world!
Hello World!
why are these responses different
i hate it
that and mint both remove it
flatpak is fucking garbage aswell
but both are kinda ehh in other ways
@peak ginkgo I'd just like to interject for a moment. What you’re refering to as Hello, is in fact, GNU/Hello, or as I’ve recently taken to calling it, GNU plus Hello. Hello is not a greeting unto itself, but rather another free component of a fully functioning GNU greeting made useful by the GNU alphabet, GNU grammar and vital linguistic components comprising a full greeting as defined by POSIX.
GNU can gtfo outta here
what do you think of Mint?
Mint is nice, especially for newbies
mint cinnamon is nice
i just default to pop!_os or fedora for easy to use desktop distros
mint is okay, but, not really a distro I'd use for daily
Id use pop os for gaming tho
i can't stand using the two myself though lol
At least better than Ubuntu
i used fedora for 2 weeks before moving back to arch because i just miss the AUR
its more lightweight too
I think all of the distros these days kinda suck ass
All the cool kids use SCO Linux
I mean, I installed that for proxmox, and now I got the joys of an outdated packages, wooo
well arch is for the best packages
Debian kinda has outdated packages but it's super stable
outdated but maintained for security packages are fine to a certain degree
stumbled on this a while ago https://aur.archlinux.org/packages/papermc/ - haven't even looked at how its packaged but it only updates on major releases
Next generation of Minecraft server, compatible with Spigot plugins and offering uncompromising performance
Well, yea, but you'd be kinda dumb to use arch on a server, hence I use ubuntu for servers, and arch for the odd machine I like
Yea, it just downloads the release they hardcode
ya, ubuntu servers are pretty good
why does it have cuberite as a keyword?
I did flag the outdated thing, I think i forgot to respond to the person who maintains that thing with info on the API which is already there
gotta get those clicks
Smells like market maniplation
what distro comes with snap?
Ubuntu lol
Ubuntu.
Snap is a nightmare
BS.
Maybe in an old enough version
20.10
Sudo bro!
Open terminal and type snap
Apt still works with ubuntu 20,.10 tho right?
yes
But they seem to be getting proboner for snap
Yeah, but Ubuntu replaces some things like Chromium with Snap version forcefully
I swear to fuck if they start tryna remove apt in favour of snap imma go bitchslap them
just use Pop or debian then
meh, I find dnf/yum best
debian is ass because their stuff is always outdated
it's not too outdated though
Gotta be stable bro
Whats fedora like
fedora is pretty up to date because they do yearly releases iirc
debian is only every 2 years so it's not too outdated
They Fedora 34 released a week ago
debian 11 is coming later this year, probably next month or so
I can't do english
febora uses yum right?
fedora uses dnf/yum
cringe
they're RHEL based
Ive alwas used Apt or pacman
yep, yum and dnf; though you can install every other package mangager last time I tried
apt and pacman are the best imo
there porting Arch to the raspi
Doesn't Arch already run on ARM?
ya, but this is the first time manjaro was put on the Raspi imager
manjaro 
Id use normal arch myself
manjaro's been available for a while on the pi
Manjaro and Arch are really different lol
Amazing.
Finally snap installed VLC, good thing it's broken.
arch has a guided installer now
wu
used it to install arch on my laptop 2 weeks ago, shits great
And it's even more unstable than Arch lol
does encryption aswell
void supremacy
is arch or debian more lightweight, for servers?
I honestly thought that was April Fools or something
Elite void supremacy
@twin lagoon 
fact!
it was in the works since like 2016
Standardize msb to ags combo 👏
arch ships newer packages, so, probs not something you want for servers
Gotta use the newest JVM
at the end of the day, arch is designed to be more slim line, so, arch is likely lighter, but, once you install all the server crud you want, probs 0 difference
Z
arch's java packaging isn't any better than anyone elses
just the least ram usage
you can enable/disable whatever you want for both
Yep
that isn't really an answerable question
tho prob depends of the user
yes ^^ almost completely how you configure stuff
as I said, your default arch install is gonna be light as shit
And easier to fix stuff
mint is better then ubuntu
But, then you actually gotta install stuff
best best overall is whatever the fuck you're comfortable using
Yes
just give me debian thanks
For someone that is CentOS
I mean
For me that is ubuntu LTS
Let the brain damaged use what makes them feel comfortable
And for someone it's arch
Then again, Fuck RHEL
Every time I try to use anything other than Debian, I regret it.
rhel 
Me too
xD
I tried using centos
(fuck canonical too for that matter)
Ended up deleting root files
Chmodded home folder somehow
Got locked out
The end
at least its not Chrome OS
Never again
ok but then you're just incapable of using command line

that's not a centos issue
my fave trick is to fuck up my interfaces file
that's even worse
Reminds me at the time I tried to copy root folder in some random folder, good thing I noticed that fast enough and aborted
Lol
hey, it is too easy to type in "mv / .." instead of "mv . .."
This tbh
I'm a bit of a distro hopper but at the end i always end up back on Debian
Not like I have a good brain anyway

yeah fair
Alpine's not meant for desktop usage, though...
Yeah, Alpine is mainly for cloud and that
Ok ok, I was throughly surprised to find out there’s an immortal species on earth. It’s a type of jellyfish
Can just revert back to its polyp stage of growth and start over
Dividing organisms I think are considered new ones tho, this is still the same thing
Ya lol
hello can someone help me i use this command so console tp the player to another world
/mv tp %player_name% hub
but it says there is no player with this name
%player_name% this give the playername of the player who apply it
Anyone know a good no-code website/webpage templater? I usually just stick some shit together with bootstrap but even that's really time consuming for something I don't want to do when writing static pages for shit like documentation
for documentation? gitbook
yeah
although it would get slightly janky if you want to display that on a custom domain
works nicely though
very easy to use
interesting...
notion is pretty incredible software
I should put more in there instead of random google docs
it's great, has some annoying negative points
public API would be fantastic although they're working on that atm
Has anyone attempted to add 1.13+ forge support to waterfall?
And why is it still not implemented
there is people working on it
oh, i was just going to experiment with that. But if there already is people working on, i shall maybe just wait
🤦♂️
blame aikar
blame FF
no but its actually Aikar's fault
not rly
be kinda messy to put .json in the url. Ig it could be aikar.co/id/raw.json
FF should have figured out that a TLD is not a file extension and told macOS
its perfectly valid to put file extensions in a url but usually only if its a raw file
because when I teleport for a few seconds I fall through the map
yeah I mean it would be messy to do so now
.flags
Optimized & Recommended JVM Startup Flags: https://mcflags.emc.gs
@royal kernel no
yes
Congratulations on the race Mr. President
Wow a president
The first executive order is to ban ducks
No
Right mr. President ?
Wow already failing ur campaign promises
Next you're gonna say WE'RE paying for the wall or something
First orders to give core team a rase
A rase
Raise*
Can the no tables get some money too please?
why Mini no get raise?
bad president
impeach
Homebrew ❤️
finally gave up and got it
now I get to use arrow keys in sftp cuz for some reason the default version can't
now I completely forgot what I was doing with git before I got homebrew to update it
yo how 2 fully uninstall git
apt remove git
*purge
can I just uninstall from apps and programs? 🙂
yes
hmm okay Michael
It says some elements could not be removed, how do I remove these ones manually?
StackOverflow to the rescue
are we talking windows?
if so, those 'elements' are probably registry leftovers and maybe some files left in the programs directory
yeh idk rlly know how git works but I remember putting my email or sumthing in the gui, so im trying to like delete and reset everything idk
wait wait wait
are you sure you aren't trying to manipulate a git repository and not uninstall git itself
Hello there
what os
im in windows
do ipconfig in cmd
no
not at all
more like the developer community pokes the stackoverflow devs with sticks until they fix things
I'm wondering: how could stackoverflow developers do stackoverflow without help from stackoverflow?
xD
help from random communities before stackoverflow
Completly logical xD
yes. One book.
THE book
And you had to have like 18 books at your desk.
It was titled "C language specification"
boomer
toxic

😃
"president"?



- you give IP
- type type IP in Minecraft
Intersting username
If you're running this from your own network, port forward, but also #paper-help
assuming you're home hosting, you need to either port forward or if its just for a few friends use something like zerotier
not #paper-help , google
but if you have specific questions about it then yeah paper-help is fine
me?
so step by step im dumb at everything
google "port forward router"
no that dude ^^
but, again, be in #paper-help

What's your excuse @spiral robin 
Sup aber
Josh is table-less.
See my status
Hi ocelot
What's your car today
My car?
Same car.
Although I lost my sunglasses since that day.
I thought they were in the car but couldn't find them. :/
Aw so sad, they were cool
Looks like you just deleted stuff for nameless mc
disappointed

!ban 271015861924397066 steam scams
:raised_hands: Banned aaron#0330 (steam scams) [1 total infraction] -- sulu#6018.
Haha sulu!
!unban 271015861924397066
:raised_hands: Unbanned user aaron#0330 [1 total infraction] -- sulu#6018.
You monster
Had me thinking I was the scammer all along
!ban 840199666070061096 steam scam
:raised_hands: Banned alicemae#9087 (steam scam) [1 total infraction] -- electronicboy#8869.
Yea, sulu has that effect on people
Like, sometimes you kinda wish you where just done

how much message history does that delete actually?
I'd assume it just uses discords thing, so up to 7 days
at least we have IRC
i didn't even know that discord does this at all
https://discord.com/developers/docs/resources/guild#create-guild-ban they kinda sorta do it
Integrate your service with Discord — whether it's a bot or a game or whatever your wildest imagination can come up with.
but only up to 7 days, no clean way to delete all messages
does Eraser not handle usernames? what's the point in using snowflakes, exactly?
less issues when the person using the bot isn't an issue
lol

why did the bot just mark a >4 year old issue as stale?
who knows
I suppose being mentioned from another issue counts as an interaction to the bot actually no cuz even that would be 137 days
either that or it's just dumb
go comment on it if you don't want it to get stale closed
idc lol
its supposed to do it after 90 days I think and even that would be a lot more
60, + 7 for close
Wait, so does Git have access to my computer info
yes?
it's a program running on your computer
wait... git, or github?
GitHub is the website that hosts git repos
git is the VCS
Git can access anything any other program could
No
Any other program you haven't given special permissions, that is
how does it work?
it could read your passwords if they were stored on your hard drive
Im pretty sure I entered my email or username but idk that was for
git emails/usernames are not like accounts
they're just names
GitHub you have to log in to obviously
Technically, I could make a commit as President Joe Biden in a Git repository. It means nothing.
or, even more meaningless: President Rick Astley :)
err... never used the GUI... but assuming it's the same, which it probably is, you just entered it so people who were to have access to that repo would know your email ig
doesn't really matter much
could put no-reply@fhuiwhf.fwhehwe if you want
but, if you're pushing to GH, you should use your fake GH address assuming you want your real email private
Hello. Does anyone know why my sftp pipe breaks whenever I try putting a file or folder? It wasn't happening before, but now it won't stop happening.
hallo
It’s weekend already? 
Maybe
Hey im looking to set up a hub based server if anyone could help please DM me or just @ me im going to bed so i will get back to you asap Thank you in advance!
why do you need someone to dm you lol
Yup it’s weekend... 
Brocc is our hub server 🥺
just ask the questions you need over asking someone to DM you lol
you get faster replies too!
@vestal jasper 
@viral hornet 
@viral hornet
camm, question
are you intentionally doubling the vowel
or do you want to double the consonant
cammgaroo
neither
Cam was taken in something
so I just went Camm lol
been a variation of that ever since
カっム is kammu
カムー is kamuu
eternity you fucking weeb
aka, camm is a cow
sir
are you-
oh
you are calling me a cow
I would like to contact the m o d s to report bullying please dm me m o d s
actually, what does the dash do here, it's either kamu or kamuu
ik there's a way to double vowels
yeah I prefer mine tbh
Hey, Camm, camm, cammm
“Mooo!” out now: http://smarturl.it/dcMOOO
Apple Music: http://smarturl.it/dcMOOO/applemusic
iTunes: http://smarturl.it/dcMOOO/itunes
Spotify: http://smarturl.it/dcMOOO/spotify
Amazon Music: http://smarturl.it/dcMOOO/az
Google Play: http://smarturl.it/dcMOOO/googleplay
TIDAL: http://smarturl.it/dcMOOO/tidal
YouTube: http://smarturl.it/dcMOOO/y...














