Difference between Closed and Archive in Apple Bug Reporter? - bug-reporting

When I sign in to Apple Bug Reporter (aka Radar), the sidebar shows these sections:
Attention
Open
Hidden
Closed
Archive
Drafts
What's the difference between Closed and Archive?

I don't have any actual hard info here, but my belief is that Archive is just closed issues that haven't been touched in so long that their info is no longer cached and must be fetched from Radar again if accessed. If you actually click on an Archived issue, you'll find that it gets removed from the Archive, which is why I think it's just based on cached info.

Related

Download entire history of a Wikipedia page in HTML Format

I want to download the entire revision history of a single article on Wikipedia in HTML format, thanks to this question question, I am getting the entire history of a Wikipedia page in a JSON format but I want to get as a HTML format with images and everything.
I tried to convert to that json to other format but it did not work. Is there any way to doing this?
If you visit page then there is link view history which shows list of all previous versions and every version has link curr to display page which compares old version with current version.
Every link has &diff=...&oldid=... and if you remove &diff=... and keep &oldid=... then you should get only old version as HTML (with header which informs that you visit old version)
See page for Stack_Overflow
Current version:
https://en.wikipedia.org/wiki/Stack_Overflow
or
https://en.wikipedia.org/w/index.php?title=Stack_Overflow&oldid=1074237099
The oldest version:
https://en.wikipedia.org/w/index.php?title=Stack_Overflow&oldid=273483259
This way you could get HTML for all versions.
And if you use #diff=... with ID for different version (doesn't have to be current) then you can see also differences between two versions.
Current version:
The oldest version:

When using the {blogdown} package, can I exclude certain posts from building? [duplicate]

