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
10
votes
3 answers
Browsers won't read updated CSS
EDIT: My sincere apologies! This wasn't an issue with anything but myself - I had a global.css file with correct stuff in it, but below that I included another file with the old CSS in it, in the bit of my HTML. Facepalm.
I have a site I'm…

Bojangles
- 99,427
- 50
- 170
- 208
10
votes
5 answers
Set all values in one column to NaN if the corresponding values in another column are also NaN
The goal is to maintain the relationship between two columns by setting to NaN all the values from one column in another column.
Having the following data frame:
df = pd.DataFrame({'a': [np.nan, 2, np.nan, 4],'b': [11, 12 , 13, 14]})
a b
0 …

Krzysztof Słowiński
- 6,239
- 8
- 44
- 62
10
votes
3 answers
Android, Why launcher icon and other images never change when I update my images?
I released one version of my application. For this version I had an image for launcher icon. For next version (update), I replaced this icon with other image.
My problem is when I update last version with new one, new launcher icon doesn't display…

Hesam
- 52,260
- 74
- 224
- 365
9
votes
2 answers
Sharepoint: What happens to lists based on content type when content type is updated?
I have kind of hypothetical question (at least for now :))
Let's say I create list based on some custom content-type. I add some 1000 items into that list (in production). Then customer comes and he say that he need to modify that custom content…

Marian Polacek
- 2,906
- 4
- 30
- 37
9
votes
4 answers
How to update a JSON file by using Python?
I am using Python and I have a JSON file in which I would like to update a value related to a given key. That is, I have the my_file.json containing the following data
{"a": "1", "b": "2", "c": "3"}
and I would like to just change the value related…

user502052
- 14,803
- 30
- 109
- 188
9
votes
5 answers
Updating UIImage on UiBarButtonItem from identifier to image
I am currently making an application for IOS but I am having trouble changing an image... what a shame...
The situation is like this :
I have a toolbar containing my items, and one of this items is the play button created from the identifier…

Clad Clad
- 2,653
- 1
- 20
- 32
9
votes
12 answers
Is there an API or tool that can automate software updating?
Is there any API or tool that can automate software updating? It should take care of checking for updates from a URL for a provided list of files and downloading and replacing the ones that need updating. It would also be nice if it contained an…

luvieere
- 37,065
- 18
- 127
- 179
8
votes
5 answers
How to automatically update a Flutter Mobile app to newer version when the application is not on play store or app store?
let's say i have a Flutter APK hosted on my website where users can download and install , what i'm interested to know is how possible that the application can check for newer version when the app lunches and if true a progress bar appears showing…

Asmoun
- 1,417
- 5
- 20
- 53
8
votes
3 answers
Static Collection update inside CompletableFuture#runAsync
Preconditions (generic description):
1. static class field
static List ids = new ArrayList<>();
2. CompletableFuture#runAsync(Runnable runnable,Executor executor)
called within
static void main(String args[]) method
3. elements added to…

sergionni
- 13,290
- 42
- 132
- 189
8
votes
7 answers
Best way for a program to self update
What's the best way to terminate a program and then run additional code from the program that's being terminated? For example, what would be the best way for a program to self update itself?

Mike
- 1,760
- 2
- 18
- 33
8
votes
3 answers
Updating the production IIS WebSite and SQL Server Database without stopping
There is a testing server that uses the testing database. We test the website on the testing server. If it is okay, we update the website and the database schema from the testing server to the production server. But this method is very painful and…

oruchreis
- 866
- 2
- 12
- 28
8
votes
3 answers
FragmentPagerAdapter with ViewPager and two Fragments. Go to the first from the second and update first's text
I'm not familiar with FragmentPagerAdapter, so this is going to be one of those questions that we (you) read the description critically.
Structure: I have a FragmentPagerAdapter (code below), that will hold two fragments at a time. The first…

davidcesarino
- 16,160
- 16
- 68
- 109
7
votes
1 answer
Are class diagrams automatically updated? If not, is it possible to do this?
Are class diagrams automatically updated?
If not, is it possible to do this, so new classes are automatically added and removed/renamed classes are removed from the class diagram? Maybe there's a plugin for this?

lesderid
- 3,388
- 8
- 39
- 65
7
votes
3 answers
How to go about updating the GAE SDK?
I'm thinking about updating my version of the GAE SDK (1.5.1 -> 1.5.4). However, I've never updated a SDK before and I can't find any tools provided by GAE to facilitate this task nor am I aware that GAE does this automatically.
I realize I could…

Travis J
- 71
- 1
- 2
7
votes
2 answers
Gem file is requesting dependencies that are installed when upgrading from Rails 4 to Rails 5 but it says it could not find compatible versions
This is my first major upgrade of Rails (v4 to v5). I've done minor upgrades, like 4.1.1 to 4.2 etc...
I've upgraded to 5.1.1, and I'm getting this dependency error in the console
Bundler could not find compatible versions for gem "actionmailer":
…

NothingToSeeHere
- 2,253
- 5
- 25
- 57