active questions tagged updates - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T03:38:22Zhttp://stackoverflow.com/feeds/tag/updateshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/205830/c-windows-automatic-software-updates6C#: windows automatic software updatesPaul2008-10-15T18:16:32Z2009-12-03T19:12:59Z
<p>What are some good solutions for handling automatic web based software updates for windows forms projects? I am aware of microsoft one-click, but am not interested in it at this time.</p>
http://stackoverflow.com/questions/1623322/sql-update-to-record-with-nearest-data0SQL update to record with nearest dataKarl2009-10-26T06:09:43Z2009-11-10T22:48:07Z
<p>In SQL server 2008:</p>
<p>Suppose I have two tables. </p>
<p>Table1 has 3 fields: Name, Date1 and Date2. Currently, all the Date2 entries are NULL. (Name, Date1) form a unique key.</p>
<p>Table2 has 2 fields: Name and Date2. (Name, Date2) form a unique key.</p>
<p>Every "Name" in Table1 has at least one corresponding entry in Table2.</p>
<p>Now, I want to update all the Date2 entries in Table1 (remember they are all NULL right now) to the Date2 entry in Table2 that is the <strong>closest</strong> to Date1 in Table1. I.e. the date that would give the result of:</p>
<blockquote>
<pre><code> min(datediff(dd,Table1.Date1,Table2.Date2))
</code></pre>
</blockquote>
<p>So to be clear, if I have the following entries:</p>
<p><strong>Table1:</strong></p>
<p><em>[Name]: Karl, [Date1]: 1/1/2009, [Date2]: NULL</em></p>
<p><strong>Table2:</strong></p>
<p><em>[Name]: Karl, [Date2]: 1/1/2000</em></p>
<p><em>[Name]: Karl, [Date2]: 1/7/2009</em></p>
<p><em>[Name]: Karl, [Date2]: 1/1/2010</em></p>
<p>Then I want to update Table1.Date2 to '1/7/2009' since that is the closest date to '1/1/2009'.</p>
<p>Thanks a lot</p>
<p>Karl</p>
http://stackoverflow.com/questions/1502027/whats-a-reliable-way-to-check-an-rss-feed-for-new-entries1What's a reliable way to check an RSS feed for new entries?donut2009-10-01T05:22:11Z2009-10-18T07:00:04Z
<p>Part of an app I'm building needs to check RSS feeds for updates. I'm looking for a reliable way to know if a feed has new entries.</p>
<p>I know that sometimes people make posts to the future and, after that, posts to the present time which could cause some entries to be hidden. It seems like there could be more complications than that, as well. I also know that hashing the title or content would result in poor performance and unreliable results since those can change and are not a sign of new entries. And I know that a few years ago when I was maintaining a podcast RSS feed manually I never changed the item.</p>
<p>So, I need some way to reliably check RSS, Atom, etc feeds for new entries since they were lasted checked.</p>
<p>Specifically, this application will be written in Python for Google App Engine using <a href="http://www.feedparser.org/" rel="nofollow">Universal Feed Parser</a>, but I doubt that matters too much in this case.</p>
http://stackoverflow.com/questions/1517595/equinox-p2-for-an-arbitrary-osgi-application0Equinox p2 for an arbitrary OSGi application?Grigory2009-10-04T22:41:03Z2009-10-13T11:43:55Z
<p>Hello.</p>
<p>I am designing a software system which I think I am going to implement on an OSGi platform. It is going to be a software system running on self-service terminals. OSGi idea suits well for my demands of managing devices and end-user related functionality.
I think I am going to use Equinox as the OSGi implementation. So I came up with a question that I cannot find answer to: is it possible to setup the Equinox p2 to manage updates to my system on distributed terminals? I'd like to update lots of terminals from one place and keep track of which was updated and which was not updated and which terminal is running what version of the software system. I understand that Equinox p2 can be used to manage updates for an Eclipse RCP application but what about an arbitrary application running on the Equinox platform?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1427264/send-a-class-not-just-a-class-interface-between-servers1Send a class, not just a class interface, between servers?David Lively2009-09-15T13:44:11Z2009-09-15T14:02:46Z
<p>I am creating a grid application which requires me to send software packets that wrap a class out to participating nodes within my grid. </p>
<p>The first idea that I came up with was to have the master nodes contact each node (running a Windows service) and send an assembly containing a class which adheres to a common interface along with a .config file containing, well, configuration information.</p>
<p>Is there a better way to do this? Aside from the discussion on whether this should be a push or a pull, what's the best way to get what is effectively a software update out? It would be great if I could use something similar to a WCF service called by the client nodes, but that would, of course, leave the real processing on the master node, which would effectively uncluster my cluster.</p>
http://stackoverflow.com/questions/756251/sql-server-2008-filestream-error0SQL Server 2008 Filestream Errormtrax2009-04-16T14:02:31Z2009-08-23T17:55:31Z
<p>On my local Windows XP machine, I'm not able any more to create databases with FILESTREAM.</p>
<p><img src="http://img379.imageshack.us/img379/9899/errorv.jpg" alt="alt text" /></p>
<p>This error is caused by one of these security updates from MS:</p>
<ul>
<li>KB952004 </li>
<li>KB923561 </li>
<li>KB961373 </li>
<li>KB956572</li>
<li>KB959426 </li>
<li>KB960863</li>
</ul>
<p>Does anybody know how to resolve the problem WITHOUT removing the security updates?</p>
http://stackoverflow.com/questions/1281321/dynamically-updating-part-of-a-page-for-all-users0Dynamically updating part of a page for all usersstringo02009-08-15T06:33:00Z2009-08-15T06:41:08Z
<p>I want to dynamically updating a part of a web page for all users on it when I chose to (through a seperate page).</p>
<p>The scenario I'm thinking of:</p>
<ol>
<li>Say there's a chat box and a picture
on a page.</li>
<li>When I click a button on another
page (or the same), the picture
changes to an embedded youtube video
for all users on the page chatting.</li>
</ol>
<p>What's the best/easiest way to do this? </p>
http://stackoverflow.com/questions/772970/how-do-xbox-game-updates-work5How do XBox game updates work?scottm2009-04-21T14:54:26Z2009-08-07T14:55:32Z
<p>You have a static medium, a cd, so you can't change any files on it. So how do the updates work? I understand there is come code that runs and checks if the version isn't correct, and then downloads a patch if needed, but how does that path get integrated into the game?</p>
<p>Is there a bit of "update checking" that checks for patch files and loads them up? If that's the case, how do they design the code so that the developers can fix problems that were unforseen?</p>
http://stackoverflow.com/questions/1227739/applications-running-on-java-1-4-but-windows-server-says-new-java-updates-availab1applications running on java 1.4 but windows server says new java updates available.joe2009-08-04T14:08:04Z2009-08-04T14:39:17Z
<p>I am running applications on my windows server that run on Java 1.4</p>
<p>In the bottom right hand corner, Java wants me to update. Is this going to update to Java 1.6, or do these auto-updates only put out non breaking patches and my system will still be Java 1.4</p>
<p>Any insight would be great!</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1224131/convince-the-need-of-maintenance-updates-and-recoding3Convince the need of maintenance, updates and recodingZyphrax2009-08-03T19:18:53Z2009-08-03T20:54:08Z
<p>One of my favorite topics to discuss with my boss is the need for maintenance work, doing code updates and refining existing code with new techniques. Especially things like: a new Telerik controls update (got to love breaking changes).</p>
<p>How do <strong><em>you</em></strong> convince <strong><em>your</em></strong> boss? </p>
http://stackoverflow.com/questions/1182791/updating-iphone-apps-via-the-web1updating iPhone apps via the webKaffeine Coma2009-07-25T19:07:43Z2009-07-26T18:34:10Z
<p>I'm working on an eBook app for the iPhone. Given the time it takes for Apple to review and publish updates, I'm considering adding a feature to update the content via my own (Google App Engine-powered) web site. </p>
<p>This would allow me to update the content at will, rather than being at the mercy of the App Store review team. Is Apple likely to reject this kind of behavior in an app? I've asked in the Apple Developer forums, but received no response.</p>
http://stackoverflow.com/questions/917744/golf-stats-api-providing-to-the-minute-updates0Golf Stats API providing to the minute updates?Skinner2009-05-27T20:01:06Z2009-07-13T22:06:59Z
<p>I've been searching for an API that provides hourly/daily updates for golf statistics such as leaderboards and player rankings (free or paid) without much luck. The golf channel has a similar system but it's not exposed in anyway. Any ideas on a good place to look?</p>
http://stackoverflow.com/questions/1066735/preventing-http-request-on-javascript-dom-update0Preventing HTTP REQUEST on javascript DOM updateTodd2009-07-01T00:10:27Z2009-07-01T01:00:48Z
<p>I am getting re-execution of imported js files upon a hitting a form button which calls a function to insert a DOM element into page ( in simulation to exe of an ajx callback function). The DOM insertion causes a page refresh which re-requests all files from server.</p>
<p>Nothing big on the function call:</p>
<p>var addFashionVideo = function() {</p>
<p>var nodeContainer = document.getElementById('vidList');
var mytitle = document.forms.addVideo.newVidName.value;
var addTextNode = document.createTextNode(mytitle);
var newLI = document.createElement('LI');
newLI.appendChild(addTextNode);
nodeContainer.appendChild(newLI);</p>
<p>return this;</p>
<p>};</p>
<p>TARGET DIV for DOM update code is : </p>
<li>Watch Fashion Paris Video</li>
<p><hr /></p>
<p>I place an alert on this page and after the function attempts to insert the new LI
[ oddly the LI appears for a split second then disappears ] a page refresh is triggered
and my alert on the page re-executes.</p>
<p>// Perhaps Maybe I have a browser issue on this computer or I am just to new of a scripter
// to not see the problem...any comment appreciated.</p>
http://stackoverflow.com/questions/967918/should-i-have-to-enable-automatic-update-on-debian-lenny-stable-1Should I have to enable automatic update on debian lenny stable ? [closed]unknown (google)2009-06-09T02:48:48Z2009-06-09T02:52:42Z
<p>Hi,</p>
<p>I have installed a new Linux Debian Lenny server that will be a LAMP and a Subversion server.
Should I have to enable automatic updates ?</p>
<p>If I enable it, I am sure that I have the latest security patches. It also should not break my system since Debian stable provides only security patches.
If I install them manually, I may be on high security risk during multiple days & week.</p>
<p>Please keep in mind that I am not an full time system administrator, so I do not h ave the time to look at security bulletins.</p>
<p>What are you usually doing with your servers? What is your advice?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/919467/entity-updating-strategy0Entity Updating strategyenigmae2009-05-28T06:27:51Z2009-05-28T07:52:34Z
<p>There is some discussion on my team about updating entity data and how best to approach it. This is a security framework and so here are some of the constraints and ideas.</p>
<ol>
<li>every table in DB has a PK that is a guid, this is required for our multi-node clustering solution. The idea is that we don't want to expose this on an entity to a customer via an API because it could do two things,
<ol>
<li>give them more info that needed for their job and giving hackers more information about the system.</li>
<li>support nightmare is that a client hardcodes to this ID in some fashion and if we need to change our PK's clients are impacted.</li>
</ol></li>
</ol>
<p>solutions are to expose the natual key of the items like Role object with a unique Name, and Realm, together guarentee uniqueness however updating either of these values is the challenge, cause you need to specify the old and new values to update, or pass two objects in original and new object, so we can find the one to update. kind of messy, </p>
<p>another approach is to make an alternate key and have this exposed to the client they can use it all they want and we don't care cause it isn't tied to our PK.</p>
<p>it seems everyone these days just uses PK as ID for entities with no issues, not sure how to convince our team of veterns from the old timey programming days.</p>
<p>Another issue is how to support partial updates, issue is that you have entity with 10 properties, 4 collections, etc... with a name+realm combo and specify what property to update instead of pulling down whole object change 1 field, send back for update. I say lazy load the collections, but not sure if partial update makes sense.</p>
<p>thoughts?</p>
<p>thanks!</p>
http://stackoverflow.com/questions/900634/how-do-you-handle-technology-updates-in-long-running-projects2How do you handle technology updates in long running projects?JRoppert2009-05-23T01:33:45Z2009-05-23T09:05:55Z
<p>Let's assume you're in the middle of a long running project (long running = several years) and, as expected, there will be several things coming up with brand new releases. There might be a new .Net Framework with brand new features (e.g. Linq, Entity Framework, WPF, WF...), a new Visual Studio or V.next of your favorite Control Library, a new Mock Framework and a lot more things.
What are your guidelines for handling these technology updates? Do you adopt them instantly or do you ignore them until the end of the project? Do you have different guidelines for different things (Tools, Frameworks, supporting stuff)?</p>
http://stackoverflow.com/questions/793067/update-using-oracledataadapter1update using oracledataadaptergudluck2009-04-27T11:03:32Z2009-04-30T06:50:40Z
<p>I am using the following lines of code to update records based on rowid:
here dsmain the dataset that i am using....</p>
<p>For j = 2 To AuditGrid.Rows - 1</p>
<pre><code> If AuditGrid.ActiveCell.Row = j And AuditGrid.ActiveCell.Col = ColMark Then
Uvalue = Trim(AuditGrid.Cell(j, ColMark).Text)
da.UpdateCommand = New OracleCommand("update audit01 set user" & Trim(User) & "='" & Trim(Uvalue) & "' where audit01.rowid='" & Trim(AuditGrid.Cell(j, ColWRowid).Text) & "'")
End If
Next
da.Fill(DsMain, "AUDIT01")
da.Update(DsMain, "AUDIT01")
DsMain.AcceptChanges()
</code></pre>
<p>the problem is that the database is not being updated. what to do?</p>
http://stackoverflow.com/questions/732638/ext-js-how-to-update-data-source-update-every-minute-with-deltas1Ext JS - How to update data source update every minute with deltas ?Ryan Oberoi2009-04-09T03:06:03Z2009-04-09T04:13:59Z
<p>Looking for a reference implementation. Haven't tried LiveGrid - though tilting towards that implementation. Before I migrate, I was wondering if anyone could point me in a better direction.</p>
http://stackoverflow.com/questions/372287/how-do-i-turn-off-automatic-updates-in-aptana-studio-for-eclipse1How do I turn off automatic updates in Aptana Studio for Eclipse?rudycantfail2008-12-16T18:56:10Z2009-02-16T22:38:05Z
<p>I installed Aptana Studio plugins for Eclipse and now Eclipse startup is slower than ever because Aptana Studio always checks for updates at startup -- and it's really slow! </p>
<p>How do I turn off auto updates in Aptana? </p>
http://stackoverflow.com/questions/454622/php-application-updates0PHP Application UpdatesUnkwntech2009-01-18T03:59:57Z2009-01-18T10:35:42Z
<p>I am writing a web app in PHP, and it has come time to build an update system, one of the requirements is automatic updates, how should I do this?</p>
<p>I want to do it without a cron, so I'm going to have to check for updates when requests are made to the system, should I do this only when an admin, with significant privs, logs-in, I think this is going to be the best but at least 1 client has said they don't want this because they only intend to login every few month, and they still want to get the security updates.</p>
http://stackoverflow.com/questions/425362/linq-to-xml-updates-how-does-it-handle-multiple-concurrent-readers-writers0LINQ to XML updates - how does it handle multiple concurrent readers/writers?Steven Robbins2009-01-08T18:42:03Z2009-01-08T19:49:30Z
<p>I have an old system that uses XML for it's data storage. I'm going to be using the data for another mini-project and wanted to use LINQ to XML for querying/updating the data; but there's 2 scenarios that I'm not sure whether I need to handle myself or not:</p>
<p>1- If I have something similar to the following code, and 2 people happen to hit the Save() at the same time? Does LINQ to XML wait until the file is available again before saving, or will it just throw? I don't want to put locks in unless I need to :)</p>
<pre><code>// I assume the next line doesn't lock the file
XElement doc = XElement.Load("Books.xml");
XElement newBook = new XElement("Book",
new XAttribute("publisher", "My Publisher"),
new XElement("author", "Me")));
doc.Add(newBook);
// What happens if two people try this at the same time?
doc.Save("Books.xml");
</code></pre>
<p>2- If I Load() a document, add a entry under a particular node, and then hit Save(); what happens if another user has already added a value under that node (since I hit my Load()) or even worse, deleted the node?</p>
<p>Obviously I can workaround these issues, but I couldn't find any documentation that could tell me whether I have to or not, and the first one at least would be a bit of a pig to test reliably.</p>
http://stackoverflow.com/questions/383777/php-function-to-get-facebook-status1PHP function to get Facebook status?Bryan Denny2008-12-20T21:44:22Z2009-01-04T19:35:07Z
<p>I'm looking for a good, simple PHP function to get my latest Facebook status updates. Anyone know of one?</p>
<p>Thanks!</p>
<p><strong>EDIT:</strong> I've added a half-solution below.</p>
<p>Or if anyone knows a good way to read in the RSS feed and spit out the recent status update?</p>
http://stackoverflow.com/questions/360028/how-often-should-you-release-software-updates9How often should you release software updates?GateKiller2008-12-11T16:45:29Z2008-12-12T02:25:14Z
<p>Moments ago <a href="http://twitter.com/codinghorror/status/1051535711" rel="nofollow">Jeff Atwood said the following on twitter</a>:</p>
<blockquote>
<p>Look, I love rapid new software releases, but the frequency of WordPress releases is just ridiculous.</p>
</blockquote>
<p>Which makes me think, <strong>how often should you release software updates?</strong></p>
<ul>
<li>Daily?</li>
<li>Weekly?</li>
<li>Monthly?</li>
<li>Yearly?</li>
</ul>
<p>Whats the best release strategy?</p>
http://stackoverflow.com/questions/252119/whats-the-best-way-to-give-the-user-weekly-updates-from-your-program2What's the best way to give the user weekly updates from your program?greg7gkb2008-10-30T23:19:20Z2008-10-31T08:01:30Z
<p>I have a program that, for the most part, operates in the background. Let's say it DoesWork(). Once a week, I want it to notify the user on some of the work it has completed over the past few days. It will be a basic status report, listing some files that have been downloaded.</p>
<p>Initially, I wanted to sent this status update via email, so I looked into that but there are a lot of problems. I need an SMTP server so I looked at GMail. It's okay but has a daily limit of 500 emails, so this wouldn't be suitable for release. Also, there would be issues with the same email account password being given out in each copy of the program, which as I understand it, is a risk even if the password is stored using encryption.</p>
<p>Then I thought maybe I could use the user's own email account to send email to his/her self. This has a couple of complications too: the user would need to specify all of the smtp information for his/her email account, which is too complicated for the target user. Also, I don't want to have to have people entering their email account password into my program just to send emails. I don't think that's a good habit to promote.</p>
<p>Is there any way I could do this via email? Email was my first choice because it's a system of notification that users will already be checking. It's fairly non-intrusive.</p>
<p>Is it necessary to setup my own smtp server? If so, how can I do that?</p>
<p>If email is a no-go, I was also thinking about just generating a local HTML file with the relevent information, and then having a notification popup from the program once a week to inform the user that a new update report is ready. I think this is totally doable, it's just overly instrusive and not my first choice. I want to piggyback on a system that the user is already using.</p>
<p>Thanks!
-greg</p>
http://stackoverflow.com/questions/207407/whats-the-best-way-to-get-eclipse-users-to-regularly-update-a-plugin3What's the best way to get Eclipse users to regularly update a plugin?Uri2008-10-16T04:04:15Z2008-10-16T04:37:18Z
<p>I'm going to be distributing a plugin that will be routinely updated with features, bug fixes, and updates to downloadable corpuses.</p>
<p>The usual update site mechanism can do the update ok - when the user asks it to.</p>
<p>The problem is that (unlike MS Office), the automatic updater preference is off by default and I don't want to change that default for my users or count on them changing it. </p>
<p>Can I write something that occasionally checks for updates? Or prompt the user regularly? What's bad form and what's acceptable ?</p>
http://stackoverflow.com/questions/164276/wrong-order-with-sharepoint-updates0Wrong order with sharepoint updatesLayla2008-10-02T19:58:26Z2008-10-08T13:02:17Z
<p>I have installed a hotfix package for Sharepoint and after that I found out that there was another for WSS...</p>
<p>I understand that, as long that we have separate hotfixes for WSS and Sharepoint, if for solving one problem, there aren't both Sharepoint and WSS hotfixes (I mean, that one component is only affected by the WSS one), I can normally apply the WSS hotfix package after having applied the Sharepoint one. Is that true?</p>