Evgenii Legotckoi
Evgenii LegotckoiJuly 14, 2016, 5 a.m.

QMLGame on QML - Lesson 2. Adding traces of shots and points system

GameDev, QML, Qt, система очков

After the game arena and targets were made and added, it is time to implement the targets hit, misses and charging system and cheating points.

Scoring system will be as follows:

  • In the case of near misses, I propose to …
Read
Evgenii Legotckoi
Evgenii LegotckoiJuly 10, 2016, 3:03 a.m.

RubyUser Guide #22 - Ruby - Local variables

local variables, Ruby, ruby lesson, ruby уроки, user guide, локальные переменные, руководство пользователя

A local variable has a name starting with a lower case letter or an underscore character (_). Local variables do not, like globals and instance variables, have the value nil before initialization:

ruby> $foo
   nil
ruby> @foo
   nil
ruby> foo …
Read
Evgenii Legotckoi
Evgenii LegotckoiJuly 10, 2016, 3:01 a.m.

RubyUser Guide #21 - Ruby - Instance variables

Instance variables, Ruby, ruby lesson, ruby уроки, user guide, переменные класса, руководство пользователя

An instance variable has a name beginning with @, and its scope is confined to whatever object self refers to. Two different objects, even if they belong to the same class, are allowed to have different values for their instance …

Read
Evgenii Legotckoi
Evgenii LegotckoiJuly 2, 2016, 10:13 a.m.

QtQt/C++ - Lesson 052. Customization Qt Audio player in the style of AIMP

QSS, QStyleSheet, AIMP, кастомизация, Qt, аудио, аудио плеер

Articles in this series:

The article on the audio player in Qt we learned how to play the audio tracks and switch between them in the playlist.

How about to customize the look of the …

Read
Evgenii Legotckoi
Evgenii LegotckoiJune 30, 2016, 12:53 p.m.

QMLQML - Lesson 026. Intents with Qt for Android, part 1

QML, Qt, Android, Intent

The “ intent ” is the main facility for interprocess communication on Android. Basically, an intent is an object that is processed by the operating system and then passed to one or more of the installed applications based on its …

Read
Evgenii Legotckoi
Evgenii LegotckoiJune 29, 2016, 9:06 a.m.

QtQt/C++ - Lesson 051. QMediaPlayer – simple audio player

QStandardItemModel, QMediaPlayer, QMediaPlaylist, Qt, аудио плеер

I suggest to write a simple audio player for mp3 files using Qt/C++, which will have a playlist, the ability to start / pause / stop tracks, as well as scroll through the tracks.

For the implementation of this ideas …

Read
Evgenii Legotckoi
Evgenii LegotckoiJune 29, 2016, 2:59 a.m.

RubyUser Guide #20 - Ruby - global variables

global variables, Ruby, ruby lesson, ruby уроки, user guide, глобальные переменные, руководство пользователя

A global variable has a name beginning with $. It can be referred to from anywhere in a program. Before initialization, a global variable has the special value nil.

ruby> $foo
   nil
ruby> $foo = 5
   5
ruby> $foo
   5 …
Read
Evgenii Legotckoi
Evgenii LegotckoiJune 29, 2016, 2:57 a.m.

RubyUser Guide #19 - Ruby - variables

Ruby, ruby lesson, ruby уроки, user guide, variables, переменные, руководство пользователя

Ruby has three kinds of variables, one kind of constant and exactly two pseudo-variables. The variables and the constants have no type. While untyped variables have some drawbacks, they have many more advantages and fit well with ruby's quick and …

Read
Evgenii Legotckoi
Evgenii LegotckoiJune 29, 2016, 2:51 a.m.

RubyUser Guide #18 - Ruby - procedure objects

procedure objects, Ruby, ruby lesson, ruby уроки, user guide, процедурные объекты, руководство пользователя

