ICode9

精准搜索请尝试: 精确搜索
  • Lesson 十、正则表达式语法及常用正则表达式2020-05-19 09:57:04

    基本符号: ^  表示匹配字符串的开始位置  (例外  用在中括号中[ ] 时,可以理解为取反,表示不匹配括号中字符串) $  表示匹配字符串的结束位置 *  表示匹配 零次到多次 +  表示匹配 一次到多次 (至少有一次) ?  表示匹配零次或一次 .  表示匹配单个字符  |  表示为或者,两

  • Git的使用 checkout push merge2020-05-10 14:05:49

    D:\laragon\www\laravel-qa>git branch * masterD:\laragon\www\laravel-qa>git checkout -b lesson-2 Switched to a new branch 'lesson-2'D:\laragon\www\laravel-qa>git status On branch lesson-2 Changes not staged for commit: (use &q

  • Lesson 三、匿名对象的理解和使用2020-04-10 15:04:19

    一、匿名对象的定义 指的是没有名字的对象称之为匿名对象,如: new Student(); 二、匿名对象的应用场景 1、对方法的调用,但是只针对一次性的调用,如: new Student().study(); 这样做的好处是调用完之后就是垃圾,可以被垃圾回收器回收。 2、匿名对象可以作为实际参数传递,如: class School

  • 【Python爬虫实践】 异步XHR爬取在线编程网站阿尔法Coding中已完成的代码2020-04-05 11:02:11

    刚学完Python和爬虫,想实践一下,于是选定目标为这个学期使用的在线编程网站 网站如图,要爬取的是第二部分,Python语言练习 ** 思路分析: ** 课程看的是MOOC上北京理工大学嵩天老师的课程,这个网站与课程中给出的几个实例有所不同。该网站需要用异步XHR爬取。 由于在爬取该网站的

  • 课程表管理系统2020-03-28 16:57:13

    课程表管理系统 采用Service-Dao来开发 包结构图 domain类包括Lesson public class Lesson { private String LensonName; private String LessonLoc; private String LessonTime; public Lesson(){ } public Lesson(String LN,String LL,String LT){ this.Lenson

  • sqli-labs lesson 11-152020-03-06 21:02:07

      从这一关开始我们开始进入到post注入的世界了,什么是post呢?就是数据从客户端提交到服务器端,例如我们在登录过程中,输入用户名和密码,用户名和密码以表单的形式提交,提交到服务器后服务器再进行验证。这就是一次post的过程的。   less 11:      这里我们还是尝试一下get注入里

  • [Selenium With C# 基础教程] Lesson2020-02-27 14:02:57

    我之前写的https://www.cnblogs.com/pu369/p/12365383.html文章,已实现用C#和Selenium 操控浏览器。下面总结一下常用操作(节选自https://www.jianshu.com/nb/10377047) 1、生成driver实例    可以用ChromeDriverService.CreateDefaultService()和ChromeOptions()进行配置 var dri

  • LESSON 3- Discrete Memory-less Sources2019-11-27 19:52:38

    1.     Entropy H[X] - bounds on Lmin             2.      Huffman’s algorithm for optimal source code          

  • LESSON 2-Discrete Source Encoding2019-11-23 21:52:38

    Keywords: Source types, Discrete source coding, Kraft inequality 1.      Source classes About Figure 1.1 in LESSON1, the source encoder converts the sequence of symbols from the source to a sequence of binary digits, preferably using as few binary digits

  • 新概念 Lesson 10 Tired and thirsty What's the matter? Are you all right? That's all right!2019-10-07 23:01:50

      课上内容(Lesson) # Review     词汇(Key Word )     novel  n.小说     # short novel 短片小说;  long novel 长篇小说 hundred  百       句型(Sentences) Are those shops shut?   那些商店关门了吗?                    语法(Grammar)      

  • Codeforces 1220C. Substring Game in the Lesson2019-09-19 15:51:18

    传送门 首先显然的,如果 $l$ 能移动,那么 $r$ 一定可以随便移动,如果 $l$ 不动,那么 $r$ 一定不能动 那么我们现在只要考虑 $l$ 的移动即可 考虑找到位置 $k$ 之前的最左边的最小的字符,如果存在,先手可以直接把 $l$ 移过去,那么后手就没得走了 如果不存在,那么先手显然没得移动 所以直接

  • 基于FriendlyARM开发板mini2440的按键驱动2019-08-31 21:02:15

    掌握Linux的中断处理机制及中断响应过程,了解按键的工作原理,完成基于嵌入式Linux系统的中断应用程序设计。 一、实验原理和内容 1、实验原理 (1)查看按键的原理图(如图) (2)由原理图可知,六个按键分别连到了S3C2440芯片的外部中断8/11/13/14/15/19引脚上,要使用中断方式驱动引脚首

  • 自动排课思路2019-06-21 08:48:57

    看了许多关于算法排课的文章,但是感觉都不是很友好。废话不多说,贴代码 1.首先创建一个数据 1 public class TSPDATA 2 { 3 4 public static int SPECIES_Num = 200; //种群数 5 public static readonly int Develop_Num = 1000; //进化代数 6 publi

  • 什么是平面设计的逻辑?2019-06-08 23:04:21

    设计的教室 Lesson 1_02 什么是平面设计的逻辑 一篇有逻辑的文章中,所有事项之间 都有着清晰的关系且没有矛盾。 那么在设计领域,什么样的设计才称得上有逻辑呢? 一旦习惯于用语言建立逻辑, 再想理解视觉逻辑恐怕就要费些功夫了。 内在必然性塑造平面设计 正如我们在上一

  • [ML] {ud120} Lesson 4: Decision Trees2019-06-07 10:47:49

    Linearly Separable Data            Multiple Linear Questions               Constructing a Decision Tree First Split           Coding A Decision Tree                    Decision Tree Parameters          Data Impurity and En

  • 第一册:lesson 125.2019-04-30 13:43:06

    原文: Tea for two。 question:Does Susan have tea by herself? Can't you come in and have tea now Piter? Not yet. I must water the garden first. Do you have to water it now? I'm afraid I must.Look at it.It's terribly dry. What a nuisance. Last s

  • Lesson 3-1(语句:条件语句)2019-04-20 10:40:34

    3.1 条件语句:if 语句 3.1.1 if 语句组成 --- if 语句包含:if 关键字、条件、冒号、if 子句(缩进代码块)。 --- if 语句表达的意思为:如果条件为真(True),执行后面子句中的代码;如果条件为假(False),后面的子句将跳过不执行。 1 if 10 == 10 :2 print('10 == 10')3 4 if 10 == 9 :5 pr

  • 第一册:lesson 105.2019-04-16 13:51:36

    原文: Full of mistakes. Where's Sandra,Bob? I want her. Do you want to speak to her? Yes I do. I want her to come to my office.Tell her to come at once. Did you want to see me? Yes, Sandra.  How do you spell "intelligent"? Can you tell me? ..

  • 第一册:lesson ninety-five。2019-04-12 13:55:02

    原文: tickets,please。 Two return tickets to London please. What time will the next train leave? At ninety minutes past eight. Which platform? Platform two ,over the bridge. What time will the next train leave? At eight nineteen. We have got plenty of time.

  • Lesson 1-2 字母 音标 一般疑问句2019-04-05 15:54:42

    知识点: 26个英文字母 excuse me的用法 一般疑问句的构成及用法 练习一般疑问句 小知识 26个英文字母 Aa Bb Cc Dd Ee Ff Gg Hh Ii Jj Kk Ll Mm Nn Oo Pp Qq Rr Ss Tt Uu Vv Ww Xx Yy Zz 这26个英文字母可以构成英语中60-100万个单词。 据测试统计,美国人不同年龄掌握的单词

  • 第一次:lesson eighty seven。2019-04-03 13:54:45

    原文: A car crash. A:Is my car ready yet? B:I don't know sir,what's the number of your car? A:It's LFZ312G. B:When did you  bring it to us? A:I brought it here three years ago. B:I remember now. A:Have your mechanics finished yet? B:No, they

  • 第一册:lesson seventy nine.2019-03-27 13:41:11

    原文: Carol's shopping list. What are you doing Carol? I'm making a shopping list Tom. What do we need? We need a lot of things this week. I must go to the grocer's.We haven't got much tea or coffee,and we haven't got any sugar or j

  • 第一册:lesson seventy five。2019-03-25 13:45:07

    原文: Uncomfortable Shoes。 Do you have any shoes like this? What size? Size five. What color? Black. I am sorry. We don't have any. But my sister bought this pair last month. Did she buy them here? No,she bought them in the US. We had some shoes like t

  • 第一册:lesson seventy one.2019-03-23 13:48:50

    原文: He is awful。 A:What's Ron Marston like , Pauline? B:He is awful.He telephoned me four times yesterday,and three times the day before yesterday. B:He telephoned the office yesterday morning and yesterday afternoon.My boss answered the telephone. A

  • 第一册:lesson sixty seven。2019-03-21 13:39:37

    原文: The weekend. A:Hello , were you an tht butcher's? B:Yes I was. A:Were you at the butcher's too? C:No I wasn't. I was at the greengrocer‘s.  A:How's Jim today? B:He is very well, thank you. A:Was he .. at the school last week? B:Yes

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有