This question already has answers here:
How to prevent blogdown from rerendering all posts?
(2 answers)
Closed 2 years ago.
I have an R blog with several posts. One of these posts (let's call this one "Post X") contains code that takes very long (several minutes) to complete. (This is a call to animate() from the {gganimate} package.)
When I am writing a new post, I'd like to see a preview before deploying the whole blog anew (to Netlify in my case). But I do not want to wait for Post X zu complete every time I'm building the site. (I'm simply using the "Build Website" button in RStudio's "Build" pane.)
But, of course, as soon as I finish the new post, I still want Post X to be included in the blog. What I want is an option that allows me to "skip" building of Post X and use the old files that are already there from the last build (or some other idea I cannot think of right now). I tried setting draft: true in the yaml of Post X but it's getting built anyhow.
Do you have any ideas?
Sorry, I now found How to prevent blogdown from rerendering all posts? which basically answers my question. I am leaving this up here in case someone stumbles upon this question first. Feel free to tell me to delete this question.

how to recovery unsaved R codes? [duplicate]

This question already has answers here:
How to get unsaved script tabs
(7 answers)
Closed 2 years ago.
Please please help me. I was working on a project I saved my file to my desktop . yesterday after closing I pushed unsaved by mistake. I opened R today and it shows me the code that I had saved before.all my new codes disappeared I worked very hard in 4 last days and made some changes, is there a way to recovery my unsaved codes?
Try history(Inf) to get command history, even from previous sessions.
There is a simple way. Go to My Computer -> Documents -> and there you should see your unsaved .R scripts

Flex 3 + Flash Player 10 FileReference save function [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
help, losing extension when use FileReference download
Hi!
I'm having an issue that looks common when using the FileReference class in FP10 when saving a file.
The whole thing works fine as long as I don't change the default filename. If I do, then I loose the extension of the file... which is annoying >_<
I haven't found any "acceptable" workaround, but the posts I've seen are from a couple of months already. So I'm inquiring hoping that something's been done regarding this issue since then =)
Regards,
BS_C3
The only thing i am aware of that you can do is: After succesfull saving check the filename and display a warning if the user used the wrong/no extension.

Where can one find source archives of old SQLite versions?

The downloads page on www.sqlite.org appears to only have links to the current version, and I would like to get a previous version. I cannot see any obvious links to historical versions on the site and (unless I'm missing something obvious) there does not appear to be a sourceforge project.
Can someone point me at an archive of old SQLite source releases if such a thing exists?
Nigel.
I found this in their old message list archives. Hopefully this helps:
Older version of SQLite are aviable
from the website, but there are no
direct links on the web pages. You
need to manually edit the links to
get the file you need.
The 2.1 version of the database file
implies that it was created with a
2.X.Y version of SQLite. You should get the latest version which is
2.8.17 (I believe).
If you go the download page
http://www.sqlite.org/download.html
and the right click on the link to
download the latest Windows binary
file, then
select Copy Link Location (at least
using Firefox, in IE the command is
Copy Shortcut). Now open a new tab or
window and paste the link into the
address bar. You can edit the link and
replace the version number with the
version you want to download. In your
case you need to change
http://www.sqlite.org/sqlitedll-3_5_6.zip
to
http://www.sqlite.org/sqlitedll-2_8_17.zip
and then press enter to start
I know this question is kind of old but there's an easier way to get the URL to the older zip files.
Using a combination of answers here, you can calculate the download URL of the zip file for the specific version you want.
Determine the version number you want to get (we'll use 3.8.7.4 as an example)
Look on the timeline (http://www.sqlite.org/src/timeline?t=release) to figure out the year in which your desired version was released (3.8.7.4 was released in 2014)
Normalize the version number into exactly 7 digits. Expand each piece into 2 digits with leading zeroes except for the initial 3 which should remain 1 digit. For example 3.8.7.4 becomes 3080704. 3.13.0 becomes 3130000. (If there is no 4th period delimited piece, use 00)
Using your normalized version number, plug it into one of these formats, depending on what you're looking for (Replace the text '7DIGITS' in the urls below with your normalized version number, replace the text YEAR with the year in which the version was released
Source: http://www.sqlite.org/YEAR/sqlite-src-7DIGITS.zip
Amalgamated: http://www.sqlite.org/YEAR/sqlite-amalgamation-7DIGITS.zip
So our example versions become
http://www.sqlite.org/2014/sqlite-src-3080704.zip and http://www.sqlite.org/2014/sqlite-amalgamation-3080704.zip
I haven't tried this for every version but my 3 test versions worked. I would imagine the other download types (like precompiled binaries, documentation, etc) work as well.
Direct Access To The Sources
Also, if you want to compile yourself. Access to all SQLite source code is maintained in a CVS repository that is available for read-only access by anyone. You can interactively view the repository contents and download individual files by visiting this link
Also
www.sqlite.org/src/timeline?t=release will show when every sqlite version was released.
Checkout from cvs from the date you want and compile. Instruction how to checkout from cvs are here
Note: Use the -D option to checkout by date
The idea from TomWitt2 is fantastic (I had spent hours to find solution) but now the links seems to be have modified so follow below steps to get your archived version:
Get the latest version link from the download page here http://www.sqlite.org/download.html
Get your normalized 7 digit number as mentioned in answer by TomWitt2
Just replace the number in the link and you are ready to go
I've tried a few solutions on this page and elsewhere, all that I've seen seem outdated and no longer work. I've done the steps below as of 5/4/2016 with success.
Go to http://system.data.sqlite.org/index.html/finfo?name=www/downloads.wiki to view the history of the SQLite downloads wiki.
Search (ctrl+f) for the version you want (ex. 1.0.91.0)
Select the commit ID and it will open that old version of the page complete with download links to source code as well as precompiled binaries and setups.
You won't always find the version in a search (ex. 1.0.98.0), but it should be reasonably easy to find the correct page by the surrounding versions/commits.
You can also check archive.org for the downloads page:
http://web.archive.org/web/20150101000000*/http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki
Find the date that your desired version was released on from the SQLite news page (you may need to pick the next archive date after that). Select your desired link (sometimes the download page was archived, more ofter it seems like it was not). If the download page was not archived, edit the address bar to remove the archive.org-related info and you should be able to navigate directly to the SQLite download page for that version.
Follow this link to the official website and under "3.0 Obtaining Code Directly From the Version Control System" you can read further directions:
get the list of release check-ins (this link)
choose the required check-in
download source code archive
The oldest release available now is from
2007-08-13.
You are correct to point out that https://www.sqlite.org/download.html only links to the most recent release, but a page always linking the current release combined with Wayback Machine preserving every (well, hopefully) version of said page, is all you need to download your favorite release:
http://web.archive.org/web/*/https://www.sqlite.org/download.html
Given that the binaries themselves have not been removed, of course, but fortunately they seem intact to me.
In fact, I just downloaded SQLite 3.9.2 through this page:
http://web.archive.org/web/20151231190003/https://www.sqlite.org/download.html
You can get all release of SQLite from https://www.sqlite.org/chronology.html, this page contains the history of SQLite releases

Resources