Google

Google

https://github.com/google

Google Samples

https://github.com/googlesamples

Google Codelabs

https://github.com/googlecodelabs

GoogleChrome

https://github.com/GoogleChrome

Google Creative Lab

https://github.com/googlecreativelab

人人皆可使用的Google开源字体

https://github.com/googlei18n

Facebook

Facebook

https://github.com/facebook

Facebook Samples

https://github.com/fbsamples

facebookresearch

https://github.com/facebookresearch

Twitter, Inc.

https://github.com/twitter

Square(android开源的类库多而且厉害)

https://github.com/square

Alibaba

Alibaba

https://github.com/alibaba

hiloteam(阿里,终端跨平台小游戏)

https://github.com/hiloteam

https://github.com/hiloteam/hilo

腾讯相关

腾讯

https://github.com/Tencent

腾讯前端库

https://github.com/AlloyTeam

微信开发团队

https://github.com/WeMobileDev/article

其他

Yalantis(好几个效果不错android的控件)

https://github.com/Yalantis

SwiftAndroid

https://github.com/SwiftAndroid

Ramotion(App Development Agency | Available for new projects)

https://github.com/Ramotion

Tinify(压缩图片的那个网站)

https://github.com/tinify

豆瓣

https://github.com/douban

WeUI(微信ui)

https://github.com/weui

美团·大众点评

https://github.com/Meituan-Dianping

极光开发者

https://github.com/jpush

Dropbox

https://github.com/dropbox

伯乐在线

https://github.com/jobbole

grpc(gRPC:Google开源的基于HTTP/2和ProtoBuf的通用RPC框架)

https://github.com/grpc

Nike Inc.(耐克)

https://github.com/Nike-Inc

Medium

https://github.com/Medium

Microsoft

https://github.com/Microsoft

Mapbox

https://github.com/mapbox

JetBrains(好多ide都是他家出的)

https://github.com/JetBrains

Kotlin(可以写Android,现在已经扶正了)

https://github.com/Kotlin

ReactiveX(函数响应式编程)

https://github.com/ReactiveX

https://github.com/Reactive-Extensions

Airbnb

https://github.com/airbnb

Apple

https://github.com/apple

Uber

https://github.com/uber

Baidu EFE team(百度)

https://github.com/ecomfe

Bilibili(B站)

https://github.com/Bilibili

Yalantis(音乐播放,好多比较好的移动端效果)

https://github.com/Yalantis

https://yalantis.com/

Spring

https://github.com/spring-projects

饿了么

https://github.com/eleme

https://elelogistics.github.io/

欢迎访问我的博客http://www.yuanjingzhuang.com/

大牛公司的github的更多相关文章

  1. 看完给跪了:技术大牛总结的Github与华为软件开发云完整对比

    华为软件开发云配置管理 服务和Github是国内外比较有代表性的代码托管平台,它们以git作为版本管理工具,使项目中身处各地的人员可以协同工作,主要操作涉及仓库.分支.提交.pull request等 ...

  2. 知名公司的GitHub地址

    GoogleGoogle[https://github.com/google]( https://github.com/google) Google Sampleshttps://github.com ...

  3. GitHub贡献第一的公司是谁?微软开源软件列表

    参考:http://www.infoq.com/cn/news/2017/03/GitHub-first-Microsoft-open-sour 提起微软公司,不少人第一反应是老牌巨头专注于私有化软件 ...

  4. 知识扩展——Git和GitHub的区别

    一直以为Git和GitHub是一个东西,直到我看到这个解释.... 转载自:git与github区别与简介 一开始接触git或是github的程序员可能搞不太清楚这些名词到底指代的是什么,所以在这里稍 ...

  5. git与github区别与简介

    From: https://blog.csdn.net/skyxmstar/article/details/65631658 git和github是两个完全不同的概念. git 是一个版本管理工具,是 ...

  6. 01: git & github

    目录:GIT其他篇 01: git & github 02: git分支管理 目录: 1.1 常见版本管理工具介绍 及 版本工具作用 1.2 git.GitHub和SVN比较 1.3 本地gi ...

  7. iOS- 什么是GitHub?关于它的自我介绍「初识 GitHub」

    1 前言 我一直认为 GitHub 是程序员必备技能,程序员应该没有不知道 GitHub 的才对,我当初接触 GitHub 也大概工作了一年多才开始学习使用,我读者里很多是初学者,而且还有很多是在校大 ...

  8. 从0开始学习 GITHUB 系列之「初识 GITHUB」【转】

    本文转载自:http://stormzhang.com/github/2016/05/25/learn-github-from-zero1/ 版权声明:本文为 stormzhang 原创文章,可以随意 ...

  9. 初学者之 Git 和 Github

    git和github是两个完全不同的概念. git   是一个版本管理工具,是可以在你电脑不联网的情况下,只在本地使用的一个版本管理工具,其作用就是可以让你更好的管理你的程序,比如你原来提交过的内容, ...

随机推荐

  1. 【Vue】vue的双向绑定原理及实现

    vue数据双向绑定是通过数据劫持结合发布者-订阅者模式的方式来实现的,那么vue是如果进行数据劫持的,我们可以先来看一下通过控制台输出一个定义在vue初始化数据上的对象是个什么东西. 代码: var ...

  2. PHP filter_var_array() 函数

    定义和用法 filter_var_array() 函数获取多个变量,并进行过滤. 该函数对过滤多个值很有用,无需重复调用 filter_var(). 如果成功,则以数组形式返回请求变量的值.如果失败, ...

  3. 【Dart学习】--Dart之字符串(String)的相关方法总结

    字符串定义使用单引号或双引号 String a = "abcdefg"; String b = '; 创建多行字符串,保留内在格式使用三个单引号或三个双引号 创建多行字符串,保留内 ...

  4. 【Flutter学习】页面跳转之路由及导航

    一,概述 移动应用通常通过成为‘屏幕’或者‘页面’的全屏元素显示其内容,在Flutter中,这些元素统称为路由,它们由导航器Navigator组件管理.导航器管理一组路由Route对象,并提供了管理堆 ...

  5. 探索Redis设计与实现14:Redis事务浅析与ACID特性介绍

    本文转自互联网 本系列文章将整理到我在GitHub上的<Java面试指南>仓库,更多精彩内容请到我的仓库里查看 https://github.com/h2pl/Java-Tutorial ...

  6. MySQL教程和使用手册

    MySQL 教程 MySQL 教程.MySQL 安装.MySQL 管理.MySQL PHP 语法.MySQL 连接.MySQL 创建数据库.MySQL 删除数据库.MySQL 选择数据库.MySQL ...

  7. 尚学linux课程---12、vim操作命令2

    尚学linux课程---12.vim操作命令2 一.总结 一句话总结: 要看不同的视频,每个视频的关键点都不一样,不如之间的的视频就没讲到vim中set nu是什么意思 学了的内容一定要练,不然真的是 ...

  8. margin 负值问题

    * margin-top 和 margin-left 负值,自身元素向上.向左移动: * margin-right 负值,右侧元素左移,自身元素不受影响: * margin-bottom 负值,下方元 ...

  9. 64、通过PickListValuesUtil,Schema查看下拉列表中的值

    public class PickListValuesUtil { public static Map<String,Object> getPicklistValues(String sO ...

  10. js 中 !!的用法

    !!是将表达式强制转化为bool值的运算,运算结果为true或false,表达式是什么值,结果就是对应的bool值,不再取非. 不是取非再取非的意思!!! !!false=false;    要注意f ...