会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
darksied
博客园
首页
新随笔
联系
订阅
管理
2020年2月13日
常见语言的入口点
摘要: 常见语言的入口点: VB: 004012D4 > 68 54474000 push QQ个性网.00404754004012D9 E8 F0FFFFFF call <jmp.&MSVBVM60.#100>004012DE 0000 add byte ptr ds:[eax],al004012E0 0
阅读全文
posted @ 2020-02-13 14:33 darksied
阅读(283)
评论(0)
推荐(0)
2016年6月11日
Android 读取后台数据并显示。模拟小区车辆管理系统
摘要: 帮别人做的演示系统,只具有基本的增删查改功能。 核心是android端和后台通过http传输数据 后台是asp.net,数据库是ms sql 2008 android端 后台(asp.net) 下载地址 http://download.csdn.net/detail/shmiluwabi666/95
阅读全文
posted @ 2016-06-11 21:29 darksied
阅读(1674)
评论(0)
推荐(0)
2015年10月20日
handsontable-chosen-editor
摘要: https://github.com/mydea/handsontable-chosen-editorhandsontable-chosen-editor是handsontable column的扩展,实现了在handsontable编辑列中下拉列表,同时支持的多选。使用后发现,屏幕底部的行中,下拉...
阅读全文
posted @ 2015-10-20 13:54 darksied
阅读(1231)
评论(0)
推荐(0)
2015年10月18日
handsontable合并表头
摘要: 想在页面中做类似excel的操作,发现handsontable符合要求。 然后发现这个文章 http://blog.csdn.net/wynan830/article/details/9054195 该作者扩展了handsontable实现了多表头。 发现原作者链接失效了,handsontable.
阅读全文
posted @ 2015-10-18 00:32 darksied
阅读(5531)
评论(2)
推荐(0)
2015年9月28日
leetcode:Single Number
摘要: public int SingleNumber(int[] nums) { if(nums==null||nums.Length%2==0) return 0; int ret=nums[0]; for(int i=1;i 超时了
阅读全文
posted @ 2015-09-28 18:18 darksied
阅读(118)
评论(0)
推荐(0)
2015年9月10日
中控考勤二次开发中的下载考勤时照片
摘要: 考勤机是m880,需要在考勤机中设置保存考勤时照片。SDK的开发文档中只有下载考勤记录的函数ReadGeneralLogDataSSR_GetGeneralLogData两者配合能读取到打卡记录。文档中没有下载考勤照片的函数,在代码提示中查看photo。发现以下三个函数public virtual ...
阅读全文
posted @ 2015-09-10 11:49 darksied
阅读(2274)
评论(3)
推荐(0)
2015年9月8日
C# 中使用log4.net的注意事项
摘要: 新建Log4Net.config文件,内容为 在项目中的AssemblyInfo....
阅读全文
posted @ 2015-09-08 17:14 darksied
阅读(293)
评论(0)
推荐(0)
2015年9月5日
LeetCode11:Container With Most Water
摘要: public int MaxArea(int[] height) { int start=0; int end=height.Length-1; int max=0; while(st...
阅读全文
posted @ 2015-09-05 20:32 darksied
阅读(123)
评论(0)
推荐(0)
2015年8月22日
leetcode 4:Median of Two Sorted Arrays
摘要: public double FindMedianSortedArrays(int[] nums1, int[] nums2) {int t=nums1.Length+nums2.Length; int mid1=0; int mid2=0; int i=0; int p1=0; ...
阅读全文
posted @ 2015-08-22 15:36 darksied
阅读(134)
评论(0)
推荐(0)
2015年8月21日
leetcode3:Longest Substring Without Repeating Characters
摘要: public int LengthOfLongestSubstring(string s) { Queue queue=new Queue(); int max=0; for(int i=0;i<s.Length;i++) { if(queue.Contain...
阅读全文
posted @ 2015-08-21 22:19 darksied
阅读(127)
评论(0)
推荐(0)
下一页
公告