Tumgik
#learn java programming
synergisticitusa · 17 days
Text
Learn Java Programming with SynergisticIT
Ready to elevate your coding skills? Join SynergisticIT to learn Java programming from industry experts. Our comprehensive courses cover everything from basics to advanced techniques, ensuring you're well-prepared for a successful tech career. Enroll now and start your journey to becoming a Java pro!
Tumblr media
0 notes
learnwithcadl123 · 3 months
Text
Tumblr media
0 notes
apollos-polls · 2 months
Text
1K notes · View notes
codingquill · 9 months
Text
Essentials You Need to Become a Web Developer
HTML, CSS, and JavaScript Mastery
Text Editor/Integrated Development Environment (IDE): Popular choices include Visual Studio Code, Sublime Text.
Version Control/Git: Platforms like GitHub, GitLab, and Bitbucket allow you to track changes, collaborate with others, and contribute to open-source projects.
Responsive Web Design Skills: Learn CSS frameworks like Bootstrap or Flexbox and master media queries
Understanding of Web Browsers: Familiarize yourself with browser developer tools for debugging and testing your code.
Front-End Frameworks: for example : React, Angular, or Vue.js are powerful tools for building dynamic and interactive web applications.
Back-End Development Skills: Understanding server-side programming languages (e.g., Node.js, Python, Ruby , php) and databases (e.g., MySQL, MongoDB)
Web Hosting and Deployment Knowledge: Platforms like Heroku, Vercel , Netlify, or AWS can help simplify this process.
Basic DevOps and CI/CD Understanding
Soft Skills and Problem-Solving: Effective communication, teamwork, and problem-solving skills
Confidence in Yourself: Confidence is a powerful asset. Believe in your abilities, and don't be afraid to take on challenging projects. The more you trust yourself, the more you'll be able to tackle complex coding tasks and overcome obstacles with determination.
1K notes · View notes
Text
Post #83: Tumblr Opinion Poll by Python-Programming-Language, Question: Which programming resp. script language do you prefer?, 2023.
187 notes · View notes
codingcorgi · 8 months
Text
Does anyone else have dreams about coding? Like I figure out my real world coding problems in my sleep, it's weird.
105 notes · View notes
crackaddict55 · 1 year
Text
Keep studying
Tumblr media
251 notes · View notes
Text
Post #176: Opinion poll by Small Basic Programming on Tumblr, Question: Which object-oriented programming language do you prefer to program with?, 2023.
72 notes · View notes
izicodes · 1 year
Text
Programming Language Levels poster | Resources ✨
Tumblr media
I tried grouping some languages into high and low levelled programming languages! I talk more about what levels there are in computer languages in this post - [LINK]
Very hard to find some language's correct group because one source it's a low level and another says it was a high level but what I did was the one side that had the most sources on its side, I put the language in that group! Languages like Rust and C++ were being classed as 'mid-level' so I added a little heads-up at the bottom!
239 notes · View notes
koecode · 9 months
Text
Well well, hello guys.
I am making this Tumblr to have a track of my progress on programming, also to motivate myself and engage in the community.
Always accepting tips and tricks, if you find anything on my code that can be made in a different way please DM me!
50 notes · View notes
sivaniverse · 1 year
Text
System.out.println("help me");
82 notes · View notes
skull-shore · 10 months
Text
july internship 1, Java
after getting to know the language itself and giving myself an overall understanding of it, i started with my first task:
Let your program print out every number from 1-100. If the number is dividable by 3, the program has to print "Fizz" instead of the number. If it is dividable by 5, it has to print "Buzz". If both (dividable by 3 & 5) apply, it has to print "FizzBuzz".
(if i explain smth wrong or if you know easier ways to solve that task, please feel free to comment or text me! i'm more than open for help!)
Well that's how i did it:
first off i went and created an integer variable "num" with the value 100
i built a for loop starting from 0 on and told the program to keep going until it went up to 100 ("<=" means i want it to stop at exactly 100, "<" would end at 99)
inside of the for loop i put a few if statements in
the 1st if tests whether the current number is dividable by 3 and 5
here i put "if (i % 5 == 0 && i % 3 == 0)"... why?
-> "i" is the variable for the number that is "being tested" rn. We want to find out whether it is dividable by 5. For that we use "%".
This means, let's say i=2. How often does 2 fit into 5? 2 times. This results to 4 (2+2=4, another 2 won't fit into 5). now 5-4=1 soooo 2 % 5 == 1. 1 is the rest.
So , back to my code: to find out if "i" is dividable by 5, i%5 has to be equal to 0. If i%5 has any rest, it means that it is not dividable by 5. Same with 3 ofc.
The && here just means "and".
so.. long story short: IF "i" is dividable by 5 AND 3 print "FizzBuzz" (instead of "i") and go on to the next number. if it is not, go into the next if statement
the next "else if" statements say: if it is not dividable by 5 AND 3, is it dividable by 3/ 5 only? IF yes, print "Fizz"/ "Buzz" and keep going with the next number, else: go into else statement
the last else statement says: if you didnt apply to the first few if statements, just print "i"
.. well and that's about it:) programming this one was really fun and i enjoyed sound it so much ahh🩷🩷🖤
Tumblr media Tumblr media
36 notes · View notes
learnwithcadl123 · 3 months
Text
0 notes
flameb0lt · 4 months
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 !!!
14 notes · View notes
codingquill · 8 months
Text
Tumblr media
I'm currently learning React and I'm taking a 13-hour course. I can't keep this website to myself because it's truly amazing. It's perfect, it's free, and there are other courses out there with much less interaction and smoothness that make you pay a lot.
The website I'm talking about is Scrimba. I highly recommend it for anyone starting their front-end journey. I'm confident that no one will disagree with me on this.
Have a great day! <3
346 notes · View notes
devhubby · 10 months
Text
How to Connect a MySQL Database in Spring Boot?
Tumblr media
Read more at: https://elvanco.com/blog/how-to-connect-a-mysql-database-in-spring-boot
21 notes · View notes