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.
Questions tagged [updating]
1058 questions
4
votes
1 answer
Uploaded FTP files do not reflect on website
Uploaded files do not reflect on website.
I've done some editing offline and have uploaded the changes through FTP to my website. Some changes are shown but not on the navigation, logo, and header background (an image). I've copied every file…

Amazonico
- 85
- 1
- 2
- 5
3
votes
4 answers
How can I update a nested set tree structure?
I've looked at Managing Hierarchical Data in MySQL, but it really only deals with adding and deleting nodes in a Nested Set Model.
I need to be able to move nodes with and without child nodes.
How would I do this?
Andre
3
votes
1 answer
SwiftUI - Binding var updates the original value only the first time, and then it doesn't update anymore
I have a Picker that updates a @Binding value, that is linked to the original @State value. The problem is that it gets updated only the first time I change it, and then it always remains like that. Not only in the sheet, but also in the…

Pandruz
- 345
- 5
- 18
3
votes
2 answers
Updating Nodejs on mac
I am using macOS Big Sur and want to update my Node. However, after downloading its file from the official website and completing its installation, my terminal still shows and uses my previous node version.
Does anyone know how can I overcome this…

Sina Rahimi
- 221
- 1
- 3
- 10
3
votes
1 answer
Why my html content not update without restart javascript server?
I am learning about NodeJS and I am using simple code for tests. My problem is I must restart server for each change I realize to my code but I see videos where another developers to make changes on html file and they must not restart server.
What I…

Juan Camilo Camacho Beltrán
- 93
- 1
- 6
3
votes
0 answers
docker service service updates stuck in updating status
We have swarm services running across two app servers. When we update the images of the services it often results in it not being rolled out to both of the servers.
The output is below, it has been trying to update for 16 hours, is there anyway to…

Mason
- 31
- 1
- 4
3
votes
2 answers
Mongo divide the value of the field by the specified amount
I use $mul operator in update for multiplies field value
db.products.update(
{ _id: 1 },
{ $mul: { price: NumberDecimal("1.25"), qty: 2 } }
)
now how can divide field ?
Mongodb document not exist $div operator
user6123637
3
votes
1 answer
Matplotlib animate multiple great circles and update from pandas df
I've created a map and I am reading in a CSV of latitude and longitude coordinates into a Pandas DataFrame. I've been successful in plotting multiple great arcs using a 'for' loop after reading in the DataFrame.
I am now trying to animate the…

Nick Miles
- 41
- 5
3
votes
2 answers
How to update an array with WritableKeyPath in Swift 4.0
In Swift 4.0, I have an array of structs. Is there a way to use keyPaths to update all items in the array without using manually iterating like map or forEach? Something similar to objc [people makeObjectsPerformSelector: @selector(setName:)…

joels
- 7,249
- 11
- 53
- 94
3
votes
3 answers
How to update Spyder?
Everytime I start Spyder (with Anaconda) I get a message saying that my version is outdated and I should update it, so I followed the instructions Spyder's own website gave me, which is running the following commands:
conda update qt pyqt
conda…

Nelson Marques
- 33
- 1
- 1
- 5
3
votes
1 answer
Python list updating elements when appending
I have a python list that I want to append a list to. The list was declared like this:
data = []
Then I append the list with:
[0, 0, 0, 0, 0, 0, 0, 1, 0]
After that I want to append another list:
[0, 0, 0, 0, 0, -1, 0, 1, 0]
Then when I print out…

Loanb222
- 841
- 1
- 11
- 29
3
votes
1 answer
selection.enter() is not a function
So, I made a bar chart visualization for a webapp, and it continuously updates over time as new data is entered in.
The webapp is here.
As you can see, I am able to adjust the width of the bars as new data is entered in. This was the code I used to…

pythontyler
- 131
- 3
- 5
3
votes
2 answers
Unpack, modify and re-pack files in an MSI?
I'm trying to figure out the easiest and most secure way to Authenticode sign binaries in one of my projects.
The easiest way I can see to do this is to grab the result of compilation--a completed install package containing all my binaries--extract…
user1228
3
votes
1 answer
Push element in mongoDB, if it doesn't exist
I have many functions update with mongo
here is an example :
db.auto.update({'def.name':'AFFAIRES'},{$push:{
"covers":{$each:…

chou
- 253
- 3
- 14
3
votes
4 answers
How to update ListView after updating database?
public class SettingsActivity extends AppCompatActivity {
private Context context;
private DogDatabaseHelper dbHelper;
private ListView mListView;
private ArrayList names = new ArrayList();
@Override
public void onCreate(Bundle…

Ben
- 541
- 1
- 5
- 15