Posts by Caique Andrade • 157 points
7 posts
-
0
votes4
answers4316
viewsA: How to import a csv file to Mysql?
Come on, you need to store these values in a table. Your mistake is to want to store them in a Database or Database. The Database serves to store the tables, after you have created your database…
-
0
votes2
answers4251
viewsA: How to make a percentage calculation on Oracle?
As our friend Manieiro said, it’s pure mathematics. Just multiply the percentage by value. Example: calculate 30% of 700. Just multiply the fraction 30/100 by 700. Now in PL/SQL I have the column…
-
2
votes2
answers482
viewsA: What would be the "identity" of an object?
So I’m going to be very brief and summarize. Both Object and Variable have identities. What is an identifier ? Each variable has an identifier, which is a name given to her and so, every time we…
-
0
votes1
answer57
viewsA: Github Collaborators deleting Branchs
Friend, 1. **In your repository you go to `Settings->branches`** 2. **In the menu on the left goes to:** 3. **Near "Branch Protection Rules", click on "add Rule":** 4. **Under "Branch name…
-
0
votes8
answers29160
viewsA: Duplicate visual line studio
Friend the function to copy a line up or down is: shift + alt + down or shift + alt + up List all vscode shortcuts: Windows/Linux: Ctrl + k Ctrl + s…
visual-studio-2015answered Caique Andrade 157 -
2
votes5
answers13505
viewsA: Difference between Object and Instance
Imagine that classes are like the plan of a house, and it defines the shape of the house on paper, the house doesn’t exist yet, but we already have the structure to create a house. An Object is the…
-
-1
votes2
answers152
viewsA: How can "Transition" in CSS not occur when the page is updated?
To work in the mentioned browsers. div{ background-color: red; width: 200px; height: 200px; webkit-transition: background-color 2s; /* Para Google Chrome anterior a 26.0 e para Safari 3.0 ~ 6.0*/…