Posts by M.F • 163 points
7 posts
-
1
votes1
answer8
viewsQ: Vscode how to set the closed Open Editors tab by default
Td time I open a new program on VSCode he comes with this 'guide' Open Editors open by default, it looks just a detail, but it’s mto bad qd forget to close right at the beginning and qd I’ll see…
visual-studio-codeasked M.F 163 -
2
votes1
answer35
viewsA: How do I make a series of numbers (3-in-3). Using for x in range?
EDITED XF = input("Informe um valor inteiro e positivo:") if XF.isdigit(): var = int(XF) if var >= 0: for x in range(0, var, 3): # x disponível aqui else: print('Valor deve ser um número…
-
2
votes1
answer22
viewsQ: Pylint on Vscode
I’m starting to use the VSCode to work with Python, and would like to set up the Pylint to highlight|warnings errors while typing (such as PyCharm makes), by default lints are only 'executed' in…
-
1
votes1
answer39
viewsQ: How to hide personal data on the front end
When we want to hide some personal data in the back end we use the file .env, and then retrieves this information using process.env.[KEY_NAME], but that only works in the back end because as the…
-
3
votes1
answer44
viewsQ: What is the CSS selector to change a particular parent class only if it has a certain daughter class
I have the following structure in HTML: <div class="panel"> ... </div> <div class="panel"> <div class="controls"> ... </div> </div> The class panel has some…
-
1
votes0
answers40
viewsQ: 'Cause I’m getting Undefined as a response qd call the function for the second time
Pq this function is only getting the right return once? data() { return { remaining: 8, doorsAmount: 10, ... openedDoors: [], }; }, methods: { openDoors() { if (this.remaining > 0) { let number =…
-
2
votes1
answer34
viewsQ: Recover a component generated by a for loop in Vuejs
I’m starting in Vuejs and have no idea how I can recover an element (if it were in pure JS would only store in a const and dp call by id), I’m trying to make a game Monty Hall, and what I want to do…