Complexidade é relativa à habilidade de cada um. Oferecer vários recursos aumenta ou diminui a complexidade de uma linguagem computacional? Ser flexível e expandir seus limites aumenta o poder de solução, mas aumenta a curva de aprendizagem. Você pode ter um carro veloz, mas nem por isso é obrigado a utilizá-lo na sua velocidade … Read More “CS: Complexidade de Linguagem” »
For Samsung Expert notebooks, you have an additional resource to refine the display configuration unleashing its power. After you’ve done all the configurations possible using the display dialog from Windows settings, try the following: Press the key combination of Fn + F1 to open the “Samsung Settings”. The F1 key has a gear icon on … Read More “HARDWARE: Samsung Expert Notebook: Display (Video) Setup” »
Motivation – Why Should I think about this? This article assumes that you have skill to work with Git. Its purpose is not a Git’s tutorial but a direction for an another usage for versioning control. Every developer uses to customize the workspaces of Eclipse, VSCode, etc. As much as you work, more customized it … Read More “GIT: Using Git to Sync Workspaces for VSCode, Eclipse or Whatever” »
Sessions make possible to reopen a group of tab with preselected URLs. Very useful to keep your work context. During a research, you may switch research contexts. There are at least two ways of preserving sessions on Google Chrome. Using Bookmarks When you save a bookmark (Ctrl + D), you may save it into a … Read More “BROWSER: Using Session With Google Chrome” »
>PROBLEM You’ve made a pull and you got conflicts. >SOLUTION An easy alternative without having to merge files. Take note of those files that has conflict issues. Move the conflicting files to a temporary folder. Commit again. git commit -am “solving merge conflicts preserving mine” Reset the state to the previous one, before the pull … Read More “GIT: Solving conflicts preserving my files – An easy way without merging” »
NOTE This post collects some useful tips and has no intention to presume all interesting things that Firefox may offer. If you have any contribution, please let your comment below. #KEEP YOUR SESSIONS SAVED — BROWSER WORKSPACE When working, sometimes you wish to preserve a group of tabs that make possible to switch among … Read More “BROWSER: Firefox Tips” »
Back to index Next > #TUTORIAL STEPS This tutorial is divided into steps. Each step has its own branch. For instance, Step One is found at features/step01. The master has the final version, containing all steps together. #DOWNLOAD git clone https://github.com/alsdias/it4us_angular_10_bootstrap.git github #USING GitHub Go to github and downlod the zip or use git … Read More “ANGULAR: Step Zero – How does this tutorial work?” »
Back to index <Previous Next > Code download IMPORTANT NOTE The procedures described here details how the application was created. Follow them if you have created your application from scratch, otherwise it is not necessary since it is already done. In both cases, the procedures are useful to understand the details. #DOWNLOAD Download the … Read More “ANGULAR 10: Step Two – Angular 10/Bootstrap Modules and View Setup” »
Back to index <Previous Next > Code download Usually, the tutorials show how to install angular/cli globally. It happens that sometimes our environment has already a previous installation different from the new one we desire to use for a new project. For instance, suppose that you’re working using the latest versions but you need to … Read More “ANGULAR 10: Step One B – Creating A Local Installation To Preserve Current Environment” »
Back to index <Previous Next > Code download #ALTERNATIVE INSTALLATION METHODS There are at least two alternatives to install a project: the detailed, from scratch the fast using “npm install” The former is a good alternative to create your own project. The latter installs the project from its own configuration defined by the package.json file, … Read More “ANGULAR 10: Step One – Angular 10 + Bootstrap Setup” »