In addition to providing access to repositories, this site is an experiment on ways to publish code.
The experiment has several parts:
Can a static website provide an effective user experience?
I used a static website for my Syracuse University courses for about 15 years. With static
pages I could present from whatever laptop or desktop I was using, loading pages directly from
the local drive without any installation. That is important in an enviroment where several players
determine what a site is allowed or not allowed to do. Also, that greatly expedites the creation
and editing of new pages, because you can immediately view the contents affected by change without
uploading to a constrained environment.
I continued with that approach because github will host (only) static websites and does so in a very
easy to use process. But can a static site do everything needed? That, of course, depends on the
site's mission. You can't use database facilities nor facilities provided by a framework
like Asp.Net Core.
However, you can do a lot in rendering content. A good example is the StoryTeller. Its processing
is determined using only JavaScript, CSS, and HTML. That took some interesting designs to make that
work: see StoryTeller Design. But the result works well, probably
as well as you could do with a web framework hosted in a webserver.
Conslusion: I see little reason to use anything other than static sites1 to publish
code. For those who would use a site generator rather than craft a lot of JavaScipt, CSS, and
HTML code there are static site generators available, e.g.,
Jekyll and Hugo.
How to organize a large collection of code resources that scales well with increasing content?
This experiment implemented a repository menu with dropdown links, one for each category:
utilities, tools, components, libraries, projects, and code demonstrations.
A user can find any code published by the site simply by hovering over each of these links
to open the associated dropdown. Clicking a link in the dropdown opens a documentation file
for the code, which in-turn links to the code folder.
Will this scale well? The current organization works well for about 50 repositories. If
a site needs more, the Repository.html page can be factored into RepositoryCpp.html,
RepositoryCs.html, RepositoryJv.html, ..., very similar to database sharding.
That would require an extra user click, and we
always want to minimize click counts to do anything. But that is probably just a symptom
of the domain complexity, not a failure of the approach, or at least that is what I currently
believe.
Conclusion:
Using repository summary pages, RepositoryCpp.html, RepositoryCs.html, ... with dropdown menus
making contents visible with simple hover actions seems like a very effective way for users
to find what they need or explore what's available in large code collections.
Would this work on a national scale, e.g., code made available from Federal research institutions?
Probably not, although a hierarchy of sites like this probably would. An alternative might be
to use something like the ∞DataLibrary, described in a sister story.
How to help users understand what a repository's code does and how it is designed?
We want something akin to the Unix/Linux man pages, but decidedly easier to find information
and providing the smallest descriptions that work.
We decided to place the documentation adjacent to the code it represents. Here, by adjacency
we mean direct linkages, not necessarily colocation in folders. So, clicking on a Repository
menu item takes you directly to the documentation page. At the top of each page is a link to
the associated code folder, e.g., the github repository.
Most documentation pages provide: Concept, Usage, Design, and Status sections. The intent is
that the document fits on a single webpage with little scrolling necessary to see all the text.
The sections may vary from repository to repository, but most follow this schema.
Conclusion:
Fairly brief documentation pages with the sections listed above, or something similar, helps
users determine if code will satisfy their needs and gives them an idea of how it works. That
probably won't eliminate the need to look at code once a use decision has been made. However
the process of reading the code, if it is well structured and uses good names, will be significantly
easier and more productive with the help of documentation, as described here.
How to balance the use of precious webpage real estate when displaying text, images, and diagrams?
Currently, we use expandable image/diagram blocks. Clicking on the body expands the block,
clicking on its title contracts. So most pages start with images that may be too small to see
all their details, but make a lot of space for text. Users simply click on the image or diagram
to see all its detail.
That seems to work quite well, although I'm still experimenting with other widgets, e.g.,
splitter bars and images that drag to enlarge.
Conclusion:
I've experimented with image resizing using the major browsers and in tablet environments
as well as laptops and desktops. I believe it will be hard to do much better. Note that the use
of HTML5's <details> tags also helps greatly managing page real estate. In several
places in this site I've used them together with good results.
How do we make navigation through a sequence of pages as painless as possible?
A lot of the site material is organized into sequences of pages. Examples are Blog pages,
repository documentation pages, and story content.
You will see [next] and [prev]
buttons on the top menu if you are looking at one of a sequence of pages.
In addition to the top menu [next] and [prev]
we provide a navigation block at the lower right of each page, with a series of buttons. We did
that because we wanted to provide more options than just next and prev, for example snapping to the
top or bottom of the current page and didn't have enough menu real estate for that.
If the user doesn't want to see those buttons they can
be toggled off from the "About" dropdown available on all the site menus.
Each of the buttons in the navigation block has a corresponding keypress event. Pressing the N key
has the same effect as using the navigation block [n] button.
Another experiment was to provide touch-based swipe events. Those are useful for viewing the site
with a tablet. However, when using a laptop or desktop computer, the buttons and keys seem much
more effective.
Conslusion:
I've used schemes similar to these on my
Syracuse University website and gotten
a lot of mostly positive feedback about ease of finding things. The biggest complaints I received
were about finding specific code needed for class projects. That is the reason I've use the
repository structure here - that was done in a much less effective way on the SU site and spurred
the use of the current schema.
I believe that the design used here is close to optimal. I'm open to suggestions, but don't
expect to change the approach used here, other than possibly to refactor, as described above, as more
content is added.
Physical organization of files in directories has some issues. This site currently has more than
100 pages and perhaps 50 images. I initially started locating code in directories by function, e.g.,
main pages, stories, resource pages, etc. But almost all pages have menus, and if you put them in
seperate directories the menu links need to reflect their location. That causes a lot of maintenance.
I decided to put almost all pages in the same directory and all the images and diagrams, scripts, and
styles in child directories. That could make finding files in the main directory somewhat difficult.
I've addressed that by using naming conventions, all the blogs start with Blog... and all the pages
in each story start with the story name. That helps a bit. Things got much more managable when I started
using IDE (virtual) folders to organize code.
See Figure 1 for a view of Visual Studio's Solution Explorer View with these folders. Note that
these are not physical folders, just Visual Studio's way of presenting the view to you. So there is no
issue with menu link paths.
Other Experiments
I plan to implement page widgets like imageSizer as standard WebComponents. There are several
similar options, e.g., React or Vue widgets. Using WebComponents probably won't affect the user experience,
but it will make the website developer (me in this case) more productive. Will the benefit be worth
the development effort? I expect so, but the jury is still out.
There isn't much material in this website on the relationships between software structure,
platform tools, and the build process. I expect to try several approaches for documenting
that fairly soon.
The experimentation won't stop here, but will slow down as I turn to improving site content.
One issue with static sites: there is no effective way to implement search queries. That is straight-forward
with most site frameworks like Asp.Net Core, but in static sites we rely on JavaScript for processing
and, for security reasons, JavaScript is not allowed automated access to site files.
However, even with non-static sites, the site host may be unwilling to allow intensive searches by
any user. That could cause high server work loads and would be throttled by the host.
What is practical, and can be implemented with either static or non-static sites, is to schedule
git pulls from the site to refresh a local mirror. Then execute a local search with whatever tools
are made available to do that. The idea is to pull a few repositories each day, eventually cycling
through all of them. A PowerShell script may be a good way to implement this.
So, at any given time, all most all the repositories are up-to-date
and searches are unlikely to miss a component matching a user search query.
I plan to eventually implement that process and post the tools and documentation to a site repository.