Git Product home page Git Product logo

lenpaul / millennial Goto Github PK

View Code? Open in Web Editor NEW
410.0 9.0 867.0 9.71 MB

A minimalist Jekyll theme for running a blog or publication powered by Jekyll and GitHub Pages

Home Page: https://lenpaul.github.io/Millennial/

License: MIT License

HTML 35.50% CSS 15.34% Ruby 3.90% SCSS 45.25%
minimalist-jekyll-theme jekyll minimalist blog publication theme millennial github-pages jekyll-theme jekyll-site

millennial's Introduction

Millennial

Millennial is a minimalist Jekyll theme for running a simple, clean, content-focused publishing platform for your publication site or blog through Github Pages, or on your own server. Everything that you will ever need to know about this Jekyll theme is included in the README below, which you can also find in the demo site. For a guide on how to deploy a Jekyll site using GitHub Pages, please check out this article.

If you like my work then please consider supporting me with Ko-fi.

alt text

Notable features

  • Compatible with GitHub Pages.

  • Support for Jekyll's built-in Sass/SCSS preprocessor and data files for making customizing easier.

  • Google Analytics support.

  • Commenting support powered by Disqus.

  • Optimized for search engines.

  • LaTeX support through MathJax.

Table of Contents

  1. Introduction
    1. What is Jekyll
    2. Never Used Jeykll Before?
  2. Installation
    1. GitHub Pages Installation
    2. Local Installation
    3. Directory Structure
    4. Starting From Scratch
  3. Configuration
    1. Sample Posts
    2. Site Variables
    3. Adding Menu Pages
    4. Posts
    5. Layouts
    6. YAML Front Block Matter
  4. Features
    1. Design Considerations
    2. Disqus
    3. Google Analytics
    4. RSS Feeds
    5. Social Media Icons
    6. MathJax
    7. Syntax Highlighting
    8. Markdown
  5. Everything Else
  6. Contributing
  7. Questions?
  8. Credits
  9. License

Introduction

Millennial is a Jekyll theme that was built to be 100% compatible with GitHub Pages. If you are unfamiliar with GitHub Pages, you can check out their documentation for more information. Jonathan McGlone's guide on creating and hosting a personal site on GitHub is also a good resource.

What is Jekyll?

Jekyll is a simple, blog-aware, static site generator for personal, project, or organization sites. Basically, Jekyll takes your page content along with template files and produces a complete website. For more information, visit the official Jekyll site for their documentation. Codecademy also offers a great course on how to deploy a Jekyll site for complete beginners.

Never Used Jekyll Before?

The beauty of hosting your website on GitHub is that you don't have to actually have Jekyll installed on your computer. Everything can be done through the GitHub code editor, with minimal knowledge of how to use Jekyll or the command line. All you have to do is add your posts to the _posts directory and edit the _config.yml file to change the site settings. With some rudimentary knowledge of HTML and CSS, you can even modify the site to your liking. This can all be done through the GitHub code editor, which acts like a content management system (CMS).

Installation

GitHub Pages Installation

To start using Jekyll right away with GitHub Pages, fork the Millennial repository on GitHub. From there, you can rename your repository to USERNAME.github.io, where USERNAME is your GitHub username, and edit the settings.yml file in the _data folder to your liking. Ensure that you have a branch named gh-pages. Your website should be ready immediately at 'http://USERNAME.github.io'. Note: if you are hosting several sites under the same GitHub username, then you will have to use Project Pages instead of User Pages - just change the repository name to something other than 'http://USERNAME.github.io'.

Head over to the _posts directory to view all the posts that are currently on the website, and to see examples of what post files generally look like. You can simply just duplicate the template post and start adding your own content.

Local Installation

For a full local installation of Millennial, download your own copy of Millennial and unzip it into it's own directory. From there, open up your favorite command line tool, enter bundle install, and then enter jekyll serve. Your site should be up and running locally at http://localhost:4000.

Directory Structure

If you are familiar with Jekyll, then the Millennial directory structure shouldn't be too difficult to navigate. The following some highlights of the differences you might notice between the default directory structure. More information on what these folders and files do can be found in the Jekyll documentation site.

