Posts by Lucas Guima • 143 points
3 posts
-
3
votes1
answer533
viewsA: Laravel - can you just backend first?
Yes, it is possible. You can apply the approach known as "API First", where you start planning the API (Application Programming Interface) before any development, so much back end, how much front…
-
3
votes2
answers542
viewsA: Move div while hovering
This effect is produced by the plugin Directionawarehovereffect. How to use: $('#da-thumbs > li').hoverdir(); // ou com opções $('#da-thumbs > li').hoverdir({hoverDelay: 75, hoverElem:…
-
2
votes1
answer45
viewsA: Why does "git checkout ." not change the node_module packages I entered by npm?
By convention, the folder node_modules/ is ignored in the versioning of some projects, so it is not affected by the commands of Git. You can check in the file .gitignore, the path of this folder…