
iamjohnnyzhuang.github.io
Johnny-ZhuangMy Personal Technology Blog
http://iamjohnnyzhuang.github.io/
My Personal Technology Blog
http://iamjohnnyzhuang.github.io/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Wednesday
LOAD TIME
4.1 seconds
16x16
PAGES IN
THIS WEBSITE
12
SSL
EXTERNAL LINKS
11
SITE IP
151.101.40.133
LOAD TIME
4.117 sec
SCORE
6.2
Johnny-Zhuang | iamjohnnyzhuang.github.io Reviews
https://iamjohnnyzhuang.github.io
My Personal Technology Blog
SQL注入看这篇就够 - Johnny-Zhuang's Technology Blog
https://iamjohnnyzhuang.github.io/database/2016/07/16/SQL注入看这篇就够.html
LOVE CODE,LOVE LIFE,LOVE DAWN. Raquo; About Me. Raquo; XML Feed. Select * from table where user name='". 但是如果用户输入的不是zhanghao,而是这样的’ or 1=1 呢. 所以他可能会写 ’;DROP DATABASE (DB NAME). 或者,我们可以用正则,把 有 单引号(‘),分号(;) 和 注释符号 的语句给替换掉来防止SQL注入. Share this on →. Johnny-Zhuang - https:/ github.com/iamjohnnyzhuang.
通用的Spring MVC Bean自动装配机制 - Johnny-Zhuang's Technology Blog
https://iamjohnnyzhuang.github.io/java/2016/07/17/通用的Spring-MVC-Bean自动装配机制.html
LOVE CODE,LOVE LIFE,LOVE DAWN. Raquo; About Me. Raquo; XML Feed. Created by zhuangjy on 2015/12/10. */. Share this on →. Johnny-Zhuang - https:/ github.com/iamjohnnyzhuang.
About - Johnny-Zhuang's Technology Blog
https://iamjohnnyzhuang.github.io/about
LOVE CODE,LOVE LIFE,LOVE DAWN. Raquo; About Me. Raquo; XML Feed. I am a programer,. Now I am writing Java. Email: johnny.zhuang@foxmail.com. Johnny-Zhuang - https:/ github.com/iamjohnnyzhuang.
主备热切换的思考 - Johnny-Zhuang's Technology Blog
https://iamjohnnyzhuang.github.io/architecture/2016/08/10/主备切换的思考.html
LOVE CODE,LOVE LIFE,LOVE DAWN. Raquo; About Me. Raquo; XML Feed. 初始化连接的问题: 在client与server之间握手建立连接的过程中, 如果握手失败, 执行所有的同步方法(比如create, getData等)将抛出异常. 自动恢复(failover)的问题: 当client与一台server的连接丢失,并试图去连接另外一台server时, client将回到初始连接模式. Session过期的问题: 在极端情况下, 出现ZooKeeper session过期, 客户端需要自己去监听该状态并重新创建ZooKeeper实例 . 对可恢复异常的处理:当在server端创建一个有序ZNode, 而在将节点名返回给客户端时崩溃, 此时client端抛出可恢复的异常, 用户需要自己捕获这些异常并进行重试. 重试机制:提供可插拔的重试机制, 它将给捕获所有可恢复的异常配置一个重试策略, 并且内部也提供了几种标准的重试策略(比如指数补偿). Heartbeat 项目是 Linux-HA 工程的一个组成部分,它实现了一个高可用集群系统。
学会这些Shell命令就够了 - Johnny-Zhuang's Technology Blog
https://iamjohnnyzhuang.github.io/shell/2016/07/04/学会这些Shell命令就够了.html
LOVE CODE,LOVE LIFE,LOVE DAWN. Raquo; About Me. Raquo; XML Feed. 但是总会遇到和博主一样的问题 基本的Linux命令 如cd、rm、mv等等 学会了,但总感觉还是对Linxu很生疏。 虽然是针对Linux的,但是由于答主的电脑用的是Mac OS以及Zsh,因此这里主要是以Mac Os Zsh为主,但是和Linux Bash 没多大区别哦. 有修改过Wordpress等网站且不擅长PHP没用IDE的童鞋肯定遇到过这样的问题 通过前端Chrome找到某个需要修改的前端代码片段 比如模板写的是power by johnny-zhuang 对于使用模板的人肯定不想暴露自己的网站使用了谁的模板吧。 但是没有IDE,我们虽然知道了这段代码的关键字 如power by johnny-zhuang 怎么去寻找它出现在哪呢. Find xargs grep -r "power by johnny-zhuang". 通过这个场景我们可以学会find 以及 grep xargs 的基础操作了。 Date #输出当前时间 2016年07月20日 10:40:20.
TOTAL PAGES IN THIS WEBSITE
12
让我再想想标题=v= - 细语呢喃
https://www.hrwhisper.me/diary-2017-01
Enter your password to view comments. This post is password protected. To view it please enter your password below:. 本文地址 https:/ www.hrwhisper.me/diary-2017-01/. My way and my heart :).
C语言函数调用过程 | 缓冲区溢出攻击 - 细语呢喃
https://www.hrwhisper.me/understanding-stack-frame-of-function-call-and-buffer-overflow-attack
Include stdio.h #include string.h #include stdlib.h bool IsPasswordOkay(void) { char Password[12]; gets(Password); if (! Strcmp(Password, "goodpass") return(true); else return(false); } void main(void) { bool PwStatus; puts("Enter password:"); PwStatus = IsPasswordOkay(); if (PwStatus = false) { puts("Access denied"); exit(-1); } else puts("Access granted"); }. 由汇编看到puts(“Access granted”); 地址为 0x004010DD. PS:上述的程序中, 要是没有设置正确的EBP值 随便设置一个 那么也可以出现access granted,但是程序会报错退出。 Leetcode 389 399 solution.
往事如烟 - 细语呢喃
https://www.hrwhisper.me/say-goodbye-to-the-past
Love is a touch and yet not a touch. 本文地址 https:/ www.hrwhisper.me/say-goodbye-to-the-past/. 5 thoughts on “ 往事如烟. PS 我也在十月几号break up, 感觉都好巧啊。 Leave a Reply Cancel reply. Your email address will not be published. Required fields are marked *. My way and my heart :).
Python 3.5 打包成exe 方法 - 细语呢喃
https://www.hrwhisper.me/pack-python-3-5-to-exe
Python 3.5 打包成exe 方法. Pyinstaller /path/to/yourscript.py - onefile. 直接进行 pip install cx Freeze 即可。 这个方法运行exe的机器 仍然需要安装python 3.5. Https:/ www.python.org/ftp/python/3.5.2/python-3.5.2.exe. 在你的项目下创建setup.py文件,该文件输入如下内容 其中,Executable(‘main.py’) 中main.py是你脚本的文件名。 A very simple setup script to create a single executable. Hellopy is a very simple 'Hello, world' type script which also displays the. Environment in which the script runs. Run the build process by running the command 'python setup.py build'.
leetcode contest 5 solution - 细语呢喃
https://www.hrwhisper.me/leetcode-contest-5-solution
Leetcode contest 5 solution. 402 Remove K Digits. Leetcode 400. Nth Digit. Digit of the infinite integer sequence 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, …. Is positive and will fit within the range of a 32-bit signed integer ( n. Input: 3 Output: 3. Input: 11 Output: 0 Explanation: The 11th digit of the sequence 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, . is a 0, which is part of the number 10. 传送门 leetcode Nth Digit. Leetcode 401. Binary Watch. For example, the above binary watch reads “3:25”. The minute must be c...
开发环境/开发工具 归档 - 细语呢喃
https://www.hrwhisper.me/category/develop
Python 3.5 打包成exe 方法. Github 使用教程 git 使用教程. 采用jsp & servlet & mysql ,服务器是tomcat. 给下届学生学习 – -。 Eclipse安装 python 插件 pydev. Linux 下安装eclipse 及 perl 插件. 使用sublime text2 来写python 主要有如下两个Bug:. 使用 matplotlib 库的时候,用sublime text2 运行之发现无效. 有输入的时候,提示 EOFError: EOF when reading a line. 使用Intel HAXM加速Android 模拟器 不推荐. My way and my heart :).
线性规划-单纯形算法详解 - 细语呢喃
https://www.hrwhisper.me/introduction-to-simplex-algorithm
Pork with beans 猪肉. 其实这些不等式组就是线性规划方程 Linear programming formulation. Max quad &x 1 x 2&. Mbox{s.t.} quad. 4x 1 – x 2 & leq&{8}. 2x 1 x 2 and leq&{10}. 5x 1 – 2x 2 and geq&{-2}. X 1, quad x 2 & geq&{0}. 图b可以直观的看出,最优解为8, 而 x. Min quad & & c Tx&. Mbox{s.t.} quad. X and geq{0} &. 若原来约束为=,转为 = 和 =. 约束原来为 = 同样的*-1,就改变了 =. 来替代,其中 x’ =0 x” =0. Min quad & & c Tx&. Mbox{s.t.} quad. X and geq{0} &. X 1 x 2 & leq{2}. X 1 x 2 and geq{1}. X 1, quad x 2 & geq{0} &. X 1 x 2 x 3&={2}. X 1 x 2 x 4& ={1}. X 3& le & quad3.
沙海拾贝 归档 - 细语呢喃
https://www.hrwhisper.me/category/whisper/diary
Enter your password to view comments. This post is password protected. To view it please enter your password below:. Enter your password to view comments. This post is password protected. To view it please enter your password below:. Enter your password to view comments. This post is password protected. To view it please enter your password below:. Enter your password to view comments. This post is password protected. To view it please enter your password below:. Protected: 岁月的剪影 to be my hero.
还没想好标题? - 细语呢喃
https://www.hrwhisper.me/diary-2016-12
Enter your password to view comments. This post is password protected. To view it please enter your password below:. 本文地址 https:/ www.hrwhisper.me/diary-2016-12/. My way and my heart :).
谁的呢喃 归档 - 细语呢喃
https://www.hrwhisper.me/category/whisper/murmured
火影忍者 剧场版 博人传 影评. 当做 1988 我想和这世界谈谈 书评. 8212;——–. My way and my heart :).
TOTAL LINKS TO THIS WEBSITE
11
Southern Hospitality Group | Atlanta, GA | Consulting
Johnny Dutch
iamjohnnyoptimo
Press enter to begin your search. What real creative freedom feels like in a theme. Salient was built with a high attention to details both in design and code. Let’s take the next step and work together. Home – Basic.
Trox's Resume
Johnny-Zhuang
LOVE CODE,LOVE LIFE,LOVE DAWN. Raquo; About Me. Raquo; XML Feed. Raquo; 01 Jan 2017. Raquo; 18 Sep 2016. Raquo; 10 Aug 2016. Raquo; 17 Jul 2016. Raquo; 17 Jul 2016. Raquo; 17 Jul 2016. Raquo; 16 Jul 2016. Raquo; 12 Jul 2016. Raquo; 07 Jul 2016. Raquo; 05 Jul 2016. Raquo; 04 Jul 2016. Johnny-Zhuang - https:/ github.com/iamjohnnyzhuang.
iamjohn99's Blog | A fine WordPress.com site
A fine WordPress.com site. November 27, 2012. November 27, 2012. Landing Page for the Women’s Traffic and Transportation Club based in Baltimore, MD. Refreshing their image to appeal to a younger professional demographic. Alternative Social Housing: Prefab, Add-On Homes to Densify Suburbs. November 27, 2012. Argentine architects Adamo Faiden. Thus, they expose some situations in which they believe this could work: a small business owner who has had the same employee for. Everyone has ch…. Be strong now, ...
John Oliver - Official Site
John will be playing shows in Melbourne and Sydney this August. Last Week Tonight – Season 2. Season 2 of Last Week Tonight. Premieres February 8 at 11pm EST on HBO. Follow the show on Twitter now at @LastWeekTonight. John on The Simpsons. John has recorded a part for The Simpsons. Where he will play ‘Wilkes John Booth’. Read the full story at tvline.com. Palais, Melbourne, AU. Palais, Melbourne, AU. Sydney, State Theatre, AU. Sydney, State Theatre, AU.
iamjohnpayne.com