- 博客(59)
- 资源 (22)
- 收藏
- 关注
原创 照片服务器压力测试
需求: 1. 头像上传、下载的功能测试 2. 头像上传、下载的压力测试 3. 墙纸图片上传、下载、删除的功能测试 4. 墙纸图片上传、下载、删除的压力测试测试环境和步骤:1.Linux服务器1台:avatar-ios-2.ddianle.com(运维提供正式服务器)2.在linux服务器上部署好照片服务器(平台部署)...
2019-03-25 16:27:12 1655
原创 django 学习笔记 part3
文章目录建立数据库polls/models.py:mysite/settings.py:polls/models.py:建立一个admin用户polls/admin.py:建立数据库打开mysite/settings.py. 默认情况下,配置里使用SQLite现在我们修改使用mysql数据库:1.使用pip安装pymysql包:pip install pymysql2.在Applicat...
2019-03-13 15:30:14 240
原创 django学习笔记 part2
django 学习笔记 part1文章目录django 学习笔记 part11、建立项目2、创建appmysite/urls.pypolls/views.py1、建立项目django-admin startproject mysite让我们看看文件夹的框架:mysite/ manage.py mysite/ __init__.py settings.py urls.p...
2019-03-13 15:14:23 365
原创 通过powershell-批量卸载安装的系统补丁
针对incredibuild 在win7上更新补丁后编译报错的问题,解决方案是卸载掉安装的系统补丁(备注:以后大家的测试环境最好不要自动更新系统补丁)通过powershell-批量卸载补丁操作步骤:1、以管理员身份运行powershell2、执行:Set-ExecutionPolicy RemoteSigned3、输入Y后回车4、Remove-Update.ps1脚本拷贝...
2019-03-13 15:04:51 3663 1
原创 checkio练习题:second-index
You are given two strings and you have to find an index of the second occurrence of the second string in the first one.Let's go through the first example where you need to find the second occurrence...
2019-03-13 15:02:16 299
原创 checkio练习题:secret-message
Ever tried to send a secret message to someone without using the postal service?You could use newspapers to tell your secret.Even if someone finds your message, it's easy to brush them off and tha...
2019-03-11 14:05:34 728
原创 checkio练习题:stressful-subject
Sofia has had a very stressful month and decided to take a vacation for a week.To avoid any stress during her vacation she wants to forward emails with a stressful subject line to Stephen.The func...
2019-03-11 14:05:27 564
原创 checkio练习题:the-most-frequent
你有一系列字符串,你要从中找出出现频率最高的字符串。输入: 一个字符串组成的列表输出: 一个字符串.举个栗子:most_frequent([ 'a', 'b', 'c', 'a', 'b', 'a' ]) == 'a'most_frequent(['a', 'a', 'bi', 'bi', 'bi']) == 'bi'...
2019-03-11 14:04:57 524
原创 checkio练习题:three-words
Let's teach the Robots to distinguish words and numbers.You are given a string with words and numbers separated by whitespaces (one space).The words contains only letters. You should check if the ...
2019-03-11 14:04:48 602
原创 checkio练习题:right-to-left
One of the robots is charged with a simple task:to join a sequence of strings into one sentence to produce instructions on how to get around the ship.But this robot is left-handed and has a tenden...
2019-03-11 14:04:38 504
原创 checkio练习题:popular-words
In this mission your task is to determine the popularity of certain words in the text.At the input of your function are given 2 arguments: the text and the array of words the popularity of which you...
2019-03-11 14:04:31 532
原创 checkio练习题:number-radix
你是否还记得数学课上学过的底数(对数)和 计数系统(进制)? 让我们来重温练习一下吧。给你一个字符串格式的正数和一个小于37大于1的整数型底数,用你写出来的方法来把他们转换为底数为10(十进制)的形式。任务使用数字和‘A-Z’来作为字符串格式的正数。注意数字无法转换的情况。 例如:“1A”不能用基数9进行转换。对于这些情况,你的函数应该返回-1。输入: 两个参数,一个字符串参数的正...
2019-03-11 14:04:21 272
原创 checkio练习题:most-numbers
Let's work with numbers.You are given an array of numbers (floats). You should find the difference between the maximum and minimum element.Your function should be able to handle an undefined amoun...
2019-03-11 14:04:14 321
原创 checkio练习题:index-power
You are given an array with positive numbers and a number N.You should find the N-th power of the element in the array with the index N.If N is outside of the array, then return -1.Don't forget ...
2019-03-11 14:04:07 444
原创 checkio练习题:fizz-buzz
"Fizz buzz" is a word game we will use to teach the robots about division. Let's learn computers.You should write a function that will receive a positive integer and return:"Fizz Buzz" if the numb...
2019-03-11 14:03:59 642
原创 checkio练习题:first-word
You are given a string where you have to find its first word.When solving a task pay attention to the following points:There can be dots and commas in a string.A string can start with a letter or...
2019-03-08 11:22:11 1051
原创 checkio练习题:even-last
给你一个整数数组,需要你把具有偶数索引的元素相加(0,2,4 ...),然后把相加后得到的数与最后一个元素相乘。不要忘记,第一个元素的索引是0。如果传入的是一个空数组,则应该返回0。输入: 一个整数列表输出: 你得出的答案(整数值类型)举个栗子:checkio([0, 1, 2, 3, 4, 5]) == 30checkio([1, 3, 5]) == 30checkio...
2019-03-08 11:22:04 430
原创 checkio练习题:easy-unpack
在这里你的任务是创建得到一个元组,并返回一个包含三个元素(第一,第三和倒数第二的给定元组)的元组与的功能。输入: 一个不少于三个元素的元组输出: 一个元组.举个栗子:easy_unpack((1, 2, 3, 4, 5, 6, 7, 9)) == (1, 3, 7)easy_unpack((1, 1, 1, 1)) == (1, 1, 1)easy_unpack((6, 3, ...
2019-03-08 11:21:57 473
原创 checkio练习题:digits-multiplication
给你一个正整数,请你写一个函数来实现:传入正整数的每一位(不包括00)的乘积例如:给你 123405, 你应该这样处理 1*2*3*4*5=120(别忘了把0丢掉)输入: 一个正整数.输出: 正整数的每一位的乘积举个栗子:checkio(123405) == 120checkio(999) == 729checkio(1000) == 1checkio(1111) == ...
2019-03-08 11:21:48 430
原创 checkio练习题:correct-sentence
For the input of your function will be given one sentence. You have to return its fixed copy in a way so it’s always starts with a capital letter and ends with a dot.Pay attention to the fact that n...
2019-03-08 11:20:22 917
原创 checkio练习题:bigger-price
You have a table with all available goods in the store. The data is represented as a list of dictsYour mission here is to find the TOP most expensive goods. The amount we are looking for will be giv...
2019-03-08 11:20:15 446
原创 checkio练习题:between-markers
You are given a string and two markers (the initial and final). You have to find a substring enclosed between these two markers.But there are a few important conditions:The initial and final marke...
2019-03-08 11:20:04 473
原创 checkio练习题:best-stock
You are given the current stock prices. You have to find out which stocks cost more.Input: The dictionary where the market identifier code is a key and the value is a stock price.Output: A string ...
2019-03-08 11:13:50 292
原创 checkio练习题:011-the-warriors
Example:chuck = Warrior()bruce = Warrior()carl = Knight()dave = Warrior()fight(chuck, bruce) == Truefight(dave, carl) == Falsechuck.is_alive == Truebruce.is_alive == Falsecarl.is_alive ==...
2019-03-08 11:13:36 388
原创 checkio练习题:absolute-sorting
Let's try some sorting. Here is an array with the specific rules.The array (a tuple) has various numbers. You should sort it, but sort it by absolute value in ascending order.For example, the sequ...
2019-03-08 11:13:22 361
原创 checkio练习题:010-x-o-referee
井字游戏,有时也被称为“进攻和防守”,是一个两人玩家(X和O)轮流标志着3×3的网格的空间的连珠游戏。最先在任意一条直线(水平线,垂直线或对角线)上成功连接三个标记的一方获胜。但我们不去玩这个游戏。你将是这个游戏的裁判。你被赋予游戏的结果,以及你必须判断游戏是平局还是有人胜出,以及谁将会成为最后的赢家。如果X玩家获胜,返回“X”。如果O玩家获胜,返回“O”。如果比赛是平局,返回“D”。...
2019-03-07 10:28:27 499
原创 checkio练习题:009-pawn-brotherhood
给定一个8*8的棋盘,同时给定8个棋子的位置。如果某一个棋子的位置可以由其他棋子一步到达,则认为该棋子安全。一个棋子可以通过移动到那个方格,在相邻文件上的对角线前方对角线上捕捉对手的棋子。 判断8个棋子中安全的棋子的个数。 如图所示,左边的安全棋子个数为6,右边的位1。safe_pawns({"b4", "d4", "f4", "c3", "e3", "g5", "
2019-03-07 10:27:39 263
原创 checkio练习题:008-sun-angle
Every true traveler must know how to do 3 things: fix the fire, find the water and extract useful information from the nature around him. Programming won't help you with the fire and water, but when i...
2019-03-07 10:26:30 385
原创 checkio练习题:007-caesar-cipher-encryptor
This mission is the part of the set. Another one - Caesar cipher decriptor.Your mission is to encrypt a secret message (text only, without special chars like "!", "&", "?" etc.) using Caesar cip...
2019-03-07 10:25:12 310
原创 checkio练习题:006-all-the-same
你本关的任务是检查给定的列表,判断是否其中所有的元素都相等。输入: 列表输出: 布尔值范例:all_the_same([1, 1, 1]) == Trueall_the_same([1, 2, 1]) == Falseall_the_same(['a', 'a', 'a']) == Trueall_the_same([]) == True前提: 输入的列表中的所有元素均是...
2019-03-07 10:20:32 867
原创 checkio练习题:005-long-repeat
这个任务是这个系列中的第一个。在这里你应该找到字符串中最长的相同字符重复出现的次数,并返回它的重复次数。例如:字符串“aaabbcaaaa”包含具有相同字母“aaa”,“bb”,“c”和“aaaa”的四个子字符串。 最后一个子字符串是最长的一个字符串,你应该返回 4 。输入: 一个字符串.输出: 一个整数.例子:long_repeat('sdsffffse') == 4long...
2019-03-07 10:19:48 270
原创 checkio练习题:004-monkey-typing
……如果让我的指头漫无目的地在打字机的按键上面移动,那么我的长篇大论就可能变成一段明白易懂的话语。如果一队猿猴在许多打字机上乱按一气,它们也有可能写出大英博物馆里所有的书籍,它们这样做的机会肯定地比分子恢复到容器一半的机会要更多。A. S. 爱丁顿,《物理世界的本质》,1927。“福特!”他说,“外面有无数只猴子想要进来和咱们讨论他们创作的剧本《哈姆雷特》。”无限猴子定理是指让一只猴...
2019-03-07 10:19:03 689
原创 checkio练习题:003-non-unique-elements
你将得到一个含有整数(X)的非空列表。在这个任务里,你应该返回在此列表中的非唯一元素的列表。要做到这一点,你需要删除所有独特的元素(这是包含在一个给定的列表只有一次的元素)。解决这个任务时,不能改变列表的顺序。例如:[1,2,3,1,3] 1和3是非唯一元素,结果将是 [1, 3, 1, 3]。输入: 一个含有整数的列表。输出: 一个含有不唯一元素的整数列表。范例:checki...
2019-03-07 10:03:48 177
原创 checkio练习题:002-most-wanted-letter
给你一段文本,其中包含不同的英文字母和标点符号。你要找到其中那个出现最多的 字母,返回的字母必须是 小写形式。找这个“头号通缉字母”时,大小写不重要,所以对于你的搜索而言 "A" == "a"。 注意不要管标点符号、数字和空格,我们只要 字母!如果你找到 两个或两个以上出现频率相同的字母, 那么返回字母表中靠前的那个。例如“one”包含“o”、“n”、“e”每个字母一次,因此我们选...
2019-03-07 10:00:35 309
原创 checkio练习题:001-house-password
斯蒂芬和索菲亚对于一切都使用简单的密码,忘记了安全性。请你帮助尼古拉开发一个密码安全检查模块。如果密码的长度大于或等于10个字符,且其中至少有一个数字、一个大写字母和一个小写字母,该密码将被视为足够强大。密码只包含ASCII拉丁字母或数字。输入: 密码。输出: 密码的安全与否,作为布尔值(bool),或者任何可以转换和处理为布尔值的数据类型。你会在结果看到转换后的结果(True 或 ...
2019-03-07 09:55:35 626
原创 如何检测crash并在测试报告中体现(airtest)
拆解: 1.检测crash 在脚本遇到异常时检查app进程是否活动 2.保存log 如果进程不是活跃状态保存系统logcat日志文件(也可以游戏自身的日志文件) 3.报告处理 修改Airtext.report...
2019-03-01 13:58:28 3984 1
原创 展讯6531增加按#号键切换输入法功能
展讯的6531平台编辑界面按#键出来的是输入发列表pop框,与之前的老平台对比而言有所不同。但是用户可能还是习惯之前的切换方式,于是小小的修改了一下。1.先在文件mmiim_im_switching.c中增加如下三个函数:#if 1//def __KEY_POUND_CHANGE_INPUT_METHOD__/*****************************
2012-12-26 17:11:11 1675
原创 launcher界面按中间键直接进入主菜单实现方法
进入mainmenu是push page。因为架构上idle和mainmenu是在同一个VfxMainScr下的不同page。而默认的设计就是只有在shortcut bar上点击最右边的icon才能够launch mainmenu。目前的麻烦点应该是director不能直接访问到shortcut bar的CP.这种情况有两种办法:1. 增加public成员方法,开一路接口
2012-12-26 17:02:12 952
原创 不让app任意拖动到shortcur bar 上
问题:现在50平台上的bar是可以任意手动拖动的(在主菜单界面拖动更改),请问能不能把这个功能关掉。也就是主菜单界面的app应用不能随意拖动到shortcur bar上。回答:可以尝试如下修改:1.VappLauncherCosmosMmPageMenu::handlePenDownif ((getHover().group == VCP_PAGE_MENU_GROUP_MAIN
2012-12-21 15:29:31 984
zsh-autosuggestions.zip
2019-06-06
DSP的特点 DSP的选型 DSP的典型应用
2009-07-14
JTAG的一些说明和应用功能说明
2009-07-14
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人