Modern web frameworks take one group of related concepts and split it across multiple places throughout your codebase. Laravel provides a very clear structure with large variety of tools to make the development easier and faster. Along with the huge community it makes Laravel a great option for most starting projects.
Read
Choose your favorite categories and topics. You will find extremely useful content over the site.
Comment
Communicate with authors and users. Provide them your feedback and collaborate with the community.
Rate
Authors will be happy to receive your positive vote on articles you found helpful and enjoyed reading.
Building dedicated Community available to everyone
The platform is actively managed thanks to the contribution of all members. Interesting posts will receive positive votes and will be actively commented on. And the not so interesting posts will go unnoticed.
Be part of our community! Contribute to open source and knowledge sharing.
Create AccountBlog
Popular posts form our Blog

DIY - Universal RC Joystick
Controlling devices over a distance opens lots of possibilities. Our Arduino roadmap contains many projects that must be controlled remotely and sometimes on a long-distance. Of course, it can be done with a PC but our experience has shown that it becomes complicated when you need long way, portable and rapid communications. Our solution was designing a multi-functional remote controller, we have called it AirControl. Aware of the needs it will have 4 push buttons, 2 switch buttons, 2 potentiometers and two analog modules. Additionally, each analog joystick module has integrated push button.

Universally unique identifiers: UUID vs ULID
Historically a lot of software has used incrementing numbers to represent the identifier of a particular piece of data. They can be auto-generated by many data stores, they are easy to read, efficient to store and naturally time ordered.
As time passes, applications become larger. They need more resources and usually distributed in different places. That may cause some errors generating concurrent numbers and coordination issues. Incremental numbers can also be the source of security problems and they may include implicit information about datasets volume. Modern software architectures also trend to decouple infrastructure layer and move ID generation logic to the domain core.