自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 收藏
  • 关注

原创 地狱模式年度中期体验报告

自从慢慢懂事开始,每过去的一年都在记忆中变得不一样,逐渐学会去琢磨这个社会的变化与个人的变化。今年不出意外的话,我相信一定会尤为突出,而且对于每个人都是如此。然而,看热闹不嫌事大的我却要再继续浓眉重彩地添上一笔:决定从I城搬到M地。 搬迁的决定过程并不复杂,但我相信对我的未来一定影响深远。先是老婆一路披荆斩棘拿到了心仪公司的offer,同时又捏着I城一个也相当不错的备胎offer。期间我的贡献不容忽略,这里略微自夸一下。但真正临阵杀敌的都是她,我最多也就是个先摸了石头过河再告诉她石头在哪的人。两个公司说出

2020-06-22 09:41:16 202

原创 REST Design 学习笔记

Representative State Transfer(REST)是目前业界比较流行的一种系统架构设计风格。很多大公司内部没有专门的培训,但是比较统一的系统设计都会遵循一些REST的约束和框架。如果我们完全遵循REST来设计网络服务,那么这个网络服务也可以叫做RESTful的服务。想要彻底明白REST,需要先理清几个概念: 资源(Resources):在REST中,资源是客户端从服务器端所请...

2020-03-30 05:06:13 219

原创 七天表达不了我对祖国的热爱

国庆节真是喜庆,七天放假我的朋友圈里至少有五场婚礼。要是算上朋友和夫妻双方各自发的内容,保守估计不到20场。 下周终于要熬到在公司鬼混了一年的日子,前几天跟前公司同事们吃饭的时候感觉还是像从前一般亲切。正好之前的老板当时在招人,我一拍脑袋觉得当时隔壁组的一个小姑娘人还不错也爱学习,可以推荐一下。两边都打了招呼应该没什么问题,两情相悦的事情现在实在是太难得了,值得高兴。 前天在硅谷的门罗公园有个...

2019-10-08 14:19:58 404

原创 写于独立日之后,第一次人事变动重组之前

近期项目被搁置,好不容易吭哧吭哧写完的设计文档只能扔在一边,又写了一篇“未来迟早会做”的设计文档,每天打开Intellij都感觉是形同虚设。前一周正好独立日放假,结果自己倒霉oncall了一周,也没能好好享受假期。随后TechLead突然告知有人事变动,然后老板也在组内会议里面正式剧透了这个情况,全组每天都在私下讨论个中利弊,完全无法有心思上班。 打开公司档案一看,发现自己已经入职大半年了。总的...

2019-07-14 04:53:47 142

原创 写于2018万圣节前之际

终于,下个周末可以匆匆忙忙地去新公司报道了。从四月开始准备面试刷题,到八月决定去处,后来又遭遇了一些波折+最近辞职,这几个月的折腾算是告一段落。公司现在不少人见了我都跟我道喜祝贺,都希望我可以在新去处继续有所作为。我很欣慰目前这一年“卧薪尝胆”没有白费,可同时也深知这不过是另一个新的开端而已,许多同辈几年前就到达了如此地步。总之,从此一切归零,我又是一个菜鸟新手玩家。 两年前,我司趁我还未毕业先...

2018-10-07 04:37:07 99

原创 LeetCode 406 - Queue Reconstruction by Height

原题: Suppose you have a random list of people standing in a queue. Each person is described by a pair of integers (h, k), where h is the height of the person and k is the number of people in front of ...

2018-07-09 03:05:14 158

原创 LeetCode 315 - Count of Smaller Numbers After Self

You are given an integer array nums and you have to return a new counts array. The counts array has the property where counts[i] is the number of smaller elements to the right of nums[i]. Example: ...

2018-07-07 11:49:54 199

原创 LeetCode 87 - Scramble String

原题: Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrings recursively. Below is one possible representation of s1 = “great”: great / \ ...

2018-06-27 12:49:33 168

原创 LeetCode 85 - Maximal Rectangle

原题: Given a 2D binary matrix filled with 0’s and 1’s, find the largest rectangle containing only 1’s and return its area. Example: Input: [ ["1","0","1","0","0"], ["1","0","1&

2018-06-27 12:28:53 97

原创 LeetCode 80 - Remove Duplicate From Sorted Array II

原题: Given a sorted array nums, remove the duplicates in-place such that duplicates appeared at most twice and return the new length. Do not allocate extra space for another array, you must do this b...

2018-06-26 13:41:14 116

原创 LeetCode 57 - Insert Interval

原题: Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessary). You may assume that the intervals were initially sorted according to their start times. ...

2018-06-26 13:20:37 74

原创 LeetCode 45 - Jump Game II

原题: Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array represents your maximum jump length at that position. Your goal ...

2018-06-26 12:52:35 111

原创 LeetCode 39 - Combination Sum

原题: Given a set of candidate numbers (candidates) (without duplicates) and a target number (target), find all unique combinations in candidates where the candidate numbers sums to target. The same r...

2018-06-26 12:33:51 95

原创 Leetcode 4 - Median of Two Sorted Arrays

There are two sorted arrays nums1 and nums2 of size m and n respectively.Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).大致题意就是:对于两个排好序的数组nums1和nums2,s...

2018-06-26 12:05:13 71

原创 信息安全学习笔记-简单linux命令与c语言编程

最近开始陪女朋友上信息安全课,其实就是帮她做作业。由于她实在是没有编程基础,基本上第一个project一大半都是我完成的。其主要内容就是写几个简单的c语言程序去产生(exploit)一个栈缓存溢出或者是堆溢出。我基础也好不到哪里去,不过平时上班c++会用到。但毕竟不是科班出身,对于基础的c语言编程、汇编代码等内容几乎没有接触过。我不上课(懒+那老师基本不讲关键点),但幸运地在youtube上面找到...

2018-02-09 14:35:00 510

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除