Posts by Thiago Piacentini • 51 points
6 posts
-
0
votes2
answers58
viewsA: HTML in Visual Studio Code
If I understand correctly, you want to use a command that at each line it will insert a tag opening at the beginning of the paragraph and the tag closing at the end. I don’t know. But imagining that…
-
0
votes1
answer17
viewsA: Angular Error when changing status, communication between Components via service
researching found two solutions. one would pass the line below inside the constructor option 1 constructor(private msgErrorService: MsgErrorService) {…
angularanswered Thiago Piacentini 51 -
0
votes1
answer17
viewsQ: Angular Error when changing status, communication between Components via service
can help me: Error: Expressionchangedafterhasbeencheckederror: Expression has changed after it was checked. Previous value for 'attr.Aria-describedby': 'msg-default'. Current value? 'id-0' I am…
angularasked Thiago Piacentini 51 -
-1
votes1
answer325
viewsQ: Ignore accent when using search menu (input)
I created a input search and a list (side menu) below, when I do the search is ok, but I’m in trouble when any <li> has voice with accentuation. How could I implement a regular expression to…
-
3
votes1
answer64
viewsQ: Help! How this select works
Help me understand how this works please. I happen to be starting the studies in SQL and hackerhank has an exercise that needed this code: SELECT DISTINCT CITY FROM STATION WHERE…
-
1
votes6
answers7088
viewsA: Intersection between two sets (element that is in set A and B at the same time)
This is a way to do using 1 for and 1 if only. def intersecao(lista1, lista2): lista3 = [] for n in lista1: if n in lista2: lista3.append(n) return lista3 # n percorre lista1 # if valida se n esta…