Interesting questions
-
1
votes1
answer179
viewsSide menu transition with easing
Hello! I want to put an "easing" effect to make more "smooth" the transition from the side menu that collects/expands on my site because when I click on the button to collect it only collects in…
-
0
votes1
answer199
viewsError Creating bean with name 'transactionController'
I’m starting to learn Spring and I’m getting this error, I’ve done several searches on the internet but so far I don’t understand what is causing the problem:…
-
1
votes2
answers78
viewsHow I Address a Partialview ASP MVC
I have a View who has a div and within it goes a partialview EX: <div> @Html.RenderPartial("MeuPartial"); </div> In the right page render load, however, I needed it to render every time…
-
2
votes2
answers3819
viewsHow to create "Banner" with css?
I’d like to produce a Banner similar to the photo using css. I tried using characters UTF-8 and the result was almost perfect, but I would like to do with css to avoid some problems of…
-
3
votes1
answer47
viewsNslocalizedstring does not return matching text
Personal I’m using the function NSLocalizedString in an iOS app but this is not returning the related text I put in a file Localization.strings that has the content below. Someone could help me to…
-
-2
votes1
answer55
viewsDoubt about a question I’m trying to solve I have this following code in python:
temperaturas_c = [('Argentina', 20), ('Brasil', 30), ('Estados Unidos', 28)] I have a list that contains the names of the countries and their temperature in Celsius in a tuple, I would like to…
-
0
votes2
answers99
viewsSelect Textarea Text with Variables on Click
In the case below: Select textarea text by clicking If I want an example1 variable, example2, exampleN. As I declare in jQuery? I can’t do it like this... $(document).on('click',…
-
2
votes0
answers69
viewsAPI Analytics returns incorrect date with correct values
Using the Analytics SDK to perform queries, I enter the values for the dimensions, metrics, start-date and end-date. I get the result of the query with the correct data as I checked in the panel…
-
0
votes1
answer207
viewsInsert data into a real-time text box with Timer
I’m using timer as follows: System.Timers.Timer aTimer = new System.Timers.Timer(); aTimer.Elapsed += new ElapsedEventHandler(OnTimedEvent); aTimer.Interval = 1000; aTimer.Enabled = true; In the…
-
-2
votes2
answers76
viewsHow to mount this query
I need to return new clients for a certain period, but in the bank I can only work with "anocobranca, mescobranca", to count as a new client I check everyone who hired a service within the period,…
-
0
votes1
answer111
viewsScript for first load Xamarin Android sqlite
I need to create a first load script for our application, the problem and we have two BLOB fields in our table, it is very large with this I would like to see the best way to implement this first…
-
-1
votes1
answer38
viewsDoubt about the type of permission when creating folder and file with. mkdir() and.openfile()
People, at a certain point in my code I am creating a folder (1) in which will be archived photos posted by users and a CSV file (2) in which will be archived the metadata of these images. I’m…
-
0
votes2
answers956
viewsHide a div containing photo and show another div in the same place
I am using jquery / php to access the user’s camera and take a photo for a registration. And on the page change user data I need that when uploaded show the photo recorded in the bank in a div…
-
3
votes1
answer820
viewsPDO Insert multiple lines into a single Insert using bindParam
I have a default function that I use for all of my Inserts (when they only have 1 Insert at a time), which would be: insereRegistro($sql, $param=NULL) { $query = $conn->prepare($sql); //Converte…
-
0
votes0
answers15
viewsDoubt about how to get posts from 1 facebook group
Boas, I have a question, I’m trying to get all posts from 1 facebook group. (Group not, page). I can get the posts from one page, from 1 group and I’m not getting.…
-
8
votes1
answer147
viewsShould license comments on CSS or Javascript files be maintained or not?
This question arises when I finalize a mechanism to realize a Bundle of CSS and JS files with consequent cache. In many projects we all use mechanisms that allow reducing the size of CSS and JS…
-
-1
votes2
answers131
viewsSyntax error in sql command
I have a possible problem in sql syntax in my code if (tbCPF.Text != "" && tbNome.Text != "" && tbEndereco.Text != "" && tbNumero.Text != "" && tbBairro.Text != ""…
-
1
votes2
answers1576
viewsUse {%for %} and {%if %} in Django template
I have 3 videos saved in the Postgres bank where I seventh a star_date and the video only appears on template when the start_date <= date.today() My problem is in template. I have 3 buttons, one…
-
0
votes1
answer1013
viewsHow to search for users in the database without select option
Good staff always found bad a method I use to search users in the database in a select option, when I have many records the page takes to load and only tends to get worse, someone has some idea of…
phpasked 11 years, 5 months ago Rafael Assmann 381 -
3
votes3
answers1758
viewsDo I need to insert an HTML tag with jQuery to encapsulate the code below?
How to insert an HTML element after opening and before closing the jQuery tag? That within a each: $("#main_div").append('<div class="Ftitulo">'+item.titulo+'</div>')…