Posts by Hiago Machado • 184 points
13 posts
-
3
votes1
answer108
viewsQ: Problems with accentuation in Neo4j
How can I, for example, search for us that contains an attribute with the value of 'Jose' and return the nodes that have this attribute with the value of 'Joseph', or 'Josee' ? That is, make the…
-
1
votes2
answers7102
viewsQ: Typeerror: Extractjwt.fromAuthHeader is not a Function
I’m having some problems with Passaport.js. When I try to run my api, the terminal returns an error. I went to the file in question and found nothing wrong. I did a web search, but the solutions I…
-
1
votes1
answer2316
viewsQ: What is the function of the.Switch app in Express?
I recently started my studies in Nodejs and Express. From what I’ve been reading, app.Leann is basically what makes the server listen to requests coming from the defined port. But I could notice…
-
0
votes1
answer119
viewsA: Problem with events in Vuejs 2
I solved the problem by taking away everything that refers to this tool that I am doing with the canvas of the object of the registration element and created a component to work only with what…
-
1
votes1
answer119
viewsQ: Problem with events in Vuejs 2
I found a code a while back and modified it in pure javascript. It worked fine. But now I have to do something similar to what he does in Vue. The problem is that I’m kind of new in Vue and I have…
-
2
votes1
answer74
viewsQ: Attribute not defined in a Vue object
I’m doing a few things in Vue. And I have a problem here. Apparently there’s a mistake here and I have no idea what’s wrong. Console says title is not set. var cadastro = new Vue({ el:'#cadastro',…
-
0
votes2
answers522
viewsQ: Why is the navigation bar overwriting the header?
As you can see the navigation bar is covering the header (which the banner as background), but in theory (based on my knowledge, of course) the header should start right after the Nav. NOTE: I tried…
-
0
votes1
answer108
viewsQ: Is it bad practice to create a CSS file for each screen?
I find it more convenient and easier to maintain if I create a CSS file per screen. Is that a bad practice? The same can be done with JS files?
cssasked Hiago Machado 184 -
3
votes1
answer3435
viewsQ: How to make a text editor in a Tinymce style textarea?
I would like to know what exactly I must study in order to transform a textarea in a text editor WYSIWYG.Of course I know I must use Javascript,but I can’t imagine how styles are applied in real…
-
1
votes1
answer653
viewsA: Adjust width to border of an element
Try putting the CSS like this: table tbody tr:not(:first-child)[class="has-separator"]::after { content:" "; display: block; margin: 0px; border-top: 1px solid black; background: none; width: 100%;…
cssanswered Hiago Machado 184 -
0
votes1
answer529
viewsQ: Javascript does not receive json Response from Laravel
I’m trying to get Javascript to receive the data sent by the server and play in Alert. But it always comes Undefined. I’ve looked at many topics about it on the internet and found nothing wrong with…
-
1
votes2
answers1000
viewsA: Different layout on other computers?
You can use CSS media queries. They’re great for giving layout responsiveness. I’d rather use them than frameworks. Here is a basis for several types of screen with some observations I made: /* Aqui…
-
2
votes1
answer96
viewsQ: Streamlining CSS with PHP goes against good practice?
Streamlining CSS with PHP goes against good practices? I need to change the header background image of a page according to her article. I thought about writing the CSS inside a PHP file for this,…