Coder Social home page Coder Social logo

hexo-theme-next's Introduction

This repository is no longer maintained! ⚠️

The community-maintained version is here: NexT v6 and v7 🚩

NexT

NexT is a high quality elegant Hexo theme. It is crafted from scratch, with love.

gitter-image mnt-image travis-image rel-image hexo-image lic-image

Live Preview

More NexT examples here.

Installation

1. Change dir to hexo root directory. There must be node_modules, source, themes and other directories:

$ cd hexo
$ ls
_config.yml  node_modules  package.json  public  scaffolds  source  themes

2. Get theme from GitHub. There are several variants to do it:

At most cases stable. Recommended for most users.

curl-tar-wget-image

$ mkdir themes/next
$ curl -s https://api.github.com/repos/iissnan/hexo-theme-next/releases/latest | grep tarball_url | cut -d '"' -f 4 | wget -i - -O- | tar -zx -C themes/next --strip-components=1

You must define version. Replace v5.1.2 with any version from tags list.

curl-tar-image

$ mkdir themes/next
$ curl -L https://api.github.com/repos/iissnan/hexo-theme-next/tarball/v5.1.2 | tar -zxv -C themes/next --strip-components=1

git-image

$ git clone --branch v5.1.2 https://github.com/iissnan/hexo-theme-next themes/next

May be unstable, but includes latest features. Recommended for developers.

curl-tar-image

$ mkdir themes/next
$ curl -L https://api.github.com/repos/iissnan/hexo-theme-next/tarball | tar -zxv -C themes/next --strip-components=1

git-image

$ git clone https://github.com/iissnan/hexo-theme-next themes/next

Clone command will give you the whole repository. And in any time you can switch to any tagged release.
Get tags list:

$ cd themes/next
$ git tag -l
…
v5.0.0
v5.0.1
v5.1.0
v5.1.1
v5.1.2

For example, you want to switch on v5.1.0 tagged release version. Input the following command:

$ git checkout tags/v5.1.0
Note: checking out 'tags/v5.1.0'.
…
HEAD now on 1f72f68... CSS: Remove global list-style setting of ul

And if you want to switch back on master branch, input this command:

$ git checkout master

3. Set theme in main hexo root config _config.yml file:

theme: next

Bugs

For those who also encounter Error: Cannot find module 'hexo-util' issue, please check your NPM version.

  • > 3: Still not work. Please remove node_modules directory and reinstall using npm install.
  • < 3: Please add hexo-util explicitly via npm install --save-dev hexo-util to you site package deps.

Update

$ cd themes/next
$ git pull

Bugs

Commit your changes or stash them before you can merge

You must Commit, Stash or Discard local changes. See here how to do it.

