#general
3141 messages Β· Page 48 of 4
wow cute
oh city is going all uwu on us
City is notable. Notably bad at code. π€
Notably unnotable
says the person with 0 successful projects π
L
I use two on my server and my server is successful
you're also an admin in the IS discord, that's sad.
Where's your chat plugin, city?
SimpleBungeeChat very popular
never heard of it
oh yeah bukkit compile fails without annotations
failing to compile
:(
L
ΒΏpor quΓ© no? π€·
both probably
both
1.8.9 was a client side update that mojang republished the server with just changed message strings
so none of the servers bothered to update
ah
Now that Jesse is back FAWE is getting updated and that makes me a bit sad
because now we can't joke about it anymore :<
If I can
I haven't bothered to see if it compiles either so have fun
I've never manually compiled
although my ide tells me it's ok
you're going to need to for testing
clone my repo
checkout the branch
./paper jar
kk
what a pain in the ass that was to do
bet I missed somewhere too
I'll have to inspect the calls for constructing these entities too
remind me to do that tomorrow
only bothered on shoot() and a()
today is tomorrow
fuck that's not good
what if he plans to sleep for 20 hours?
nice
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 01:44 min
[INFO] Finished at: 2019-04-05T02:34:32-07:00
[INFO] ------------------------------------------------------------------------
Beep Boop I am V CI
π€
pleas shutdown 
oh
actually speaking of travis, the openjdk11 build ran ~30 seconds faster than the openjdk8 build
online persona is a leaf
avatar is a healer cat thing from a teen drama
you dont get to call other people mean names
just did
nope
@static badge again ?! https://github.com/PaperMC/Paper/pull/1940
gnite leaf
there was a feature that can be disabled for factions servers
what was it
i ask for a friend
pvp?
am making tacos :3
:(
my cat was cuddling on my lap for like the 3rd time the last year and someone's car alarm put him on red alert and he ran away
@heady spear
th@t'$ @ vβ¬rΒ₯ g00d mβ¬mβ¬
Ew light mode
true
Instead of using magnifying lenses to burn ants, kids point a device with light theme discord at them
(DiscordBot) β@discordapp (Discord): Rare photo of a Discord developer working on light theme https://t.co/Gz9d4x0oJX (1 year and 21 days ago)
He wanted to be like you I think
is my name ret too
I just found data being "serialized" by fucking system out
what
According to the piss yellow crates dude
[13:36:01] [Server thread/ERROR]: Could not pass event InventoryClickEvent to CombatPets v1.9.9.9012-pre2
java.lang.NoSuchFieldError: entityList
at su.nightexpress.combatpets.nms.v1_13_R2.EntityInjector.spawnEntity(EntityInjector.java:188) ~[?:?]
at su.nightexpress.combatpets.nms.v1_13_R2.V1_13_R2.spawnPet(V1_13_R2.java:128) ~[?:?]
at su.nightexpress.combatpets.manager.PetManager.spawnPet(PetManager.java:398) ~[?:?]
at su.nightexpress.combatpets.manager.gui.PetCollectionGUI.click(PetCollectionGUI.java:211) ~[?:?]
at su.nightexpress.combatpets.manager.gui.PetCollectionGUI.click(PetCollectionGUI.java:1) ~[?:?]
at su.jupiter44.jcore.gui.GUI.onClick(GUI.java:142) ~[?:?]
...[removed due to size]
is explicitly a paper issue
What list of entities would there be in an inventory click event? Entities looking in the inventory?
Does paper even touch that event?
Now I'm genuinely curious as to what the hell he's doing
Can you not read stacktraces?
I'm very tired city pls don't harass me :(
su.nightexpress.combatpets.nms.v1_13_R2.EntityInjector.spawnEntity(EntityInjector.java:188)
he's doing stupid shit
lol haha
Well I have his plugin decompiled let's see what stupid shit he's doing
Paper issue
it's premium so I can't investigate
check out entityinjector
I can spell
I just don't want to
Will do
@heady spear tbh I'm more disappointed in the former lead for accepting this code (it was part of a PR)
it pains me to look at
Why the shit is he modifying the entityList manually
but what the hell are they doing?
like why use System.out
what's even the point
what's going on
why
when
how
who
@heady spear I wanna say this is the worst part but it gets worse
copy pasta incoming
to summarize, this guy decided to write a new skill for mcMMO called Alchemy that would be dependent on a config file serialized by fucking System Out which was executed in a separate program that has to be run manually for updates or changes and then you have to copy that new "serialized' file into mcMMOs resource folder, and this config files contents by design contains invalid potion recipes as part of its generation process (still not sure what to think of that), and finally net results in a skill that barely does anything in comparison to vanilla brewing
see World, we changed the entityList type
what the actual fuck nossr
We did something to try retain support for plugins doing that however iirc
it's really creative, I'll give them that
Or will I get yelled at
meh
What version of paper are you running, btw?
he's using lgpl shit in his code
According to the plugin author he's using the latest version of paper
public static Entity spawnEntity(final Entity entity, final Location location) {
final World world = entity.world;
entity.setLocation(location.getX(), location.getY(), location.getZ(), location.getYaw(), location.getPitch());
world.getChunkAt(MathHelper.floor(entity.locX / 16.0), MathHelper.floor(entity.locZ / 16.0)).a(entity);
world.entityList.add(entity);
final List list = (List)MyUtils.getPrivateField("v", World.class, world);
for (int i = 0; i < list.size(); ++i) {
list.get(i).a(entity);
}
((IntHashMap)MyUtils.getPrivateField("entitiesById", World.class, world)).a(entity.getId(), (Object)entity);
entity.valid = true;
return entity;
}```
what is he gonna do? sue you for sharing his code that's already breaking license terms?
.... why the fuck would he do that
@heady spear I normally avoid looking at the Alchemy PR code because it disgusts me, but I'm rewriting the configs from YAML -> HOCON and I wanted to gut out alchemys reliance on serialized data since it was a bit pointless anyways, then I find out that its being "serialized" by system out, and that it was being "serialized" in a separate program from mcMMO
So he's just printing to a separate log file? and then you use that log file to load the data?
That's fucking stupid
that makes my head hurt a little
@heady spear no the actual generation of serialized data was never being done in mcMMO
"DOES NOT COMPATIBLE WITH PAPER!!! AND IT ISN'T MY FAULT!!!" same
yeah, and for some reason mcMMO included that program as classes in its codebase although they were never used, but they got compiled and packaged by maven anyways
idk the former lead was smoking crack when he okayed this
can someone port 65 plotsquared commands to our new command system? I'll pay you $2.50
What patch(es) is the entityList modification in?
patchs
I too wish I could just pay someone to do tedious code for me 
relatable
oh, Aikar changed the type
You talking about the World thing, cat?
this is a perfect summary of our code base
Yup
I'm guessing you found where it's changed?
If so, link?
I'm gonna try to help the guy out I guess
that comment doesn't really tell me anything 
Implying he'll listen and change his code
Cache-World-Entity-Type-counts
stupid code
stupid code was fixed
fix broke everything
fix reverted
my codebase is basically a fucking display of every way you can write code wrong
Aye ty
we have 2000 closed issues, I don't know if that's good or bad <.<
that metric doesn't mean much, could mean your repo is popular, could mean its got an absurd amount of issues, etc
https://github.com/IntellectualSites/PlotSquared/issues/2300 also why do people do this?
I wish github let me search by file contents
like where did we specify we give support in german?
we get people reporting issues in spanish in the review section
we have had several french people ask for help in french despite no one ever claiming to speak french.
Trick is to use your IDE or git blame to pick out what made a change
@vestal jasper you sort of can, just search in the top left search bar and it will list the files? π
? yes
use "code" view in the side
Will check soon
works quite well, I use it when I don't wanna clone stupid shit
@heady spear what happened to your name
it got uwu'd
π¦
one of the former leads of mcMMO didn't properly fork the repo so history older than 7 years doesn't exist, a lot of my git blames end without resolution 
^PlotSquared history older than ~September 2014 is just gone
and damn mcmmo is old, I remember when it was still relevant π€
https://www.spigotmc.org/resources/official-mcmmo-classic.2445/ what the hell is this
try reading the description at the top of the page 
Did you people sleep
no, we're hiding from u
Ye, I slept coz am smert
I was actually thinking of raising the price in the future
Lol that's not saying much ivan
"people avoiding simple"
Literally everyone avoids you m8
Oh, how new
that's a very positive outlook city 
I didn't sleep because my neighbours were partying until 2am and their terrible music was so loud. My friend woke up because of them bitches
who tf only parties until 2am?!?
You can call police about that, at least in the US
It's called disturbing the peace
why they doing this shit
never heard of thirsty thursday? :P
I talked to my landlord and next time I was supposed to call the security company :p
Rip
We can't until we've tried to resolve it with the neighbours
and like fuck I'm going over there telling them to be quiet, don't want to get beat up
Yeah police will just shut it down whereas landlord may say "hey, u no have house anymore get tf out"
sell plotsquared so you can afford to pay someone on craigslist to confront your neighbors for you 
no
yes
I'd rather burn money
just give me money then
ok
I can give you the FAWE repo too
I'll toss you a $10 rn
someone give me cool intellij theme(s)
can I PlotSquared for 1$ and sell it for 10$
can you what
@worldly condor https://github.com/rainglow/jetbrains
no
yes
i dont like material plugin and that rainglow themes
can I buy PlotSquared for 1$ and sell it for 10$
@worldly condor make your own theme then
i cant
you're dumb
actually getting scammed into sending city money
I did legit send it tho
@worldly condor why
I'll send you feet pic vic
Sure thing nossr
@woven otter because i just can't design things
Guys there is a weird glitch. Send some money to my paypal you will see
my legs are reserved for Benefactor++
I should add a new donator tier
i am searching for cape
if you sign up on my patreon you get the satisfaction of money leaving your bank account
i can pay the optifine cape money thru paypal
What if I just want to do it once
pledging then cancelling sounds like too much work
nice
I like how you aren't credited as a dev of mcmmo
wait you are
your gh account pic and the readme pic are different
He's a fire-chief of the project now
how dare you bamboozle me like this
I was looking for your down mee6 avatar since the latest commit by you has it
and I couldn't find it
and since I'm retarded I didn't bother to check the project lead link
Am I rewarding wasteful spending, or what?
I'm project lead of mcMMO again for the third time in history 
so where's this mystery patreon
found the mcmmo one
oh, $500 is the lower limit nossr π
is this what I'm looking for
I could double the limit and he'd still be there π
the largest dono I've gotten was 100 bucks
I'm going to take your silence as a yes mr discount mee6
searching for an optifine cape i can pay the full amount of money thru paypal
but you've also sold quite a few copies of the plugin, so you've no doubt made more than IS π
whats IS
Our plugins are pretty damn essential for their server
IntellectualSites. As opposed to DumbSites
international savages
never heard of it
good for you
is that a big network thing?
no, it's our shitty organization that host FAWE and PlotSquared
There enjoy the meal mee6
omg you're the FAWE guy
@vestal jasper do you just dislike having money?
yes
definitely confusing when you refer to yourself as two capital letters not gonna lie

oh shit 15 dollar patreon

damn son
@stiff yarrow did we just scam this kid?
I appreciate you giving me money for no reason
The worse part about working with remotes, is when you forget to pull from the correct one, and then have to go rebase \o/
I'm coming for paper next, mee6 and city
Oh, I'm too tired to sarcasm, shoulda said best
rebase to alter history 
!stats
Uptime: 13 days, 8 hours, 31 minutes, 49 seconds
Message Handling: 3ms / 1ms (mean/median)
Messages from IRC: 2707 (8%)
Messages from Discord: 31144 (92%)
is V a rich boi 
no
yes
It's either you spend it on a nice meal or I waste it on trash
searching for an optifine cape i can pay the full amount of money thru paypal
city is trash
you've wasted money on trash
@vestal jasper that issue should be fixed in the next build
i.e me
Oh aight
I should promote you to developer on the server just so I can tell people to ping you instead of me
you already give me support than I do
Do it city
almost at 2 year anniversary
I'm a developer. I'm not a developer of FAWE or P2, but I develop things
such as trash plugins for my server
"things"
you use kotlin, so I don't know that I agree
agree that my plugins or trash or that they exist at all
NSA collusion in paper confirmed!
rewrite mcMMO in kotlin so no one can understand the code 
sorry I'm too retarded tired to comprehend non literal speech
Nossr work on my protection plugin instead
what protection plugin? I can work on your protection plugin
"They keep your CPU warm with stack trace generation"
working on mcMMOs horror show codebase is a full time job atm
Really city?
what kind of protection plugin are we talking about?
idk city then your plugin might get popular and it might create unnecessary competition

Chunk based villages dwellings, like GP/Golden Shovel except not trash by my player's standards
being in a relationship with an accountant sucks sometimes.
I have like 3 of those laying around V π
by sometimes I mean tax season
Using worldguard as a base because I can't be fucked to write my own protection code
because she fucking disappears
@stiff yarrow yeah I'd be afraid to compete with all of those 0 alternatives
City move all the P2 protection code to its own project so I can use it pls
V, I just wrote the same thing for a server I work for lol. I've been thinking of finishing rectangular at some point too
just gotta add R-Trees to it
Let me push uncommitted code and link you to it city
I wanted to finish rectangular but jesse said it was dumb so I quit
It's a pleasantly written project you may enjoy it
simpleauthority: just pay a guy like the rest of us 
She is the one you pay
have her pay someone else to do it
And I'm suffering because she's at the office 5 hours past workdays end
But hey whatever
I'm in a relationship with a monster bottle, I named it Dan
K
no homo tho
Implying something wrong with homosexuality
it's hella gay
I'm not into that gay shit. Last time I gave a bj I made sure to not enjoy it.
Ok
poops in simpleauthority's shoes
At least the cat cares enough to come to my house and actually do something, even if it is pooping in my shoes
my fiance won't even do that :^), it's workworkworkworkworkworkworkworkworkworkworkworkwork

searching for an optifine cape i can pay the full amount of money thru paypal
wut
that's why you should only accept crypto, no way to refund ;D
ivan you are always saying suspicious things 
internal actual inline fun <R> synchronized(lock: Any, block: () -> R): R = block()
has anyone made a fix for chunks that either don't save light changes or chunks that don't send lighting to the player?
its a bug in vanilla not just paper
not sure which one it is (whether its not saving light changes or not sending them to the player)
looking for an optifine cape i can pay the full amount of money through paypal
you just need to have optifine installed, do you not...
oh you have to buy it lmao
optifine is free tho, the cape thing is some donor perk
why you spamming here no ones gonna do that shady stuff for you ivan 
^-^
IvanACF is now gone
thank god
except from maven central where they dont wanna delete it π‘
i want this shit gone https://search.maven.org/artifact/com.github.mrivanplays/IvanACF/1.7.0/jar π‘
but they dont wanna delete it π‘
Lol
Their guidelines specifically state that they never delete stuff unless they need to...
i dont have money to pay for a server to create my own repo π¦
bintray???
wat
why do you need it removed
because i need it removed
bintray is free maven, and they will sync to central FOR you if it meets requirements....
and why are you spending money on fake capes if you can't afford a cheap server
nah he just realized how shit his lib is

idk if yall ever saw it but it was ridiculous
and he was in spigot claiming "bttr than aikrs"
annotations sux!!!
bintray... yo send me to this link
dude
.g bintray
(simpleauthority) https://bintray.com/ -- Bintray - Download Center Automation & Distribution w....: "Bintray gives developers a CDN-based, reliable, download center with REST automation & support for RPM & Debian packages, and generic softwareΒ ..."
try using google
i need to pay π‘
lol dude chill stop caps
(ββΝ‘ Μ―Κβ) β―οΈ΅ β»ββ»
ivan are you below 13 years old yes or no
no
simpleauthority i registered an account, and again says the fucking TRIAL
yes
u stop dat caps pls okty
no
EAT A DICK
oh no

https://bintray.com/mrivanplaysbg simpleauthority now wat
^-^
well, f||eed|| urself
.g HOW TO USE BINTRAY AS MAVEN REPO
(DiscordBot) https://bintray.com/bintray/jcenter -- Bintray jcenter - Maven, Gradle, Ivy, SBT, Groovy, Clojure...: "JCenter is the place to find and share popular Apache Maven packages for use by Maven, Gradle, Ivy, SBT, etc. For the most comprehensive collection..."
Kek
srsly
Wow, to get the right fonts for a given string Firefox (or Chrome) uses the Windows text rendering stack with a custom "renderer" registered that actually just collects the details about how Windows wanted to render each character then uses that data to go and render the string itself
Windows 8.1 and newer actually made a new API for this use-case so you can just give it a string and it'll give the data back without having to fake render it
And this is considered the best API of all the platforms (even the hacky custom renderer version of it)
Kek
macOS you give it a locale and it gives you a list of fonts sorted in the preferred order they should be used but you have to go look at each font yourself to see if they support the character(s) you're rendering, Android you get an XML file with all the fonts paired with what locale they're ideal for so you can do the same thing, and desktop Linux
is apparently just broken so browsers hardcode some common font names (!)
jesus

Theoretically you'd use fontconfig on Linux and it'd give you something similar to either the macOS or Android systems but in reality distros apparently have broken fontconfig setups
am so sick of ppl in this house still sleeping at 7am
i wanna go mek food, but "wahhhhh its too loud!!!!"
bets are off once it s 6am
if you can't cook food at 6am whats the point of waking up early
yeah im up at 4 or 5
so i sit here dying
till around 8
unless i learn to pan fry stuff in silence
I usually don't wake up until 8am-11am :P
just cook food and not care if they whine imo 
i literally cant sleep that long
like
i dont use an alarm
i just...
hella am up, 4am
s/lla/llo
Correction, <simpleauthority> hello am up, 4am
8-9 is when I'm supposed to start work but I work from home so I can just roll out of bed and start reading my email
I typically start working a few hours after waking up, unless some critical shit comes up
I typically only sleep around 8 hours
me too
i like that bintray doesn't want signed files
"only 8 hours"
I used to sleep 4 to 6 hours xD
but that was when I was still young in school/university
so long as you set everything up properly...
i am following their example (https://github.com/bintray/bintray-examples/tree/master/maven-example)
yes i clicked it
now deploy with maven
or upload
or whatever it says
it tells you to put the user/pass in your settings.xml, and then the upload section into your pom.
that's literally all you have to do
dont need no examples
dont need no copy paste
dont need no tutorial
its easy as fuck
but my project is multi moduled
ok?
Okay do it anyway
is dis deployment profile gud ? https://paste.md-5.net/yomavazuco.xml
We only use a profile to avoid some quirks
i did dat
that will upload your artifacts....including javadocs if you make them. you seriously dont need anything special
You don't need to use a profile, but if you really want to, you can, but your major thing is just to set the repo info up for deployment
that will invoke deploy, you'll probably wanna run some stuff like javadocs too in there
do you know what 401 means
no
Hacks not allowed
wrong password in my settings.xml ?
most likely...
ok lemme check
oh my god
yes a package is for each of your modules.
it represents one artifact.
konfig, by simpleauthority. Smartly served to you by Bintray.com.
see this.
its all 1 repo, but has 4 modules + the main module, sooo....then 5 packages in bintray.
simple slow down he's slow and dumb
it takes a lot of time to accumulate the information
thanks
yw bbygirl ;^)
com.github.mrivanplays, by mrivanplaysbg. Smartly served to you by Bintray.com. My Repositories
lol
i still get a error when i try deploying
each package has its own deployment settings...
wait nevermind
namely, the URL where it pushes...
i have not set the package name
lol
im absolutely dumbfounded mikro
i dont understand how anybody has this much trouble with bintray when they explain everything so fucking clear
DuDe, PlS i Am NeW tO bInTrAy
mental impairment is not fun :(
new to reading and following directions as well apparently
paste your pom i guess, and your settings.xml but remove your api key
i am using my password
where i find dis
LOL
i dont see it when i click on SET ME UP!
then you aint looking hard enough
holy fuck.
ivan is actually scamazing you into giving him tech support successfully
found it
ivan you should pay to simple after this
no seriously, i am so fucking dumb
we know
2$ for u
PAYPAL ARE U KIDDING WITH ME
:)
no donation sorry
whoa 2$ tax
paypal is dumb
wtf
have not seen that before
2$ for one hour tech support? simple, I need your support too!
Not even worth giving him a cent tbh
Somehow this whole exchange sounds like a Nigerian prince giving away $2.5 million USD
@stiff yarrow no u
hey thats me
Ivan you're a very wealthy boy
you don't need that entire 2 USD
give me like half
ive been waiting for this c*nt to finish literally just some HTML and hook it up to the API i wrote so I can get my payment for this freelance project
its been 2.5 months
im losing any hope
i might just delete the api :^)
You're waiting for who to finish it? o.O
her name is missy, she pops in spigot every now and then
wtfd
an why not you?
i made a big mistake
(to work with her was the mistake)
i have added my repo
funny i dont see a repo
<repository>
<id>MrIvanPlays Repo</id>
<url>https://dl.bintray.com/mrivanplaysbg/com.github.mrivanplays/</url>
</repository>
</repositories>```
its down a bit
then that's kind of a useless screenshot, isn't it
use your brain please
a little bit
The id must be the same one as your settings.xml
lets see your dependency declaration...
<groupId>com.github.mrivanplays</groupId>
<artifactId>BungeeBossbarAPI</artifactId>
<version>1.6.1</version>
<scope>provided</scope>
</dependency>```
on what project
uh...the one with the error?
i feel like your api is both in your local repo and remote and it doesnt know which one to use
or the one i use
i will delete everything containing MrIvanPlays there
lets see what maven will do
it again can't read it
thats in my local
did you try the command with -U or did you ignore me
electroniccat i just realized i had to cancel the money requests lmao
they've just been sitting there as open requests
lol
the command with -U
simple you seem pretty easy to scamaz into free tech support 
huggles sonatype
simpleauthority if u are still here
i have updated pom, lets see
it again can't read it
any reports on like freezes and stuff in-game from current paper versions? i regularly get chat lag, movement lag, chest delay and similarly, anyone else?
(and my players)
and TPS is around 19-20
Whew, I'm still alive.
Hm, am i missing something in my timings, I still get freezes and stuff? https://timings.aikar.co/?id=12fd44f0ca5b4dc8b1b8b9d0222ee503
Aikar's Timings Viewer - View Timings v2 reports from Paper and Sponge
the TPS says 20
oh right my bad
mojang != the mojang we knew before 5 years
https://github.com/Bastian/SafeTrade/blob/master/src/main/java/de/oppermann/bastian/safetrade/util/InventoryUtil.java#L196
^ for context
I'm yet to find why that is there
@vestal jasper is this u
so thats u
yes
BREAKING NEWS
U.S cats hack electronics
no u
jokes aside i dont hate cats
but when a cat is hacking electronics...
the thing is becoming really ....
fuck u microsoft
i cant uninstall dat
install gentoo
Office 2010
@cedar spade i dont like the newest
this is the best thing ive seen in a long time
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...
(simpleauthority) Congratulations - length 4m 19s - 4,962,536 likes, 240,846 dislikes (95.4%) - 49,519,022 views - PewDiePie on 2019.03.31
@stiff yarrow my bank/google saga continues
bank/google saga is still on-going btw, just got off a 10min call with bank and 20min call with google again
The problem is so bad that I've had to share my screen to show what's going on now, too
They (google) are so confused
Proximyst im writing instructions for somebody to use the api i wrote because they're braindead
oh thats rad
Logout is not detailed enough
What does it do?
Proximyst, Common Lisp, Clojure or Racket.
it's for a stupid client; although quite simple. Dude has one of those offer wall websites
So the api accepts "completed offer" calls, and lets users cash money out
wow
but, this person doing the "frontend"
Somebody needs their bottle
is FUCKING RETARDED
π
Any reason for that?
o i thought u meant what lang i do
i guess it's just cause i see clojure has a use case, while the others don't really have any to me (though they of course do to others)
clojure is on the JVM, which is where i'd use not-Rust
what stdlib
Idk canβt remember anything else
then probably not
also, if you're part of the programming discord, you should check out #186739025187438593 (#information) with the lisp partner
What
Which deleted channel
And why your old discord name smth about mari mari is gay
i think im being passive aggressive https://puu.sh/DaxVQ/40283fd4a9.png
i sent like 4 embeds because discords "UWU 2000 CHARACTER LIMIT"
Lol
i want my $350 π¦
i came thru, this bitch is 2.5 months late because she can't html
apparently
never working with this c*ntaroo ever again
Proximyst bukkitforclojure or something
2.5 months?
yes
approx 2 and a half months of telling the client and I "soon"
I'm the backend freelancer, this person is the frontend freelancer
u should've looked for someone else way before
I'm not the client
yeah that works fine, jan
tell the client :>
I'm very close to it
Send it to me proxi boi
If this instructions don't do anything
I will tell the client, and then tell him I'm doing literally everything stop working with her :^)
Thx bae
I've still yet to get into rust
Which build system you recommend for clojure Proxi
jan, boot or gradle
Go away brian

thats one of the best things we do here
we only judge you simple
does my point still stand tho
ye
thx
is that supposed to be keygen music
kinda reminds me of the Qora soundtrack
i mean bad music can be more than 8bit
eh I really have no idea what I was going for
Whats the choord progression?
it still has some sort of rhythm though; objectively it's not the worst thing I've ever heard
was all keygen music good
SCOTT RICKARD Scott Rickard has degrees in Mathematics, Computer Science, and Electrical Engineering from M.I.T. and MA and PhD degrees in Applied and Comput...
or am I just nostalgic
(simpleauthority) The world's ugliest music | Scott Rickard | TEDxMIA - length 9m 46s - 42,743 likes, 3,070 dislikes (93.3%) - 4,242,730 views - TEDx Talks on 2011.10.03
it seems like all the music that actually shipped with a keygen was pretty nice
watch from here for just the horrible music https://youtu.be/RENk9PK06AQ?t=441
SCOTT RICKARD Scott Rickard has degrees in Mathematics, Computer Science, and Electrical Engineering from M.I.T. and MA and PhD degrees in Applied and Comput...
(simpleauthority) The world's ugliest music | Scott Rickard | TEDxMIA - length 9m 46s - 42,743 likes, 3,070 dislikes (93.3%) - 4,242,730 views - TEDx Talks on 2011.10.03
@upper flicker almost all keygen music was great
.g keygen music
(DiscordBot) https://www.youtube.com/watch?v=Gk3tXQzCeJA -- Best Keygen Music Mix (1 Hour) - YouTube: "Feb 9, 2015 ... Keygen music mix,Keygen music Donate: https://bit.ly/2vYJS8K β½TRACK LISTβ½ 00:00 Disease-Beatiful insanity 01:58 8-BITChintendo -..."
Keygen music mix,Keygen music Donate: https://bit.ly/2vYJS8K βΌTRACK LISTβΌ 00:00 Disease-Beatiful insanity 01:58 8-BITChintendo - Lo-fi World 05:13 CFF - Abso...
1Up Coin
I have heard none of this before
especially when i'd leave the keygen open just for the music
I swear
liah
βοΈAhoy Pirates! Keep Yourself SafeβοΈ http://bit.ly/vpnVPN π¨π½βπ»THE PIRACY ANTHEMπ¨π½βπ» β¬οΈ FREE DOWNLOAD: https://fanlink.to/river-solo AKA - Hiromitsu Agatsuma ...
(electroniccat) RiveR - Solo - length 3m 49s - 17,086 likes, 117 dislikes (99.3%) - 751,127 views - The Phoenix on 2016.04.09
mr "I bought all my software as a child" over here
never heard of keygen music
smh
huh?
Lol, I remember once calculating how much warez I had on my machine
.g How to make poor music
(DiscordBot) https://en.wikipedia.org/wiki/List_of_music_considered_the_worst -- List of music considered the worst - Wikipedia: "The list of music considered the worst consists of albums or songs that have been considered .... of rock & roll β hell, the history of recorded..."
The list of music considered the worst consists of albums or songs that have been considered the worst music ever made by various combinations of music critics, television broadcasters (such as MTV), radio stations, composers, and public polls. A piece of music needs to be no...
Came up a fair amount, but I also had somewhere like autocad in there
ah chiptune
y u call gaggle
simpleauthority: https://paste.gg/p/anonymous/fb5b8fc5dbad4cfeb679840963407424
Current logs for channel #paper on IRC network SpigotMC.
yup.
your bank could be full of retards, like the one i just stopped working for
oh nice
card works with amazon, paypal, etc
smh
thank god my country isn't relying on debiit/credit cards for everything
you could also authorize the seller to directly withdraw money from your bank account Β―_(γ)_/Β―
i use cash when i can, but this is hardly a "owo dat country soox"