Millennial/
├── _data                      # Data files
|  └── settings.yml            # Theme settings and custom text
├── _includes                  # Theme includes
├── _layouts                   # Theme layouts (see below for details)
├── _posts                     # Where all your posts will go
├── assets                     # Style sheets and images are found here
|  ├── css                     # Style sheets go here
|  |  └── _sass                # Folder containing SCSS files
|  |  └── main.scss            # Main SCSS file
|  |  └── syntax.css           # Style sheet for code syntax highlighting
|  └── img                     # Images go here
├── pages                      # Category pages
├── _config.yml                # Site build settings
├── Gemfile                    # Ruby Gemfile for managing Jekyll plugins
├── index.md                   # Home page
├── LICENSE.md                 # License for this theme
├── README.md                  # Includes all of the documentation for this theme
└── rss-feed.xml               # Generates RSS 2.0 file which Jekyll points to

Starting From Scratch

To completely start from scratch, simply delete all the files in the _posts, assets/img, and pages folder, and add your own content. You may also replace the README.md file with your own README. Everything in the _data folder and _config.yml file can be edited to suit your needs. You may also change the favicon.ico file to your own favicon.

Configuration

Sample Posts

Visit the the demo site to find sample posts that show what different types of text formatting look like. You can find these posts in the _posts folder, which show what the best practices for setting up your own site are.

Site Variables

To change site build settings, edit the _config.yml file found in the root of your repository, which you can tweak however you like. More information on configuration settings and plugins can be found on the Jekyll documentation site. This is also where you will be able to customize the title, description, and the author/owner of your site.

If you are hosting your site on GitHub Pages, then committing a change to the _config.yml file will force a rebuild of your site with Jekyll. Any changes made should be viewable soon after. If you are hosting your site locally, then you must run jekyll serve again for the changes to take place.

In the settings.yml file found in the _data folder, you will be able to customize your site settings, such as setting Disqus comments, Google Analytics, what shows up in your menu, and social media information.

Adding Menu Pages

The menu pages are found in the menu folder in the root directory, and can be added to your menu in the settings.yml file.

Posts

You will find example posts in your _posts directory. Go ahead and edit any post and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run jekyll serve, which launches a web server and auto-regenerates your site when a file is updated.

To add new posts, simply add a file in the _posts directory that follows the convention of YYYY-MM-DD-name-of-post.md and includes the necessary front matter. Take a look at any sample post to get an idea about how it works. If you already have a website built with Jekyll, simply copy over your posts to migrate to Millennial.

Layouts

There are two main layout options that are included with Millennial: post and page. Layouts are specified through the YAML front block matter. Any file that contains a YAML front block matter will be processed by Jekyll. For example:

---
layout: post
title: "Example Post"
---

Examples of what posts looks like can be found in the _posts directory, which includes this post you are reading right now. Posts are the basic blog post layout, which includes a header image, post content, author name, date published, social media sharing links, and related posts.

Pages are essentially the post layout without any of the extra features of the posts layout. An example of what pages look like can be found at the documentation page.

In addition to the two main layout options above, there are also custom layouts that have been created for the home page and the contacts page. These are simply just page layouts with some Liquid template code. Check out the index.html file in the root directory for what the code looks like.

YAML Front Block Matter

The recommended YAML front block is:

---
layout:
title:
author:
categories:
tags: []
image:
---

layout specifies which layout to use, title is the page or post title, categories can be used to better organize your posts, tags are used when generating related posts based on the topic of the post, and image specifies which images to use. Have a look at some posts in the _posts directory to see how these variables are set.

Features

Design Considerations

Millennial was designed to be a minimalist theme in order for the focus to remain on your content. For example, links are signified mainly through an underline text-decoration, in order to maximize the perceived affordance of clickability (I originally just wanted to make the links a darker shade of grey).

Disqus

Millennial supports comments at the end of posts through Disqus. In order to activate Disqus commenting, set disqus.comments to true in the _data/settings.yml file. If you do not have a Disqus account already, you will have to set one up, and create a profile for your website. You will be given a disqus_shortname that will be used to generate the appropriate comments sections for your site. More information on how to set up Disqus.

Google Analytics

It is possible to track your site statistics through Google Analytics. Similar to Disqus, you will have to create an account for Google Analytics, and enter the correct Google ID for your site under google-ID in the settings.yml file. More information on how to set up Google Analytics. Note: If you are not using Google Analytics, please change google-ID to an empty string.

RSS Feeds

Atom is supported by default through jekyll-feed. With jekyll-feed, you can set configuration variables such as 'title', 'description', and 'author', in the _config.yml file.

RSS 2.0 is also supported through RSS auto-discovery. The rss-feed.xml file (based on the template found at jekyll-rss-feeds) that the feed path points to when using RSS 2.0 is automatically generated based on the appropriate configuration variables found in _data/settings.yml.

