码迷,mamicode.com
首页 > 2015年05月19日 > 全部分享
AngularJS快速入门指南18:Application
是时候创建一个真正的AngularJS单页面应用程序了(SPA)。一个AngularJS应用程序示例 你已经了解了足够多的内容来创建第一个AngularJS应用程序:My Note Save Clear Number of character...
分类:移动开发   时间:2015-05-19 08:52:02    阅读次数:178
Backup your Android without root or custom recovery
ecently discovered a neat new way to back up apps on my Android without having to use Titanium Backup, having to unlock bootloader or root the device ...
分类:移动开发   时间:2015-05-19 08:49:22    阅读次数:562
成都项目中因为MYSQL与SSDB备分时间不一致,导致主键产生器错误解决一例
-- JFinal错误提示 Duplicate entry '1791361-1823391' for key 'PRIMARY'-- 1、查看SSDB的主键生成器值ssdb 127.0.0.1:8888> scan t_resource_base t_resource_basezzzz 100ke...
分类:数据库   时间:2015-05-19 08:51:33    阅读次数:188
mysql关联表插入-php环境中
$insertsql=<<<EOTinsert into tb_manager values(null,'$name','$pwd','1');select @pid:=last_insert_id();//寻找最新插入记录ID并赋值给pid,pid进行传值insert into tb_master...
分类:数据库   时间:2015-05-19 08:49:47    阅读次数:155
How To Backup Your Android Phone’s Boot, Recovery And System Partition Images -- RomDump
One can’t stress enough on the importance of backups and when it comes to tinkering with your Android phone, a backup of your system, recovery and boo...
分类:移动开发   时间:2015-05-19 08:51:37    阅读次数:256
ios常见加密算法
1、MD5 //因为是使用category,所以木有参数传入啦-(NSString *) stringFromMD5 { if(self == nil || [self length] == 0) { return nil; } const char *value...
分类:移动开发   时间:2015-05-19 08:50:14    阅读次数:154
sql语句
1 返回插入的id号2 insert into t_users(username,password) output inserted.id values("admin","123456");
分类:数据库   时间:2015-05-19 08:49:49    阅读次数:147
ADB命令大全
安装软件:adb install apk (文件名称.apk)重新安装该软件:adb install -r apk (文件名称.apk)卸载apk软件:adb uninstall apk(包名.apk)查看手机上的运行日志,此项可以用来查错:adb logcat查看手机是否连接,以及连接了几台手机:...
分类:数据库   时间:2015-05-19 08:47:39    阅读次数:563
Count Primes
好久不练手了,注意boolean array default 是falsepublic class Solution { public int countPrimes(int n) { if(n<=2) return 0; boolean[] a = ne...
分类:其他好文   时间:2015-05-19 08:47:46    阅读次数:90
android studio 修改gradle引用本地文件
转:How to switch off download gradle distribution?如何使用本地gradledistributionUrl=file\:///C:/Users/johndoe/downloads/gradle-2.1-all.zip
分类:移动开发   时间:2015-05-19 08:48:10    阅读次数:215
银河英雄传说 (codevs 1540) 题解
【问题描述】 公元五八○一年,地球居民迁移至金牛座α第二行星,在那里发表银河联邦创立宣言,同年改元为宇宙历元年,并开始向银河系深处拓展。宇宙历七九九年,银河系的两大军事集团在巴米利恩星域爆发战争。泰山压顶集团派宇宙舰队司令莱因哈特率领十万余艘战舰出征,气吞山河集团点名将杨威利组织麾下三万艘战舰迎敌....
分类:其他好文   时间:2015-05-19 08:49:41    阅读次数:120
Swift中获取相册图片与保存到相册
关于这个网上目前位置记录的资料比较少,记录一下这个坑 获取相册图片 1: var iPC = UIImagePickerController() 2: iPC.sourceType = UIImagePickerControllerSourceType.SavedPhotosAlbum 3: iPC...
分类:编程语言   时间:2015-05-19 08:47:37    阅读次数:182
【Leetcode】【Medium】Remove Duplicates from Sorted List II
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving onlydistinctnumbers from the original list.For example,Given1->2->3-...
分类:其他好文   时间:2015-05-19 08:48:01    阅读次数:104
15 3Sum
public class Solution { public ArrayList> threeSum(int[] nums) { ArrayList> res = new ArrayList>(); if (nums == null || nums.length ...
分类:其他好文   时间:2015-05-19 08:46:58    阅读次数:137
构建ASP.NET MVC4+EF5+EasyUI+Unity2.x注入的后台管理系统(47)-工作流设计-补充
系列目录补充一下,有人要表单的代码,这个用代码生成器生成表Flow_Form表的Index代码就可以加上几个按钮就可以了 @Html.ToolButton("btnQuery", "icon-search", "查询", perm, "Query", true) @Html.To...
分类:编程语言   时间:2015-05-19 08:48:04    阅读次数:178
团队冲刺第七天
今天做了什么?已经有个大概遇到什么困难?多IP读取是个问题。明天打算做什么?等待整个中,同时不断完善自己的东西。
分类:其他好文   时间:2015-05-19 08:46:22    阅读次数:128
mac下xampp的mysql无法自动启动
mac下xampp的mysql无法自动启动,每次启动都要手动在终端里执行sudo /Applications/XAMPP/xamppfiles/bin/mysql.server start自动启动解决办法如下:1、打开/Applications/XAMPP/xamppfiles/xampp进行编辑2...
分类:数据库   时间:2015-05-19 08:48:24    阅读次数:263
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!