Posts by Rafael Souza Calearo • 191 points
18 posts
-
-3
votes1
answer45
viewsQ: Conditional with dates is not analyzed by the Else operator?
I have the following situation, a method that calculates the difference between the beats of a point and the sum of intervals that the collaborator performs during his working day: //calcula as…
phpasked Rafael Souza Calearo 191 -
0
votes1
answer27
viewsQ: Remove an hour with minutes or not from a date
I have the following code: <?php //batidas do controle de ponto de um x colaborador $d1 = new DateTime('2021-08-06 12:00:00'); $d2 = new DateTime('2021-08-06 15:00:00'); $d3 = new…
-
2
votes1
answer166
viewsQ: Swap the values of the "name" attributes of subsequent inputs/selects html?
I happen to have the following situation, in my HTML I have the structure that way: <div class="form-row mt-3"> <select name="produto0" class="form-control{{ $errors->has('produtos') ? '…
-
3
votes0
answers327
viewsQ: How to efficiently convert static/binary files (images, Pdfs, etc.)?
For example I have a PDF file with a content and after modifying some things in it, how should I proceed in question of the versions? (For some reason I should review this file). And in the case of…
-
0
votes0
answers123
viewsQ: How to fix the Auto Increment that is populating high numbers in the comic Heroku?
I’m coding a API Restful with Spring Boot v.2.0 etc. The case is that when I try to make a deploy to the Heroku using Migration (Flyway) of insertion the ids get high. My model or entity of User…
-
0
votes1
answer730
viewsQ: Angular application does not run locally on IE?
Follows the image of the error in the browser (Internet Explorer v.11): DETAIL: in other browsers (Chrome and Firefox) works (wheel/charge).…
-
2
votes1
answer554
viewsQ: How to make a footer (footer) stay fixed after the Parallax effect?
I have this image and I would like to have an effect equal to option 3 (three) of this image, follows: DETAIL: could be option 2 (two) only I do not want the footer to pass to the area of the screen…
-
1
votes1
answer69
viewsQ: How to generate my Postgresql Baseurl (link) that is in Heroku to integrate to my Angular front end?
My question is: how do I link (baseurl) to which my front-end access the data coming from this database (Postgresql) that is hosted on Heroku? My Heroku’s Postgresql releases this information: As…
-
0
votes1
answer642
viewsQ: How do you leave objects side-by-side coming from *ngFor?
I have this situation: <div class="row"> <div class="col-lg-12"> <!-- 1 Primeiro cartão, 1° objeto --> <div class="card borda-card" *ngFor="let evento of eventos"> <a…
-
2
votes1
answer276
viewsQ: How do I deploy an Angular app to Heroku using Gitlab?
Angular Use 5 (5.2.10) and Angular CLI (1.7.4) and I would like to deploy to Heroku, but my files are in the Gitlab repository. Some more information: Node (8.11.1) and npm (5.6.0).
-
0
votes0
answers39
viewsQ: My Lightbox module that I inserted in Angular does not work, how to do it?
Well I installed this Lightbox module with the command npm install lightbox2 --save according to the website: lightbox so far so good. After I put the paths in the angular file-cli.json as examples…
-
1
votes0
answers51
viewsQ: Are "help", "terms and policies" functional or non-functional requirements?
My question is exactly this if the help is a functional requirement or not in a system, since it after being clicked brings a would strings and formatting.
-
0
votes3
answers1595
viewsQ: How to pass code (id) through my viwer using Thymeleaf and spring mvc for the controller?
My entity: package local.demo.models; import java.io.Serializable; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import…
-
0
votes1
answer512
viewsQ: How to do an INNER JOIN by bringing specific fields from two tables and removing the repeated records and with a max condition?
Well, I have the following tables: Table 01: And table 02: There I would like to bring only all fields with higher points and do not repeat the waiter in the case, how to do?…
-
-1
votes3
answers1256
viewsQ: How to do an INNER JOIN bringing everything from two tables and one more "max" in a specific field?
Good guys, to be more specific I have two tables,. table 01: ...and table 02: ...and would like to make a "select" bringing all of these two tables, but where in the field "points" (table 02) have…
-
-3
votes1
answer172
viewsA: How to configure the correct Codeigniter session in the current version of it?
Oh guys I already managed to solve, what did I do? I updated my Codeigniter... Thanks!
-
1
votes1
answer172
viewsQ: How to configure the correct Codeigniter session in the current version of it?
Well, to be more specific, my problem with Codeigniter sessions started to occur after I switched my Xampp to a more current version (v.7...). When it comes to code/project I didn’t do if you want…
-
3
votes1
answer217
viewsQ: How to remove Hover from menu items and buttons?
I think my question is very objective: how to remove the "Hover effect of menu items and buttons? Here is a screenshot of the Hover effect I intend to remove (button and menu items):…