The XaraXone looks like a dimwitted interns side project now... Holy hell! What happened!?
Where do I find Gary W. Priester's tutorials? I would like to show my daughter different ways to "bake a vector cake".
Printable View
The XaraXone looks like a dimwitted interns side project now... Holy hell! What happened!?
Where do I find Gary W. Priester's tutorials? I would like to show my daughter different ways to "bake a vector cake".
Here's the archive that Barbara and Gary David Bouton created of the XaraXone before I retired several years ago. http://archive.xaraxone.com/
Thank you, Gary.
However... The tutorials lead to a 404 when clicked... (No shocker there... grandpa and grandma Button heads screwed up everything.) How are people supposed to find them from the current page... if you we can't even find them from this secret page with a broken link?
I hope your wife Mary and yourself have been well. I think of you often.
http://archive.xaraxone.com/html/tutorials.html Takes me right to the tutorials. 1996 - 2010
Some of the links might be bad, shareware for example. And the early tutorials were done with my very limited ability to create content in HTML.
I'm going there in Firefox, Windows 10.
that's true gary - but with some of the links I get for example:
clicking the tutorials links directly seems to give this error... clicking on the breadcrumb links at the top for a given year seems to mostly work including for downloads, but not all - not that I have extensively audited it :DQuote:
Forbidden
You don't have permission to access /tutorials/oct09/ on this server.
Apache/2.4.10 (Debian) Server at site.xaraxone.com Port 80
Yeah, I have heard there were issues. It was a tremendous job for Barbara Bouton to archive all that work. I frequently search through the Workbook articles and the Guest Tutorials and most of those are accessible. October 09 does appear to have gone missing.
I have great admiration for everyone who provided such resource - yourself, GaryB and all those who made tutorials and helped; even did some myself, although they were posted ad-hoc
The OP implies he is known to you; be that the case or no, there is no cause to go laying blame where it is not due
Every one I clicked on is FORBIDDEN.
We go through this rigmarole every couple of years.
You have to put on the Sherlock Holmes hat.
Start with https://www.xaraxone.com/us/tutorial/; this is Magix's attempt to get things to work.
There is a dropdown of Authors. try that first for GaryP.
There are so many of Gary's tuts missing.
if you click one you get to the Archive. You can then click on the Year link.
You will find many fail.
Another path is http://site.xaraxone.com/tutorials/.
These are post-Gary - 2011 to 2015.
This archive Link takes you to http://archive.xaraxone.com/archive.htm.
You can then try the Guest tutorials.
The best being http://www.xaraxone.com/guest/guest101/.
Be brave and change the guest number, starting with 01.
Acorn
Someone could extend this code that is run in the browser console to check the Page Link still exist.
It would require a function call to check if a link returns a 200.Code:var x = document.querySelectorAll("a");
var myarray = []
for (var i=0; i<x.length; i++){
var nametext = x[i].textContent;
var cleantext = nametext.replace(/\s+/g, ' ').trim();
var cleanlink = x[i].href;
myarray.push([cleantext,cleanlink]);
};
function make_table() {
var table = '<table><thead><th>Name</th><th>Links</th></thead><tbody>';
for (var i=0; i<myarray.length; i++) {
table += '<tr><td>'+ myarray[i][0] + '</td><td>'+myarray[i][1]+'</td></tr>';
};
var w = window.open("");
w.document.write(table);
}
make_table()
Working through all the found pages would allow a collation of dead links that could be given over to Magix to unravel.