- 博客(110)
- 资源 (13)
- 收藏
- 关注
原创 php开发模拟基金定投网站
代码上传在github: GitHub - lj102800/simulatedPurchaseOfFunds: 模拟购买基金采集基金信息来自天天网站,接口为http://fund.eastmoney.com/f10/F10DataApi.aspx?type=lsjz&code=$code&page=$p&per=200000策略:总共有100万可以用来投资,第一天先买入30万,定投1000每日30万涨100%卖出超出5万本金,部分150%卖出超出.
2022-05-08 20:20:30 600
原创 file no find问题,apache配置htaccess
搞了一天,居然是浏览器缓存问题,不是第一次被浏览器缓存坑了,以后页面要加个时间戳参数才好
2022-04-15 19:56:59 263
原创 mysql隔离级别容易理解的方法
内容来自关于mysql隔离级别的实验后又加以整理排版简介SQL定义了四种隔离级别。包括READ UNCOMMITED(未提交读) READ COMMITED(提交读) REPEATABLE READ(可重复读) REPEATABLE READ(可串行化)其区别在于表1隔离级别 脏读可能性 不可重复读可能性 幻读可能性 加锁读 READ UNCOMMITED Yes Yes Yes No READ COMMITED .
2022-04-07 17:33:56 161
原创 nginx反向代理负载均衡
1.Nginx的服务器监控检测方式分为两种,一种是被动监测,另一种是主动监测照着Nginx负载均衡health_check分析 - dream_fly_info - 博客园照着Nginx负载均衡health_check分析 - dream_fly_info - 博客园来做了主动检查报错,收到错误unknown directive "health_check",发现商业版本才能用,2.后面改用淘宝的tengine 安装,编译配置./configure --prefix=/usr/local/t..
2022-04-04 13:35:22 2241
原创 学习高等数学一个月记录
4月15号自考完几个科目,开始准备学习高数了,现在学习了一个月了,半本书学完了,做个记录开始以为高中的数学全忘了,所以把需要用到的高中的数学知识写了几个纸片笔记,后面用到可以拿来看,现在看来这个方法真的很好。Caption这是我昨天前天两天学习的不定积分的成果。csdn写博客上传图片好费劲啊,搞了半天不会把图片转过来,博客只能转着脑袋看了...
2019-05-19 16:36:56 1107 3
原创 php 做网站中转
遇到问题post,携带cookie,header问题cookie时CURLOPT_COOKIEFILE携带不上cookie是cookie文件读取权限问题,换了个路径解决了header时,$header = ['User-Agent: php test']报错,是php版本太低的问题ini_set('user_agent','Mozilla/4.0 (compatible; MSI...
2018-11-16 20:45:03 1537
原创 html5仿ios下拉
http://zhoushengfe.com/iosselect/website/index.html#user-content-demos
2018-04-26 18:18:59 1066
原创 tpshop 阿里云短信sdk使用和带链接短信实现
tpshop 阿里云短信sdk使用创建keyId 和 keysecret,下载sdk 先去阿里云申请账号(后台地址: https://www.aliyun.com/ , 注意不是阿里大于短信平台),登入控制台,创建得到keyId 和 keysecret.从阿里云短信官网下载SDK(https://help.aliyun.com/document_detail/32381.html?spm=517
2017-09-21 12:17:02 4231
原创 为什么在tpshop中用getlastsql 打印不出来sql语句,
最后解决办法是在ThinkPHP\Library\Think\Db\Driver.class.php注释数据库调试模式 protected function debug($start) {// if($this->config['debug']) {// 开启数据库调试模式 if($start) { G('quer
2017-05-19 15:32:56 1856
原创 php定时检测ftp,mysql,nginx服务
1.php<?phpheader("Content-type: text/html; charset=utf-8"); $fp = fopen("d:/test.txt", "a+"); $fp2 = fopen("d:/sms.lock", "a+"); $phone="1381054****"; $str=date("Y-m-d H:i:s"); $str2=
2017-05-09 11:38:48 408
原创 jquery 实现自定义下拉菜单实现
body{font-family:"方正兰亭黑简体";margin:0px;padding:0px} .title-name { background: #4f9ae4 none repeat scroll 0 0; height: 35px; left: 0; padding-bottom: 10px; padding-top: 16px; t
2016-08-03 14:49:59 2217
原创 PhoneGap框架
PhoneGap框架专门用来网页和本地交互的纯h5网页替代本地控件是趋势,但体验差,网页可能加载失败,不如本地框架流畅,如微信主体框架还是本地框架在线更新方便,ios,android开发方便,如12306客户端完完全全h5网页,将来网速和本地几乎完全一样,网页才会发挥它的巨大优势,这时候h5才会替代原生控件目前也和国家网速有关系,国家网络建设,网费也高,h5没有特别
2016-07-30 23:09:33 417
原创 拯救少林神棍 代码有注释
拯救少林神棍#define _CRT_SECURE_NO_WARNINGS#include #include #include #include #include #include // std::greaterusing namespace std;int T, N;int L;int nLastStickNo;//最近拼上去的那条木棒的下标vector a
2016-07-19 11:33:24 1074
原创 android项目智慧北京开发完整步骤:第三天
页签页面修改添加pager_tab_detail.xmlxml version="1.0" encoding="utf-8"?>LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layo
2016-07-10 21:54:50 1111
原创 git使用
1.1.1 安装git 右击文件夹出现git图标 1.1.2 Github创建仓库 1.1.3 复制git地址 1.1.4 创建本地git目录,git Clone 成功 项目复制进来 1.1.5 Add 1.
2016-06-24 23:46:47 474
原创 android项目智慧北京开发完整步骤:第二天
不能滚动的ViewPagerpublic class NoScrollViewPagerextends ViewPager { public NoScrollViewPager(Context context) {super(context);// TODO Auto-generated constructor stub} public NoScrollView
2016-06-15 17:25:37 1008
原创 android项目智慧北京开发完整步骤:第一天
去掉标题,全屏动画rlRoot= (RelativeLayout)findViewById(R.id.rl_root);RotateAnimation animRotate=newRotateAnimation(0, 360, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);anim
2016-06-15 15:06:52 3139 4
原创 结题报告poj 1390
参考视频https://www.coursera.org/learn/suanfa-jichu/lecture/lJll3/fang-he-you-xipoj地址http://poj.org/problem?id=1390 #define _CRT_SECURE_NO_WARNINGS#include#include using namespace std;struct Bl
2016-04-03 00:07:57 742
原创 lintcode 正则表达式匹配 ac代码
http://www.lintcode.com/zh-cn/problem/regular-expression-matching/class Solution {public: /** * @param s: A string * @param p: A string includes "." and "*" * @return: A boolean
2016-03-31 14:22:58 1275
原创 lintcode 通配符匹配 ac代码
http://www.lintcode.com/zh-cn/problem/wildcard-matching/class Solution {public: /** * @param s: A string * @param p: A string includes "?" and "*" * @return: A boolean */
2016-03-31 14:22:10 817
原创 解题报告:最多有多少个点在一条直线上
http://www.lintcode.com/zh-cn/problem/max-points-on-a-line//** * Definition for a point. * struct Point { * int x; * int y; * Point() : x(0), y(0) {} * Point(int a, int b) : x(
2015-07-22 12:06:01 731
原创 解题报告: 商品推荐走马灯
有一个新的研究显示,人在看见一系列的图片时,如果它们的排列有一定的轴对称性,则会更为觉得赏心悦目。根据这个特性,作为阿里巴巴旗下重要的电子商务交易平台的淘宝,希望了解商品推荐的图片走马灯现在的赏心悦目情况,以便判断是否之后需要做出调整。例如,当价值分别为 1,2,1 的商品图片排列在一起的时候,人们可以看到它的所有非空区间 [1]、[2]、[1]、[1,2]、[2,1]、[1,2,1] 中有四个是
2015-07-18 21:37:17 949
原创 解题报告:人人都有极客精神
人人公司是一家极为鼓励极客精神的公司,当有重要的项目需要上线但又时间太紧,甚至需要当天上线的时候,往往会挂起海盗旗开启电子日期显示,让大家可以在对时间有更明确的感知的情况下,同心协力搞定重要的项目。海盗旗下方的电子屏显示的日期形式为 YYYYMMDD (年份占 4 位、月份占 2 位、天数占 2 位)。日期电子屏幕上每个数字对应的显示如下图: 从上图可以得知每个数字对应的笔画数,比如 2
2015-07-18 18:09:57 770
原创 解题报告:置换的玩笑
http://www.jisuanke.com/minicourse/63/392测试数据没通过,不知道为什么 #include #include#include #include #define MAXN 1002using namespace std;vector index3;vector index2;string str;//找最大的bool getnu
2015-07-17 13:12:57 860 1
原创 x的平方根
http://www.lintcode.com/submission/872376/class Solution {public: /** * @param x: An integer * @return: The sqrt of x */ int sqrt(int x) { // write your code here
2015-07-13 13:16:15 594
原创 解题报告: 快速幂
http://www.lintcode.com/zh-cn/problem/fast-power/class Solution {public: /* * @param a, b, n: 32bit integers * @return: An integer */int *d; int fastPower(int a, int b, int n)
2015-07-13 11:50:03 478
原创 解题报告:区间求和 I
http://www.lintcode.com/zh-cn/problem/interval-sum//** * Definition of Interval: * classs Interval { * int start, end; * Interval(int start, int end) { * this->start = start; *
2015-07-09 17:33:12 635
原创 解题报告:线段树的修改
http://www.lintcode.com/zh-cn/problem/segment-tree-modify//** * Definition of SegmentTreeNode: * class SegmentTreeNode { * public: * int start, end, max; * SegmentTreeNode *left, *right
2015-07-09 17:30:10 365
原创 解题报告:线段树的查询
http://www.lintcode.com/zh-cn/problem/segment-tree-query//** * Definition of SegmentTreeNode: * class SegmentTreeNode { * public: * int start, end, max; * SegmentTreeNode *left, *right;
2015-07-09 13:11:37 463
原创 解题报告:线段树查询 II
http://www.lintcode.com/zh-cn/problem/segment-tree-query-ii//** * Definition of SegmentTreeNode: * class SegmentTreeNode { * public: * int start, end, count; * SegmentTreeNode *left, *r
2015-07-09 09:48:24 498
原创 解题报告:乘积最大子序列
http://www.lintcode.com/zh-cn/problem/maximum-product-subarray/找出一个序列中乘积最大的连续子序列(至少包含一个数)。您在真实的面试中是否遇到过这个题?样例比如, 序列 [2,3,-2,4] 中乘积最大的子序列为 [2,3] ,其乘积为6。标签 Expand相关题目 Expan
2015-07-08 11:19:23 466
原创 解题报告:硬币排成线 II
差不多用了2天时间,而且幸亏做硬币排成线一二,才有些思路的。左右都可以取硬币,先把所有的2个的最优解和对手最优解算出来,然后做3个的硬币的,4个的以此类推,因为做3个的时候需要用2个的,做4个时需要用3个的class Solution {public: /** * @param values: a vector of integers * @return:
2015-07-01 22:26:18 733
原创 解题报告:硬币排成线 II
http://www.lintcode.com/zh-cn/problem/coins-in-a-line-ii/把每次自己的最优解和对手的最优解保存在pair里面,用取一个时+上一步时的对手的最优解和取2个时+上2步时的对手的最优解做比较bool firstWillWin(vector &values) { // write your code here int d[10];
2015-06-30 10:48:04 884
原创 解体报告:hdu 2546 (01背包问题)
#include#include#include#includeusing namespace std; const int N=1100;int dp[N];int price[N];int main(){ int n; //freopen("d://uva_in.txt","r",stdin); while(scanf("%d",&n)!=EOF&&n){ mems
2015-03-26 17:30:31 423
原创 2014百度之星初赛第二轮代码注释:Best_Financing
http://star.baidu.com/forum/forum.php?mod=viewthread&tid=3187&page=&extra=#pid39826题链接 #define _CRT_SECURE_NO_WARNINGS#include #include const int MAX_N = 2500;const int MAX_M = 2500;int n;
2015-01-23 16:35:40 411
原创 2014百度之星初赛第二轮代码注释:Scenic Popularity
http://star.baidu.com/forum/forum.php?mod=viewthread&tid=3186&extra=page%3D1题链接#include #include const int MAXN = 10000;const int MAXM = 100000;int n;int coord[MAXN];int heat_value[MAXN]
2015-01-23 12:42:29 565
原创 临摹
画画是临摹,写代码也是临摹,人生也是临摹,你喜欢哪种人生,普通买房结婚生娃版的,农村版的,城市版的,圣人版的,德兰版的,牛人版的,自由版的,寻索版的,学习版的,还有什么版的
2015-01-23 12:32:00 534
SlidingMenu+ViewPage+ListView嵌套(类似网易 ) ListView点击事件失效冲突问题解决
2014-03-14
SlidingMenu+ViewPage+ViewPage嵌套(类似网易 ) 滑动时冲突问题解决
2014-03-12
FileZilla_228d.exe
2010-07-23
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人