#the programming language not the game
Explore tagged Tumblr posts
Text
Rust my rustloved
#the programming language not the game#makes coding worth it sometimes istg#rust#programming#codeblr
11 notes
·
View notes
Text
#my polls#random polls#tumblr polls#poll time#poll game#polls#programming poll#coding poll#coding#programming#just wanted to see how many other people know how to code#if anyone sees this and has resources for people to learn code#please link it#thanks <3#java is the best language though
1K notes
·
View notes
Text







Our dorm building flooded over break, so here’s our new giant posters (not pictured: 6 foot tall Baja Blast bottle, a bunch of KPop boys, just a chill guy, our baby bill cardboard cutout (who actually survived the flood!), and a few other pathetic anime men)
Our next projects include
•The lovely buddy daddies family
•The OHSHC cast
•Spock
•The cast of Gakuen Handsome
#house md#knights of sidonia#gravity falls#billford#south park#craig tucker#brothers conflict#jjk gojo#college#college dorms#can I talk about gakuen handsome real quick#because tell me why the first time we watched it we got so emotional and started crying#and when we found the YouTube account and learned that there were games and merch and music??#also apparently there’s video games for brothers conflict??#I’m going to get it but it’s completely in Japanese#luckily my friend’s unsuspecting roommate knows Japanese so we’re going to make him translate#he literally only learned the language because he loves vocaloid so much#whenever I go to visit their room he’s always on his computer working on the voice program lmfao#anywayssss
10 notes
·
View notes
Text
Finite State Automata defining spell syntax.
The spells use only three different characters to be written, "╭" (which can represent "0"), "ʌ" (which can represent "1") and a validation symbol "ᴎ" that can represent ";". When writing spells, spaces, indentation and parenthesis can be added to make them more readable. Those do not modify the spell meaning as only the three characters precedently mentionned matter.
A fourth glyph "╰" can be placed to signify the begining of a spell too, so indentations are more logical, but this character do not add meaning to the spell either.
This automaton is nearly deterministic, with the exception of the validating "root" state, that can only go back on itself to exit the current loop (an ongoing while, the spell itself or a function definition for exemple). The spell also cannot validate before exiting every ongoing loop, and can only validate once every loop are exited. Otherwise, the rest of the states and their transitions are entirely deterministic.
A more detailed version of the FSA :
#art#artists on tumblr#my art#trans artist#queer artist#fantasy#programming#coding#code#indie games#gamedev#indie dev#programming languages#esoteric language#esoteric programming#spellcasting#spellbook#spells#spell#spellcaster#grimoire#spellwork#witchcraft#witch#spellcraft#nerd shit
7 notes
·
View notes
Text
Does anyone have Japanese visual novels they recommend? Asking because I'm in the process of learning the language.
#or at least has that as a language option doesn't have to be originally japanese specifically#there's a program called textractor that converts dialogue to text from certain games (mostly vns) for language learning#for genres I like yuri high fantasy scifi and horror#and nothing that's super |\|zfw (I won't mind if it's just nudity or some fanservice/suggestiveness)#rinblings#language learning#learning japanese#learn japanese#langblr#japanese langblr#nihongo#japanese studyblr#visual novel
17 notes
·
View notes
Text
I have recently obtained a new space grandma

she's pretty mean at times
#hablaty#i love her tho she's fun#especially when she uses programming language for tone indication#also she's pretty ruthless and i'm half-expecting that she'll get the whole crew killed bc i keep doing her missions instead of videx's#tho i also admit that i like the babies of the crew a tad bit more than her exactly bc they are the babies#i'll do anything khepra asks without questions or hesitation#and there needs to be tiresus in this damned game
9 notes
·
View notes
Text
hm. wondering if i should stick to rpg paper maker (has the Exact aesthetic im looking for, but very few tutorials/guides bc its so young), or if i should save up for rpgmaker proper (compromise on aesthetic, but Tons of beginner-friendly guides bc of how long-lived it is)
#bee.txt#for context: i have never made a video game#but i have dabbled in programming languages like python + c++
2 notes
·
View notes
Text
Programming is so fun whaatt the hell
I even enjoy the rabbit holes I fall down trying to learn something new/solve a problem; there's so much vocabulary I don't know so I end up looking for a solution and then needing to search "what does [funky coding word] mean" every few mins LOL
And the flow is just so nice once I understand what Im doing! You get into a groove n you're just typing code for hours while listening to music or a podcast or whatever aaaahhh
#I'm entirely new to everything so its all super exciting!!#ive started learning c-sharp for game development.. but I love how many languages there are to learn#feels like there's always something new I can do/learn with programming#will I ever run out of fun??#Im almost certain any programmer reading this is thinking 'enjoy this excitement while it lasts..' LMAO but I am and I WILL#feli thoughts#codeblr#programming#csharp#game development#game dev
25 notes
·
View notes
Text

