The Wayback Machine - https://web.archive.org/web/20191208173457/https://github.com/explore
Skip to content

Join GitHub (or sign in) to find projects, people, and topics catered to your interests.

Here's what's popular on GitHub today...

Git logo
Popular topic
Git is the most widely used version control system.
deno
Trending repository
Git Merge 2020
Upcoming event recommended by GitHub
Mar
4

Git Merge 2020

March 04, 2020 • Los Angeles

Git Merge is a one-day conference dedicated to the version control tool that started it all—and the people who use it every day.
mall-swarm
Trending repository

mall-swarm是一套微服务商城系统,采用了 Spring Cloud Greenwich、Spring Boot 2、MyBatis、Docker、Elasticsearch等核心技术,同时提供了基于Vue的管理后台方便快速搭建系统。mall-swarm在电商业务的基础集成了注册中心、配置中心、监控中心、网关等系统功能。文档齐全,附带全套Spring Cloud教程。

  • Updated Dec 8, 2019
  • Java
App recommended by GitHub

LeanBoard

Lean Board is a collaborative whiteboard with sticky notes which seamlessly connects with your GitHub issue. Login with your GitHub account, create a board for an issue and a snapshot of your notes is embedded in the issue automatically.

Data-Science--Cheat-Sheet
Trending repository
xia0nan
xia0nan commented May 29, 2019

Error on Python_cheatsheet.pdf page 5

Looping through all the keys in order

# Show each person's favorite language,
# in order by the person's name.
for name in sorted(fav_languages.keys()):
    print(name + ": " + language)

Should be changed to

# Sort dict by key
for name in sorted(fav_languages.keys()):
    print(name + ": " + fav_languages[name])

Would be nice

weekly
Trending repository
jwenjian
jwenjian commented May 26, 2019

现在很多人, 包括我, 在折腾了一堆个人博客的系统之后, 放弃了花哨的页面效果, 回过头来用Github Issue写博客.

但头疼的一点就是:
如果让其他人直接点到自己仓库的issues页面来看自己的文章的话, 只会看到issue的列表, 没有突出内容, 没有分类, 没有about me, 只有一条条的issue.

如果想解决上述的问题, 就要手动在发布issue之后, 手动更新README, 并且push到仓库, 那么你需要:

  • 一台电脑
  • 安装git
  • clone仓库
  • 修改README
  • push

很麻烦, 感觉慢慢没有了更新的动力 😢

基于这个痛点, 我找到了一个办法:
利用Circle CI提供的定时任务功能, 结合GitHub的API来实现:

  1. 通过Github API获取当前仓库的信息, 如
  • 总issue数量
STL
Trending repository
Neumann-A
Neumann-A commented Sep 18, 2019

Simply:

https://github.com/microsoft/STL/blob/7f65140761947af4ed7f9dfc11adee8c86c9e4c2/CMakeLists.txt#L15

should be a cache variable so that users might be able to change it via the cmake command line.

e.g. something like:
set(VCLIBS_SUFFIX "_oss" CACHE STRING "Additional suffix appended to build dlls to not conflict with the one the OS or other applications uses.")

awesome-selfhosted
Trending repository
project-based-learning
Trending repository
App recommended by GitHub

Review Notebook App

Having trouble using Jupyter Notebooks effectively in your team? Join 200+ organizations like Amazon, Microsoft, Tensorflow, fast.ai in using ReviewNB for notebook code reviews.

We provide complete code review workflow for notebooks,

You can’t perform that action at this time.