Theme configurations using Hexo data files (#328)

Currently, it is not smooth to update NexT theme from pulling or downloading new releases. It is quite often running into conflict status when updating NexT theme via git pull, or need to merge configurations manually when upgrading to new releases.

At present, NexT encourages users to store some options in site's _config.yml and other options in theme's _config.yml. This approach is applicable, but has some drawbacks:

  1. Configurations are splited into two pieces
  2. Users maybe confuse which place should be for options

In order to resolve this issue, NexT will take advantage of Hexo Data files. Because Data files is introduced in Hexo 3, so you need upgrade Hexo to 3.0 (or above) to use this feature.

If you prefer Hexo 2.x, you can still use the old approach for configurations. NexT is still compatible with Hexo 2.x.

Benefits

With this feature, now you can put all your configurations into one place (source/_data/next.yml), you don't need to touch next/_config.yml. If there are any new options in new releases, you just need to copy those options from next/_config.yml, paste into _data/next.yml and set their values to whatever you want.

How to use this feature

  1. Please ensure you are using Hexo 3 (or above)
  2. Create an file named next.yml in site's source/_data directory (create _data directory if it did not exist)
  3. Copy NexT theme options both in site's _config.yml and theme's _config.yml into next.yml.
  4. Use --config source/_data/next.yml parameter to start server, generate or deploy.
    For example: hexo clean --config source/_data/next.yml && hexo g --config source/_data/next.yml.

Features

Multiple languages support, including:

🇨🇳 Simplified Chinese & Traditional Chinese.
🇺🇸 English
🇷🇺 Russian
🇫🇷 French
🇩🇪 German
🇯🇵 Japanese
🇮🇩 Indonesian
🇵🇹 Portuguese (Brazil)
🇰🇷 Korean
🇮🇹 Italian
🇳🇱 Dutch
🇻🇳 Vietnamese

Default language is English.

language: en
# language: zh-Hans
# language: zh-hk
# language: zh-tw
# language: ru
# language: fr-FR
# language: de
# language: ja
# language: id
# language: pt
# language: pt-BR
# language: ko
# language: it
# language: nl-NL
# language: vi

Set language field as following in site _config.yml to change to Chinese.

language: zh-Hans

Comment support.

NexT has native support for DuoShuo and Disqus comment systems.

Add the following snippets to your _config.yml:

duoshuo:
  enable: true
  shortname: your-duoshuo-shortname

OR

disqus_shortname: your-disqus-shortname

Tags page.

Add a tags page contains all tags in your site.

  • Create a page named tags

      hexo new page "tags"
    
  • Edit tags page, set page type to tags.

      title: All tags
      date: 2014-12-22 12:39:04
      type: "tags"
    
  • Add tags to theme _config.yml:

      menu:
        home: /
        archives: /archives
        tags: /tags
    

Categories page.

Add a categories page contains all categories in your site.

  • Create a page named categories

      hexo new page "categories"
    
  • Edit categories page, set page type to categories.

      title: All categories
      date: 2014-12-22 12:39:04
      type: "categories"
    
  • Add categories to theme _config.yml:

      menu:
        home: /
        archives: /archives
        categories: /categories
    

Social Media

NexT can automatically add links to your Social Media accounts:

social:
  GitHub: your-github-url
  Twitter: your-twitter-url
  Weibo: your-weibo-url
  DouBan: your-douban-url
  ZhiHu: your-zhihu-url

Feed link.

Show a feed link.

Set rss field in theme's _config.yml, as the following value:

  1. rss: false will totally disable feed link.

  2. rss: use sites' feed link. This is the default option.

    Follow the installation instruction in the plugin's README. After the configuration is done for this plugin, the feed link is ready too.

  3. rss: http://your-feed-url set specific feed link.

Up to 5 code highlight themes built-in.

NexT uses Tomorrow Theme with 5 themes for you to choose from. Next use normal by default. Have a preview about normal and night:

Tomorrow Normal Preview Tomorrow Night Preview

Head over to Tomorrow Theme for more details.

Configuration

NexT comes with few configurations.

# Menu configuration.
menu:
  home: /
  archives: /archives

# Favicon
favicon: /favicon.ico

# Avatar (put the image into next/source/images/)
# can be any image format supported by web browsers (JPEG,PNG,GIF,SVG,..)
avatar: /default_avatar.png

# Code highlight theme
# available: normal | night | night eighties | night blue | night bright
highlight_theme: normal

# Fancybox for image gallery
fancybox: true

# Specify the date when the site was setup
since: 2013

Browser support

browser-image

Browser Stack

BrowserStack is a cloud-based cross-browser testing tool that enables developers to test their websites across various browsers on different operating systems and mobile devices, without requiring users to install virtual machines, devices or emulators.

Contributing

Contribution is welcome, feel free to open an issue and fork. Waiting for your pull request.

hexo-theme-next's People

Contributors

acris avatar araolin avatar chitanda avatar doublemine avatar flashlab avatar geekrainy avatar georgiowan avatar haocen avatar iblogc avatar iissnan avatar imzack avatar ivan-nginx avatar jacksgong avatar jefferyfan avatar jjandxa avatar julianxhokaxhiu avatar kpavlov avatar leaferx avatar lkatartn avatar maple3142 avatar paicha avatar panzhitian avatar shenzekun avatar uchuhimo avatar xirong avatar yhlfh avatar yqw1218 avatar zhaiqianfeng avatar zhaoy875 avatar zhuzhuyule 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  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

hexo-theme-next's Issues

分页导航到了第二页就没了

首页正常。到了第二页就没了分页导航,反而每个文章项后有上一文章,下一文章导航。
hexo 版本是 3.0.0
首页是正常的,而且你的博客也是正常的。

评论处的小BUG

评论处的小BUG

模板文件 layout/post.swigdiv#disqus_thread 没有父容器,应该将 div#comments.comments 放在 {% if page.comments %} 下方。

{% if page.comments %}
    {% if (config.duoshuo and config.duoshuo.shortname) or config.duoshuo_shortname %}
      <div class="comments" id="comments">
        <div class="ds-thread" data-thread-key="{{ page.path }}"
             data-title="{{ page.title }}" data-url="{{ page.permalink }}">
        </div>
      </div>
    {% elseif config.disqus_shortname %}
      <div id="disqus_thread">
        <noscript>Please enable JavaScript to view the <a href="//disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
      </div>
    {% endif %}
 {% endif %}

改为

{% if page.comments %}
     <div class="comments" id="comments">
     {% if (config.duoshuo and config.duoshuo.shortname) or config.duoshuo_shortname %}
        <div class="ds-thread" data-thread-key="{{ page.path }}"
             data-title="{{ page.title }}" data-url="{{ page.permalink }}">
        </div>
    {% elseif config.disqus_shortname %}
      <div id="disqus_thread">
        <noscript>Please enable JavaScript to view the <a href="//disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
      </div>
    {% endif %}
    </div>
{% endif %}

简化 bower

Bower 令人诟病的一点是它下载了整个源码,而实际可用文件大概也就 min.cssmin.js。所幸后来找到了 main-bower-files,结合 Gulp 只将所需文件拷贝到静态资源目录中,例如从 bower_components 拷贝到 vendor ,同时 ignore bower_components。使用例子可见 bower.jsongulpfile.js

使用了一下确实能起到精简文件的作用,可以尝试 : )

