GithubHelp home page GithubHelp logo

genomicsstandardsconsortium / gensc.github.io Goto Github PK

View Code? Open in Web Editor NEW
4.0 7.0 5.0 970.36 MB

Public repository for the GSC web site.

Home Page: http://www.gensc.org/

License: Creative Commons Zero v1.0 Universal

Ruby 0.19% HTML 99.81%
genomics genome-standards standards checklists website

gensc.github.io's Introduction

Welcome to the GSC website GitHub Pages

To see the website generated from this Repo: https://genomicsstandardsconsortium.github.io/gensc.github.io/

This GitHub repo contains all the code and pages requried to generate the above website, its writen almost entirely in MarkDown (MD). Whenever you commit to this repository, GitHub Pages will run Jekyll to rebuild the pages in your site, from the content in your Markdown files.

Repo layout

Here we describe the directory structure of the repository.

pages

The subdirectory called "pages" contains the directory structure of the html pages generated, only the "index.md" file is not in the "pages" directory.

images

The repository has been setup to have a single location for all Image files reagardless of the page in which they appear, this should allow for effective reuse of images and mean if/when any image/logo needs to be updated it can be done in one place. The exception to this are the meetings pages, where there are usually quite a lot of images for each meeting page, so they are grouped together within the relevant meeting page sub-directory.

other-media

Similarly, all downloadable files (termed "other media") should also be saved to the common directory regardless of which webpage they appear in. This will include things like PDF files or Powerpoint slides etc.

With both of those directories it is important to check for the existance of the file you are intending to upload first to avoid duplicates. You should also ensure the file names used are both meaningful and unique. When committing file uploads it would be helpful to include a description of the file in the commit comment.

_posts

This directory contains the "Notices" listed on the website. To generate a new "Notice" page simply add a file to this directory following the instructions within the directory. The file name must be of the format YYYY-MM-DD-title.md, and the file must contain the front matter: "--- layout: default title: New board members category: news tag: [news] date: 2018-05-07 ---"

_includes

The "_includes" directory holds the common files that can be added to any sub-page, specifically :

  • header.html file which provides the GSC header consistently for each page or wherever the {% include header.html %} flag is added to a webpage.
  • carousel.html - provides the code to generate the carousel used on the home page. The images to be included in the carousel are listed in the _data/carousel.yml file.

Its possible we might require a footer aswell that can be created here and added to any of the pages that require it.

_data

The primary reason for this directory is to hold YAML files with information used by some of the pages. Initially that is just "carousel.yml" to list the images to be included in the carousel on the front page. There is potential that it could be used for the MIxS terms in the future to build pages for particular checklist terms, but that is still to be finalised.

What is Markdown

Markdown is a lightweight and easy-to-use syntax for styling your writing. Below are the simple text format conventions:

Syntax highlighted code block

# Header 1
## Header 2
### Header 3

- Bulleted
- List

1. Numbered
2. List

**Bold** and _Italic_ and `Code` text

[Link](url) and ![Image](src)

For more details see GitHub Flavored Markdown.

Converting HTML pages to markdown

Since we want to keep most of the information from our current website (gensc.org) knowing how to covert that html website into MD is useful. You can simply cut and paste from a webpage to a text file and apply MarkDown to it manualy, which in some cases is actually the quickest way! But if the page has a number of links, text formatting, images or things that require some MarkDown code then using the converter below will probably be easier.

A free online HTML to MD converter is available here https://domchristie.github.io/turndown/ A better alternative is available here https://cloudconvert.com/html-to-md but it only lets you do afew each day for free.