Days 47-50 of coding everyday for a year... It's been stressful
So I worked on with the image on top a game in Unity. I made a reverse murder mystery visual novel for Brackeys game jam. The bottom was me getting a feel for C++ still. Tbh I'm still kind of lost with it, but I'm trying. (it's just so different from C# in some ways). I'm also doing a small coding challenge every morning after I've had my coffee with C# since that's the language I'm going to base most of my career off of (I can do Java/Kotlin, and C++ but C# is special)
Here's a link to the game...
https://dragonlens.itch.io/beyond-the-infernal-door?fbclid=IwAR0pBC6WnHavtVRscNzITDQWXwVEiNJNUkJZhXPjLG9xCGTbdrpqzxPfFXg
The next few days I'll be working on more C++, and my .Net Maui project. I also might be practicing some coding interview questions/tests since the summer is coming up soon (I did make an impressive fizzbuzz with a twist)
#self improvement#cosmickittytalk#csharp programming#codeblr#c++ language#c++#c++ programming#csharp is superior#csharp#working on my unity asset!#unity game engine#unity game development#unity 3d#unity#unity 2d#game design#game development#indie games#pc games#software development#developer#learning programming#learning to code#girls who code#code#coding for a year#coding exercises#coding challenge#coding#game programming
10 notes
·
View notes
Text
I get it, I know why, but it's so, so stupid. Yes, technically, from a architectural level, an array variable is a pointer to the array. Yes, that's true, because an "array" is an abstraction of a pointer that can seek over multiple memory locations. Like cool I get it. At the same time, however, if you are not a low level programming language, why the FUCK would I want to have something like: var myArray = [0, 1, 2, 3] var newArray = myArray
Be such that changing newArray changes myArray too. I get why it does it. Because I'm just making newArray equal to the myArray pointer, but that's not anyone's intention or desire. Who out here is going "Yes I'd like to set the pointer to some other variable so that it works the same in as if I just had the original variable".
Also, I can draw cards from my deck now and I drew one (1) card art
Again, you can steal this, but why.
#godot#game dev#programming#software dev#FUCKING WHY#WHO'S IDEA WAS THIS#Programming languages are meant for people to talk to the machine#translate properly you stupid language#pixel art#you can have it but why
4 notes
·
View notes
Text
Cool Board Games for Your Library
Rory's Story Cubes – $18 CAD
Type: Dice Game Players: 1-12 (2-4 ideal) Mechanics: Dice Rolling, Pattern Recognition Playtime: 20 min Age: 4+ Skills You Practice: Cooperation, Storytelling, Imagination, Pattern Recognition
There are various expansion packs (I’d highly recommend the Actions pack for ESL language practice). The expansion packs include Fantasia, Mystery, Heroes, Voyages, Astro, Harry Potter, Doctor Who, and Looney Tunes among others.
Why it’d be good for a library collection:
Popular topics
Family-friendly
Simple gameplay
Award-winner
Small storage space
Variable player size
Cheap
Great for use in programming with ESL patrons
#librarylife#libraryland#school librarian#school libraries#education and learning#educational games#libraries#elementary school#public libraries#english second language#library programs#game recommendations#game night#family ga#family gaming#dice game#storytelling
12 notes
·
View notes
Text
i need more coding/game dev mutuals so if you’re one of those here then hit me up :]
i also need someone to talk about these things with grr !!!
#programming#coding#game dev#game development#comp sci#javaprogramming#game dev stuff#codeblr#code#java#(it’s the language i’m learning rn btw ^_^)#kaitext#studyblr
15 notes
·
View notes
Text

