All Projects → shfshanyue → Daily Question

shfshanyue / Daily Question

互联网大厂内推及大厂面经整理,并且每天一道面试题推送。每天五分钟,半年大厂中

Programming Languages

Vue
7211 projects
javascript
184084 projects - #8 most used programming language
stylus
462 projects

Projects that are alternatives of or similar to Daily Question

Fe Interview
前端面试每日 3+1,以面试题来驱动学习,提倡每日学习与思考,每天进步一点!每天早上5点纯手工发布面试题(死磕自己,愉悦大家),5000+道前端面试题全面覆盖,HTML/CSS/JavaScript/Vue/React/Nodejs/TypeScript/ECMAScritpt/Webpack/Jquery/小程序/软技能……
Stars: ✭ 19,638 (+565.24%)
Mutual labels:  interview, interview-questions, frontend-interview, fe-interview
Fe Interview
🔥🔥🔥 前端面试,独有前端面试题详解,前端面试刷题必备,1000+前端面试真题,Html、Css、JavaScript、Vue、React、Node、TypeScript、Webpack、算法、网络与安全、浏览器
Stars: ✭ 4,435 (+50.24%)
Mutual labels:  interview, interview-questions, frontend-interview, fe-interview
Awesome Scalability
The Patterns of Scalable, Reliable, and Performant Large-Scale Systems
Stars: ✭ 36,688 (+1142.82%)
Mutual labels:  interview, interview-questions, devops
TheJobInterviewGuide
A job guide to help developers get through interviews and get amazing jobs!
Stars: ✭ 267 (-90.96%)
Mutual labels:  interview, interview-questions, frontend-interview
Devops Exercises
Linux, Jenkins, AWS, SRE, Prometheus, Docker, Python, Ansible, Git, Kubernetes, Terraform, OpenStack, SQL, NoSQL, Azure, GCP, DNS, Elastic, Network, Virtualization. DevOps Interview Questions
Stars: ✭ 20,905 (+608.16%)
Mutual labels:  interview, interview-questions, devops
Refarch Cloudnative Kubernetes
Reference Implementation for Microservices based on Kubernetes and the IBM Container Service.
Stars: ✭ 115 (-96.1%)
Mutual labels:  microservice, devops
Low Level Design Primer
Dedicated Resources for the Low-Level System Design. Learn how to design and implement large-scale systems. Prep for the system design interview.
Stars: ✭ 2,706 (-8.33%)
Mutual labels:  interview, interview-questions
Interview
🔖142+张现场纸质面试题集合,对你有用记得点赞
Stars: ✭ 126 (-95.73%)
Mutual labels:  interview, interview-questions
Leetcode Java
LeetCode solutions written in Java
Stars: ✭ 134 (-95.46%)
Mutual labels:  interview, interview-questions
Technical Interview Megarepo
Study materials for SE/CS technical interviews
Stars: ✭ 1,480 (-49.86%)
Mutual labels:  interview, interview-questions
Cs Job Advice
Interview preparation geared towards getting your first job in the field.
Stars: ✭ 128 (-95.66%)
Mutual labels:  interview, interview-questions
Byte By Byte Solutions
Coding interview questions and solutions
Stars: ✭ 134 (-95.46%)
Mutual labels:  interview, interview-questions
Java Interview
At the beginning, it was the repository with questions from Java interviews. Currently, it's more like knowledge base with useful links.
Stars: ✭ 114 (-96.14%)
Mutual labels:  interview, interview-questions
Java Interview
Вопросы и ответы к интервью Java разработчика
Stars: ✭ 2,348 (-20.46%)
Mutual labels:  interview, interview-questions
Android Interview Questions
A repository containing interview questions on DS, Java & Android based on my experiences.
Stars: ✭ 125 (-95.77%)
Mutual labels:  interview, interview-questions
Js Vault
List of tricky Javascript interview questions
Stars: ✭ 112 (-96.21%)
Mutual labels:  interview, interview-questions
Leetcode Sol Res
Clean, Understandable Solutions and Resources for LeetCode Online Judge Algorithm Problems.
Stars: ✭ 1,647 (-44.21%)
Mutual labels:  interview, interview-questions
.codebits
📚 List of resources for Algorithms and Data Structures in Python & other CS topics @2017
Stars: ✭ 144 (-95.12%)
Mutual labels:  interview, interview-questions
Full Stack Interview
📝 Full Stack Questions for rocking your job interview 👍
Stars: ✭ 141 (-95.22%)
Mutual labels:  interview, interview-questions
Leetcode In Swift
My solutions to LeetCode problems written in Swift
Stars: ✭ 150 (-94.92%)
Mutual labels:  interview, interview-questions

