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
2
votes
0 answers

Error: Cannot find module 'webpack/lib/NamedModulesPlugin'

I updated my Angular project from Angular 2 to Angular 8 and when I update webpack 2 to webpack 5+ ,I am having this issue , Compilation Error npm run start Marlin@3.3.0 start D:\Marlin\Marlin_SIC\MarlinWeb(Angular_6to8_without_Wijmo) npm run…
2
votes
0 answers

Updating args on the fly?

I'm building a metronome in python and I'd like to figure out a way to update the bpm on the fly. Is there a way to structure things so I can update a functions argument(s) while it's running? My metronome is currently only accepting one argument…
Avi Granite
  • 27
  • 1
  • 5
2
votes
1 answer

Updating a nested state Object in React Native?

I am creating a shopping list application that gives a user to ability to create a shopping list. Each shopping list that the user creates has the following properties: key name budget listItem Nested within the listItem property is an array of…
K.Woods
  • 39
  • 8
2
votes
0 answers

Updating nuget packages via PackageReference in csproj file

I have a project written with C# with some custom NuGet packages dependencies. I want to install the latest version of any package in local repo .nuget/packages. How can I update my dependencies to the latest version automatically? Should I check…
jeWick
  • 61
  • 3
2
votes
1 answer

Updating a plot in Python faster, not using plot.pause()

This is my first time posting something on StackOverflow, so I'll try my best to explain my problem. I'm trying to write a code that shows by plotting how different sorting algorithms work. For this I plot every step the algorithm is doing, so every…
mcgraaf
  • 23
  • 5
2
votes
1 answer

updating a python dictionary saved in a python file

Good Afternoon, I have a python dictionary file I created using the following code : playerdict = {('john','denver'):12345,('keneith','Noisewater'):23456} The dictionary is very long so I saved it to a python file. with open('playerdict.py','w') as…
kdbaseball8
  • 111
  • 8
2
votes
1 answer

using the knockout js website tutorial - how to uppercase fullName (instead of just lastName)?

i'm just killing some time and getting my hands dirty with some knockout.js. I've never gone near it before, so I figured I'd take a look at what its all about. On the official website - http://learn.knockoutjs.com, I've modified the code on step…
2
votes
1 answer

How do I create a form that will update the value of a field for selected records?

I am using a link from an index page that has a group of nested records (row) that I need to update all at once. The link goes to an edit action that I need to make update the attributes of nested records (prisms). I tried using the simple_form gem…
2
votes
1 answer

Why is it not possible to update a value in a HashMap using bracket [ ] notation?

I wrote a "count all character occurrences in a string" function with Rust, but updating/adding to the values does not work with bracket notation. Why is that? What works is this: use std::collections::HashMap; fn main() { let myString = "Go…
niilz
  • 59
  • 1
  • 7
2
votes
2 answers

Is there a way to copy a certain section of a surface using Surface.copy()?

I am new to dirty rect animation and I am currently trying to store a snapshot of the main display surface window, however I would only like to store the area where my item is going to be blit so the next frame I can call this stored snapshot…
2
votes
0 answers

Gutenberg Update Fail

I'm using Gutenberg but i got an update and I gave the update. after that I am unable to save/edit my post/page You can see screenshot below right now what can I do??
Istiyak Amin
  • 246
  • 4
  • 20
2
votes
2 answers

How can I structure auto updating a desktop application when you have multiple server versions, with breaking changes between each server version?

Structure: Server - Desktop Application I would like to have an auto update mechanism on the desktop application. This can be achieved with stuff like Squirel.Windows, and is outside the scope of this question. Just a side note the DesktopApp has…
2
votes
0 answers

Update a JSON column in mysql using sequelize

I am using sequelize with mysql and i am trying to update a column which is of JSON type. I specifically want to update a particular key in the JSON. Here is what I have tried till now. Profile.update( values, { where: { …
arvind
  • 778
  • 1
  • 9
  • 16
2
votes
3 answers

Parallel.For updating a textblock

I am trying to update a WPF textblock from within a Parallel.For and I can't. I use a dispatcher but I guess, I do it the wrong way. All of the work is done at first and then the textblock updates iteratively and fast. Here's my…
muku
  • 238
  • 1
  • 7
  • 20
2
votes
1 answer

Updating objects/model across multiple controllers

I'm a beginner working on swift. So in my project I have used multiple object/model, which I have used in almost all the controllers. My question is, how do I update my object/model(across all the controller)automatically when it is updated in any…
Raj.S
  • 81
  • 1
  • 2
  • 9