Login
Discover
Waves
Communities
Login
Signup
Topics
#quantumdeveloper
Global
Trending
Hot
New
Top
#quantumdeveloper
New
Top communities
Create your community
latest #quantumdeveloper created topics | Ecency
quantumdeveloper
utopian-io
2019-07-26 19:18
Snake3D: Released Version 1.1 containing an upgrade of the GUI.
Repository New Features The menu GUI now contains several buttons which can be pressed with the mouse: The buttons are triggered using the java MouseListener which I added here. The buttons simply consist
$ 13.271
39
9
1
quantumdeveloper
utopian-io
2019-07-21 11:28
Snake3D: Released Version 1.0 containing more features and bug fixes. [Repost]
Snake3D 1.0 released github: Bug Fixes 1. Issue At certain angles one of the 3 faces of the cube disappeared like this: In the graphics part I sort the areas and take the 3 areas closest to the screen(which
$ 15.141
28
6
1
quantumdeveloper
utopian-io
2019-07-12 20:38
Snake3D: Released Version 1.0 containing more features and bug fixes.
Snake3D 1.0 released github: Bug Fixes 1. Issue At certain angles one of the 3 faces of the cube disappeared like this: In the graphics part I sort the areas and take the 3 areas closest to the screen(which
quantumdeveloper
utopian-io
2019-07-11 00:13
Snake3D: A new, probably harder way to play snake.
Repository New Project What is the project about? Snake3D is a game inspired by snake. The game logic is mostly the same as in snake: The snake dies if it hits itself. The snake can eat colorful tiles
gonzalo.ggar
Visual Shots
2026-07-26 22:56
Published via Ecency
Promoted
Un hombre y su camino.
"Un hombre y su camino" El hombre se llamaba Darío. No era un viajero, ni un aventurero. Era un albañil de 52 años que, durante toda su vida, había mirado esa carretera desde la distancia. La
quantumdeveloper
programming
2019-07-04 21:59
Learning Programming #3.0 Using Java: The standard library
Now that you know all the specialties of java it is time to do some actual programming. Java provides a pretty advanced standard library compared to other languages. That allows you to easily access useful
quantumdeveloper
programming
2019-07-02 21:47
Learning Programming #2.6 Learning Java: Some (perhaps useful) constructs
In java there are a few constructs that make it easier for you to create and simplify some things, but they will also make it harder for you to read other peoples code if you don't know them. a = b = c;
quantumdeveloper
programming
2019-07-01 11:42
Learning Programming #2.5 Learning Java: Some important keywords
Java has a lot of keywords that you can add to your functions and variables. These can be useful to make the code more readable, but also to better control what is and what can be done with certain variables.
quantumdeveloper
programming
2019-06-23 14:29
Learning Programming #2.4 Learning Java: Multithreadding
The processor of your computer should have something like 4 cores. Those 4 different cores are able to work parallel. So when you have a task that can be divided into smaller independent packages of work,
forykw
hpud
2026-07-26 06:20
Promoted
PowerUp 💪 August 2026 - HTF 🚀 lets go!
(this is the #52 giveaway enabled post - check the giveaway details below) This 💓 post has a 💎 GIVEAWAY
quantumdeveloper
programming
2019-06-20 10:20
Learning Programming #2.3 Learning Java: Object Orientation
Now that you know about Exceptions and Errors the real programming can start. Java is an object orientated programming language. That means you can use and create objects of any kind. Objects in programming
quantumdeveloper
programming
2019-06-02 08:29
Learning Programming #2.2 Learning Java: Exceptions
Besides compiler errors which your learned about in my last post there are other 'errors' in java called exceptions. Exceptions are "thrown" every time your program tries do to something that
quantumdeveloper
programming
2019-05-21 18:21
Learning Programming #2.1 Learning Java: The Compiler
Like in most programming languages there is a compiler that translates your codes into something that can be executed by your computer. In some cases the compiler also optimizes your program and checks
quantumdeveloper
programming
2019-05-13 15:06
Learning Programming #2.0 Learning Java: Syntax
The java syntax may seem hard for beginners, but it can be learned using some simple rules. In my last post you learned about lists which are sometimes useful in programming. There are a few that allow
koenau
TravelFeed
2026-07-24 16:35
Promoted
Germanys Hearst Castle: A Dream of Stone and Concrete
A hundred years ago, the architect Bernhard Sehring, originally from a village named Edderitz in Mid-Germany, built his
quantumdeveloper
programming
2019-05-10 12:50
Learning Programming #1.6 The Basics: Lists
Lists are a way of storing variables. Lists can behave similar to an array, but can vary in size. In my last posts you learned about arrays which are a foundation to the most common lists. Lists are themselves
quantumdeveloper
programming
2019-05-09 08:36
Learning Programming #1.5 The Basics: Arrays
Arrays are important constructs in programming, as they allow easy access and storage of multiple(ranging from 0 to whatever number your memory can handle) variables of the same type. In my last post you
quantumdeveloper
programming
2019-05-06 16:34
Learning Programming #1.4 The Basics: Functions
Functions are not really necessary in programming, but they are a great way of making your code more readable for humans which is very important because you want to be able to understand your own code
quantumdeveloper
contest
2019-05-03 13:46
Programming Contest #1: Integer Factorization | This contest gives a free participation reward!
I decided to make the one thing that is really missing here on steemit: programming contests! Don't be discouraged by the amount of text below. Most of them are just further explanations or minor things
gonzalo.ggar
YAF - Young Art Fair
2026-07-28 04:31
Published via Ecency
Promoted
Cosmic Pollination
"Cosmic Pollination" 2022 Visual description A pictorial work of abstract and naïve style, dominated by an explosion of vibrant colors: turquoise, magenta pink, pure white and deep black. In
quantumdeveloper
programming
2019-05-02 19:00
Learning Programming #1.3 The Basics: Conditions and Loops
In my last posts you learned what variables are and what simple operations you can do with them. In this post you will learn about the other important elements of programming which are important for any
quantumdeveloper
coding
2019-04-29 14:16
Learning Programming #1.1 The Basics: Variables
In #1 I'm going to explain the basic knowledge you will need to start programming. This knowledge is usually language independent, but there may be some differences. I will only describe things that are