All Projects → jeanboydev → Android Readthefuckingsourcecode

jeanboydev / Android Readthefuckingsourcecode

😜 记录日常的开发技巧,开发中遇到的技术重点、难点,各个知识点的总结,优质面试题等等。持续更新...

Programming Languages

HTML
75241 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Android Readthefuckingsourcecode

Awesome Scalability
The Patterns of Scalable, Reliable, and Performant Large-Scale Systems
Stars: ✭ 36,688 (+2103.48%)
Mutual labels:  interview-questions, architecture, design-patterns
System Design And Architecture
Learn how to design large-scale systems. Prep for the system design interview.
Stars: ✭ 1,005 (-39.64%)
Mutual labels:  interview-questions, architecture, design-patterns
Bestnote
👊 持续更新,Java Android 近几年最全面的技术点以及面试题 供自己学习使用
Stars: ✭ 841 (-49.49%)
Mutual labels:  gradle, interview-questions, jvm
Business Search App Java
Showcases object oriented programming in Java, Java Swing, Kotlin, and Android
Stars: ✭ 53 (-96.82%)
Mutual labels:  gradle, design-patterns
Cockburst
一个高性能,可靠,异步的本地持久化队列实现;重启JVM、重启服务器、或者强制KILL进程时,队列里的数据不丢失;
Stars: ✭ 33 (-98.02%)
Mutual labels:  jvm, performance
Super Simple Architecture
🧩 Super Simple Architecture in Swift
Stars: ✭ 44 (-97.36%)
Mutual labels:  architecture, design-patterns
Warren
🐇 Kotlin/JVM, tested, IRC v3.2 client state management and observing
Stars: ✭ 8 (-99.52%)
Mutual labels:  gradle, jvm
Devis
A microservices framework for Node.js
Stars: ✭ 72 (-95.68%)
Mutual labels:  framework, architecture
Staged Streams.scala
Stars: ✭ 55 (-96.7%)
Mutual labels:  jvm, performance
Swift Design Patterns
🚀 The ultimate collection of various Software Design Patterns implemented in Swift [Swift 5.0, 28 Patterns].
Stars: ✭ 85 (-94.89%)
Mutual labels:  architecture, design-patterns
Connective
agent-based reactive programming library for typescript
Stars: ✭ 98 (-94.11%)
Mutual labels:  framework, architecture
Javabrainmap
Java 体系涉及到的各方面知识点脑图总结,万物皆脑图。The knowledge of all aspects of the Java system is summarized in the brain map.
Stars: ✭ 33 (-98.02%)
Mutual labels:  jvm, design-patterns
Design Patterns For Humans
An ultra-simplified explanation to design patterns
Stars: ✭ 32,376 (+1844.5%)
Mutual labels:  architecture, design-patterns
Paper Code
对一些好的技术文章结合自己的实践经验进行翻译、举例说明等或自己的经验分享。主要包括架构设计、模式设计、模型设计、重构等。
Stars: ✭ 94 (-94.35%)
Mutual labels:  architecture, design-patterns
Aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
Stars: ✭ 10,061 (+504.26%)
Mutual labels:  framework, architecture
Danf
Danf is a Node.js full-stack isomorphic OOP framework allowing to code the same way on both client and server sides. It helps you to make deep architectures and handle asynchronous flows in order to help in producing scalable, maintainable, testable and performant applications.
Stars: ✭ 58 (-96.52%)
Mutual labels:  framework, architecture
Lld Parking Lot
Repository for low level design solution of parking lot
Stars: ✭ 27 (-98.38%)
Mutual labels:  interview-questions, design-patterns
Quitnow Cache
A collection to store data for a given time
Stars: ✭ 109 (-93.45%)
Mutual labels:  jvm, performance
1975
1975 - Modelando Domínios Ricos
Stars: ✭ 94 (-94.35%)
Mutual labels:  architecture, design-patterns
Gin
Gin is a HTTP web framework written in Go (Golang). It features a Martini-like API with much better performance -- up to 40 times faster. If you need smashing performance, get yourself some Gin.
Stars: ✭ 53,971 (+3141.5%)
Mutual labels:  framework, performance

Android 技术笔记

图片看不到的小伙伴,请打开科学上网

这里主要记录日常的开发技巧,开发中遇到的技术重点、难点,各个知识点的总结。同时也会分享一些优质面试题,职业规划,读书心得,个人感悟等等。😋

🌝🌔🌓🌒🌚🌚🌘🌗🌖🌝

如果能帮助到你,我很开心。希望你能点击一下右上角的小星星「⭐️ Star」 一下,然后 点击这里 找到头像下面按钮 Follow 一下我。你的 Star 和 Follow 是我分享的动力,十分感谢!😘

如果你有什么疑问或者问题,可以 点击这里 提交 issue,也可以发邮件给我 [email protected]

由于个人经验有限,内容上难免会有不足甚至错误的地方,恳请大家发现后提交 issue 或其它方式反馈给我,以免误导大家,万分感谢!🙏

目录

网络通信

深入理解 Java 虚拟机

Android 进阶攻略

图解 Android 系列

性能优化系列

热修复与插件化系列

Android 基础知识

Gradle

数据结构与算法

线性表

栈和队列

查找

排序

前端

Git

设计模式

  1. 面向对象设计原则
  • 创建型模式
  1. Singleton(单例模式)
  2. Factory(工厂模式)
  3. Abstract Factory(抽象工厂模式)
  4. Builder(建造者模式)
  5. Prototype(原型模式)
  • 结构型模式
  1. Adapter(适配器模式)
  2. Bridge(桥接模式)
  3. Composite(组合模式)
  4. Decorator(装饰模式)
  5. Facade(外观模式)
  6. Flyweight(享元模式)
  7. Proxy(代理模式)
  • 行为型模式
  1. Chain of Responsibility(责任链模式)
  2. Command(命令模式)
  3. Interpreter(解释器模式)
  4. Iterator(迭代器模式)
  5. Mediator(中介者模式)
  6. Memento(备忘录模式)
  7. Observer(观察者模式)
  8. State(状态模式)
  9. Strategy(策略模式)
  10. Template Method(模板方法模式)
  11. Visitor(访问者模式)

我的公众号

欢迎关注我的公众号,分享各种技术干货,各种学习资料,职业发展和行业动态。

Android 波斯湾

技术交流群

同时欢迎加入技术交流群,来一起交流学习。

QQ 技术交流群

微信技术交流群

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].