首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 基础学习CSS(10)——属性选择器

    鱼C课程案例库:https://ilovefishc.com/html5/ html5速查手册:https://man.ilovefishc.com/html5/ css速查手册:https://man.ilovefishc.com/css3/

    9810编辑于 2026-01-23
  • 来自专栏linux教程

    基础搭建苹果cmsv10影视站教程

    (正常是有免费的选用着) 域名解析好,宝塔安装好,现在来建站,先安装运行环境,选择LNMP推荐就可以,PHP版本选择 PHP 5.6 特别提醒:苹果CMSV10 的PHP版本一定要在7.0 以上,才可以使用 CMS的版本现在以苹果MCS V10为例。上传解压出来的源代码(maccms10.zip)到你的网站目录。 点这里进入网站目录,删除 index.html 这个文件。 解压上传的CMS程序,(maccms10.zip)。 (覆盖数据库 请选择 覆盖 ) 填写完成,要先点一下,测试数据连接,才能按 立即执行安装 到这里网站已经搭建完成,本站有很多苹果cmsv10模板,请自行选择。

    2.8K20编辑于 2023-04-24
  • 来自专栏韩东吉的Unity杂货铺

    基础入门 10: 编辑器下的UGUI Image

    图片类型分成几种,有最基础的普通类型Simple,还有Slice,Tiled和Filled。 Sliced的图片类型需要图形上有border支持。否则会提示: ?

    1.4K10发布于 2018-10-19
  • 来自专栏全栈程序员必看

    安装win10+黑苹果双系统基础教程

    否则无法加载UEFI引导设备 每台不同的电脑对BIOS设置不同,这个要自行百度,搜索电脑品牌+进入BIOS设置开机U盘启动 我的电脑是光影精灵3 型号cb076为例 1.进入BIOS可以通过开机直接按F10 在启动选项里有一个“传统模式”默认是禁用的,把它改成启用,并且把“传统模式下的开机顺序”下面的“U盘/USB硬盘”通过键盘调到第一个,修改完成后记得按“F10”保存并退出。 4.

    5.2K20编辑于 2022-08-12
  • 来自专栏Java帮帮-微信公众号-技术文章全总结

    Java基础10个小计划,提高java学习效率

    基础学Java只要方法得当,依然有机会学习好Java编程。

    87060发布于 2018-03-15
  • 来自专栏云开发

    新手小白 10分钟基础做新闻小程序

    app.json里下面框里的代码删除 四、开通云开发和CMS 4.1 开通云开发 云开发新用户可以首月免费使用 4.2 开通云后台/云模板 开通云开发后台,云开发控制台如下 点击云后台 4.3 升级到基础

    96910编辑于 2024-06-24
  • 来自专栏Java爬坑系列

    【JAVA基础入门系列】Day10 Java中的数组

    举个栗子: int[] a; int[] b = {3,4,5,6}; a = b; a[2] = 10; System.out.println(b[2]);   这里将输出10,也就是说b指向的数组的元素被改变了 args) { int[] a; int[] b = {3,4,5,6}; a = Arrays.copyOf(b,8); a[2] = 10 java.util.Arrays; public class Test{ public static void main(String[] args) { int[] numbers = new int[10 ]; for(int i=0;i<10;i++){ numbers[i] = (int)(Math.random()*10); }

    1.1K60发布于 2018-01-09
  • 来自专栏计算机视觉CV

    Flask基础--基础

    Flask基础--基础篇 Flask Flask实现接口 Html页面 运行 跨域问题 部署静态页面 Flask 工作项目中想在自己机器搭建一个服务器,使用到了flask,因为之前没接触过后台和服务器等知识 上一篇我们搭建了最基础的hello,world服务。这一篇我们来让前端页面和后台有个小互动,进行最简单的数据传输。

    80430发布于 2021-01-29
  • 来自专栏技术杂记

    etcd 基础10

    先进行比较,然后根据比较结果来决定是否进行后面的操作,可以用于构建分布式锁机制(协调服务)

    34410编辑于 2022-01-20
  • 来自专栏技术杂记

    Logstash 基础10

    发现这边的终端有输出 [root@h102 etc]# /opt/logstash/bin/logstash -f logstash-syslog.conf Settings: Default filter workers: 1 Logstash startup completed { "message" => "Dec 23 12:11:43 louis postfix/smtpd[31499]: connect from unknown[95.75.93.154]\

    31020编辑于 2022-02-10
  • 来自专栏技术杂记

    Codis 基础10

    root@h102 codis]# [root@h102 codis]# bin/codis-config server add 1 localhost:6380 slave 2015/12/04 21:10

    31020编辑于 2022-03-22
  • 来自专栏技术杂记

    SQLite 基础10

    删除表 sqlite> .tables company department hello t2 test ui sqlite> drop table t2; sqlite> .tables company department hello test ui sqlite> 插入数据 sqlite> .schema test CREATE TABLE test ( id int primar

    30330编辑于 2021-12-01
  • 来自专栏技术杂记

    Docker 基础10

    删除数据 [root@h103 ~]# ll /var/lib/docker total 16 drwx------ 3 root root 77 Jan 19 17:37 containers drwx------ 5 root root 50 Jan 19 17:37 devicemapper drwx------ 5 root root 4096 Jan 19 17:37 graph -rw-r--r-- 1 root root 5120 Jan 19 17:37 linkgraph.db

    33420编辑于 2022-02-09
  • 来自专栏技术杂记

    Snort 基础10

    解决办法:安装 libdnet.x86_64 和 libdnet-devel.x86_64

    68720编辑于 2022-05-03
  • 来自专栏技术杂记

    Consul 基础10

    服务是可以使用 HTTP API 进行动态修改 (HTTP API 可以用来进行动态的添加,删除,修改服务)

    28720编辑于 2021-12-01
  • 来自专栏技术杂记

    RabbitMQ基础10

    重置node [root@h102 rabbitmq]# rabbitmqctl reset Resetting node rabbit@h102 ... [root@h102 rabbitmq]# 让节点恢复到初始状态(原文是返回处女状态 ) This command resets the RabbitMQ node . Return a RabbitMQ node to its virgin state 必须先停掉RabbitMQ应用,才能成功执行,否则会报错 [root@h102 rabbitm

    35330编辑于 2022-05-04
  • 来自专栏技术杂记

    UnrealIRCd 基础10

    这里只是最基本的,使其可以运行并且能够访问的配置,详细的配置方法,放到以后再作讲解

    30610编辑于 2021-11-29
  • 来自专栏技术杂记

    fio基础10

    bs_is_seq_randIfthisoptionisset,fiowillusethenormalread,writeblocksizesettingsassequential,randominstead.AnyrandomreadorwritewillusetheWRITEblocksizesettings,andanysequentialreadorwritewillusetheREADblocksizesetting.zero_buffersIfthisoptionisgiven,fiowillinittheIObufferstoallzeroes.Thedefaultistofillthemwithrandomdata.refill_buffersIfthisoptionisgiven,fiowillrefilltheIObuffersoneverysubmit.Thedefaultistoonlyfillitatinittimeandreusethatdata.Onlymakessenseifzero_buffersisn't specified, naturally. If data verification is enabled, refill_buffers is also automatically enabled. scramble_buffers=bool If refill_buffers is too costly and the target is using data deduplication, then setting this option will slightly modify the IO buffer contents to defeat normal de-dupe attempts. This is not enough to defeat more clever block compression attempts, but it will stop naive dedupe of blocks. Default: true. buffer_compress_percentage=int If this is set, then fio will attempt to provide IO buffer content (on WRITEs) that compress to the specified level. Fio does this by providing a mix of random data and a fixed pattern. The fixed pattern is either zeroes, or the pattern specified by buffer_pattern. If the pattern option is used, it might skew the compression ratio slightly. Note that this is per block size unit, for file/disk wide compression level that matches this setting, you'llalsowanttosetrefill_buffers.buffer_compress_chunk=intSeebuffer_compress_percentage.Thissettingallowsfiotomanagehowbigtherangesofrandomdataandzeroeddatais.Withoutthisset,fiowillprovidebuffer_compress_percentageofblocksizerandomdata,followedbytheremainingzeroed.Withthissettosomechunksizesmallerthantheblocksize,fiocanalternaterandomandzeroeddatathroughouttheIObuffer.buffer_pattern=strIfset,fiowillfilltheiobufferswiththispattern.Ifnotset,thecontentsofiobuffersisdefinedbytheotheroptionsrelatedtobuffercontents.Thesettingcanbeanypatternofbytes,andcanbeprefixedwith0xforhexvalues.Itmayalsobeastring,wherethestringmustthenbewrappedwit

    64840编辑于 2022-04-24
  • 来自专栏技术杂记

    Tengine基础10

    创建 apps/status.passwd 文件,创建方法(用户设为test,密码设为tengine)

    42040编辑于 2022-05-03
  • 来自专栏技术杂记

    memcached基础10

    通过stats items 和 stats cachedump slab_id limit_num配合get命令可以遍历memcached的记录。

    25710编辑于 2022-06-26
领券