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
skiptvads
Scrobble.life
2026-07-22 03:23
Promoted
[TV] For All Mankind (2019): No Sudden Moves - S05E06 - RECAP
Source I have been pushing on this one lately and now Im past half way of this season, its actually getting better and Episode 6 kept the same momentum as Episode 5 because the crisis on Mars finally has
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,
dazzler75
Photography Lovers
2026-07-21 13:44
Published via Ecency
Promoted
When everything changes
-71.07406, 45.00000
test
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
no-advice
LeoFinance
2026-07-24 08:53
Promoted
Orange Juice: Lyn Alden's Bold Vision for the Next Generation of Bitcoin Investing
"Cash flow is king, and you cannot count on governments to protect the value of your money." — Ricardo Salinas Every few years, a new idea emerges that has the potential to reshape how capital
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
idea-make-rich
Indiaunited
2026-07-17 22:12
Published via Ecency
Promoted
Siddhidatri.com :: Explore Handmade Indian Handicrafts
Namaste 🙏 My Friends, 3 years back startup annoncement blog 👉My coming Startup After a long gap it came to the ground and we recently launched Siddhidatri.com and the website is now live and enhancement
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