NexT for Hexo 3.0.0

Hexo just releases 3.0.0, you can upgrade to it at anytime, NexT is already ready for this release.

Enjoy writing with the new Hexo, and hopefully reading with theme NexT.

Fancy box bug

使用fancy box图片会被压缩成条状,两边黑框严重=_=

fancybox能否正常使用?

halo,
主题配置好像有fancybox这一项,当实际使用fancybox的效果,点击图片没反应,不出现图片框,不知是不是我哪里设置有问题,求指导!!!

rc4的bug

CoercionError: d:/hexo/themes/next/source/css/_core/variables.styl:65
   61| // Font size
   62| $font-size-smaller        = $font-size - 4px
   63| $font-size-small          = $font-size - 2px
   64| $font-size-base           = 16px
 > 65| $font-size-large          = $font-size + 2px
   66| 
   67| // Headings font size
   68| $font-size-headings-base  = 28px

cannot coerce 2px to ident

图片的引用问题及其他

我在source文件夹下建了个imgs文件夹放一些小图片,在post中引用到,在主页下显示正常,但点进帖子(read more)是图片无法显示,是不是相对路径改变了?如何改动?谢谢
另外,初次建站,一些小东西不太明确

google_analytics: UA-xxxxxxxx-1
google_site_verification: googlexxxxxxxxxxxxx.html

应该是这样设置吧?
head上能否增加热门文章及推荐文章?
headband如何改动形状?
鼠标移动到链接划线效果如何改变颜色?
再次感谢

关于百度统计

百度统计3.0 似乎没有百度统计id这一说 翻了半天没有看到 只有获取代码 方法安装
请教一下主题设置这个怎么破

关于markdown自动抽取文章目录的问题

关于网页界面自动抽取格式的问题,如果我自己在次级标题里加入1.1这种格式的话,仍然会重复添加,能不能在config里加一项禁用掉这条特性呢?

具体的情况大体如下:

image

点击继续阅读能否不从文中开始阅读

现在的效果是,点击继续阅读之后自动用 # 对齐到了 more 部分一下的内容=。=、能不能在config 里加个设置,比如 auto_scroll_to_more ,因为这个不太符合阅读习惯,还是挺想一进来直接看到标题的。。。还有 <!-- more --> 以上的内容能隐藏吗?因为可能只是的概述,并不想在文中出现。

赞一下楼主,很赞的主题!

Math

可否考虑加上数学公式的支持?

会自动生成一个README.html?

1

hexo generate 的时候会在根节点将类似首页的 Layout 生成一个 README.html ,有些意义不明?

2

最好分开说明一下,在 /_config.yaml 中配置 duoshuo_shortname / disqus_shortname 中是为了 首页的 Comment Count,在 theme/next/_config.yaml 中配置 duoshuo_shortname / disqus_shortname 是为了文章/页面评论。

3

另外 README.md 中的

使用 Disqus
编辑站点的 _config.yml ,添加 duoshuo_shortname 字段,设置如下”

应该为

使用 Disqus
编辑站点的 _config.yml ,添加 disqus_shortname 字段,设置如下”

都是些鸡毛蒜皮 XD

个人觉得, sidebar应该在开始的时候就展开

通过对该hexo-theme-next的多次浏览, 我觉得sidebar默认应该展开,原因如下:

  1. 展开按钮不是那么显眼
  2. 陌生用户不知道还有个sidebar隐藏着, 比如用户浏览文章的时候, 他是不知道还有目录的

添加子目录支持

