Posts by Leonorris • 79 points
13 posts
-
0
votes1
answer29
views -
0
votes1
answer67
viewsA: Problems with POM
Try using above the Parent information: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId>…
-
0
votes1
answer33
viewsA: Set "client" in session
Guys, I got it, I changed the code and I declared the session variable there at the beginning and it worked/, follow below the solution, if anyone else goes through it, here’s the tip hehe…
-
0
votes1
answer33
viewsQ: Set "client" in session
Hello, probably the problem may be more logical, but I have a good time up and I can not solve. I am developing an own "analitycs", so when the user accesses the site, receives a fictitious "name"…
-
0
votes0
answers29
viewsQ: Is it possible to use Joomla without jQuery?
The title ended up being straightforward and self-explanatory... Can I use joomla without using jQuery or any other "heavy" library? I am aiming to take any framework of development, which…
-
0
votes3
answers109
viewsA: How to determine what will be loaded in HTML?
I believe I have a better solution than picking up by the absolute width of the screen with pure javascript friends. (function isMobile(){ var userAgent = navigator.userAgent.toLowerCase(); if(…
-
1
votes1
answer71
viewsA: Doubts about CSS and positioning
Nowadays there are some more responsive techniques to centralize a div on the screen, is the case of the grids system. How it works Basically the idea of the css grids system, copies the idea of…
-
1
votes1
answer55
viewsQ: File is being sent out of the defined folder with the move_uploaded_file method
Hello, I am making a system where I previously create a folder, and later I upload the file (later I will treat whether it is image or video), the problem is that the method move_uploaded_file is…
-
0
votes2
answers168
viewsA: Data is not being written to the BD by PHP
I finally managed... after getting a lot, I found that I had some errors in the class functions_image and in the test I needed to instantiate another class and define the methods... Here’s the…
-
0
votes2
answers168
viewsQ: Data is not being written to the BD by PHP
I’m studying PHP object oriented and, from some tutorials taken from the net (Pdo, pojo, Dao...), I made a very simple system in which I get the value inserted in <input type="text"> and write…
-
0
votes3
answers194
viewsA: How do you animate an anchor call?
Good "an animation" is very comprehensive... But come on, for a side animation you basically need the library jquery 1.5.2, and put the script below before closing the body... this will cause when…
-
1
votes2
answers773
viewsA: Scroll according to Section ID
You just need to put the Section ID, exactly as you put it on the link, for example: <li class="madmaxmenu"> <a href="#theroadwarrior">Mad Max</a> </li> <section…
-
1
votes2
answers413
viewsA: Problem with @media query
You need to declare the viewport in the head of html: <meta name="viewport" content="width=device-width, initial-scale=1.0"> From there, you can set the media queries in css normally. And…