#use of java
Explore tagged Tumblr posts
yummycrummy · 3 months ago
Note
we got p2 and p3..
p1 and p4..
but what about java dude and shtopor / corkscrew…
i think they’d be chill (java doesn’t know russian) /silly
what is bro saying
Tumblr media
66 notes · View notes
daily-xisuma · 9 months ago
Note
zizuma after 12 straight hours of code work (all he’s had to eat was 5 adderal and an uncrustable)
Tumblr media
[075] Hands stained with blood (stupid coding mistake that takes anywhere from 1 second to 10 days to find)
111 notes · View notes
yakumtsaki · 8 months ago
Text
Tumblr media
new union family tree with cadet branches! credit to @sterina-sims and @meisiu whose templates i used ♡
full res here!
78 notes · View notes
kitchenutensilfamilyau · 8 months ago
Text
New Refs!
Tumblr media Tumblr media
had to make some and finally had a reason to.
59 notes · View notes
atomicbritt · 3 months ago
Text
@look-back-month-challenge
Day 15: Have you ever made a custom?
Boy, have I.
Tumblr media
I few years ago, I learned about doll customizing and got into thrifting and repainting old monster high dolls to look like characters from my webcomic @cirqueduroyale.
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
Then I lost interest for a few years until I finally finished Unicorn Princess last year. Her custom was. The. Worst. She had 6 different faces, a split scalp, 4 different wigs, a lost outfit that I reordered just to find it after the new one arrived and that time I accidentally sprayed her with spray paint instead of sealant. 😮‍💨 But whatever, she's done now.
Tumblr media Tumblr media
Then I made Cupcake, who was so much easier omg.
Tumblr media
Her outfit was made by @dollelujah. She's a great doll fashion designer!
31 notes · View notes
silvergarnet12 · 9 months ago
Text
Tumblr media
Venture! Unfortunately for me they have dragged me back into the hell that is Overwatch, I have been unsuccessfully ignoring their existence since their release and finally caved into re-downloading…
72 notes · View notes
harlequinoccult · 2 months ago
Note
I know people say this all the time but please don’t overwork yourself, even if you take 10 years everyone will still be here waiting, because we’re in here for the love of the game, and for the love of you the person for working so hard, don’t overwork and none your blood pressure higher!
well my doctor gave me blood pressure meds for a reason :V
Thank you!! I try not to or else my nurses will yell at me I am basically learning code as i write so. it's been interesting. I appreciate yalls patience while i wrangle this bastard of a language.
28 notes · View notes
dseval · 4 months ago
Text
Hello audience. Unfortunately, I am still on my break. However, I am happy to announce that I am still alive and kicking. In fact, I decided to make use of my unemployment and revisit HTML, CSS, and JavaScript to create... A visual novel.
Good News: code is 100% reusable because I used a JSON (i do not know how that works, someone can kindly explain to me...)
Bad News: this code sucks ass, and NOTHING works except playing the story. Transitions? Doesn't work. UI/UX? Ass. Effects? Hell no... Also, 70% of the features aren't present yet I'm gonna do it later.
Oh, this is CrossDust, if you can't tell.
Tumblr media Tumblr media
Dust Sans by Ask-Dusttale, Cross Sans by Jakei
I'm gonna respond to asks and do requests later (After my break is over). This is just a small update teehee.
23 notes · View notes
styllwaters · 1 year ago
Note
What happens when a knight's horn breaks? Is there any medical treatment? can i eat icecream out of it? would it be rude?
Tumblr media
A pike helmet's horn is composed of a keratin sheath surrounding a bony core connected to the skull. It's quite strong and it gets harder to snap the closer you get to the base. If the core isn't damaged, then the horn can grow back within 4-6 months - although to ensure it grows back in the right shape, a knight may choose to don an artificial sheath.
It doesn't happen often, but when it does it's rather demeaning for the unfortunate pike-spire or pike-fort.
It would probably rude to eat icecream out of it.
121 notes · View notes
stickia404 · 2 months ago
Text
"We do what we must, because we can"
Whenever you get an idea, you must ask your self some questions: is this possible? How long would it take? Is it worth it? Should I even do this? However, some ideas politely ignore all of these questions and go straight into action.
Introducing the World Slate:
Tumblr media Tumblr media Tumblr media Tumblr media
World Slate, The Great Work, Ghost-Circle, "Sophia why the fuck did you even think of making this," whatever you call it; it is a massive Spell Circle that is approximately 11 thousand blocks by 12 thousand blocks large. This covers about 30% of the overworld of the HexxyTest server.
For those who don't know Spell Circle Tech: a Spell Circle calculates ambit based on how big it could be, rather than based on where it does runs. So you can "trick" a Spell Circle into having a massive ambit by having a looping system that connects to outer "prongs" via a directrix. This is how the World Slate has complete ambit over 30% of the whole overworld. However, there is a large problem, lag.
Spell circles (shouldn't) gain lag while running; since they now, in 1.20, run each pattern while going over them. On the other hand, during a start-up a Spell Circle needs to calculate what slate it can run on, caching it into its NBT data. This seems like it could be a large source of lag, since it's doing a flood fill over possibly thousands of blocks; but, that is only half true. If all the slate blocks are in the same loaded area, the flood fill only takes a few milliseconds, barely anything. But, to get the block data to find where the slate could go, it has to load the chunk the slate in, which is not that bad, IF the slate does not go across ~1400 chunks. Loading, and calculating, that many chunks will lag a server badly (maybe even kill it); so the project seems hopeless.
But, there is a way to fix the lag of loading ~1400 chunks in less than a tick, optimizations.
Since I know Java and some bits about modding, I have been trying to fix some more laggy parts of Spell Circles. I have already fixed a moderate lag source of looping Spell Circles (chunk bans are fun!). So it hypothetically shouldn't be too hard to somehow optimize Slate Discovery.
There are 2 large problems with optimizing Slate Discovery though: How to locate them, and how to store the found slate. The 2nd problem is much easier to solve, rather than storing them in a set of raw Vec3s like it does now, it would be best to compress them down (maybe into a string representation or something) then uncompresses them when it is running. This could be done with a small, quick compression algorithm.
Tumblr media
However, optimizing the finding of the slate is another problem. The best system would be finding the slate without loading the chunks, but this is impossible, so we need to use a 2nd method.
That 2nd method would be to break up slate discovery over time, so instead of loading ~1400 chunk all at once, we can just load 200 chunks each tick until we get all ~1400 chunks. This system does have some minor problems, and a big problem. The small problems would be: how to keep discovery going if the server closes, how would you serialize the discovery list, how would you tell the impetus to look over time, etc. And these problems are simple enough; however, the big kicker is that the player could move slate during discovery.
Tumblr media
As said by Chloe, people could move the slates in discovery, meaning they could cheat the system by moving the slates while they are being scanned, and still get "world ambit" for about fre. This is, unfortunately, just a problem that would have to be accepted for a system like this.
I do think that flaw can be somewhat ignored though. Since, if you are willing to make a Hex (or a massive contraption) that works every tick to move earth-shattering amounts of slate; then you can have world ambit fuck it.
Or you know, instead of doing this whole massive problem if optimizing slate scanning just do something like re-adding the slate limit
However, if you have any ideas of how Slate Discovery could be optimized; or if I am insane for starting this project; please let me know.
19 notes · View notes
the-crazy-echidna-lady · 8 months ago
Note
For your fop au, is there an anti-Joe and an anti-tea?
Tumblr media
Indeed, every fairy has one.
Imagine your name sounding like "ate"
36 notes · View notes
woman-respecter · 7 months ago
Text
i am GOING to make air fryer chicken katsu with japanese curry and cabbage salad tonight. everyone yell at me if i don’t.
24 notes · View notes
fennecphoebe · 3 months ago
Text
Eraserhead Baby Minecraft Mod
I've finished the mod where you can spawn this lovely baby into your java worlds. you can feed him different foods and listen to him breathe!
Tumblr media
Currently, he is only for Forge 1.20.1, but I'm going to update him when mcreator updates. Here's the link to the drive folder.
10 notes · View notes
sprnklersplashes · 2 months ago
Text
while I am posting on my lunch break; I have spoken about how emma swan is lorelai gilmore in a different font and expressed interest in the parallels between rory and henry, but what if I expanded further by saying neal is christopher and killian is luke?
15 notes · View notes
blastlight · 3 months ago
Text
i hear Minecraft Bedrock players are getting edged right now
8 notes · View notes
lomotunes2008 · 10 months ago
Text
Why does this logo look like Hatsune Miku
Tumblr media
21 notes · View notes