Posts

Showing posts from 2020

SOFTWARE TOOL - GIT KRAKEN

It is a powerful and elegant multiplatform graphical interface for Git developed by  Axosoft , as an alternative to the command line. In a very simple way, we can keep a complete track of our repositories, see branches, tags, create new, all the history of our work, commits and so on. Something very interesting about GitKraken, beyond the visual, is that it is multiplatform. It is currently available for Windows, Linux, and Mac. Among its most relevant features are the following: • Built-in fusion tool. • Integrates with a user’s GitHub or Bitbucket account, GitLab. • Supports undo and redo functions with one click Keyboard shortcuts. • It allows managing several profiles at the same time. • Tree with the history of highly functional commits, being able to manage your branches and commits directly on it to have a visual form of the changes you are making. • It has a simple, intuitive and customizable interface, with two themes to choose from Light and Dark. With regard to the...

LARAVEL BASIC

Laravel is a web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things. 1. Laravel aims to make the development process a pleasing one for the developer without sacrificing application functionality. Happy developers make the best code. To this end, we've attempted to combine the very best of what we have seen in other web frameworks, including frameworks implemented in other languages, such as Ruby on Rails, ASP.NET MVC, and Sinatra. 2. MVC (Model View Controller) -  MVC is a software architecture pattern and it stands for Model View Controller.  It represents architecture developers adopt when building applications. With the MVC architecture, we look at the application structure with regards to how the data flow of our application works.  MVC is a software architecture  that separates domain/application/business…logic from the rest of the user interface. It does this by...