It is often desirable to be able to specify responses to unexpected events. As it turns out, this is most easily done if we can pass blocks of code as arguments to other methods, which means we want to be …

Read
Evgenii Legotckoi
Evgenii LegotckoiJune 28, 2016, 3:34 a.m.

QtQt Certification

Qt, QML, Certification, Сертификация

Since 2009 it has been possible to pass the Qt certification exam and become a Certified Qt Developer or Qt Specialist. The exams and certifications have now been updated to cover the latest Qt features. In order to support quality …

Read
Evgenii Legotckoi
Evgenii LegotckoiJune 28, 2016, 2:49 a.m.

RubyUser Guide #17 - Ruby - modules

modules, Ruby, ruby lesson, ruby уроки, user guide, модули, руководство пользователя

Modules in ruby are similar to classes, except:

  • A module can have no instances.
  • A module can have no subclasses.
  • A module is defined by module ... end

Actually... the Module class of module is the superclass of the Class …

Read
Evgenii Legotckoi
Evgenii LegotckoiJune 27, 2016, 2:47 a.m.

RubyUser Guide #16 - Ruby - Singleton methods

method, Ruby, ruby lesson, ruby уроки, singleton, user guide, руководство пользователя

The behavior of an instance is determined by its class, but there may be times we know that a particular instance should have special behavior. In most languages, we must go to the trouble of defining another class, which would …

Read
AD

C ++ - Test 004. Pointers, Arrays and Loops

  • Result:50points,
  • Rating points-4
m

C ++ - Test 004. Pointers, Arrays and Loops

  • Result:80points,
  • Rating points4
m

C ++ - Test 004. Pointers, Arrays and Loops

  • Result:20points,
  • Rating points-10
Last comments
ИМ
Игорь МаксимовNov. 22, 2024, 11:51 a.m.
Django - Tutorial 017. Customize the login page to Django Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
Evgenii Legotckoi
Evgenii LegotckoiOct. 31, 2024, 2:37 p.m.
Django - Lesson 064. How to write a Python Markdown extension Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup
A
ALO1ZEOct. 19, 2024, 8:19 a.m.
Fb3 file reader on Qt Creator Подскажите как это запустить? Я не шарю в программировании и кодинге. Скачал и установаил Qt, но куча ошибок выдается и не запустить. А очень надо fb3 переконвертировать в html
ИМ
Игорь МаксимовOct. 5, 2024, 7:51 a.m.
Django - Lesson 064. How to write a Python Markdown extension Приветствую Евгений! У меня вопрос. Можно ли вставлять свои классы в разметку редактора markdown? Допустим имея стандартную разметку: <ul> <li></li> <li></l…
d
dblas5July 5, 2024, 11:02 a.m.
QML - Lesson 016. SQLite database and the working with it in QML Qt Здравствуйте, возникает такая проблема (я новичок): ApplicationWindow неизвестный элемент. (М300) для TextField и Button аналогично. Могу предположить, что из-за более новой верси…
Now discuss on the forum
m
moogoNov. 22, 2024, 7:17 a.m.
Mosquito Spray System Effective Mosquito Systems for Backyard | Eco-Friendly Misting Control Device & Repellent Spray - Moogo ; Upgrade your backyard with our mosquito-repellent device! Our misters conce…
Evgenii Legotckoi
Evgenii LegotckoiJune 24, 2024, 3:11 p.m.
добавить qlineseries в функции Я тут. Работы оень много. Отправил его в бан.
t
tonypeachey1Nov. 15, 2024, 6:04 a.m.
google domain [url=https://google.com/]domain[/url] domain [http://www.example.com link title]
NSProject
NSProjectJune 4, 2022, 3:49 a.m.
Всё ещё разбираюсь с кешем. В следствии прочтения данной статьи. Я принял для себя решение сделать кеширование свойств менеджера модели LikeDislike. И так как установка evileg_core для меня не была возможна, ибо он писался…

Follow us in social networks