由于目前的静态资源定位是固定的,没有支持子目录结构,于是在 _config.yml 中添加了

# Static files
vendors: /vendors
css: /css

并更改 _partials/head.swig

{% if theme.fancybox %}
  <link rel="stylesheet" type="text/css" href="{{ url_for(theme.vendors) }}/fancybox/source/jquery.fancybox.css?v=2.1.5"/>
{% endif %}

<link rel="stylesheet" type="text/css" href="{{ url_for(theme.css) }}/main.css?v={{ theme.version }}"/>

{% if theme.favicon %}
    <link rel="icon" type="image/x-icon" href="{{ url_for(theme.favicon) }}" />
{% endif %}

_partials/scripts.swig

{% if theme.jquery || theme.fancybox %}
  <script type="text/javascript" src="{{ url_for(theme.vendors) }}/jquery/dist/jquery.min.js"></script>
{% endif %}

{% if theme.fancybox %}
  <script type="text/javascript" src="{{ url_for(theme.vendors) }}/fancybox/source/jquery.fancybox.pack.js"></script>
  <script type="text/javascript">
    $(document).ready(function() {
      $(".fancybox").fancybox();
    });
  </script>
{% endif %}

希望有帮上一些忙 :)

几个小问题

一些小问题哈

  1. about页面的blockquote元素样式有问题。和post中的不一样。
  2. languages/zh-Hans.yml中的“x个日志”似乎改成“x篇日志”更合适。
  3. title和author会自动转换为大写,感觉让用户自己选择更好。
  4. demo中的title那里是有圆角的,但实际使用中没有。

另外问个问题,文章的宽度是固定的么?如果屏幕分辩率较高,会不会导致文章集中在中间一条?

样式问题

image
这4个icon上面的为何是正方的矩形?和markdown内的为何不一样。

另外,创建了标签页,但是新建文章设置tags熟性后 标签页内好像没变化,
image

这张是从你们的demo截取的,我的问题是这个功能next主题没有提供吗?

手机浏览文章,侧边栏太宽

手机浏览文章时,侧边栏占据大量位置,手机:魅族MX3(手机自带浏览器),并且手机上侧边栏貌似无法关闭
s50304-141122

能不能加个关于的样式支持?

能不能加个关于的样式支持,默认不显示,但是new page的时候可以有样式支持(logo和文字替换)就行.不知道在哪里加,望指点.,告诉我我自己改也可以.

pic

代码块高亮前后可能会出现多余空白块

qq 20150129221003

如图,代码块可能会出现多余空白块。
theme版本为commit 7109c872bc3def66cf1546db66d67fbc75624e04
hexo版本如下:

marvin@ubuntu:~/MyLove/tmp/blog$ hexo --version
hexo: 2.8.3
os: Linux 3.13.0-32-generic linux x64
http_parser: 1.0
node: 0.10.36
v8: 3.14.5.9
ares: 1.9.0-DEV
uv: 0.10.30
zlib: 1.2.8
modules: 11
openssl: 1.0.1l

建议按照wuchong/jacman@e182a05 改善一下这个问题~

Thx for ur great work!

更新到v0.3.0rc1,用hexo g命令出现解析错误

这是package.json中的信息

{
  "name": "hexo-site",
  "version": "2.8.3",
  "private": true,
  "dependencies": {
    "hexo-renderer-ejs": "*",
    "hexo-renderer-stylus": "*",
    "hexo-renderer-marked": "*"
  }
}

这是debug.log中的信息

date: "2015-02-17 10:27:18.709"
argv: "d:\\Node\\node.exe d:\\Node\\npm-global\\node_modules\\hexo\\bin\\hexo g"
os: Windows_NT 6.3.9600 win32 x64
versions:
  http_parser: "2.3"
  node: 0.12.0
  v8: 3.28.73
  uv: 1.0.2
  zlib: 1.2.8
  modules: "14"
  openssl: 1.0.1l
  hexo: 2.8.3
-------
ParseError: d:/hexo/themes/next/source/css/_section/sidebar.styl:121
   117|     }
   118|   }
   119| 
   120|   }
 > 121| 
   122| .social-info {
   123|   margin-top: 20px;
   124| }