To use RSS 2.0, ensure the following is done:

  • Uncomment the last two lines in the _config.yml file.

  • In _data/settings.yml, under 'social', comment out the rss-square that points to feed.xml, and uncomment the rss-square that points to rss-feed.xml.

  • In _includes/head.html, comment out {% feed_meta %} and uncomment the line under the RSS 2.0 comment.

Social Media Icons

All social media icons are courtesy of Font Awesome. You can change which icons appear, as well as the account that they link to, in the settings.yml file in the _data folder.

MathJax

Millennial comes out of the box with MathJax, which allows you to display mathematical equations in your posts through the use of LaTeX.

Syntax Highlighting

Millennial provides syntax highlighting through fenced code blocks. Syntax highlighting allows you to display source code in different colors and fonts depending on what programming language is being displayed. You can find the full list of supported programming languages here. Another option is to embed your code through Gist.

Markdown

As always, Jekyll offers support for GitHub Flavored Markdown, which allows you to format your posts using the Markdown syntax. Examples of these text formatting features can be seen below. You can find this post in the _posts directory as well as the README.md file.

Everything Else

Check out the Jekyll docs for more info on how to get the most out of Jekyll. File all bugs/feature requests at Jekyll's GitHub repo. If you have questions, you can ask them on Jekyll Talk.

Contributing

If you would like to make a feature request, or report a bug or typo in the documentation, then please submit a GitHub issue. If you would like to make a contribution, then feel free to submit a pull request - as a bonus, I will credit all contributors below! If this is your first pull request, it may be helpful to read up on the GitHub Flow first.

Millennial has been designed as a base for users to customize and fit to their own unique needs. Please keep this in mind when requesting features and/or submitting pull requests. Some examples of changes that I would love to see are things that would make the site easier to use, or better ways of doing things. Please avoid changes that do not benefit the majority of users.

Questions?

This theme is completely free and open source software. You may use it however you want, as it is distributed under the MIT License. If you are having any problems, any questions or suggestions, feel free to tweet at me, or file a GitHub issue.

Credits

Creator

Paul Le

Contributors

Icons + Demo Images

Other

License

Open sourced under the MIT license.

millennial's People

Contributors

lenpaul avatar mschaeffner avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

millennial's Issues

Improve Facebook share button

Facebook share button uses Open Graph protocol. We could improve the share button by including

  <meta property="og:site_name" content="{{ site.data.setting.title }}" />
  <meta property="og:title" content="{{ page.title }}" />
  <meta property="og:type" content="website" />
  <meta property="og:url" content="{{ site.url }}{{ page.url }}" />
  <meta property="og:image" content="{{ site.url }}/images/{{ page.image.feature }}" />

on _includes/head.html and changing the share button to

<a href="https://www.facebook.com/sharer/sharer.php?u={{ site.url }}{{ page.url }}" target="_blank"><i class="fa fa-facebook" aria-hidden="true"></i></a>

on _layouts/post.html.

Config for MathJax

I notice that the theme comes with built-in MathJax support - thanks!

Is there any way we can configure MathJax settings, for example I notice by default no equation numbering?

Adding tag clouds and tag pages

Hello,
Thanks for this theme!
I've adapted a version of Long Qian's tag functionalities that include an archive of tag clouds as well tag pages for all tags used in the site on my page that contain a list of all posts with those tags. I can update the clean gh-pages branch on my repository to include these as well and do a pull request if there's an interest to include these functionalities in the base theme?
Cheers!

Move 'Learning Resources' post to 'Learning Resources' page

Currently the post 2016-05-05-learning-resources.md ('Learning Resources') has a category = facts, which places it on the 'Interesting Facts' page (while the 'Learning Resources' page remains blank).

This seems unintended and that the category should be 'resources'.

Nested unordered lists not rendering correctly

Given the following markup:

* hello
  * hello again
* world
  * hello world

it should correctly translate to:

<ul>
  <li>hello
    <ul>
      <li>hello again</li>
    </ul>
  </li>
  <li>world
    <ul>
      <li>hello world</li>
    </ul>
  </li>
</ul>

Instead, the following is generated:

<ul>
  <li>hello
    <ul>
      <li>hello again</li>
    </ul>
  </li>
</ul>
<ul>
  <li>world
    <ul>
      <li>hello world</li>
    </ul>
  </li>
</ul>

Accessibility errors found in your template

