普华永道(PwC) 长期招聘各种软件开发,管理岗位,可全年在家办公, 全年假期优厚。有意者可邮件联系 julia_faneast@163.com 职位简介

随笔分类 -  2021-03

摘要:原因:MAC使用的终端是zsh,zsh加载的是 ~/.zshrc文件,而 ‘.zshrc’ 文件中并没有定义任务环境变量 解决1、终端中执行命令,打开.zshrc文件: vi ~/.zshrc2、在~/.zshrc文件最后,增加一行: source ~/.bash_profile3、执行命令,使其立 阅读全文
posted @ 2021-03-29 15:11 julia_faneast 阅读(5326) 评论(0) 推荐(2)
摘要:/** 给数字添加"st, nd, rd, th"等序数词。 **/ function(n) { var suffix = ['th', 'st', 'nd', 'rd', 'th']; var ord = n < 21 ? (n < 4 ? suffix[n] : suffix[0]) : (n 阅读全文
posted @ 2021-03-09 16:04 julia_faneast 阅读(238) 评论(0) 推荐(0)
摘要:Error Message: sourcetree remote: You must use a personal access token or SSH key 解决方案: 到sourcetree 的 repository 界面, 编辑你当前的repository 2. 添加一个你的accout, 阅读全文
posted @ 2021-03-05 10:21 julia_faneast 阅读(839) 评论(0) 推荐(0)