unexpected "outdent"

    at Parser.error (d:\hexo\node_modules\hexo-renderer-stylus\node_modules\stylus\lib\parser.js:255:11)
    at Parser.stmt (d:\hexo\node_modules\hexo-renderer-stylus\node_modules\stylus\lib\parser.js:773:32)
    at Parser.statement (d:\hexo\node_modules\hexo-renderer-stylus\node_modules\stylus\lib\parser.js:645:21)
    at Parser.parse (d:\hexo\node_modules\hexo-renderer-stylus\node_modules\stylus\lib\parser.js:232:25)
    at Evaluator.importFile (d:\hexo\node_modules\hexo-renderer-stylus\node_modules\stylus\lib\visitor\evaluator.js:87:20)
    at Evaluator.visitImport (d:\hexo\node_modules\hexo-renderer-stylus\node_modules\stylus\lib\visitor\evaluator.js:859:27)
    at Evaluator.Visitor.visit (d:\hexo\node_modules\hexo-renderer-stylus\node_modules\stylus\lib\visitor\index.js:28:40)
    at Evaluator.visit (d:\hexo\node_modules\hexo-renderer-stylus\node_modules\stylus\lib\visitor\evaluator.js:157:18)
    at Evaluator.visitRoot (d:\hexo\node_modules\hexo-renderer-stylus\node_modules\stylus\lib\visitor\evaluator.js:673:27)
    at Evaluator.Visitor.visit (d:\hexo\node_modules\hexo-renderer-stylus\node_modules\stylus\lib\visitor\index.js:28:40)

Default language

Hi,

In my _config.yml the language is set to the default, but my site is rendered using zh-Hanz.
Is there any setting I'm missing?

代码的行号只有一个1,多行代码的行号是什么机制?

从原有的source拷贝过来的_posts, 发现所有的多行代码中都出现了一个1

image

markdown 语法如下:

```[python]
class Animal(models.Model):
    name = models.CharField(max_length=50)
    age = models.PositiveIntegerField()

    # 下面这句决定了Animal是一个抽象类/Model
    class Meta:
        abstract = True


class Human(models.Model):
    kind_hearted = models.BooleanField()
    sex = models.CharField('sex', choices=(('m','male'), ('f', 'female')), max_length=1)
    #...
```

main.css 生成不了

你好,

hexo generate 之后,发现 css 目录下并没有生成 main.css
我以为是 hexo-renderer-stylus 没装的原因,装了再 generate 发现 main.css 还是没生成。

我的安装步骤是:

  1. 先 clone 代码到 themes 文件夹
  2. 然后改 _config.yml 中 theme 字段为 next
  3. hexo generate

这是我博客目录的 package.json

{
  "name": "hexo-site",
  "version": "2.8.3",
  "private": true,
  "dependencies": {
    "hexo-renderer-ejs": "*",
    "hexo-renderer-jade": "^0.1.0",
    "hexo-renderer-less": "^0.1.2",
    "hexo-renderer-marked": "*",
    "hexo-renderer-sass": "0.0.3",
    "hexo-renderer-stylus": "^0.2.0",
    "hexo-renderer-swig": "^0.1.0"
  },
  "devDependencies": {}
}

是不是装少了哪个插件?有空帮看下,谢啦~

问一个小问题

你的侧边栏很漂亮,我想仿照一个.

但是我遇到了问题,

我找不到你的主题中的变量在哪设置的?

换而言之,就是诸如

{{ __('sidebar.overview') }}
{{ site.posts.length }}
{{ site.pages.length }}
{{theme.description}}

这些在哪儿定义?

我查看了官网的文档,在主题里查找相关变量,没有发现相关内容.

目前的 home 下阅读问题

在已关闭的 issue 中看到了阅读的问题,但是貌似不是我现在看到的情况,我的 <!--more--> 继续阅读和 title 之间只会显示一个标题,这个是我的 .md 文件里面的定义的问题么
image

感谢作者~现在就差一个提升逼格的 homepage 了,真心要赞

新版本功能提议

看到作者你的博客首页已经出来了,不知道按照你规划的博客设计,是否有考虑友链的功能呢?

如何设置图片居中

如何设置图片居中,并且图片的标题在图片的正下方。PS:最好是用css的样式来弄,而不是直接在markdown里边写类似

这种标签,谢谢!

Fix rss link problem in <head>

Rss link in doesn't show while theme.rss is empty.

Move code

{% if theme.rss !== false %}        
  {% if theme.rss %}        
    {% set feed_uri = theme.rss %}      
  {% elif config.feed and config.feed.path %}       
    {% set feed_uri = config.root + config.feed.path %}     
  {% endif %}       
{% endif %}

from header.swig to head.swig. At the same time, simplify the code:

{% if theme.rss == '' and config.feed and config.feed.path %}
    {% set theme.rss = config.root + config.feed.path %}
{% endif %}

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.