The user @carlsonsantana validate your site template "https://lenpaul.github.io/Millennial/" and found these accessibility errors:

  • Page https://lenpaul.github.io/Millennial/:

    • Issue ec29d359-bebc-4937-9e08-960d479a2949:
      • Type: Error
      • Code: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent
      • Message: Anchor element found with a valid href attribute, but no link content has been supplied.
      • Selector: html > body > div:nth-child(2) > footer > a:nth-child(5)
      • Context: <a href="feed.xml" class="menu-link" target="_blank"><i class="fa fa-rss-square" ari...</a>
    • Issue f3eb0a1a-5d25-4cd4-8514-206fa5db7ad0:
      • Type: Error
      • Code: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent
      • Message: Anchor element found with a valid href attribute, but no link content has been supplied.
      • Selector: html > body > div:nth-child(2) > footer > a:nth-child(4)
      • Context: <a href="mailto:[email protected]" class="menu-link" target="_blank"><i class="fa fa-envelope" aria-...</a>
    • Issue e2d7415e-75f1-46fe-b0fd-c42c380efce5:
      • Type: Error
      • Code: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent
      • Message: Anchor element found with a valid href attribute, but no link content has been supplied.
      • Selector: html > body > div:nth-child(2) > footer > a:nth-child(3)
      • Context: <a href="https://instagram.com/paululele" class="menu-link" target="_blank"><i class="fa fa-instagram" aria...</a>
    • Issue 1d1ff183-d153-4da2-8c98-bc45c02b0b1c:
      • Type: Error
      • Code: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent
      • Message: Anchor element found with a valid href attribute, but no link content has been supplied.
      • Selector: html > body > div:nth-child(2) > footer > a:nth-child(2)
      • Context: <a href="https://www.facebook.com/Le.Paul.94" class="menu-link" target="_blank"><i class="fa fa-facebook" aria-...</a>
    • Issue 214b8f10-cdde-4ef9-865f-cf4f698a74a5:
      • Type: Error
      • Code: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent
      • Message: Anchor element found with a valid href attribute, but no link content has been supplied.
      • Selector: html > body > div:nth-child(2) > footer > a:nth-child(1)
      • Context: <a href="https://twitter.com/paululele" class="menu-link" target="_blank"><i class="fa fa-twitter" aria-h...</a>
    • Issue 61a81af7-3df0-4e04-8c16-8ce01fc33d33:
      • Type: Error
      • Code: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent
      • Message: Anchor element found with a valid href attribute, but no link content has been supplied.
      • Selector: html > body > div:nth-child(2) > header > div > div > a:nth-child(11)
      • Context: <a href="feed.xml" class="menu-link" target="_blank"><i class="fa fa-rss-square" ari...</a>
    • Issue 44e76ab2-419c-4fbf-b81d-018a591a8053:
      • Type: Error
      • Code: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent
      • Message: Anchor element found with a valid href attribute, but no link content has been supplied.
      • Selector: html > body > div:nth-child(2) > header > div > div > a:nth-child(10)
      • Context: <a href="mailto:[email protected]" class="menu-link" target="_blank"><i class="fa fa-envelope" aria-...</a>
    • Issue 6fddc215-bae9-4243-b2fb-d0184ef7391b:
      • Type: Error
      • Code: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent
      • Message: Anchor element found with a valid href attribute, but no link content has been supplied.
      • Selector: html > body > div:nth-child(2) > header > div > div > a:nth-child(9)
      • Context: <a href="https://instagram.com/paululele" class="menu-link" target="_blank"><i class="fa fa-instagram" aria...</a>
    • Issue 315077d1-4cfe-4d8f-9158-d300c150ca0e:
      • Type: Error
      • Code: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent
      • Message: Anchor element found with a valid href attribute, but no link content has been supplied.
      • Selector: html > body > div:nth-child(2) > header > div > div > a:nth-child(8)
      • Context: <a href="https://www.facebook.com/Le.Paul.94" class="menu-link" target="_blank"><i class="fa fa-facebook" aria-...</a>
    • Issue bba1ca3b-ecf2-458e-9688-aeab0aeb6573:
      • Type: Error
      • Code: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent
      • Message: Anchor element found with a valid href attribute, but no link content has been supplied.
      • Selector: html > body > div:nth-child(2) > header > div > div > a:nth-child(7)
      • Context: <a href="https://twitter.com/paululele" class="menu-link" target="_blank"><i class="fa fa-twitter" aria-h...</a>
    • Issue 897ec475-b1ff-4419-b669-ed5f663b9e92:
      • Type: Error
      • Code: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.Button.Name
      • Message: This button element does not have a name available to an accessibility API. Valid names are: title undefined, element content, aria-label undefined, aria-labelledby undefined.
      • Selector: html > body > div:nth-child(2) > header > div > button
      • Context: <button class="dropbtn"><i class="fa fa-bars" aria-hidd...</button>
    • Issue 745668a0-19d0-459e-8c31-58bc341fe958:
      • Type: Error
      • Code: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent
      • Message: Anchor element found with a valid href attribute, but no link content has been supplied.
      • Selector: html > body > div:nth-child(2) > header > nav > a:nth-child(11)
      • Context: <a href="feed.xml" class="menu-link" target="_blank"><i class="fa fa-rss-square" ari...</a>
    • Issue b91ec2f9-21a4-4313-9ea8-f6be85303354:
      • Type: Error
      • Code: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent
      • Message: Anchor element found with a valid href attribute, but no link content has been supplied.
      • Selector: html > body > div:nth-child(2) > header > nav > a:nth-child(10)
      • Context: <a href="mailto:[email protected]" class="menu-link" target="_blank"><i class="fa fa-envelope" aria-...</a>
    • Issue a72712cc-2e3f-4955-b1a3-184285b759c1:
      • Type: Error
      • Code: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent
      • Message: Anchor element found with a valid href attribute, but no link content has been supplied.
      • Selector: html > body > div:nth-child(2) > header > nav > a:nth-child(9)
      • Context: <a href="https://instagram.com/paululele" class="menu-link" target="_blank"><i class="fa fa-instagram" aria...</a>
    • Issue c77bc712-e9a5-4735-bced-5b4eca0dc4e6:
      • Type: Error
      • Code: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent
      • Message: Anchor element found with a valid href attribute, but no link content has been supplied.
      • Selector: html > body > div:nth-child(2) > header > nav > a:nth-child(8)
      • Context: <a href="https://www.facebook.com/Le.Paul.94" class="menu-link" target="_blank"><i class="fa fa-facebook" aria-...</a>
    • Issue 0d6538ef-c90f-4038-9826-b8782781d679:
      • Type: Error
      • Code: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent
      • Message: Anchor element found with a valid href attribute, but no link content has been supplied.
      • Selector: html > body > div:nth-child(2) > header > nav > a:nth-child(7)
      • Context: <a href="https://twitter.com/paululele" class="menu-link" target="_blank"><i class="fa fa-twitter" aria-h...</a>
    • Issue 70625e2a-0b9f-4c1e-8187-7a4cd4c5f791:
      • Type: Error
      • Code: WCAG2AA.Principle3.Guideline3_1.3_1_1.H57.2
      • Message: The html element should have a lang or xml:lang attribute which describes the language of the document.
      • Selector: html
      • Context: `
    <title>
    Mi...</html>`
    

