Questions tagged [updating]

Updating can refer to the modification of data or configuration by an application, process, or service, or can refer to the modification of software by a process.

1058 questions
-3
votes
1 answer

Update List with Loop Arguments Scala

I'm trying create new random List based on other List. But this code doesn't work to update the var import scala.util.Random import scala.math val randSymbol = List(1,2,2,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,6,6,7,7,7,7,7,7,8) val _finalSymbol =…
-3
votes
2 answers

Add elements to existing list in Scheme

Hi i am learning Scheme new.I have question.Lets think I have defined a function which it adds element to list if it is empty.If there is an element in list and new element is added as second to list and goes like this.For example >(add a) ; here…
dymayd
  • 23
  • 1
  • 8
-3
votes
1 answer

PHP Reloading data on interval, not refresh

i have a php script that scrapes data from a bunch of websites and stores them in a db. What i want to happen is instead of having the php load at every connection, i want to set it on a 10 minute interval that then stores the data it gets into a DB…
-3
votes
2 answers

Updating content with parse

A while ago I asked a question and many of you helped me out. Thank you. I have another question to ask that has put me on hold in development. I have parse linked up to my app and can use push notifications and all. But I want to know how I can…
RandomDude
  • 37
  • 1
  • 9
-4
votes
3 answers

How to compare and update array data in javascript?

I have an array of fruits which has following elements var fruits = ['Mango','Orange', 'Banana', 'Mango', 'Grapes', 'Orange', 'Apple', 'Apple', 'Banana', 'Mango'] And I want generate an output of object array which can be result = [{fruit :…
Swapnil
  • 17
  • 4
-5
votes
1 answer

Update Password from Sql server Database in C#

I'm Having issues updating password for users in my assignment. As it requires to have 3 textbox one for the current password, and the to others are one for new password and one to confirm the new password. I try different methods but it is not…
-5
votes
1 answer

PHP/AJAX Live logins log

Basically, when the user logins, I need a separate web page automatically updating each log in, for example: 12:30 User1 have logged in. 12:35 User5 have logged in. etc. etc. I want the page to update itself all the time. How can I achieve this…
-6
votes
3 answers

updating part of string in c++

Is there any way to update the part of a string by passing it in a function? std::string str = "hello world"; I want to reverse part of the string for example from index 4 to 8. I have a function that reverses a string from start index to end…
Madu
  • 4,849
  • 9
  • 44
  • 78
1 2 3
70
71