-
Xcode8.0+安装Alcatraz插件
Xcode8以上Alcatraz无法正常安装,只能够通过一些略嫌麻烦的渠道去实现。 安装Alcatraz先清理之前安装的版本rm -rf ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/Alcatraz.xcpluginrm -rf ~/Library/Application\ Support/Alcatraz/安装最新版curl -fsSL https://raw.github.com/supermarin/...…
-
Laravel入门记录
今天有时间打算学习一下Laravel。下面是一些简单的学习记录,希望对各位也有帮助。 基础设置1.安装composer之前就想抽时间学习Laravel,不过觉得安装有点复杂,我想很多人都有过这种想法。这里给大家推荐一个composer的中国镜像,速度真的不错。 安装Composer前确认你已经正确安装了PHP,打开控制台(Mac)执行php -v查看是否输出正确的版本号。 打开控制台并执行以下命令安装最新版的Composer: //下载安装脚本composer-setup.php到...…
-
iOS Mantle使用小记
Mantle简介Mantle是github的工程师们弄出来的东西,是iOS和Mac平台下基于Objective-C编写的一个简单高效的模型层框架。 Mantle能做什么当我们从服务器获取数据,这些数据一般都为JSON格式,我们常用的做法是将JSON数据转为Model对象,然后我们就从Model对象的属性里读取数据。 也许你已经体会到这时噩梦的开始,因为你每次都要用-initWithDictionarty:(NSDictionary *)dict等类似方法来初始化,把JSON数据里的值一...…
-
Bug_Note
在Coding肯定会遇到各种奇葩的bug,今天就遇上了,适当汇总一些还是有必要的。这章节以后不断增加。 UICollectionViewFlowLayout有点关的the behavior of the UICollectionViewFlowLayout is not defined because:the item height must be less that the height of the UICollectionView minus the section insets ...…
-
Xcode 7.1菜单中不显示Alcatraz的解决办法
先执行,这一步是把所有的插件都加上Xcode 7.1的DVTPlugInCompatibilityUUID find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist -maxdepth 3 | xargs -I{} defaults write {} DVTPlugInCompatibilityUUIDs -array-add defaults read /Applicatio...…
-
AWS架构师认证指南
最近准备参加亚马逊的解决方案架构师-助理级别的认证考试,开始备考同时也把自己学习到的AWS知识都梳理了一遍,这算是一份收获,特意将收集到的和大家分享一下。 什么是AWS认证?对于 IT 专业人员,AWS 认证是对其在 AWS 上设计、部署和操作应用程序和基础设施所需的技能和技术知识的一种认可。获得证书有助于证明您使用 AWS 的丰富经验和可信度,同时还能提升您所在的组织熟练使用基于 AWS 云服务应用的整体水平。 目前亚马逊推出了Solutions Architect,Develope...…
-
防止DDOS攻击
当网站受到DDOS的攻击,相信很多人都会考虑: nginx端屏蔽访问修改haproxy的配置在haproxy机器上禁止IP访问然而我们这样的思路是错误的,应该是查找Haproxy机器的所有连接IP数,然后查找IP数大于某个值的IP,在防火墙层面静止这些IP访问 最后附上这个脚本,简单粗暴地防止DDOS wget https://s3.amazonaws.com/CDN.IMAGE/DDOS/install.sh chmod +x install.sh sh ./install.s...…
-
Hopper&Mac Thunder
定位Mac迅雷的可执行文件 建议先备份Thunder文件,这个可执行文件就是我们解决的目标。 Hopper分析可执行文件 定位要修改的函数Hopper很快就可以完成对Thunder可执行文件的分析。在Label搜索栏中输入is(注意,是空格is)在搜索结果中,找到如图所示的4个方法: 他们分别是: -[LocalTask isValidLixianTask] -[UserController isVip] -[UserController isPlatinum] -[Us...…
-
HipHop Virtual Machine
What is HHVM?HipHop Virtual Machine (HHVM) is a virtual machine developed and open sourced by Facebook to process and execute programs and scripts written in PHP. Facebook developed HHVM because the regular Zend+Apache combination isn't as eff...…
-
Improve Magento cache and session by using redis
Magento currently supports many cache backends with file system, APC and Memcached being the most widely used.Every supported cache backend bring it's own set of upsides and downside, but since there’s a lot to choose from, one could easily as...…