Vim
h j k l 左 下 上 右
w b 前后字 e 字尾端
0 行头
美团实习时,OC要从头学起,记一些笔记,方便日后查阅
TensorFlow入门记录的一些笔记,以及自己的理解
这次测试真的巨坑,对mac用户十分不友好,我花了大概一个下午踩坑才终于完成了配置,成功提交了.
面试惨案
整理了一些iOS可能面试的点(持续更新) 分享一个我最喜欢看的技术博客 http://www.cnblogs.com/ludashi
最近在写iOS端的课程表,今天遇到了swift关于时间方面的坑,写下此文记录一下。 首先是关于语言的,我需要得到一周的各星期的简写,swift的方法如下:
let timeFormatter = DateFormatter()
timeFormatter.dateFormat = "HH:mm:ss E M dd zzz GGG"
let today = Date()
print(timeFormatter.string(from: today))
// 模拟器中星期几是Thu
Given a string containing just the characters ‘(‘ and ‘)’, find the length of the longest valid (well-formed) parentheses substring.