Login
Discover
Waves
Communities
Login
Signup
albro
@albro
63
I'm albro and here I want to talk about programming issues and the path I've taken.
Followers
658
Following
87
Follow
Email digest
Resource Credits
Available
Used
Created
2023-02-01 05:36
RSS Feed
Subscribe
Posts
Blog
Posts
Comments
Communities
Wallet
albro
Programming & Dev
3y
Arithmetic Operators And Tricks In JavaScript By albro
In this episode I'm going to talk about computing operators and tricks and some challenges we face, so stay tuned!
$ 11.722
423
4
3
albro
Programming & Dev
3y
Writing Clean Code By albro
When we talk about clean code, we mean the same stress points, but when we talk about clean architecture, we mean how to structure your projects, "where" to write the code and how to "structure" it (for
$ 18.401
264
3
4
albro
Programming & Dev
3y
Comments and Variables in JavaScript By albro
Comments are actually lines in the source code that are not executed. These lines are used for different purposes, which I will mention the most important uses: Code explanation: Sometimes developers solve
albro
Programming & Dev
3y
Javascript Syntax By albro
Have you ever come across the word Syntax? This word is a very important word; Both in terms of the meaning of the word itself and in terms of its practical meaning. According to the Oxford dictionary,
albro
Programming & Dev
3y
Statements and Engine in JavaScript By albro
A computer program is a list of "instructions" to be executed by the computer. Now, in programming languages, these instructions are called statement, and accordingly, a JavaScript program is a list of
albro
Programming & Dev
3y
Javascript Introduction By albro
JavaScript is the web programming language and to complement HTML, of course, on the client side! Do you know what the client side is? We have two very important parts in the world of web developers. The
albro
Programming & Dev
3y
Kill The Hive Game By albro
This is the first game I want to make. I named this game "kill the hive". In this game, hives appear on the screen that we have to destroy by clicking the mouse. The level of this game is simple. I'll
albro
Programming & Dev
3y
Animated Hive Program By albro
The game would be very boring without animations. Animated images are the result of drawing different images one after the other on the screen. Suppose the window below is 6 pixels wide and 1 pixel high.
albro
Programming & Dev
3y
Change image with mouse & keyboard in Pygame By albro
In this part, I'll talk about images and sounds and tell how I use them in the program. I'll also tell you how to move the image with the mouse and zoom it in and out. I do all this with pygame methods.
albro
Programming & Dev
3y
Working With Texts In Pygame By albro
Texts are an important part of games because they're used to communicate with the player. In this part, I'll talk about the texts and the way of using fonts in game development with Pygame. Working with
albro
Programming & Dev
3y
Collision Detection In Pygame By albro
In this section, we want to work a little more with rectangles and move them with the mouse and keyboard, and learn more about the Rect object. Working with rectangles A rectangle is a very useful object
albro
Programming & Dev
3y
Draw Shapes With The Mouse In Pygame By albro
When we press the mouse buttons, events such as MOUSEBUTTONDOWN and MOUSEBUTTONUP are generated. First of all, let's detect these events in our game loop and print a message on the console if they exist!
albro
Programming & Dev
3y
Draw Shapes in Pygame By albro
Today I'm looking to work with simple shapes in the Pygame. Before starting the game, I want to talk about drawing simple shapes such as line, circle, oval, square or rectangle, etc. Draw a Line The first
albro
Programming & Dev
3y
Pixel Coordinates and Pygame Objects By albro
In this section, I want to talk about the most basic concepts of making games with pygame, namely pixel coordinates, various pygame objects. Coordinates in games The coordinate system is basically used
albro
Programming & Dev
3y
Colors in Python Game Programming By albro
There are three main colors in light: Red, Green and Blue. If we first put the names of these three colors together, we will have the word RGB. Red, Blue and Yellow are the three main colors, but the monitor
albro
Programming & Dev
3y
Start Python Game Programming By albro
This section is for those who are familiar with Python programming and are interested in expanding their knowledge in game development. We will start with the basics of making games with pygame, which
albro
Programming & Dev
3y
Python String Formatting and Tricks By albro
In different projects, we need to combine variables and text strings. With the help of string formatting in Python, we can create a regular structure to print the variable between the text string. These
albro
Programming & Dev
3y
Python Iterators and Tricks By albro
Iterators have many uses in programming languages. Programmers frequently use iterators when using ready-made data structures. In simpler words, with iterators, we can traverse a list, array, or other
albro
Programming & Dev
3y
Python Package and Tricks By albro
A package in Python is a collection of modules! When we put several modules in a folder, we say that we have made a package in Python. This is done for better code management and organization. In this
albro
Programming & Dev
3y
Python Inheritance and Tricks By albro
With the help of inheritance in Python, we can inherit the properties and behaviors of a class from a higher class. For example, the cat class inherits from the animal class so that we don't have to redefine
← Latest
Older →