随笔分类 -  FE and Web arch

1 2 下一页

windows telegrah
摘要:Windows下的监控解决方案所有工具栈(Grafana,InfluxDB和Telegraf)全部支持在Windows实例上运行 监控架构一套监控系统,一般情况下都由三部分组成,指标收集器、数据存储和可视化工具(UI界面): 指标收集器,用来获取系统或者Agent的监控项目数据,一般有监控Agent 阅读全文

posted @ 2021-08-14 14:35 szllq2000 阅读(80) 评论(0) 推荐(0)

antv design
摘要: 阅读全文

posted @ 2021-04-08 15:47 szllq2000 阅读(79) 评论(0) 推荐(0)

FIS3
摘要:#npm install -g cnpm --registry=https://registry.npm.taobao.org#cnpm install -g fis3 npm install fis3 -g --registry=http://registry.npm.taobao.org/ -- 阅读全文

posted @ 2019-11-08 14:17 szllq2000 阅读(160) 评论(0) 推荐(0)

CORS jsonp
摘要:现在碰到了请求跨域的问题,结合前面讲的一些概念,我们大致可以猜到解决跨域请求的两种方式: 在服务端启用CORS。让无服务端拥有处理JSONP的能力。这两种跨域解决方案的区别是什么呢? JSONP只支持GET请求;CORS则支持GET、POST、PUT、DELETE等标准的HTTP方法使用JSONP时 阅读全文

posted @ 2019-04-16 10:09 szllq2000 阅读(129) 评论(0) 推荐(0)

vue
摘要:https://www.w3cplus.com/vue/vue-two-way-binding-object-defineproperty.html var a = {}; Object.defineProperty(a, 'b', { set: function(newValue) { conso 阅读全文

posted @ 2019-04-15 11:42 szllq2000 阅读(96) 评论(0) 推荐(0)

emcc,wasm,webassembly
摘要:WASM: https://github.com/Hanks10100/wasm-examples/tree/master/simple mkdir hello cd hello echo '#include <stdio.h>' > hello.c echo 'int main(int argc, 阅读全文

posted @ 2019-02-20 13:53 szllq2000 阅读(614) 评论(0) 推荐(0)

goreplay,tcpcopy
摘要:流量拷贝工具试用 https://github.com/buger/goreplaynginx mirror openresty 通过lua tcpcopy 支持 HTTP 请求的录制和重放,可以在线上录制请求,在测试环境进行重放。支持 HTTP 层面的流量过滤,可以只挑选我们感兴趣的流量。支持请求 阅读全文

posted @ 2019-01-11 16:38 szllq2000 阅读(748) 评论(1) 推荐(0)

nginx rate limit--[502,504,499]
摘要:nginx rate limithttps://www.topjishu.com/12139.htmlhttps://blog.csdn.net/hellow__world/article/details/78658041 Nginx配置之负载均衡、限流、缓存、黑名单和灰度发布https://www 阅读全文

posted @ 2018-11-14 14:34 szllq2000 阅读(213) 评论(0) 推荐(0)

cordova
摘要:cordova build/ cordova run android -list cordova run android -target="TWGDU16926023795" cordova emulate android 在H5发展很不错,reactjs、vuejs等SPA单页应用框架非常强大,在 阅读全文

posted @ 2018-10-11 11:00 szllq2000 阅读(152) 评论(0) 推荐(0)

firefox commands
摘要:Firefox: firefox: about:cache?device=diskfirefox sqliteAbout:configAbout:robotsAbout:memoryAbout:cacheAbout:pluginAbout:buildconfigAbout:support 阅读全文

posted @ 2018-07-15 21:49 szllq2000 阅读(120) 评论(0) 推荐(0)

browse-agent type and curl post
摘要:https://www.jb51.net/web/499127.html http://www.atool.org/useragent.php query for type 用Curl测试POST POST请求 http://172.16.102.208:8089/wiapi/score?leade 阅读全文

posted @ 2018-06-12 09:05 szllq2000 阅读(268) 评论(0) 推荐(0)

gzip压缩JavaScript
摘要:gzip压缩JavaScripthttp://www.cnblogs.com/ranzige/p/3851065.html 阅读全文

posted @ 2018-04-17 08:57 szllq2000 阅读(104) 评论(0) 推荐(0)

css selector
摘要:http://www.w3school.com.cn/cssref/css_selectors.asp http://www.w3school.com.cn/jquery/jquery_selectors.asp 阅读全文

posted @ 2018-04-14 14:33 szllq2000 阅读(105) 评论(0) 推荐(0)

前端开发组件化设计vue,react,angular原则漫谈
摘要:前端开发组件化设计vue,react,angular原则漫谈 https://www.toutiao.com/a6346443500179505410/?tt_from=weixin&utm_campaign=client_share&timestamp=1514779019&app=news_ar 阅读全文

posted @ 2018-04-02 13:31 szllq2000 阅读(137) 评论(0) 推荐(0)

grafana,graphite,influxdb with docker
摘要:++++++++++++++++++++++++ sudo docker pull tutum/influxdb sudo docker run -d -p 8083:8083 -p8086:8086 --expose 8090 --expose 8099 --name influxsrv tutu 阅读全文

posted @ 2018-01-10 13:26 szllq2000 阅读(346) 评论(0) 推荐(0)

InfluxDB通过HTTP API
摘要:SELECT "value" FROM "online_user_counter" curl -POST http://localhost:8086/query --data-urlencode "q=CREATE DATABASE mydb" 三、InfluxDB通过HTTP API添加数据 In 阅读全文

posted @ 2018-01-10 13:24 szllq2000 阅读(311) 评论(0) 推荐(0)

应该掌握的JQuery的7个效果
摘要:一: 语法: $(selector).hide(speed,callback); $(selector).show(speed,callback); 实例 //点击隐藏 $("#hide").click(function(){ $("p").hide(); }); //点击显示 $("#show") 阅读全文

posted @ 2018-01-03 08:50 szllq2000 阅读(201) 评论(0) 推荐(0)

javascript 知道这20个正则表达式,能让你少写1,000行代码
摘要:正则表达式,一个十分古老而又强大的文本处理工具,仅仅用一段非常简短的表达式语句,便能够快速实现一个非常复杂的业务逻辑。熟练地掌握正则表达式的话,能够使你的开发效率得到极大的提升。 正则表达式经常被用于字段或任意字符串的校验,如下面这段校验基本日期格式的JavaScript代码: var reg = 阅读全文

posted @ 2018-01-02 13:35 szllq2000 阅读(145) 评论(0) 推荐(0)

console access jquery--------json
摘要:jq = document.createElement('script'); jq.src = "file:///home/liulqiang/jquery.js"; document.getElementsByTagName('head')[0].appendChild(jq); jQuery.n 阅读全文

posted @ 2017-09-16 16:47 szllq2000 阅读(200) 评论(0) 推荐(0)

HTTP监视器charles入门使用教程分享---http/s packet monitors---ubuntu installation
摘要:charles --usage http://www.cnblogs.com/chenlogin/p/5849471.html 按照Charles的提示,PC打开 chls.pro/ssl下载得到一个 charles-proxy-ssl-proxying-certificate.pem 证书传送到手 阅读全文

posted @ 2017-09-10 16:51 szllq2000 阅读(295) 评论(0) 推荐(0)

1 2 下一页