Interesting questions
-
0
votes0
answers11
viewsHow to add items to a list with Spring JPA Onetomany with Postman
I searched several places and did not find an answer, because it just doesn’t work by putting the annotations @Onetomany and @Manytoone, already put with fetch, with Mapped, didn’t work. 1 - How JPA…
spring-jpaasked 5 years, 1 month ago gise 39 -
3
votes1
answer1133
viewsColumns with equal names in a single query, mysql
I’m performing a Mysql query in this style: select contents.*, users.* FROM users, contents Between the two tables there are columns with the same name, and when you pull them with PHP it results…
-
0
votes1
answer231
viewsCrud Ajax Laravel 5.*
I have a little problem. I’m doing a crud with Ajax + Laravel. "Everything" is working, more than when I update a data, it also registers. Well see how I’m doing. I have a Bhutan that I have an id…
-
-1
votes1
answer45
viewsvariable cannot admit another value
n=int(input("jogadas:")) a=22695477 b=1 m=2**32 semente=3 i=1 num=None num_aleatorio = None lance_computador = None while i <= n: lance_jogador=int(input("Faça sua jogada")) if i==1: num =…
-
-1
votes1
answer209
viewsShare Localstorage with browsers
Is there a way to share localstorage with multiple browsers? For example, I define localStorage.setItem("lang", "pt"); in Chrome, however, I would like this value to be available in Firefox and…
-
-1
votes1
answer40
viewsHow to insert a Binary Search Tree in C
I’m not getting the insertion recursively and I don’t know what I’m doing wrong.. Precise follow the following prototypes: struct Arvore { int info; struct Arvore *esq, *dir; }; typedef struct…
casked 4 years, 10 months ago Carlos Loureiro 1 -
2
votes1
answer259
viewsSearch all methods without reference Visual Studio
How to search all methods without reference in Visual Studio, ie methods that are not being used, know that by clicking on a method with the right button and and choosing "Find All References" it…
-
0
votes1
answer563
viewsHow to pick up Radiobuttonfor value through Formcollection and save to SQL Server BD
I have a model with several booleans, I need to take their values through a Formcollection and save in the SQL database (does not accept Boolean, so the field is as bit). My View: <div…
-
0
votes3
answers759
viewsHow can I make a div hide on the side and when clicked appear on the screen?
How can I make div hide on the side of the screen? Note the side menu of this site http://preview.imithemes.com/? Theme=Solicitor-WP I tried it a way but didn’t someone know a way? my None display…
-
0
votes1
answer31
viewsLazy Load only loads data when Solution remains
Guys, I have the following problem: When I make the Entity Framework add a data in the database, it does, but does not return the attributes of the loaded Class type. In order for them to load…
c#asked 7 years, 7 months ago Carlos A. S. Moretti 50 -
0
votes0
answers34
viewsHow to generate a setup in visual studio 2012?
I’m having trouble generating a setup at Visual Studio 2012. I don’t see the option to generate setup, tried to create a setup with Inno Setup, created normally but when installing on the machine…
c#asked 9 years, 1 month ago António Mateta 159 -
0
votes4
answers842
viewsWrite MYSQL data in en / UTF8 format
As I do to save data in the database in Brazilian format with accents, I used it in connection mysqli_set_charset($conexão, 'utf8'); but now my code is all in PDO as I do to save this data in utf8…
-
2
votes1
answer90
viewsClock in Action Script
I created a clock in Action Script to use as content for Digital Signage 6 countries, but I have a problem with daylight saving time. I used getHours to pick up the schedules and applied the…
-
1
votes1
answer255
viewsCSS: Dropmenu with Login
I have a drop-down menu :Hover for a div that contains 2 input, login and password, and two buttons, so when I try to type something in the div(that appeared with the li’s Hover) it goes away...…
-
0
votes2
answers312
viewsChange class value in jquery at a certain resolution
I’m implementing a youtube video plugin, but I want this plugin in a certain resolution to change a value in your statement. Follows code of example : $('#youmax').youmax({…
-
2
votes1
answer1491
viewsBrowse and count records from a JSON
I have a Python code that I can display on the screen all JSON records, only I need to bring only the field 'Nome' and the count of each. First he brings with [] (list format) and I need the…
-
1
votes1
answer1635
viewsWhat is the purpose of using the filter_input function
Why it is safer to use the function filter_input, than to simply use global variables ($_SERVER, $_GET, $_POST)?
-
4
votes1
answer345
viewsWhat measures can we take to protect the issuance of malware slips that alter the digitable line?
In addition to PDF issuance, which can hinder some customers by the lack of PDF viewers, what techniques could we use to protect or detect that the generated billet has been modified by malware?…
-
-1
votes1
answer67
views'onCreate' overrides Nothing - Kotlin
I’m new in the area and had made a currency converter application in Kotlin and wanted to put a API, but I am unable to start the application because of this error in the onCreate. I have tried to…
-
1
votes1
answer41
viewsTSLINT - Private variable rule
Is there any rule in tslint to define what a private variable needs to have _ (underline) before the name? Example: private _router: Router,
typescriptasked 7 years ago Guilherme Nass 939