You can check these accessibility errors using pa11y.
You can view the full validation results in our website.

Header links not working when using Safari

I have however found a bug in the way that Safari handles something, I have no ideas what where and how so I thought I’d let you know about it. Not sure if you’ll be able to replicate it but it rears it’s head on the portfolio GitHub demo, your own personal site and on my clone of the repo. Firefox doesn’t seem to be affected.

When on a project page and the window size ( viewport??) is set to its largest size one is unable to click on the header options ( projects, blog, about) contact still works bizarrely.

Failed to install bundle

Hello, thank you for creating this fabulous template.

I'm having issues installing bundle. I get the following error:

current directory: /var/lib/gems/3.0.0/gems/http_parser.rb-0.8.0/ext/ruby_http_parser
/usr/bin/ruby3.0 -I /usr/lib/ruby/vendor_ruby -r ./siteconf20221228-127051-kd6r7g.rb extconf.rb
mkmf.rb can't find header files for ruby at /usr/lib/ruby/include/ruby.h

By any chance do you have an idea of what could be happening?

Thanks in advance.

Julieth

A small correction to READM instructions

Hi everyone,
Thank you for the nice work you put on in here.

I had a small issue forking this theme. I followed the instructions under "Github Pages installation" and modified the repository name to "andrasilvau.github.io". But the page was not building. It turned out that the only available git branch was 'gh-pages' but Github was expecting the repo to have a "master". I had to run this command to solve the problem
git checkout -b master
And then push those changes using
git push --set-upstream origin master

That solve the problem for me
Thanks!

base.scss

update the following to
table { border-collapse: collapse; margin-bottom: 30px; widthl 100%; }

table { border-collapse: collapse; margin-bottom: 30px; width:100%; }

Default site build dependencies

Hi - I deployed the vanilla site and noticed there were security issues with the particular version of Jekyll.

If editing the Gemfile as per these instructions then the problem is fixed - may be worth adding the relevant instructions to this project's README.

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.