Simple css styles are no longer enough when it comes to more complex projects.The linearity of the css is an obstacle compared to more complex structures, such as those provided for the compiled SCSS/SASS styles. To include custom scss in your project we can install sass-loader. The version of sass-loader needs to […]
Create an Audio Manager to handle scripted sounds in Unity

When adding sounds or music within a game, it is often useful to group their management within a single object, so that all the sounds pass through the same point and it is easier then to manage any particularities (such as often for example the volume). To do this, we […]
Angular upload form with Drag & Drop box

Any file upload form now wants its own drag & drop system, to be able to insert files by dragging them over the affected area.To do this with Angular we define a directive that manages the drop on a particular area of the page. Immediately after create the component that […]
Speech recognition: let’s talk about

Now with javascript you can do anything previously allowed only by heavy and complex desktop applications. A crazy example of one of these features is the ability of the browser to listen to us and understand what we are saying (with the due limits of the AI appointed for this […]
Making css hexagons

I like the hexagon – it’s my favorite geometric shape. Not trivial as a circle can be, but not minimalist as are the forms “poorest” of angles, such as squares or triangles. Symmetry reigns supreme with them. This article is dedicated to all those people who are tired of border-radius […]