• Sign in
  • Sign up 
  • Welcome
  • FAQ
  • Block Explorer 
  • Night Mode
  • Stolen Accounts Recovery 
  • Change Account Password 
  • Vote for Witnesses 
  • Hive Proposals 
  • OpenHive Chat 
  • Developer Portal 
  • Hive Whitepaper 
  • Privacy Policy
  • Terms of Service
logo
  • Posts
  • Proposals
  • Witnesses
  • Our dApps
LoginSign up

_not_bad_ (25)Hivebuzz level badge

not bad guy

13 followers10 posts13 following0 HP
Blacklisted Users
Muted UsersFollowed BlacklistsFollowed Muted Lists

earth steemit.com/@andy2046 Joined January 2019 Active 7 years ago

  • Blog
  • Posts
  • Replies
  • Social
  • Notifications
  • Wallet
Posts
Comments
Payouts
  • andy2046 (25)in #react • 7 years ago
    featured

    [React] Redux 源码解读

    介绍 我们一起来研究下当前最流行的 React状态管理容器Redux ,本文基于 Redux v3.7.2 ,Redux用一个单独的状态树对象(state tree object)保存整个应用的状态,这个对象不能直接被改变(immutable),当数据变化了,一个新的对象就会被创建(通过actions和reducers)…
    $0.00
       1 2
    • andy2046 (25)in #nodejs • 7 years ago
      featured

      Node.js进阶666 等级考试

      Node.js challenge 四级 What is the relationship between Node.js and V8? Can Node work without V8? How come when you declare a global variable in any Node.js file it’s…
      $0.00
         4 1
      • andy2046 (25)in #kubernetes • 7 years ago
        featured

        Kubernetes API reference

        v1.10 Container Pod Service Deployment Ingress Job CronJob NetworkPolicy
        $0.00
           3 0
        • andy2046 (25)in #kubernetes • 7 years ago
          featured

          Kubernetes cheat sheet

          Cluster Introspection kubectl get services # List all services
          $0.00
             5 2
          • andy2046 (25)in #tco • 7 years ago
            featured

            Tail Call Optimization in JavaScript

            [JavaScript] 尾调用优化 Tail Call Optimization 介绍 现在函数式编程越来越流行,有时我们会选择用recursion递归来写逻辑,这样代码容易懂而且也可以避免一些side-effects副作用,但是, 但是,JavaScript并不支持尾递归调用 举个栗子🌰,下面👇代码会出错 var sum = function(x, y) {
            $0.00
               2 0
            • andy2046 (25)in #variable • 7 years ago
              featured

              Variable Object in JavaScript

              [JavaScript] 变量对象 Variable Object 介绍 本文中,我们将分析与ECMAScript 执行上下文 相关的概念 变量对象 Variable Object 先举个栗子🌰,为什么a b x表现大不相同,当引用一个函数或者变量时,解释器是如何以及从哪里找到它们的呢 alert(a); // undefined
              $0.00
                 3 0
              • andy2046 (25)in #execution • 7 years ago
                featured

                Execution Context in JavaScript

                [JavaScript] 执行上下文 Execution Context 介绍 本文中,我们将分析ECMAScript的执行上下文以及相关的可执行代码的类型 先举个栗子🌰,为什么a和b表现大不相同,当引用一个函数或者变量时,解释器是如何以及从哪里找到它们的呢 b(); // Called b
                $0.00
                   3 0
                • andy2046 (25)in #scope • 7 years ago
                  featured

                  Scope Chain in JavaScript

                  [JavaScript] 作用域链 Scope Chain 介绍 在 变量对象 中已经介绍过, 执行上下文 (变量,函数声明和函数形式参数)的数据被存储为变量对象的属性 此外,我们知道每次进入上下文时都会创建变量对象并填充初始值,并且它的更新发生在代码执行阶段 举个栗子🌰 function test(a, b) {
                  $0.00
                     2 0
                  • andy2046 (25)in #javascript • 7 years ago
                    featured

                    this in JavaScript

                    [JavaScript] 令人迷惑的《this》 介绍 本文将讨论一个与 执行上下文 密切相关的细节 => this 关键字 实践证明,理解 this 难度较大,并且经常会导致在不同的执行环境中错误滴确定 this 值的问题 举着栗子🌰: var a = 'global';
                    $0.00
                       3 0