摘要:
欢迎转载,同时请附上原文链接:http://www.cnblogs.com/tianxiaozz/archive/2012/12/26/change_apk_package_name.html 今天,想在android手机上安装两个相同的应用,本以为可以安装不同版本的,试了几次,均相互覆盖了,于是,只能设法修改apk所对应的包名(package name)。 目的声明:本文只是为了满足DIY的需要,并不是为了成为打包党,窃取别人的劳动成果,本文所涉及的工具也均为开源的,仅供学习交流之用。 DIY前提:在国内的论坛里,搜索了一下,找到了各种解包,打包的技术内容,以及各种汉化、去广告的帖... 阅读全文
摘要:
dafny是一种可验证的编程语言,由微软推出,现已经开源。 dafny能够自我验证,可以在VS Code中进行开发,在编辑算法时,写好前置条件和后置条件,dafny验证器就能实时验证算法是否正确。 在官方的例子中,以Abs绝对值函数来进行说明,代码如下: 点击查看代码 method Abs(x: i 阅读全文
摘要:
cocos2d x是支持直接播放视频的,用的是Native端的播放器,视频的默认层级是在cocos的层级之上,如果是想让视频上面有cocos的控件,只能将视频的UI层级放在最下面,这个方法网上已经有比较多的教程,这里不再继续说明。 如果想让视频上面有控制按钮,如重新播放的按钮,有两个解决办法: 1 阅读全文
摘要:
cocos2d x是一个应用广泛的开源游戏引擎,主要是应用与开发2D游戏,开源运行于多个平台,如果只是针对于移动端平台而言,可以运行于android和ios平台。 cocos2d x目前的版本是3.17,支持C++,JS, lua三种编程语言。 cocos2d x的核心功能是编写单独的游戏,一个游戏 阅读全文
摘要:
昨天遇到了一个需求,需要将txt文档按行分割,并指定了行数, 最近在用python,就在网上搜了一下,在参考了http://blog.csdn.net/zhang_red/article/details/9055965这个帖子后,准备自己改一下 发现原帖代码似乎有点问题,改了下代码如下: 代码将tx 阅读全文
摘要:
可能的情况 手机上已经安装了应用或者应用卸载不彻底 解决办法: adb uninstall yourpackagename 如果uninstall失败,可以考虑 clean一下Android Studio,具体如下 点击菜单栏 Build ->Clean Project->Rebuild Proje 阅读全文
摘要:
项目中需要获取手机的尺寸 import {Dimensions} from "react-native" var WINDOW = Dimensions.get("window"); var width = WINDOW.width; var height = WINDOW.height; var 阅读全文
摘要:
Summation of primesProblem 10The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.Find the sum of all the primes below two million.The code resemble :import mathlimit = 2000000crosslimit = int(math.sqrt(limit))#sieve = [False] * limitsieve = [False for i in range(0, limit)]for i in range(4, limit + 阅读全文
摘要:
Special Pythagorean tripletProblem 9A Pythagorean triplet is a set of three natural numbers,abc, for which,a2+b2=c2For example, 32+ 42= 9 + 16 = 25 = 52.There exists exactly one Pythagorean triplet for whicha+b+c= 1000.Find the productabc.The code is simple:a = 0b = 0c = 0totalSum = 1000cMax = int(t 阅读全文
摘要:
Largest product in a seriesProblem 8Find the greatest product of five consecutive digits in the 1000-digit number.731671765313306249192251196744265747423553491949349698352031277450632623957831801698480186947885184385861560789112949495459501737958331952853208805511125406987471585238630507156932909632 阅读全文
摘要:
10001st primeProblem 7By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13.What is the 10 001st prime number?The solve this one, we should learn how to check whether a number is prime, can also refer to Problem 3The whole code is as follows: 1 import ma 阅读全文