#Web Programming languages
Explore tagged Tumblr posts
antiadvil · 6 months ago
Text
i need dan and phil to learn the full story behind their rpftourney win i NEED them to understand how hard we fought in the semifinals i neeeeeeed them to understand how serious tumblr voter fraud is
56 notes · View notes
bunnydevs · 2 years ago
Text
Struggling with keeping things organized while simultaneously enjoying coding and game dev is like walking into a house of mirrors. You just keep smacking into shit and can't find things you need half the time.
Oh let me grab that character sprite *smacks into wall* hey what was the color of that heading? *confidently walks into mirror* let me just fix this part, I think it was supposed to be-- *runs into small gremlin like being*
153 notes · View notes
angeliqueoolala · 1 month ago
Text
When in doubt, scrape it out!
Come find me on TikTok!
2 notes · View notes
t0rschlusspan1k · 2 months ago
Text
Before I resort to M*crosoft Learn, can anybody suggest me some free HTML/CSS online course that issues a certificate after an exam? I can finish it in the span of half a week and it's not something I actually need, but it would definitely make my life at home with my parents much easier if I could show them I'm doing something (studying languages doesn't count, since I'm not getting anywhere).
(Panicking a bit because I don't want to leave too much data and digital footprint behind...)
2 notes · View notes
orcelito · 3 months ago
Text
Oh yeah yesterday I went to my C programming professor's office hours to ask about what's being covered in class tomorrow. Since I can't go bc of my PT appointment overlapping with it & I'm apparently the kind of student that cares about attending every single class now.
While I was there, I ended up chatting with him about a few things, including my current standing in the class. He asked what I got on the midterm exam, & I answered it was an 87, and he told me I was one of the top 5 or 6 scores in the Whole Class (this being a like. Maybe 70 or so person class). Top score was a 92 or 93 (idr lol) & the class average was a 72. Apparently there were a few of us in the upper 80s/lower 90s, but most people got 70s or lower. And once he does the curve on the exam, he said I'd probably end up with a 97 or so on the exam. So yay!!!
And then he told me how he's noticed how I come to class every day and am really active with taking notes and answering questions. Bc I also sit up front all the time lmao. Hadn't even realized how much of a damned teacher's pet I've been being, but I've been Trying to be a good student this year. But he said I was the type of student that if I got an 88% or smth in the class, he'd likely bump me up to a 90% so I'd get an A lol. But he also said so long as I keep up with how I have been, I could possibly get a 100% in the class by the end (bc I've been there for all the extra credit questions in class and whatever).
And just. I went there bc I wanted to make sure I didn't miss anything important in class on Wednesday, and I ended up having my ego stroked for Real. Felt good to have my efforts be recognized.
#speculation nation#now if only i could care that much for my web coding class. but oh well im still keeping up even if its a reluctant shamble much of the time#other stuff we talked about was how im graduating this semester & how i plan to stay in indiana to work#bc i have family here & i like the relatively low cost of living. & im not particularly ambitious.#just wanna make enough money to live comfortably. dont need anything fancy beyond that.#& he talked about how that's a good outlook in life. how he's known ppl who went to fuckin silicon valley or whatever#with high paying jobs. but the cost of living is so high that theyre effectively not making much more money than here#he said smth about like. a $70k salary has just as much strength here than a $120k salary there. smth around those#& he praised me on how i seem genuine and hard-working. so he thinks im gonna do just fine in the industry 🥺🥺🥺#i kinda wanted to keep chatting with him but i had to go to bowling class lol. ended up late to it even#bc i checked my phone for the time while chatting and went Oh Fuck bc it wss 1 min after the class started hfkshfks had to rush off then#but yeah makes me feel very nice about that class. i think it rly is my favorite class this semester.#web programming is pretty rewarding and im glad im taking it. but i was basically a complete newbie in html css and javascript#so ive spent quite a lot of time wanting to tear out my fucking HAIR over these labs. b4 it clicks and im like Haha yayy :3#i like C programming bc it's just so much more logical and regimented. it IS the language that got me to give up my engineering degree#since i was thinking about computer engineering. took my first coding class freshman year. and went 'i love this. i want to do CS now'#didnt do that obviously. but im happy where ive ended up. i wouldnt wanna be a programmer lol#and then my quality engineering in IT class. it's certainly engaging. it's the class i constantly have presentations in tho#had Another one this morning. blah! good to keep in practice but i still dont rly enjoy public speaking lmao#probably the most work intensive of my classes. interesting but Blegh#C programming i just keep up with the labs and do the exams and it's wonderful... so logical and comforting...#oh yeah web programming i also have a few presentations. also gotta fucking. code my project pages by next week 😭😭😭#i think it's just the html and css? no javascript yet. thank god. javascript is by far the hardest to learn#but css is so finicky too!!!! ive been struggling with trying to move these fucking input boxes around#i wanna have them on the right!! but they wont go there!!! gotta poke at it more. at least i managed to finish building the form.#still have to finish the lab tho. that was due 2 days ago. lol. also have another one due sunday. AND the project pages. gah!!!#they havent even graded the wireframes yet. i wanted their feedback b4 proceeding to coding >:( oh well#anyways yeah..im keeping busy lol
3 notes · View notes
heyheyarnold · 9 months ago
Text
Free ASL Class Online - Cincinnati State
For anyone interested in learning American Sign Language in a low-stakes environment, Cincinnati State offers a free online, cameras optional, all ages course. You can join via Zoom or access class recordings afterward if you can't attend.
More info, sign up, and resources from previous sessions are available here.
Link: https://www.cincinnatistate.edu/freeasl/#list
6 notes · View notes
mydevdiary · 7 months ago
Text
Svelte Basics: First Component
I'm going through the Svelte tutorial since it's very comprehensive and up-to-date.
I'm going on a bit of a tangent before I start this post, but I'm straying away from YouTube videos and Udemy courses when learning new programming languages and frameworks. YouTube videos are too fragmented to get good information from. Courses (and YouTube videos) are usually not up-to-date, rendering parts of them useless. Not to mention that you have to pay for free information that's packaged in a course, which is kind of scummy.
Anyway, I've gotten quite a bit further than just the introduction section of Svelte basics, but I don't want to overload myself (or readers) with information.
My First Svelte Component:
This section was relatively straightforward. There wasn't much new information, but I was hooked because of its simplicity. I personally love the idea of having the script tags be a place to define variables and attributes:
<script> let var = "a variable!" </script>
<p>I'm {var}</p>
The example above shows how dynamic attributes are used. I can basically define any variable (and states, but that'll be for the next post) between the script tags that can be used in HTML.
This may seem mundane to programmers experienced in Svelte, but I think it gives really good insight into the philosophy behind Svelte. It's clear that they wanted to keep the language simple and easy to use, and I appreciate that.
As I mentioned in my introductory post, I have a background in React, which has a reputation for being convoluted. Well, maybe that's just my perception, but how Svelte is written is a breath of fresh air!
I look forward to making more posts about what I learn and my attempts at understanding it.
Until next time!
2 notes · View notes
Text
Tumblr media
SoloLearn was one of my favourite learning platforms for programming languages on the internet in 2023. I think my power, endurance and success time were awesome.
Post #109: My Progress on SoloLearn 2023, 2024
10 notes · View notes
mr-abhishek-kumar · 2 years ago
Text
Amazon app store doesn't let's you delete apps 😡
So I got to know that Amazon app store doesn't let you delete apps that you have published !! And now I can't even update my old web apps there !!! I have 7 apps in Amazon app store and I want to remove them because of poor developer experience of Amazon, but get this?!! They will not let you even remove apps. To get it published you have to dance to their drums!! To get it removed you have to dance to their drums!!! I HATE AMAZON !!!
Tumblr media
14 notes · View notes
elgarnaouicom · 1 year ago
Text
Tumblr media
Git commands
4 notes · View notes
kitkatcadillac · 2 years ago
Text
this is so embarrassing but i understand old people now jesus fucking christ
i had one of the highest fucking grades in computers in high school and now its been so long since ive ever had to actually use a browser i have frustrated myself to tears trying to find the options menu and i cannot. express to you. how humiliating that is. cannot express to you how bad that hurts my brain and my heart, oh my fucking god. its literally been like 7+ years that ive only had to use my phone and now i have to fill paperwork online and Mother Fucker. God Fucking Damn It Shit the Fucking Bed,
6 notes · View notes
ukulelegodparent · 1 year ago
Text
Heartbreaking: This German almost died bc they had to manually select Germany as their location on a German-language website, bc the default was Switzerland or Austria bc that's where the company is from
#jk but also I am always like. surprised by how surprised I am when this happens#like ok swing kitchen I get it you're fancy and from vienna however *I* wanted to order from your new store location#which you didn't let me do anyways bc you're a lying fucking bitch! >:c#I just wanna know how much their fucking burgers cost 🥲#I genuinely can't remember the last time I came across an instance of like. mindlessly browsing the web and reaching a moment#of like 'oh right Austria exists'#I mean it happens a lot with like seeing czech people talk about stuff related to the German language#which is so funny like earlier today I read an article by some radio in prague idk it was like an international intercultural thing#and it was an article in relation to a czech learning program they have for German speakers#and it was about like how to say where you're from etc. I was looking it up bc I needed the name of the castle that#'Rakousko' comes from. But like even having actively searched for the etymology of the czech word for Austria I had a short moment of like#'ah yeah Austria exists'. I think it might've even had it as the first option which would've been stunning!#Sometimes I feel like Austria is more relevant to the Czech Republic than it is to Germany#Jesus Christ we're terrible neighbours I understand why they hate us#Especially like watching Austrian broadcasts it's like. I get the feeling that Germany does get mentioned quite a bit more#than the other way around even on mundane topics#The dynamic is very much 'I hate you' - 'I don't think about you at all'
6 notes · View notes
attitudetallyacademy · 17 hours ago
Text
Become a Web Developer in 2025: Your Ultimate Path to Success!
Tumblr media
Introduction
The digital revolution has made web development one of the most in-demand career paths in the IT industry. As businesses increasingly shift online, skilled web developers are needed to create user-friendly, interactive, and dynamic websites. Whether you are a beginner or looking to upskill, this guide will walk you through the essential steps to becoming a successful web developer in 2025. Read More.....
0 notes
ricr-bhopal · 3 days ago
Text
Explore Career Growth With The Best Business Analytics Courses In Bhopal
Tumblr media
Best Business Analytics Courses In Bhopal
Career growth today is increasingly defined by how well you understand and work with data. Whether you're a fresh graduate or a working professional aiming for your next big role, enrolling in one of the best Business Analytics courses in Bhopal can be your gateway to success. These programs provide a powerful blend of technical skills and business acumen, setting you apart in a competitive job market.
Bhopal, with its expanding tech education ecosystem, offers multiple avenues for skill development. From learning data analysis and visualization to mastering software development, the city's institutes are preparing students for a wide array of roles. These programs also include modules that allow you to learn Java programming in Bhopal, ideal for anyone looking to start a career in development or expand their programming toolkit.
One of the most popular technical paths among students is joining Java coding classes in Bhopal. Java remains a staple language in enterprise systems, Android development, and backend applications. These classes help learners build a strong programming foundation while also understanding object-oriented concepts that are applicable across languages.
For those interested in becoming well-rounded tech professionals, enrolling in a full stack development institute in Bhopal is highly recommended. Full stack developers are in high demand due to their ability to work across the technology stack—from front-end interfaces to server-side logic and database integration. These institutes often combine coding with soft skills and project management training to produce industry-ready developers.
If your interest lies specifically in coding, you'll find numerous programs at the best coding institutes in Bhopal. These institutes focus on hands-on learning and real-time projects, providing you with practical exposure to solve real-world problems. Whether you're into competitive programming or want to build apps, these courses give you a significant edge.
Equally essential in today’s digital-first world is web development. Top web development institutes in Bhopal now offer specialized training in responsive web design, CMS integration, and front-end frameworks. These programs cater to both tech-savvy designers and budding developers looking to build interactive, user-friendly websites.
At the intersection of all these fields lies Business Analytics. This domain not only requires proficiency in data tools but also a basic understanding of programming and business logic. That’s why many of the best Business Analytics courses in Bhopal include foundational programming elements like Python or Java, statistical modeling, and business scenario analysis.
The key to career growth lies in combining analytical thinking with technical expertise. Whether you're analyzing sales data, optimizing operations, or creating intelligent dashboards, your ability to extract actionable insights will set you apart. And Bhopal’s institutions are making it easier than ever to acquire these skills.
So, if you’re ready to scale your professional ladder, consider joining a full stack development institute in Bhopal, enrolling in Java coding classes in Bhopal, or selecting from the top web development institutes in Bhopal—but don’t miss out on the immense value offered by the best Business Analytics courses in Bhopal.
0 notes
xploreitcorp5 · 6 days ago
Text
How can you serialize and deserialize Java objects for frontend-backend communication?
Tumblr media
1. What’s Java Serialization and Deserialization All About?  
So, how do you handle communication between the frontend and backend in Java? It’s all about turning Java objects into a byte stream (that’s serialization) and then back into objects (deserialization). This makes it easy to exchange data between different parts of your app. The Serializable interface in Java is key for this, as it helps keep the state of objects intact. If you’re taking a Java course in Coimbatore, you’ll get to work on this a lot. Serialization is super important for things like APIs and managing sessions. For Java backend developers, it's a must-know.
2. Why Is Serialization Important Nowadays?  
When it comes to Java and modern web apps, we often use JSON or XML for serialized data. Libraries like Jackson and Gson make it easy to convert Java objects to JSON and vice versa. These formats are great for frontend and make communication smoother. If you study Java in Coimbatore, you'll learn how serialization fits into REST APIs. Good serialization helps keep your app performing well and your data secure while also supporting setups like microservices.
3. What’s the Serializable Interface?  
The Serializable interface is a simple marker in Java telling the system which objects can be serialized. If you get this concept down, it really helps answer how to serialize and deserialize Java objects for frontend-backend communication. By using this interface, you can easily save and send Java objects. Students in a Java Full Stack Developer Course in Coimbatore learn how to manage complex object structures and deal with transient variables to keep things secure and fast.
4. Tools and Libraries for Serialization in Java  
To serialize objects well, developers often rely on libraries like Jackson and Gson, along with Java’s ObjectOutputStream. These are essential when you’re trying to serialize Java objects for frontend-backend communication. With these tools, turning Java objects into JSON or XML is a breeze. In Java courses in Coimbatore, learners work with these tools on real projects, and they offer options for customizing how data is serialized and handling errors more smoothly.
5. Deserialization and Keeping Things Secure  
Deserialization is about getting objects back from a byte stream, but you've got to do this carefully. To serialize and deserialize Java objects safely, you need to check the source and structure of incoming data. Training in Coimbatore covers secure deserialization practices so you can avoid issues like remote code execution. Sticking to trusted libraries and validating input helps keep your app safe from attacks.
6. Syncing Frontend and Backend  
Getting the frontend and backend in sync relies heavily on good serialization methods. For instance, if the Java backend sends data as JSON, the frontend—often built with React or Angular—needs to handle it right. This is a key part of learning how to serialize and deserialize Java objects for frontend-backend communication. In Java Full Stack Developer Courses in Coimbatore, students work on apps that require this skill.
7. Dealing with Complex Objects and Nested Data  
A big challenge is when you have to serialize complex or nested objects. When figuring out how to serialize and deserialize Java objects for frontend-backend communication, you need to manage object references and cycles well. Libraries like Jackson can help flatten or deeply serialize data structures. Courses in Coimbatore focus on real-world data models to give you practical experience.
8. Making Serialization Efficient  
Efficient serialization cuts down on network delays and boosts app performance. Students in Java training in Coimbatore learn how to make serialization better by skipping unnecessary fields and using binary formats like Protocol Buffers. Balancing speed, readability, and security is the key to good serialization.
9. Real-Life Examples of Java Serialization  
Things like login sessions, chat apps, and shopping carts all depend on serialized objects. To really understand how to serialize and deserialize Java objects for frontend-backend communication, you need to know about the real-time data demands. In a Java Full Stack Developer Course in Coimbatore, you’ll get to simulate these kinds of projects for hands-on experience.
10. Wrapping It Up: Getting Good at Serialization  
So how should you go about learning how to serialize and deserialize Java objects? The right training, practice, and tools matter. Knowing how to map objects and secure deserialized data is crucial for full-stack devs. If you're keen to master these skills, check out a Java course or a Java Full Stack Developer Course in Coimbatore. With practical training and real projects, Xplore IT Corp can set you on the right path for a career in backend development.
FAQs  
1. What’s Java serialization for?  
Serialization is for turning objects into a byte stream so they can be stored, shared, or cached.  
2. What are the risks with deserialization?  
If deserialization is done incorrectly, it can lead to vulnerabilities like remote code execution.  
3. Can every Java object be serialized?  
Only objects that implement the Serializable interface can be serialized. Certain objects, like threads or sockets, can’t be.  
4. Why use JSON for communication between frontend and backend?  
JSON is lightweight, easy to read, and can be easily used with JavaScript, making it perfect for web apps.  
5. Which course helps with Java serialization skills?  
The Java Full Stack Developer Course in Coimbatore at Xplore IT Corp offers great training on serialization and backend integration.
0 notes
virtualcuriosities · 2 months ago
Text
0 notes