先上图: <code>import &#039;package:flutter/material.dart&#039;; main(){ runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return const MaterialApp…

2022年7月10日 0条评论 799点热度 0人点赞 小小调酒师 阅读全文

先上图: <code>import &#039;package:flutter/material.dart&#039;; main(){ runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return const MaterialApp…

2022年7月9日 0条评论 846点热度 0人点赞 小小调酒师 阅读全文

方式一 1、安装工具源,使用如下命令: sudo yum -y install epel-release 2、安装 python-pip 模块,使用如下命令: sudo yum install python-pip 3、下载 docker-compose 安装包,使用如下命令: wget https://github.com/docker/compose/releases/download/1.14.0-rc2/docker-compose-Linux-x86_64 4、重命名工具 docker-compose 名…

2022年7月8日 0条评论 1046点热度 0人点赞 小小调酒师 阅读全文

Git是一个开源的分布式版本控制系统,可以有效、高速的处理从很小到非常大的项目版本管理。而国外的GitHub和国内的Coding都是项目的托管平台。但是在使用Git工具的时候,第一步要学会如何安装git,本教程就手把手教大家如何手动编译安装git。 1、介绍   使用Coding管理项目,上面要求使用的git版本为1.8.0以上,而很多yum源上自动安装的git版本为1.7,所以需要掌握手动编译安装git方法。 2、安装git依赖包 yum install curl-devel expat-devel gettex…

2022年7月8日 0条评论 944点热度 0人点赞 小小调酒师 阅读全文

效果: 代码: <code>import &#039;package:flutter/material.dart&#039;; main(){ runApp(MaterialApp( debugShowCheckedModeBanner: false, home: Scaffold( appBar: AppBar( title:const Text(&quot;这是我的第一个程序&quot;), centerTitle:true ), body: const Center…

2022年7月7日 0条评论 883点热度 0人点赞 小小调酒师 阅读全文

html代码: <code>&lt;!DOCTYPE html&gt; &lt;html lang=&quot;en&quot;&gt; &lt;meta charset=&quot;utf-8&quot;&gt; &lt;title&gt;Image Gallery&lt;/title&gt; &lt;body&gt; &lt;h1&gt;Snapshots&…

2022年7月4日 0条评论 871点热度 0人点赞 小小调酒师 阅读全文

DOM常用方法: getElementById getAttribute setAttribute childNodes[0]:子节点数组的第一个元素,它与firstChild等价 nodeValue:改变文本节点的值 <code>&lt;!DOCTYPE html&gt; &lt;html lang=&quot;en&quot;&gt; &lt;meta charset=&quot;utf-8&quot;&gt; &…

2022年7月3日 0条评论 1060点热度 0人点赞 小小调酒师 阅读全文

MacBook Pro键盘快捷键 您可以按下某些组合键来实现通常需要鼠标、触控板或其他输入设备才能完成的操作。 要使用键盘快捷键,请按住一个或多个修饰键,然后按快捷键的最后一个键。例如,要使用 Command-C(拷贝),请按住 Command 键并按 C 键,然后同时松开这两个键。Mac 菜单和键盘通常使用符号来表示某些按键,其中包括以下修饰键: Command(或 Cmd)⌘ Shift ⇧ Option(或 Alt)⌥ Control(或 Ctrl)⌃ Caps Lock ⇪ Fn 在 Windows PC …

2022年7月3日 0条评论 1053点热度 0人点赞 小小调酒师 阅读全文

Spring Boot提供了对应的Starter,maven坐标: <code class="language-xml">&lt;dependency&gt; &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt; &lt;artifactId&gt;spring-boot-starter-data-redis&lt;/artifactId&gt; …

2022年6月23日 0条评论 1099点热度 0人点赞 小小调酒师 阅读全文

1.0.0 搭建基础环境 1).在pom.xml中导入依赖 <code class="language-xml">&lt;properties&gt; &lt;java.version&gt;1.8&lt;/java.version&gt; &lt;/properties&gt; &lt;parent&gt; &lt;groupId&gt;org.springframework.boot&…

2022年6月22日 0条评论 992点热度 1人点赞 小小调酒师 阅读全文
1141516171829