上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 22 下一页
摘要: git clone http://邮箱(或用户名):密码@仓库 示例: 邮箱 xw@qq.com 密码: xw 仓库: http://git.test.com/abc/demo 注意: 邮箱中的 @ 要使用 %40 代替。仓库 URL 不需要 http:// 。 命令: git clone http 阅读全文
posted @ 2019-06-17 12:02 程序媛李李李李蕾 阅读(45252) 评论(0) 推荐(0)
摘要: 2019.6.6号,当小编打开吾爱破解论坛的时候,发现网站已经不能打开,出现一个公告:吾爱破解一直致力于软件安全技术交流,作为一个尊重原创、重视版权的论坛,为了顺应新时代版权的发展,加强版权保护的力度,现决定闭站调整,取缔侵权内容,以保证技术交流氛围,择日恢复访问。 那么究竟为什么这次连吾爱破解网站 阅读全文
posted @ 2019-06-10 14:19 程序媛李李李李蕾 阅读(5448) 评论(0) 推荐(0)
摘要: 现象: 原因: 请求被插件什么的拦截导致。 修复: 换浏览器也可以。 ​ 现象: 原因: 请求被插件什么的拦截导致。 修复: 换浏览器也可以。 ​ 阅读全文
posted @ 2019-06-02 13:03 程序媛李李李李蕾 阅读(368) 评论(0) 推荐(0)
摘要: import fsys; import math; var pidMap = {}; math.randomize(); fsys.enum( "~\lib", "*.*", function(dir,filename,fullpath){ var id = "id" + "" + string.s 阅读全文
posted @ 2019-05-30 17:17 程序媛李李李李蕾 阅读(358) 评论(0) 推荐(0)
摘要: https://www.google.com/search?q=%22%5Cx1b%280%5Cx1b%29B%22 神奇的代码: process.stdout.write('"\x1b(0\x1b)B"') 阅读全文
posted @ 2019-05-15 17:31 程序媛李李李李蕾 阅读(282) 评论(0) 推荐(0)
摘要: http://ascii-table.com/ansi-escape-sequences.php 制作控制台程序时, 要实现一些特殊效果, 需要了解一下 【ANSI转义序列】 。 ANSI转义序列是一种带内信号的转义序列标准,用于控制视频文本终端上的光标位置、颜色和其他选项。在文本中嵌入确定的字节序 阅读全文
posted @ 2019-05-15 16:51 程序媛李李李李蕾 阅读(1110) 评论(0) 推荐(0)
摘要: 改绝对路径为相对路径。 https://segmentfault.com/q/1010000009672497直接在package.json里加 "homepage":"." 就OK了,会在路径前加homepage的值 ​ 改绝对路径为相对路径。 https://segmentfault.com/q 阅读全文
posted @ 2019-04-23 18:13 程序媛李李李李蕾 阅读(2634) 评论(0) 推荐(0)
摘要: 阿里图标库使用 文档: https://www.iconfont.cn/help/detail?helptype=code 有几种使用方法。 单个文件使用 - 直接下载文件, 如 .ai .png .svg 使用方法: 下载啊~ unicode - 写 html 字符编码 使用方法: 下载包含你选择 阅读全文
posted @ 2019-04-23 16:08 程序媛李李李李蕾 阅读(3093) 评论(0) 推荐(0)
摘要: 添加这个属性, 并且服务器允许跨域后,会得到精确的报错信息。 添加这个属性,但服务器不允许跨域,就会被同源策略阻止加载资源。 不添加这个属性,只能知道报错,不知道具体信息。 https://www.jianshu.com/p/a45c9d089c93 https://www.chrisyue.com 阅读全文
posted @ 2019-04-18 10:43 程序媛李李李李蕾 阅读(5377) 评论(0) 推荐(0)
摘要: brew install enca # Enca语法 Usage: enca [-L LANGUAGE] [OPTION]... [FILE]... enconv [-L LANGUAGE] [OPTION]... [FILE]... Detect encoding of text files an 阅读全文
posted @ 2019-04-09 12:32 程序媛李李李李蕾 阅读(5489) 评论(0) 推荐(0)
摘要: 各位亲,最近又要大量招人了,先说下规则:对自己工作经历和学历特别有信心的同学欢迎直接简历投 ali-mfe-hire@list.alibaba-inc.com , 觉得怀才不遇的同学,可以以写blog的方式证明自己,以下9个题目任选一个或者几个,写一篇文章,微博上@ 我。 谈谈你对CSS布局的理解 阅读全文
posted @ 2019-03-14 17:15 程序媛李李李李蕾 阅读(557) 评论(0) 推荐(0)
摘要: 开发环境规范 注: 本文档默认是基于 macos 环境。 eslint 语法规则和代码风格的检查工具。 体验 npm i -g eslint 全局安装 eslint 。 创建 .eslintrc 文件并输入以下内容: { "rules": { "indent": 2, "no-unused-vars 阅读全文
posted @ 2019-03-13 11:18 程序媛李李李李蕾 阅读(3002) 评论(0) 推荐(0)
摘要: 清除控制台 console.log(1) // console.clear() // CTRL + K // Ctrl + L // process.stdout.write('\033c'); // process.stdout.write('\x1B[2J'); // process.stdou 阅读全文
posted @ 2019-02-02 16:27 程序媛李李李李蕾 阅读(3581) 评论(0) 推荐(0)
摘要: centos 7安装phantomjs wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2 yum install bzip2 # 安装bzip2 tar -jxvf ph 阅读全文
posted @ 2019-01-10 15:24 程序媛李李李李蕾 阅读(4258) 评论(2) 推荐(1)
摘要: 先输入top 然后 按P – 以 CPU 占用率大小的顺序排列进程列表 按M – 以内存占用率大小的顺序排列进程列表 top命令是Linux下常用的性能分析工具,比如cpu、内存的使用,能够实时显示系统中各个进程的资源占用状况,类似于Windows的任务管理器。 top显示系统当前的进程和其他状况, 阅读全文
posted @ 2019-01-09 22:51 程序媛李李李李蕾 阅读(52587) 评论(2) 推荐(0)
摘要: # build for production and view the bundle analyzer report npm run build --report ​ ​ 阅读全文
posted @ 2018-12-19 22:15 程序媛李李李李蕾 阅读(1000) 评论(0) 推荐(0)
摘要: 判断是否渐进npm install —global is-progressive-cliis-progressive *.jpg 转换为渐进法一brew install imagemagickbrew install graphicsmagicknpm install gm -ggm convert 阅读全文
posted @ 2018-12-19 00:17 程序媛李李李李蕾 阅读(1220) 评论(0) 推荐(0)
摘要: 使用 pm2 优雅的部署 node 程序 # 启动并监控名字为 XXX 的 npm run start:dev 命令 pm2 start npm --watch --name XXX -- run start:dev 帮助 ### 普通General npm install pm2 -g # 安装 阅读全文
posted @ 2018-12-13 17:21 程序媛李李李李蕾 阅读(1173) 评论(0) 推荐(0)
摘要: 1.是用curl抓取的数据是用类似gzip压缩后的数据导致的乱码。乱码:curl www.1ting.com |more乱码:curl -H "Accept-Encoding: gzip"www.1ting.com | more不乱码:curl -H "Accept-Encoding: gzip"w 阅读全文
posted @ 2018-12-12 23:15 程序媛李李李李蕾 阅读(838) 评论(0) 推荐(1)
摘要: 如何恢复已禁用的console.log? How to Restore a Disabled console.log?通过将其拉出iframe,在已删除的页面(如twitter)上恢复console.log。 function setConsole() { var iframe = document 阅读全文
posted @ 2018-12-04 22:02 程序媛李李李李蕾 阅读(1816) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 22 下一页