Interesting questions
-
1
votes1
answer268
viewsRegistration with Modal and Partialview . Net Core 2.2
In my project I created a button for registration, which calls a modal that is inside a PartialView. The objective is to register through this modal the data informed in the database, the problem…
-
2
votes1
answer142
viewsGS1 tags Code128 subset C
Has anyone implemented the standard GS1 barcode? In the pattern there is a barcode Code128. I’m trying to implement using Code 128 subjet C, my number of digits will be odd. How it has to be:…
-
-1
votes1
answer202
viewsADMOB free Advertising award-winning video does not work
I have a problem with showing ads like video admob free, I have other types of advertising and it works 100%. I know you have some more current versions of admob free, but I would like to resolve it…
-
1
votes0
answers27
viewsDoubt Laravel Trait
Good staff , I have the following Trait in the Laravel <?php namespace App\Traits; trait Imageable { public function getUrlImageAttribute(): string { .... } } I use the same in the following…
-
3
votes2
answers39
viewsHigh error when extracting data
Migrate does not give any error and also get popular table normally with Seed. But when I try to extract data from my database, it does not work. namespace App\Http\Controllers; use App\Todo; use…
-
1
votes3
answers175
viewsTypewriter effect is not working properly
I did a typewriter effect with jquery, and I need that effect to take every paragraph. That way I did it applies the effect only to the first paragraph. Follow code for analysis. Can anyone help me?…
-
1
votes1
answer629
viewsAuth::guest() always returns true | Laravel 5.4
I’m using the features offered by Standard for authentication, but even logged in the Auth::guest() command returns true, as if you were a guest. Follow the code of mine middleware <?php…
-
0
votes1
answer451
viewsHow do I resume the amount of Spring JPA records?
I want to return the value of playlists at the bank, but that code there did not work. public interface PlaylistDao extends JpaRepository<Playlist, Long> { @Query("select count(*) from…
-
-2
votes1
answer83
viewsHow to print only vowels contained in a string?
Implement a Python function that takes a string as a parameter and prints the vowels of that string. Example: string univesp must print out the characters 'u', 'i' and 'e'. I managed to do it here,…
pythonasked 5 years, 10 months ago halbuquerque 11 -
2
votes1
answer614
viewsSliding divs for content
Someone could help me how to box with slider content and by clicking on the arrows the Div is Pushed and so showing the other box as in the image below the globe example . I’ve done with java script…
-
1
votes1
answer1121
viewsTable in Bootstrap hiding buttons
I am making a small Java Web application with Bootstrap, but I have an error on a page where I use a table. When I have more than eight rows in the table, the buttons that are below the table…
-
0
votes0
answers527
viewsHow to login to website with VBA?
Good morning guys. I’m having trouble creating a Macro VBA that login to the site. I’m trying on a test site http://excelevba.com.br/download/login_teste.php. So far I only managed to open the site…
excel-vbaasked 8 years ago Mateus Luna 1 -
0
votes1
answer245
viewsHow to adjust focus using Opencv and Python?
Hello. I’m building a robot that moves through acquired images. However, when it is in motion, it gets lost due to the image being out of focus. I ask if there is any configuration within Opencv…
-
2
votes1
answer206
viewsI’m having trouble loading bootstrap-js
import Vue from 'vue' import App from './App.vue' import BootstrapVue from 'bootstrap-vue' import 'bootstrap/dist/css/bootstrap.css' import 'bootstrap-vue/dist/bootstrap- vue.css'…
-
0
votes1
answer24
viewsSQL - How to take a data from a table and insert another preset?
I have a website and need to create a code to send badges, my problem GRAAANDE is, SQL is giving error The idea is to insert in the table "usuarios_placas" the username and the emblem code…
-
5
votes1
answer1838
viewsCompare Coordinates
In my mysql I have a column containing positioning coordinates coming from a polygon, drawn in the google maps api, the question is how can I compare the coordinates I have within the column with…
-
0
votes1
answer1120
viewsConfigure Mysql Tiimezone in Spring Boot
PROBLEM How do I set up Mysql Timezone in a project using Spring Boot with Tomcat? ERROR java.sql.SQLException: The server time zone value 'Hora oficial do Brasil' is unrecognized or represents more…
-
3
votes1
answer868
viewsError 400 when sending request to Esocial (C#)
I am receiving error 400 when executing SOAP request on eSocial servers as a response. The error occurs in this command: using (HttpWebResponse resposta = request.GetResponse() as HttpWebResponse) I…
-
2
votes1
answer443
viewsRender html from the database using angular 1.6.1
I have the following page using angular, jquery and bootstrap: var app = angular.module('tblModule', []); app.controller('tblController', function($scope) { $scope.testes = [ { "teste": 1, "oi": "O…
-
0
votes0
answers62
viewsHow to transfer data from a graphical interface to another Java file and receive it later after data processing
Creating a Java project, which has only two files: the first has a InterfaceGrafica, that takes the data that users will enter, being responsible for sending the data to the second file called…