日问

勤学如春起之苗,不见其增,日有所长;辍学如磨刀之石,不见其损,日有所亏。

每天至少一个前端面试题,并附以答案及讨论。每天五分钟,半年大厂中,促进个人职业成长,敲开大厂之门。日问致力做到有问题、有答案、有代码、有视频讲解。

以诸葛武侯的诫子书与君共勉:

夫君子之行,静以修身,俭以养德。非澹泊无以明志,非宁静无以致远。夫学须静也,才须学也,非学无以广才,非志无以成学。淫慢则不能励精,险躁则不能治性。年与时驰,意与日去,遂成枯落,多不接世,悲守穷庐,将复何及!

CodeSandbox 示例集

由于在 CodeSandBox 无法以收藏夹的方式共享,我把其中涉及到有关代码的示例列举在这里

  1. React.memo 和性能优化。当某个组件状态更新时,它的所有子组件树将会重新渲染。
  2. React.memo 和记忆化数据
  3. React.memo 和 React.useMemo 优化性能
  4. React.memo 和 React.useCallback 优化性能
  5. React 中可以以数组的 index 作为 key 吗?。在这段代码中,使用 index 作为 key,其中夹杂了 input,引发 bug
  6. React 中以数组的 index 作为 key。在这段代码中,使用 index 作为 key,其中夹杂了随机数,引发了 bug
  7. React 兄弟组件通信。兄弟组件在 React 中如何通信
  8. React 中合成事件。React 中事件为合成事件,你可以通过 e.nativeEvent 获取到原生事件,观察 e.nativeEvent.currentTarget 你将会发现 React 将所有事件都绑定在了 #app(React 应用挂载的根组件)
  9. React 中 input.onChange 的原生事件是什么?。观察 e.nativeEvent.type 可知
  10. React hooks 如何实现一个计数器 Counter
  11. React FiberNode 数据结构。贯彻 element._owner 可知 FiberNode 数据结构
  12. React 点击按钮时自增三次。此时需使用回调函数,否则会报错
  13. React 不可变数据的必要性
  14. React 不可变数据的必要性之函数组件。当在 React hooks 中 setState 两次为相同数据时,不会重新渲染
  15. React 状态批量更新之事件处理。事件处理中的状态会批量更新,减少渲染次数
  16. React 状态批量更新之异步请求。异步请求中的状态不会批量更新,将会造成多次渲染
  17. React18 状态批量更新。在 React 18 中所有状态将会批量更新
  18. React capture value

Codepen 示例集

大厂内推

添加微信 shanyue94,免费大厂内推。

大厂面经

阿里

更多面经请转至 大厂面经大全

头条

更多面经请转至 大厂面经大全

腾讯

更多面经请转至 大厂面经大全

交流

我是山月,你可以添加微信 shanyue94 与我交流,另外欢迎关注我的博客山月行,我会在其中分享工作中遇到的一些前后端问题以及思考。

社交:

Github 知乎 掘金 博客 B站

项目:

极客时间返利 前端面试每日一题 诗词集
开发者工具箱 npm 在线执行 前端周刊
一纸简历 码途编辑器 云吸一只猫
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].