Posts by Giulio Denardi • 211 points
8 posts
-
1
votes1
answer104
viewsA: Vraptor task does not work
On the line: Scheduled(cron="0/30 * * * * ?") You should put @this way: @Scheduled(cron="0/30 * * * * ?") Considering that sending emails works normally, only this change should already make your…
-
0
votes2
answers791
viewsA: Approve or refuse a request through Handlerinterceptoradapter
You can use the header "User-Agent". This header provides information where the user comes from. Follow an example of User-Agent: User-Agent: Mozilla/5.0 (X11; Linux x86_64) Applewebkit/537.36…
-
1
votes1
answer283
viewsA: Creating Responsive Random Image
For this, you can use Media Queries of the CSS! Here is the content to understand more about Media Queries: Making your elements responsive with Media Queries A simple example for this, which is…
-
4
votes2
answers605
viewsA: Auto-click every 10 seconds
A suggestion: I Maybe it’s nice you take a look at the Bootstrap carousel, in case you don’t know it: Carousel with Bootstrap Good, but if you need that way the functioning of the site, you can do…
jqueryanswered Giulio Denardi 211 -
3
votes1
answer153
viewsA: Unwanted texts in Bootstrap
This happens because the Bootstrap has styles CSS themselves for tags <p>, <h6>, etc.. If you inspect the style of the element, you will see that Bootstrap adds several styles to these…
-
0
votes1
answer129
viewsA: Change the content of a DIV from another site
all right? There is no "easy" way to do this, but you can create an endpoint on your server that does so using a controller and Angular/jQuery, for example. Since you have not specified…
-
3
votes1
answer287
viewsQ: Angularjs - page does not find the controller
I’m starting to test applications using Angularjs and Spring Boot. My problem is this: All scripts are normally imported into the browser, but IF I tag "ng-controller="Headcontroller"" on any tag on…
-
5
votes1
answer324
viewsQ: Algorithm Complexity Analysis
A professor at my college passed an exercise to analyze the temporal complexity of this algorithm, but I’m not getting it at all. Someone knows how to give me a light on how to separate the…