-
Updated
Dec 9, 2019 - Python
Join GitHub (or sign in) to find projects, people, and topics catered to your interests.
Here's what's popular on GitHub today...
Code for the paper Music Source Separation in the Waveform Domain
-
Updated
Dec 9, 2019 - Python
Ansible
In China, access to websites such as TheTVDB is very slow.
Git Merge 2020
March 04, 2020 • Los Angeles
mall-swarm是一套微服务商城系统,采用了 Spring Cloud Greenwich、Spring Boot 2、MyBatis、Docker、Elasticsearch等核心技术,同时提供了基于Vue的管理后台方便快速搭建系统。mall-swarm在电商业务的基础集成了注册中心、配置中心、监控中心、网关等系统功能。文档齐全,附带全套Spring Cloud教程。
-
Updated
Dec 9, 2019 - Java
Atmosphère is a work-in-progress customized firmware for the Nintendo Switch.
-
Updated
Dec 9, 2019 - C
Pixel Art Tools
Creating pixel art for fun or animated sprites for a game? The digital artist in you will love these apps and tools!
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,
- Visual diff for GitHub commit/PR containing notebooks
- Commenting on the notebook diff to start discussion
- Conversation threads to track all open discussions
《战双:帕弥什》游戏数据
-
Updated
Dec 9, 2019
The link to C: Tutorial For a Brickout Clone in the Games section is broken and leads to a different site that does not have the tutorial on it.
本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为PyTorch实现。
-
Updated
Dec 9, 2019 - Jupyter Notebook
📚 A practical approach to machine learning to enable everyone to learn, explore and build.
-
Updated
Dec 9, 2019 - Jupyter Notebook
:octocat: Find pearls on open-source seashore 分享 GitHub 上有趣、入门级的开源项目
-
Updated
Dec 9, 2019 - Python
Task
- Finish section "Write your first App" (counter example, including screenshots)
- Review of native English speaker
Related to
#106
#107
Subfinder is a subdomain discovery tool that discovers valid subdomains for websites. Designed as a passive framework to be useful for bug bounties and safe for penetration testing.
-
Updated
Dec 9, 2019 - Go
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
An end-to-end PyTorch framework for image and video classification
-
Updated
Dec 9, 2019 - Jupyter Notebook
A collective list of free APIs for use in software and web development.
-
Updated
Dec 9, 2019 - Python
现在很多人, 包括我, 在折腾了一堆个人博客的系统之后, 放弃了花哨的页面效果, 回过头来用Github Issue写博客.
但头疼的一点就是:
如果让其他人直接点到自己仓库的issues页面来看自己的文章的话, 只会看到issue的列表, 没有突出内容, 没有分类, 没有about me, 只有一条条的issue.
如果想解决上述的问题, 就要手动在发布issue之后, 手动更新README, 并且push到仓库, 那么你需要:
- 一台电脑
- 安装git
- clone仓库
- 修改README
- push
很麻烦, 感觉慢慢没有了更新的动力
基于这个痛点, 我找到了一个办法:
利用Circle CI提供的定时任务功能, 结合GitHub的API来实现:
- 通过Github API获取当前仓库的信息, 如
- 总issue数量
本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为TensorFlow 2.0实现,项目已得到李沐老师的同意
-
Updated
Dec 9, 2019 - Jupyter Notebook
🤖 NanoNeuron is 7 simple JavaScript functions that will give you a feeling of how machines can actually "learn"
-
Updated
Dec 9, 2019 - JavaScript
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.")
We should let the script check whether a project was archived, and if true, emit a warning.
https://developer.github.com/v3/repos/#response
"archived": false,
Update the tutorial for "Building a container from scratch in Go - Liz Rice (Microscaling Systems)"
Description
The instructor in the above mentioned video has created a new version of the same tutorial, which can be found here
Why
It is always good to keep resources and tutorials up-to-date. The new video talks about namespaces, chroot and cgroups, and speaks about containers at a greater depth.
Is this something you're interest
A code-completion engine for Vim
-
Updated
Dec 9, 2019 - Python
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.
https://deno.land/std/http/file_server.ts can not handle urls like /test%20file.txt - it does not seem to parse URL encoded characters like %20.