Posts by Flávio Jardim • 254 points
7 posts
-
2
votes1
answer1151
viewsA: What is English variable in English?
This is a warning to help you with two common mistakes: Spelling errors in variables A variable not being used Therefore, in your specific case, that warning says that in the file trab1.pl, on the…
-
1
votes1
answer366
viewsA: open a view in a new tab
You have to add the attribute target tag anchor <a> and assign the value of the attribute as _blank to open in a new aba. It would be something like: <a target="_blank"…
-
0
votes1
answer177
viewsA: CSS to SASS convert or not?
It is a little relative and will generate many contradictory opinions, not least because one of the positive appellations on the SASS is that you don’t need to convert CSS in SASS, since the SASS is…
-
0
votes2
answers537
viewsA: Permission denied on Firebase
I believe that the rules of the Firebase are defined as read / write = false, so you can’t develop. To fix that, just access the rules in Firebase Console > Realtime Database and changes the…
-
0
votes1
answer86
viewsA: create variable with @for in scss
A suggestion would be, instead of generating variable names using interpolation, you could create a list and use the method nth to obtain the values. Code example: $cor1: rgb(255,255,255); // branco…
-
0
votes1
answer289
viewsA: SASS: Updating the css file in different folders?
sass --watch input: output that is to say: sass --watch scss:css If you are using SASS only, a suggestion would be to specify the output path when compiling: sass file.scss ../path/to/file.css…
sassanswered Flávio Jardim 254 -
1
votes1
answer207
viewsA: WCF Bytaarray Return Method gives error
The error may be in the part where you are initializing the company data. Alternatively, I suggest you compare your code with the following, because this way it works: public void…