Aug 5, 2025 · 2 min read · Create a project Create a new project directory and initialise it $ mkdir kata-project $ cd kata-project $ npm init --yes or $ npm init -y Initialise TypeScript $ npx tsc --init Created a new tsconfig.json with: ...
Join discussionApr 24, 2023 · 3 min read · Description: Pete likes to bake some cakes. He has some recipes and ingredients. Unfortunately he is not good in maths. Can you help him to find out, how many cakes he could bake considering his recipes? Write a function cakes(), which takes the reci...
Join discussionApr 21, 2023 · 3 min read · Description: You are given an array(list) strarr of strings and an integer k. Your task is to return the first longest string consisting of k consecutive strings taken in the array. Examples: strarr = ["tree", "foling", "trashy", "blue", "abcdef", "u...
Join discussionJun 25, 2022 · 7 min read · The motivation for this post was to create a template to compose deliverables of an architecture approach that is presentable to a potential client. We wanted this template to simple enough to be picked up by any of our engineers and serve as a first...
Join discussion
Jul 10, 2019 · 3 min read · 原文:Making Containers More Isolated: An Overview of Sandboxed Container Technologies 作者:Jay Chen 摘要 既然主流 IT 工业都在采用基于容器的基础设施(云原生方案),那么了解这一技术的短板就很重要了。Docker、LXC 以及 RKT 等传统容器都是共享主机操作系统核心的,因此不能称之为真正的沙箱。这些技术的资源利用率很高,但是受攻击面积和潜在的攻击影响都很大,在多租户的云环境中,不同客户的容器会被同样...
Join discussion