To get the HTML of the page that you want to convert

  1. Navigate to the page you are trying to copy (e.g. http://www.gensc.org/meetings/gsc21/)
  2. Right click anywhere on page and select "view page source"
  3. Select-all (ctrl-A) and Copy the HTML code
  4. Paste into the TurnDown website window (or save as a text file to upload to cloudconvert) NB if using CloudConvert, check the settings (spanner icon) to make sure the output is GitHub flavor of MarkDown.
  5. Click convert, download converted file to your machine
  6. Save the file with relevant name in the relevant place in the github repo (e.g. https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/meetings/GSC21.md)
  7. Open the file in GitHub and use the "preview" option to check how the convertion looks, Tidy up as requried then commit your changes.

Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images NB- sponsors images they may already exist.

Where possible any augmentation of the page with externally hosted media files (e.g. you tube, images, slideshows etc) is strongly encouraged.

Check any links within the page are not pointing back to the old website, if you find any replace those with the new website links instead.

Adding in header

To include the GSC header section in a new page just add this line at the top of the .md file

{% include header.html %}

Jekyll Themes

This GitHub pages site will use the layout and styles from the Jekyll theme, the name of the theme is saved in the Jekyll _config.yml configuration file.

To Do

There are some "projects" that include numerous issue tickets that are hopefully small enough for volunteers to take and do in a reasonably short period of time as and when people have a spare 30mins to work on this website.

  1. The integration of the new MIxS v6 checklists and packages which will be auto generated from the new LinkML MIxS codebase. (#11)
  2. Update the pages under the "Standards" heading (#2 & #54) currently it has some duplication and the navigation is awkward
  3. the new usage of LinkML as the source of truth (SoT) for the standard should be documented here somewhere.
  4. Update the Funding page (#49)
  5. Update the Board members page with any changes after the annual meeting (#50)
  6. Copy-editing of all text on all pages
  7. Re-organise/format the projects page (#51) (could be done after the initial release)
  8. Website search function to search all of gensc.org (#55) (could be done after the initial release)
  9. A MIxS term quick-lookup function (#60) (could be done after the initial release)

gensc.github.io's People

Contributors

folker avatar lschriml avatar only1chunts avatar ramonawalls avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

gensc.github.io's Issues

Create GCDML project page

Aim
To create the GCDML project page in the new website. The page is currently on the GSC website here:
http://gensc.org/wordpress/projects/gcdml/

The content of that needs converting to MD and uploading to this GitHub repo as "gcdml-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Create MIxs-ers project page

Aim
To create the Compliance and Interoperability working group project (MIxS-ers) in the new website. The page is currently on the GSC website here:
http://gensc.org/wordpress/projects/compliance-and-interoperability-working-group-gsc-project/

The content of that needs converting to MD and uploading to this GitHub repo as "mixsers-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Create the GCDJ project page

Aim
To create the Genomic Contextual Data JSON (GCDJ) project page in the new website. The page is currently on the GSC website here:
http://gensc.org/projects/gcdj/

The content of that needs converting to MD and uploading to this GitHub repo as "gcdj-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

MIxS checklist pages built from MIxS repository

Is your feature request related to a problem? Please describe.
The checklist pages will need to be generated from the MIxS repo.
So that the individual checklist pages are directly synchronized with the most recent MIxS release the pages should be built from the MIxS repo directly using the individual item names and descriptions held there.

Describe the solution you'd like
I have no idea how to do this, assistance required!

Import all previous News items

Is your feature request related to a problem? Please describe.
All the news items on the old website https://gensc.org/gsc-blog/ are sorted into monthly archives, it takes multiple clicks to get to each item.

Describe the solution you'd like
All previous news items need to be copied and converted to MD and saved in the news directory with appropriate names.

Names of news items should follow a standard convention including the date in the format

"yyyy-mm-dd-Short_title_with_underscores.md"

This name format should allow a script to be written to display only the most recent news items in the news page (see ticket #7)

Add status column to GSC projects page

The Project page has a table with all the projects that has a column for date. I think this column should be relabeled "Start date". Then we should add another column for "Status".

Statuses could be: Started, Ongoing, Completed.

@lschriml and @only1chunts, does this sound reasonable? Can you think of any other statuses?

link-outs should open new tab/window

Is your feature request related to a problem? Please describe.
Many HTML links in our pages link out to non-GSC pages. Its common on many website to use a little icon next to the links that will open a new tab/window for external links like this:
image

Describe the solution you'd like
I would like all HTML links that point to non-GSC webpages to open in new tabs and use that icon to indicate the action.
Is that something that can be done site wide, or is it a case of making the changes individually on every page?
How do you add those icons next to the text in MD?
How do you specify to open link in a new window in MD?

Import previous meetings pages

Is your feature request related to a problem? Please describe.
All of the previous meetings pages need to be copied/imported from the old website, i.e. all the links on this page

Describe the solution you'd like
I have started to copy them over, done the current meeting and meetings 1-3, but the rest (listed below) will need to be copied and converted to MD. If possible any external site information can be pulled in too, e.g. videos of talks etc...
I've created individual tickets for the most recent meetings that we should focus on:
GSC21 - see ticket #14
GSC20 - see ticket #13
GSC19 - see ticket #15
GSC18 - see ticket #16
GSC17 - see ticket #17
GSC16 - see ticket #18
GSC15 - see ticket #19

The rest will need to be done sometime before they are lost, but less important for getting the new site out:

GSC 14, Oxford, UK, September 18-20, 2012
GSC 13, BGI, Shenzhen, China, March 5-7, 2012
GSC 12, Max Planck Institute Bremen, Germany, September 28-30, 2011
GSC 11, Wellcome Trust Genome Campus, Hinxton, UK, April 4-6, 2011
GSC 10, Argonne National Laboratory, Argonne, IL, USA, October 4-6, 2010
GSC M5 Roundtable at the 13th International Society for Microbial Ecology Meeting in Seattle, WA, USA August 22-27, 2010
M3 & BioSharing SIG at ISMB 2010, Boston, MA, USA July 9-10, 2010
GSC 9, JCVI, Rockville, MD, USA, April 28-30, 2010
M3 Workshop at PSB, HI, USA, January 4, 2010
GSC 8, DOE JGI, Walnut Creek CA, USA, Sept 9-11, 2009
M3 SIG at ISMB 2009, Stockholm, Sweden, June 29, 2009
GSC 7, UCSD, San Diego, CA, USA, November 3, 2008
GSC 6, EBI, Hinxton, UK, October 15-17, 2008
Pre-workshop GCDML meeting
GSC 5, EBI, Hinxton, UK, December 12-14, 2007
3rd EnvO (Environment Ontology) Workshop, University of Manchester, UK, March 13-15, 2008
2nd EnvO (Environment Ontology) Workshop, Cold Spring Harbor, NY, USA, November 15-16, 2007
Genomics and Society: Today’s Answers, Tomorrow’s Questions, London, UK, October 25-26, 2007
Inaugural EnvO (Environment Ontology) Workshop, Oxford, UK, August 29-31, 2007
GSC Birds of a Feather (BoF) meeting, ISMB 2007, Vienna, Austria, July 23, 2007
GSC 4, Cambridge, UK, June 6-8, 2007

Create GSC17 meeting page

Aim
To create the GSC17 page in the new website

The meeting age is currently listed on the GSC website as http://wiki.gensc.org/index.php?title=GSC_17 BUT that is a link to the old old wiki that no longer working properly so will need some investigation to find it!
@lschriml may have a copy somewhere of this page in the GSC google drive, there is a doc that has some text copied from the old wiki (https://docs.google.com/document/d/15QVFRh-LjrpOrRBROEWw7r-Lv3FdSnxk-rpkuftYclU/edit) but that doesn't appear to include GSC17.

An alternative might be to look in the Wayback machine

When its been found, the content of that needs converting to MD and uploading to this GitHub repo as "GSC17.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/meetings

For guide on creating markdown files from html see readme.md

Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding prefix of "gsc20-meeting" to all files to be associated with this meeting page.

Extra content
Where possible any augmentation of the page with media files from currently unlinked sources (e.g. youtube, images, slideshows etc) is strongly encouraged.

update GSC-members page

The community or GSC-Members page contains a list of names and affiliations of people.
https://genomicsstandardsconsortium.github.io/gensc.github.io/pages/about/GSC-members.html
This is list is always going to be out of date, so I think it needs to be removed, instead is there a way to insert the google-group list of members in a dynamic way? i.e. the list of current GSC members is the same as the mailing list (if you're not on the mailing list you cannot be considered a current! member as you will have way to know whats going on in the GSC.
Alternatively, we might consider using GitHub members as a way to attribute GSC membership? This has the issue that it requires all GSC members to have and use GitHub accounts.
Either way, we need this GSC community members page to show HOW to become an active member and how to discover who is already a member.
Ideas please....

Create GSC16 meeting page

Aim
To create the GSC16 page in the new website

The meeting age is currently listed on the GSC website as http://wiki.gensc.org/index.php?title=GSC_16 BUT that is a link to the old old wiki that no longer working properly so will need some investigation to find it!
@lschriml may have a copy somewhere of this page in the GSC google drive, there is a doc that has some text copied from the old wiki (https://docs.google.com/document/d/15QVFRh-LjrpOrRBROEWw7r-Lv3FdSnxk-rpkuftYclU/edit) but that doesn't appear to include GSC16.

An alternative might be to look in the Wayback machine
The agenda doc for GSC16 is in google drive

When its been found, the content of that needs converting to MD and uploading to this GitHub repo as "GSC16.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/meetings

For guide on creating markdown files from html see readme.md

Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding prefix of "gsc20-meeting" to all files to be associated with this meeting page.

Extra content
Where possible any augmentation of the page with media files from currently unlinked sources (e.g. youtube, images, slideshows etc) is strongly encouraged.

create Twitter feed on home page

aim
The current website has a twitter feed included, I think it would be nice to keep that on the new website.

**to do **
Add the most recent GSC tweets to a window on the new home page.

Create GSC20 meeting page

Aim
To create the GSC20 page in the new website

The meeting age is currently on the GSC website here:
https://press3.mcs.anl.gov/gensc/meetings/gsc20/

The content of that needs converting to MD and uploading to this GitHub repo as "GSC20.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/meetings

For guide on creating markdown files from html see readme.md

Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding prefix of "gsc20-meeting" to all files to be associated with this meeting page.

Extra content
Where possible any augmentation of the page with media files from currently unlinked sources (e.g. youtube, images, slideshows etc) is strongly encouraged.

create GSC18 meeting page

Aim
To create the GSC18 page in the new website

The meeting age is currently listed on the GSC website as http://wiki.gensc.org/index.php?title=GSC_18 BUT that is a link to the old old wiki that no longer working properly so will need some investigation to find it!
@lschriml may have a copy somewhere of this page in the GSC google drive, there is a doc that has some text copied from the old wiki (https://docs.google.com/document/d/15QVFRh-LjrpOrRBROEWw7r-Lv3FdSnxk-rpkuftYclU/edit) but that doesn't appear to include GSC18.

An alternative might be to look in the Wayback machine

When its been found, the content of that needs converting to MD and uploading to this GitHub repo as "GSC18.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/meetings

For guide on creating markdown files from html see readme.md

Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding prefix of "gsc20-meeting" to all files to be associated with this meeting page.

Extra content
Where possible any augmentation of the page with media files from currently unlinked sources (e.g. youtube, images, slideshows etc) is strongly encouraged.

Create ENVO project page

Aim
To create the Environment Ontology (ENVO) project page in the new website. The page is currently on the GSC website here:
http://gensc.org/wordpress/projects/the-environment-ontology-envo-project/

The content of that needs converting to MD and uploading to this GitHub repo as "envo-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Create the M5 project page

Aim
To create the M5 project page in the new website. The page is currently on the GSC website here:
http://gensc.org/wordpress/projects/m5/

The content of that needs converting to MD and uploading to this GitHub repo as "m5-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Create the MIPS project page

Aim
To create the MIPS project page in the new website. The page is currently on the GSC website here:
http://gensc.org/wordpress/projects/mips/

The content of that needs converting to MD and uploading to this GitHub repo as "mips-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Self ordered News page

Is your feature request related to a problem? Please describe.
The "News" page should build automatically from the top 3(maybe 5?) newest items added to the /pages/news/ directory, with a list of all other older news items as clickable links below.

Describe the solution you'd like
GSC admin staff that write news items should just commit the new news file to the GitHub repository /pages/news/ directory, the website should be able to build from that without anyone needing to change the News page specifically.

Describe alternatives you've considered
Potentially the News page could include all news items in date order with the most recent at the top, but that may make the page slow to load as the number of news items is already large. If the content can load dynamically on scroll that may mitigate the issue.

Create SIGS project page

Aim
To create the SIGS project page in the new website. The page is currently on the GSC website here:
http://gensc.org/wordpress/projects/standards-in-genomics-sigs-project/

The content of that needs converting to MD and uploading to this GitHub repo as "sigs-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

user test feedback

Hey,

These are the issues I found when testing this website: https://genomicsstandardsconsortium.github.io/gensc.github.io/index.html

I didn't manage to test everything but these are the issue I found so far. Thanks a lot.

Home

Past meetings


Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 902

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 876

Warning: Invalid argument supplied for foreach() in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 877

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 881

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 876

Warning: Invalid argument supplied for foreach() in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 877

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 881

Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 902

Strict Standards: Declaration of Skincavendish::initPage() should be compatible with Skin::initPage(OutputPage $out) in /var/sites/w/wiki.gensc.org/public_html/skins/cavendish.php on line 25

Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 902

Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 902

Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 902

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 876

Warning: Invalid argument supplied for foreach() in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 877

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 881

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 876

Warning: Invalid argument supplied for foreach() in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 877

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 881

Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 902

About

Board

  1. All links below point to same page:
  • Current Board Members
  • Institutional Liasons to the GSC Board
  • Advisory Board Members
  • Former Board Members
  • GSC Board Committees
  • GSC Committees and Working Groups
  1. </tr> </tr> </tr> </tr> found under the Current Board Members at this page

Publications

Meeting reports return errors:

Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 902

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 876

Warning: Invalid argument supplied for foreach() in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 877

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 881

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 876

Warning: Invalid argument supplied for foreach() in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 877

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 881

Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 902

Strict Standards: Declaration of Skincavendish::initPage() should be compatible with Skin::initPage(OutputPage $out) in /var/sites/w/wiki.gensc.org/public_html/skins/cavendish.php on line 25

Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 902

Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 902

Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 902

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 876

Warning: Invalid argument supplied for foreach() in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 877

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 881

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 876

Warning: Invalid argument supplied for foreach() in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 877

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 881

Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /var/sites/w/wiki.gensc.org/public_html/includes/MagicWord.php on line 902

Funding

Links below return similar error as above:

Project

MIxS

Contact

Create MIGO project page

Aim
To create the Minimum Information about a Genomic Observatory (MIGO) project page in the new website. The page is currently on the GSC website here:
http://gensc.org/wordpress/projects/migo/

The content of that needs converting to MD and uploading to this GitHub repo as "migo-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Import Project pages

Is your feature request related to a problem? Please describe.
None of the projects pages have been imported yet, i.e. all the links on this page

Describe the solution you'd like
This is the list of pages that need to be copied over:

mixs-gsc-project - done
gcdml - see ticket #20
genomic-rosetta-stone - see ticket #21
standards-in-genomics-sigs-project - see ticket #22
m5 - see ticket #23
microbial-earth-project - see ticket #24
biodiversity-genomics-working-group - see ticket #25
compliance-and-interoperability-working-group-gsc-project - see ticket #28
micro-b3 - see ticket #29
the-environment-ontology-envo - see ticket #30
mixs-indoor - see ticket #31
biom - see ticket #32
gos-network-gsc - see ticket #33
biocode-commons-gos-network - see ticket #34
migo - see ticket #35
isa - see ticket #36
mips - see ticket #37
mibig - see ticket #38
gcdj - see ticket #39
mixs-hcr - see ticket #40
ggbn - see ticket #41

Create the MIxS-HCR project page

Aim
To create the MIxS for hydrocarbon resources (MIxS-HCR) project page in the new website. The page is currently on the GSC website here:
http://gensc.org/projects/mixs-hcr-gsc-project/

The content of that needs converting to MD and uploading to this GitHub repo as "mixs-hcr-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Rethink project pages

The project pages have been copied over from the old website. The content is what was originally included in the project proposal, but this doesn't provide much information on what the project do or did. Although this is interesting for project history and could be stored somewhere (maybe in our Google drive or in a wiki), it is not terribly useful for anyone coming to the site now.

I propose a new layout for the pages:

Project Title

Project Summary (including goals)

Project Leads

Project Initiation Date

Project Status (year updated)

References and Links

Add breadcrumbs

it would be nice to have a breadcrumb within the header.html

Create MIxS-BE project page

Aim
To create the MIxS for indoor metagenomics (MIxS-BE) project page in the new website. The page is currently on the GSC website here:
http://gensc.org/wordpress/projects/mixs-indoor-gsc-project/

The content of that needs converting to MD and uploading to this GitHub repo as "mixs-be-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Create the MEP project page

Aim
To create the Microbial Earth Project (MEP) project page in the new website. The page is currently on the GSC website here:
http://gensc.org/wordpress/projects/microbial-earth-project

The content of that needs converting to MD and uploading to this GitHub repo as "mep-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Create Announcements page

Is your feature request related to a problem? Please describe.
To keep the home page "fresh" it would be nice to have a newsfeed that automatically updates with the most recent items added to the "news" section of the website.

Describe the solution you'd like
When a new page/item is added to the News section of the website a preview version of that news item should be added to the home page as well. The list on news items shown on the home page should be limited to 3-5 items

Describe alternatives you've considered
none

Additional context
If it's possible in GitHub pages it might be nice to have a carousel of news items.

Create the GGBN project page

Aim
To create the GGBN project page in the new website. The page is currently on the GSC website here:
http://gensc.org/projects/ggbn/

The content of that needs converting to MD and uploading to this GitHub repo as "ggbn-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Create Micro-B3 project page

Aim
To create the Micro-B3 project page in the new website. The page is currently on the GSC website here:
http://gensc.org/wordpress/projects/micro-b3/

The content of that needs converting to MD and uploading to this GitHub repo as "micro-b3-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Create BIOM project page

Aim
To create the The Biological Observation Matrix (BIOM) format project page in the new website. The page is currently on the GSC website here:
http://gensc.org/wordpress/projects/biom/

The content of that needs converting to MD and uploading to this GitHub repo as "biom-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Create Biocode Commons project page

Aim
To create the biocode-commons project page in the new website. The page is currently on the GSC website here:
http://gensc.org/wordpress/projects/biocode-commons-gos-network-gsc-project-2/

The content of that needs converting to MD and uploading to this GitHub repo as "biocode-commons-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Create the GOs network project page

Aim
To create the Genomic Observatories Network (GOs network) project page in the new website. The page is currently on the GSC website here:
http://gensc.org/wordpress/projects/gos-network-gsc-project/

The content of that needs converting to MD and uploading to this GitHub repo as "gos-network-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Create the ISA project page

Aim
To create the ISA project page in the new website. The page is currently on the GSC website here:
https://docs.google.com/file/d/0B1V2WmAsn-OkdG1rMUFVbl90M1E/edit?usp=drive_web&pli=1

The content of that needs converting to MD and uploading to this GitHub repo as "isa-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Funding page needs overhaul!

I've copied the "funding" page from the current website, but its very out of date, referring to the GSC9 and 10 funders.
https://genomicsstandardsconsortium.github.io/gensc.github.io/pages/about/funding.html
It needs a complete overhaul of both the layout and the content.
@lschriml can you and Scott take a look at this page and put something together that can replace it? I'm happy to convert it to markdown and add it here if you can put something together in a word doc or something.

Create the MiBiG project page

Aim
To create the MiBiG project page in the new website. The page is currently on the GSC website here:
http://gensc.org/wordpress/projects/mibig/

The content of that needs converting to MD and uploading to this GitHub repo as "mibig-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Create GBWG project page

Aim
To create the GSC Biodiversity Working Group (GBWG) project page in the new website. The page is currently on the GSC website here:
http://gensc.org/wordpress/projects/biodiversity-genomics-working-group/

The content of that needs converting to MD and uploading to this GitHub repo as "gbwg-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Create Genomic Rosetta Stone project page

Aim
To create the GSR project page in the new website. The page is currently on the GSC website here:
http://gensc.org/wordpress/projects/genomic-rosetta-stone

The content of that needs converting to MD and uploading to this GitHub repo as "gsr-project.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/projects/

For a guide on creating markdown files from html see readme.md

The structure of all projects pages is very simple and shouldn't require any additional images or files, but if they do:
Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding a prefix of the project-name to all files to be associated with this meeting page.

Create GSC19 meeting page

Aim
To create the GSC19 page in the new website

The meeting age is currently listed on the GSC website as http://wiki.gensc.org/index.php?title=GSC_19 BUT that is a link to the old old wiki that no longer working properly so will need some investigation to find it!
@lschriml may have a copy somewhere of this page in the GSC google drive, there is a doc that has some text copied from the old wiki (https://docs.google.com/document/d/15QVFRh-LjrpOrRBROEWw7r-Lv3FdSnxk-rpkuftYclU/edit) but that doesn't appear to include GSC19.

An alternative might be to look in the Wayback machine

When its been found, the content of that needs converting to MD and uploading to this GitHub repo as "GSC19.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/meetings

For guide on creating markdown files from html see readme.md

Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding prefix of "gsc20-meeting" to all files to be associated with this meeting page.

Extra content
Where possible any augmentation of the page with media files from currently unlinked sources (e.g. youtube, images, slideshows etc) is strongly encouraged.

Create GSC15 meeting page

Aim
To create the GSC15 page in the new website

The meeting age is currently listed on the GSC website as http://wiki.gensc.org/index.php?title=GSC_Meetings#GSC_15.2C_National_Institute_of_Health_.28NIH.29.2C_Bethesda.2C_MD.2C_USA.2C_April_22-24.2C_2013 BUT that is a link to the old old wiki that no longer working properly so will need some investigation to find it!

An alternative might be to look in the Wayback machine

When its been found, the content of that needs converting to MD and uploading to this GitHub repo as "GSC15.md" here: https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/pages/meetings

For a guide on creating markdown files from html see readme.md

Any images used need to be saved here https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/images/
NB- sponsors images may already exist if used in other pages already.

Any additional files e.g. PDF version of agenda or schedule, powerpoint slides etc. need to be saved here:
https://github.com/GenomicsStandardsConsortium/gensc.github.io/tree/master/other-media/
NB- Be aware of the need for unique file names here, e.g. "agenda.pdf" is not likely to be unique! consider adding prefix of "gsc20-meeting" to all files to be associated with this meeting page.

Extra content
Where possible any augmentation of the page with media files from currently unlinked sources (e.g. youtube, images, slideshows etc) is strongly encouraged.

Add dropdown menus to section

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

Describe the solution you'd like
Each top level menu item (About, Projects, etc.) should have a drop-down menu. Just have to figure out how to do it.

Describe alternatives you've considered
Currently you have to click on the page to get to the subpages

Additional context
See also issue #43 for breadcrumbs

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.