Recent Posts
【kubernetes101】Note1. How to access the application in k8s cluster?
Prerequisite Create an independent namespace to avoid additional conflicits. The new namespace is defined in the file namespace-dev.yaml { “kind”: “Namespace”, “apiVersion”: “v1”, “metadata”: { “name”: “note1”, “labels”: { “name”: “note1” } } } Apply the yaml file in your kubernetes cluster $ kubectl apply …
【纪行】找一条路啊
有些事情不忍心说,却也无奈。我觉得不能苛求人家估计自己的面子,不去谈自己offer的大小,但是到哪里都在比offer的氛围,让人感觉实在糟透了。在过去的一年里,我也不乏在别人面前兴致勃勃地谈offer的情境,现在事移时迁,处于另一个位置了,才知道其中的辛酸苦辣。所以人啊,还是要更加思考别人的感受,而不是由着性子,想说就说。 感觉处处慢了一步,很多机会也抓不住。总说要卡住命运的咽喉,但是如今,却感觉连命运的后路都不一定留得下来,还管他咽喉作甚。这种感觉,就像在大海里挣扎的落水者,每次千辛万苦地搭上一块浮木,却不知道这块浮木能够坚持多久。等到终于登上一艘小船,却连船上是良善的船民还是横行的海盗都不知道。 世道总是如此残忍,残忍到没有试错的空间。一旦搭上一家企业,就要在里面耗上两三年时间,不管好坏。说是刚刚毕业,其实年纪也已经不小了。琢磨着从现在到而立之年,也不过五六年的时间,真的是人生无忧无虑、没有包袱的日子都在其中了。 我想去外面的世界闯一闯,而不是在一家陈旧的大公司里虚度年华,在程序员的键盘敲打中老去。讲实话,我根本不在乎今天的Offer是多一万刀、还是少一万刀,我想追求的是以一种更有意义、更有价值的生活,是一种全心投入、无所遗憾的生活。但这一切的前提是,至少我需要一个offer,把我从大海中拉起来。
Leetcode 159 Longest Substring with At Most Two Distinct Characters G家OA原题
Given a string s , find the length of the longest substring t that contains at most 2 distinct characters. Example 1: Input: “eceba” Output: 3 Explanation: t is “ece” which its length is 3. Example 2: Input: “ccaabbb” Output: 5 Explanation: t is “aabbb” …
Leetcode 543 Diameter of Binary Tree
Given a binary tree, you need to compute the length of the diameter of the tree. The diameter of a binary tree is the length of the longest path between any two nodes in a tree. This path may or may not pass through the …