Evgenii Legotckoi
Evgenii LegotckoiJuly 31, 2018, 2:56 a.m.

Open source EVILEG

There was probably something that many users of the resource EVILEG would like to see among Web developers.

It was decided to open the sources of EVILEG, especially since I repeatedly received requests to show the source of the resource and even suggestions for the feasible improvement of the site code.

Thus, weighed all the pros and cons, I decided that sending the source code to EVILEG in Open Source is not such a bad idea.


View details

And now about the details of the fly oil spoons, which are covered here.

There will be no barrel of honey, at least from the very beginning. The fact is that simply taking and putting the source code to open access will not be the best idea, at least because I'm currently working on development alone and whether there is not a lot of holes that could be made that will be much easier to find if you look at the code. Maybe I'm wrong in this situation? But it seems to me that it's better not to show all the skeletons in the closet.

At the same time, it is planned to deduce a significant part of the sources as independent and self-sufficient modules. There is already a lot of code written and it's time to put it in order in some places. Make it more unified and so that you can just take and connect to another project. That is, go along the path of a real "reusable app" , as suggested by Django Way .

All the sources will be posted on GitHub under the LGPLv3 license.

Since the site takes the direction of the formation of a small social network for programmers, it will accordingly be reflected in the project name, namely the EVILEG Social Network Framework (ESNF).

I hope that I will be able to make the development kit, and not a bunch of hard-to-pack apps, because writing libraries is a completely different level of professionalism.

At the moment, the following modules are under development:

Planned in the near future modules

Also, other parts of the project will be displayed from under the closed part in Open Source, but so far with the fact that the planned work will last for a long time.

Distribution

There will be two ways of distribution

  • As Git-repositories on GitHub, which were listed above
  • As packages that can be installed via the pip utility

Accepting Commits

While I'm not sure how the commit will be made, but I plan to add the Contributor License Agreement (CLA) - in order not to bind myself as the main and so far the only mainteiner in some moments with licensing issues.

Probably I will peek these moments with CLA from Qt Company.

In a pinch, I'll just leave everything under LGPLv3 and let it all live for the benefit of the community.

Will anything come of this?

Perhaps all of the above said too loud statements, for someone else's opinion, but as if he wrote from scratch at his leisure what you are seeing right now. Yes, and for three years of supporting the resource has not lost interest.

So, I think that some of this will still work out.

Therefore, I propose to join in the future, when the first stable versions appear, to this theater for the development of a small framework.

I will keep in touch with the news. But for you to be always aware of this news, subscribe to the relevant section of the EVILEG articles , as it will be more about the development of the EVILEG website, though with the use of Django, but nevertheless further articles about the promotion of the works will be published there.

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

Comments

Only authorized users can post comments.
Please, Log in or Sign up
MB

Qt - Test 001. Signals and slots

  • Result:57points,
  • Rating points-2
MB

C++ - Test 001. The first program and data types

  • Result:60points,
  • Rating points-1
GK

C++ - Test 005. Structures and Classes

  • Result:0points,
  • Rating points-10
Last comments
J
JonnyJoJune 8, 2023, 12:14 p.m.
Qt/C++ - Lesson 019. How to paint triangle in Qt5. Positioning shapes in QGraphicsScene Евгений, здравствуйте! Решил поэкспериментировать немного с кодом из этого урока, нарисовать вместо треугольника квадрат и разобраться с координатами. В итоге, запутался. И ни документация,…
J
JonnyJoMay 25, 2023, 2:24 p.m.
How to make game using Qt - Lesson 2. Animation game hero (2D) Евгений, благодарю!
Evgenii Legotckoi
Evgenii LegotckoiMay 25, 2023, 4:49 a.m.
How to make game using Qt - Lesson 2. Animation game hero (2D) Код на строчка 184-198 вызывает перерисовку области на каждый 4-й такт счётчика. По той логике не нужно перерисовывать объект постоянно, достаточно реже, чем выполняется игровой слот. А слот вып…
J
JonnyJoMay 21, 2023, 10:49 a.m.
How to make game using Qt - Lesson 2. Animation game hero (2D) Евгений, благодарю! Всё равно не совсем понимаю :( Если муха двигает ножками только при нажатии клавиш перемещение, то что, собственно, делает код со строк 184-198 в triangle.cpp? В этих строчка…
Evgenii Legotckoi
Evgenii LegotckoiMay 21, 2023, 5:57 a.m.
How to make game using Qt - Lesson 2. Animation game hero (2D) Добрый день. slotGameTimer срабатывает по таймеру и при каждой сработке countForSteps увеличивается на 1, это не зависит от нажатия клавиш, нажатая клавиша лишь определяет положение ножек, котор…
Now discuss on the forum
T
TwangerJune 7, 2023, 11:12 a.m.
Ошибка при выполнении триггерной функции (GreenPlum) Есть 3 таблицы fact_amount со структурой: CREATE TABLE fact_amount ( id serial4 NOT NULL, fdate date NULL, type_activity_id int4 NULL, status_id int4 NULL, CONSTRAINT fact…
AR
Alexander RyabikovJune 6, 2023, 1:35 p.m.
Работа с QFileSystemModel Вопросик по теме QFileSystemModel в Linux. Он, как и положено, обновляется самостоятельно, если директория локальная. Но, вот, сетевая папка (у меня шара samba) не обновляется. Как её можно…
Evgenii Legotckoi
Evgenii LegotckoiApril 16, 2023, 4:07 a.m.
Мобильное приложение на C++Qt и бэкенд к нему на Django Rest Framework Да, это возможно. Но подобные вещи лучше запускать через celery. То есть drf принимает команду, и после этого регистрирует задачу в celery, котроый уже асинхронно всё это выполняет. В противном …
АБ
Алексей БобровDec. 14, 2021, 7:03 p.m.
Sorting the added QML elements in the ListModel I am writing an alarm clock in QML, I am required to sort the alarms in ascending order (depending on the date or time (if there are several alarms on the same day). I've done the sorting …

Follow us in social networks