They be like "some asshole keeps stopping our evil plans"
And I be here like "I wonder who hehehe!"
#my art#baldurs gate 3#bg 3#bg3 tav#zephyr#bg zephyr#im just gonna make that my character tag for him#i know there exists within the game another person named zephyr#lost my freakin mind when she showed up and tried to murder me#i thought the game had programmed her specifically to take the players name#and then i realized that was stupid#that was just her name and coincidentally i had the same one#she didnt take it from me#and then i killed her so now im the only zephyr in the game#the better Zephyr#the bephyr#i really hope that doesnt mean anything bad in any language#but anyway#this is not his outfit anymore but its my favorite hes ever been in so i constantly draw him in it#at one point ill have to draw his current one#cuz it is just a fancy crop top that helps his magic#also he has a stupid hat on that gives him persuasion and deception advantage#i could give him the hood that advances his magic but i like stupid convenience hat#if youve seen swe sao abridged i essentially have keitas hat that makes people do what he wants#the hat has not failed me yet#its called jannaths hat i cant remember where i got it but its super good dude i love it#it may be in Sorcerer's sundrees or the quests near there#my guy is a sorcerer too so thats fun :D#those are his sundrees lmao#but ye my guy regularly has a stupid smile when he hears people being mad about something he did
10 notes
·
View notes
Text
I figure I should share a little bit of what I've been up too... so me and 2 friends, with no Java experience, decided to compete on who could make the best minecraft mod within a week. It's already been more than half of the time maaaan, and I only just figured out how to hook into events... I still have work during the week, so I foresee myself being very busy modding on Friday lmao
#Billbus' projects#minecraft modding#I actually learnt my first programming language a similar way#I joined a game jam to do so a few years back
3 notes
·
View notes
Text
working on my little twine game and i'm definitely getting the hang of it now !!!
#rambles#i just spent maybe an hour or so studying and so many things finally clicked#i'm so excited to make all kinds of different things#there's so much you can do. it's just so cool !!!!#i could make games and host them on itch.io#and tbh i could see myself doing this stuff full time#i could do some kind of full time programming job. preferably for a smaller company i think#obviously i'd need to learn other programming languages but i think i have the basics down atp#and it's fun! like i actually enjoy doing it and the problem solving aspect is rewarding
5 notes
·
View notes
Note
his rich + self-aware combination topped the CAKE. yeah… he’s like… so so so so so funny. i also love how he’s associated with purple because i love love purple. speaking of kag’s VA, do u play the game in chinese or jpn dub? i assume jpn dub with cn text since u mentioned being able to understand the game in cn. also, u studied in florence? was it also for art or a student exchange sort of thing? — @anonymilk
anonymilk i'm saving ur prev ask as a request u__u imma write that shit BINCH I AM SO HYPE.
i uh -- play each character w/ a dif voice pack bc i'm UNWELL i mean -- i just... have a thing for voices? so i went through the official tot website and like.... listened to all the va's and picked the ones that i liked the best:
marius (JPN)
artem (S-CH)
luke (T-CH)
vyn (KR)
and the ensemble cast speak jpn bc... i'm writing this game off as my jpn language practice.... bc yeah... that's totally what i play it for. uh-huh.
#tears of themis#tot#im a simp for ishikawa kaito what can i say -- okay but to be REAL real right. i started playing twisted wonderland bc of uchiyama kouki#aka tsukki's va... so rly im STILL just a haikyuu simp at heart LOL#if i learn korean i'll speak all 4 of the languages this game is in -- my bf would be proud -- he's korean lsdkjfoas#the way he was like TF r u doing when he heard the game for the first time and everyone was speaking a dif language LMFSALIDF#but yes!!! i studied literature in florence u__u it was part of my uni's overseas exchange program but we had a wholeass campus in florence#but even though i didn't study traditional art in uni i've painted my whole life! :D#i started with pencil sketches and the moved to watercolors and then oils -- oils are still my preferred medium SO LIKE RLY#MARIUS AND I WERE MEANT TO BE U KNOW UKNO???#at one point during highschool i had 3 art classes a week for different things so i've always loved art T^T
11 notes
·
View notes