码迷,mamicode.com
首页 >  
搜索关键字:advanced level    ( 8161个结果
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2021-06-10 18:03:42    阅读次数:0
注解与main方法
EnableAutoConfiguration This class-level annotation tells Spring Boot to “guess” how you want to configure Spring, based on the jar dependencies that ...
分类:其他好文   时间:2021-06-04 19:47:18    阅读次数:0
【Android】Gradle下载不动,修改为阿里镜像
修改build.gradle文件 // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { goog ...
分类:移动开发   时间:2021-06-04 19:09:13    阅读次数:0
nginx的压缩
使用模块 ngx_http_gzip_module 用gzip方法压缩响应数据,节约带宽 一、启用或禁用gzip压缩 gzip on | off; 二、压缩比由低到高:1 到 9, 默认:1 gzip_comp_level level; 压缩比越高,越消耗CPU 三、匹配到客户端浏览器不执行压缩 g ...
分类:其他好文   时间:2021-06-03 18:08:25    阅读次数:0
Overthewire-natas27
Overthewire level 27 to level 28 function checkCredentials($link,$usr,$pass){ $user=mysql_real_escape_string($usr); $password=mysql_real_escape_string ...
分类:其他好文   时间:2021-06-02 18:02:08    阅读次数:0
Overthewire-natas25
Overthewire level 25 to level 26 进入页面发现它输出了很长一段内容,仔细一瞅全是废话...但是它提供了一个选择英文和德文的界面,可以选择展示在首页上的文本的语言。 <?php // cheers and <3 to malvina // - morla functio ...
分类:其他好文   时间:2021-06-02 16:42:54    阅读次数:0
Overthewire-natas24
Overthewire level 24 to level 25 这一关与上一关很像,同样是提交一个密码登录,让我们看看源代码 <?php if(array_key_exists("passwd",$_REQUEST)){ if(!strcmp($_REQUEST["passwd"],"<censo ...
分类:其他好文   时间:2021-06-02 16:31:06    阅读次数:0
数据链路层中的点对点通信详解
数据链路层的基本问题中我们知道了数据链路层的信道利用方式,下面我们首先详解点对点通信的实际协议 主要协议: HDLC(High level Data Link Control ) 实现可靠传输 协议复杂 PPP(Point-to-Point Protocol) 使用得最多的数据链路层协议 P... ...
分类:其他好文   时间:2021-06-02 15:11:36    阅读次数:0
架构师的成长之路初片~nginx优化篇
1:开启对页面的压缩处理 gzip on; //开启压缩 gzip_min_length 1000; //小文件不压缩 gzip_comp_level 4; //压缩比率 gzip_types text/plain text/css application/json application/x-ja ...
分类:其他好文   时间:2021-06-02 15:02:12    阅读次数:0
javascript 中的 策略模式实现
/** * 策略(Strategy)模式的定义:该模式定义了一系列算法,并将每个算法封装起来,使它们可以相互替换,且算法的变化不会影响使用算法的客户。策略模式属于对象行为模式,它通过对算法进行封装,把使用算法的责任和算法的实现分割开来,并委派给不同的对象对这些算法进行管理。 */ //js 特定的可 ...
分类:编程语言   时间:2021-06-02 14:37:57    阅读次数:0
8161条   上一页 1 2 3 4 5 ... 817 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!