Interesting questions
-
0
votes2
answers62
viewsGet value by taking into account two columns
I’m trying to get the number of anti-virus licenses per department and I can’t come up with a formula that can return this information to me. Basically, I want to get how many licenses there are in…
excelasked 6 years, 4 months ago RekcsGaming 1 -
9
votes1
answer236
viewsDivide circle SVG into 12 parts
I’m using an SVG circle and I want to share it with a line dynamically created into 12 parts. I can only divide into 4 parts, through its radius. I know it is possible through the sin and cos.…
-
1
votes0
answers257
viewsIframe - View youtube videos
Good morning guys, I would like a help, I need to display latest videos from the youtube channel on the site. This code I used worked, after loading the page, it displays the last five videos:…
-
-5
votes1
answer401
viewsDrawing Program
Guys I’m having trouble solving this problem, could someone help me? The problem of study is this: In a small country on the planet Cyber, the current currency is B$. This currency has banknotes of…
c#asked 7 years, 6 months ago Igor Pompeo 37 -
174
votes6
answers5796
viewsHow is computer randomization generated?
Doubts How computer randomization is done? What algorithm or mathematical basis does the computer use to generate those numbers? For example: No Javascript utilizo o Math.random() it returns me…
-
0
votes0
answers110
viewsPersist child objects with parent id 1:N
Guys I’m having difficulty in relationships with Hibernate, I have a 1:N relationship between Provider and Address (1 provider may have N addresses). My problem is this, when I try to persist a…
-
1
votes1
answer62
viewsSend one of the select values and paste into an input text?
How to send the value of one of the options of a "select" to an input text?
-
3
votes1
answer694
viewsHow to repeat HTTP requests multiple times and simultaneously without delay?
I need a way to send http request’s several times, without change of any request. Currently I have used Charles Proxy - I take the request of an iPhone app and so I can repeat it on my computer.…
-
-1
votes1
answer612
viewsFunction to calculate the average of two notes in python
I have difficulty creating two functions: one that calculates the average of 2 grades and another that tells in which situation the student is "approved", "failed", and "recovery". My code is giving…
-
1
votes0
answers160
viewsTable in Ireporter does not appear in the application
Gentlemen good afternoon! I’m in a bush with no dog and I can’t find any more solutions to my problem, look: In my Ireport form I use the Table component. I created a dataset that is responsible for…
-
2
votes0
answers47
viewsUnlink functions from PHP 'buttons'
I would like to unlink the buttons, I have a button to generate password and one to call, but every time a password, it also calls, I would like to unlink these buttons, someone could help me…
-
6
votes1
answer354
viewsHow to make a Floatingactionbutton square or rectangular?
I have 2 Floating Action Buttons on screen. How can I make them rectangular?
-
0
votes1
answer28
viewsCompare 2 arrays with some() or Every()
I am trying to do an exercise that compares whether the array of objects inserted in a function has any element equal to the following array: const gooUsers = [ {id: 1}, {id: 2}, {id: 3} ]; The…
-
3
votes2
answers1185
viewsHow to add and search BD products with JSON in HTML dynamic fields?
Personal I cannot get values from performing research with JSON and database after adding new dynamic product line with Javascript. HTML form, the product is searched by code: <form…
-
1
votes1
answer36
viewstake the html of a $('a'). index(this);
A simpler example of what I want would be the following: $(document).ready(function(){ $('a.excluir').click(function(){ var i = $('a').index(this); alert(i); }); }); <script…
jqueryasked 8 years ago Carlos Rocha 1 -
0
votes1
answer138
viewsHow to change the color of links with the user’s click?
Hello! Well, I have a Topbar on my mini search site: http://isearch.baloon.url.ph, And now I’ve got a Javascript form action exchange system, which switches between "web, images, videos and news".…
-
1
votes1
answer125
viewsProblem with slideshow css
I want to leave the slide with the format of the image below. I add the display:block in my slideshow images, but it doesn’t work! HTML: <div class="slideshow"> <div class="slide">…
-
0
votes1
answer102
viewsCheck WORD style in DOCX via Python
I am trying to verify a document (.DOCX) And pick up the text that is with a certain style. Turns out the code I came up with in my attempts can only get the whole paragraph. I’d like to take part…
-
0
votes1
answer664
viewsQuery to separate records
Good afternoon guys, I’m having trouble performing a query. Have the following table I would like to make a query that shows which and how many status_telefonia had by phone and date, then create a…
-
2
votes2
answers1027
viewsHow to activate 24 hours in Datapicker Bootstrap?
<script type="text/javascript"> $(function () { $('#datetimepicker1').datetimepicker({ format: 'YYYY-MM-DD hh:mm:ss', locale: 'fr, use24hours: true }); }); </script>…