1 2 3 4 5 ··· 14 下一页
摘要: import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @overri 阅读全文
posted @ 2024-06-05 17:49 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: # 以下两个国际化 flutter_localizations: sdk: flutter intl: ^0.17.0 # Add this line # 去除网页URL中的“#”(hash) https://flutter.cn/docs/development/ui/navigation/url 阅读全文
posted @ 2024-06-05 15:14 飞雪飘鸿 阅读(1) 评论(0) 推荐(0) 编辑
摘要: import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext con 阅读全文
posted @ 2024-06-05 14:59 飞雪飘鸿 阅读(3) 评论(0) 推荐(0) 编辑
摘要: import 'package:flutter/widgets.dart'; void main() => runApp(); //main 函数为应用程序的入口 void main() { //runApp(Widget参数),它的功能是启动Flutter应用 runApp(const MyApp 阅读全文
posted @ 2024-06-05 11:42 飞雪飘鸿 阅读(5) 评论(0) 推荐(0) 编辑
摘要: import 'package:flutter/material.dart'; Future<void> main() async { runApp(const MyApp()); } /* Main widget that contains the Flutter starter app. */ 阅读全文
posted @ 2024-06-03 16:34 飞雪飘鸿 阅读(3) 评论(0) 推荐(0) 编辑
摘要: import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext con 阅读全文
posted @ 2024-05-31 17:51 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); // This 阅读全文
posted @ 2024-05-30 15:00 飞雪飘鸿 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 慕课甄选-2024年Flutter零基础极速入门到进阶实战_实战课程_慕课网 (imooc.com) 阅读全文
posted @ 2024-05-30 11:31 飞雪飘鸿 阅读(4) 评论(0) 推荐(0) 编辑
摘要: QT5.12.2部署Android环境和编译apk 阅读全文
posted @ 2024-05-30 09:09 飞雪飘鸿 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <gl/glut.h> using namespace std; struct Point { int x; int y; }; // #define VERTEX_COUNT 5 Point points[VERTEX_COUNT] = { 阅读全文
posted @ 2024-05-30 08:51 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 8086 cpu是一个完全16位的处理器,也就是说它的寄存器、内部和外部数据总线都是16位的。它有8个16位的通用寄存器AX,BX,CX,DX,SI,DI,BP,SP。通常计算机都是处理单字节(8位)的数据,如果每次都用16位的寄存器来存储就显得有些浪费,因此为了减少这些浪费,AX,BX,CX,DX 阅读全文
posted @ 2024-05-29 17:54 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 首先回顾一下电脑启动的过程: 1.通电 2.读取ROM里面里面的BIOS(在1M内存的顶部),用来检测硬件 3.BIOS根据指定的顺序,寻找第一个扇区(主引导程序),加载内存地址0x7c00 4.主引导记录把操作权限交给操作系统 众所周知,电脑启动时,主引导程序(Master boot record 阅读全文
posted @ 2024-05-29 17:50 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2024-05-29 17:47 飞雪飘鸿 阅读(1) 评论(0) 推荐(0) 编辑
摘要: org 07C00h ; 告诉编译器程序加载到07C00处 mov ax, cs mov ds, ax mov es, ax call DispStr ; 调用显示字符串例程 jmp $ ; 无限循环 DispStr: mov ax, BootMessage mov bp, ax ; es:bp = 阅读全文
posted @ 2024-05-29 17:45 飞雪飘鸿 阅读(1) 评论(0) 推荐(0) 编辑
摘要: #include<GL/glut.h> void init() { glClearColor(0.0, 0.0, 0.0, 0.0); glMatrixMode(GL_PROJECTION); glOrtho(-5, 5, -5, 5, 5, 15); gluLookAt(0, 0, 10, 0, 阅读全文
posted @ 2024-05-29 17:14 飞雪飘鸿 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 实色效果英文名称R.G.B16色实色效果英文名称R.G.B16色 Snow 255 250 250 #FFFAFA PaleTurquoise1 187 255 255 #BBFFFF GhostWhite 248 248 255 #F8F8FF PaleTurquoise2 174 238 238 阅读全文
posted @ 2024-05-14 11:11 飞雪飘鸿 阅读(1) 评论(0) 推荐(0) 编辑
摘要: ASCii打印字符对照表 DECOCTHEXBIN缩写/符号HTML实体描述 0 000 00 00000000 NUL &#000; Null char (空字符) 1 001 01 00000001 SOH &#001; Start of Heading (标题开始) 2 002 02 0000 阅读全文
posted @ 2024-05-14 11:09 飞雪飘鸿 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 从打开电源到开始操作,计算机的启动是一个非常复杂的过程。 我一直搞不清楚,这个过程到底是怎么回事,只看见屏幕快速滚动各种提示...... 这几天,我查了一些资料,试图搞懂它。下面就是我整理的笔记。 零、boot的含义 先问一个问题,"启动"用英语怎么说? 回答是boot。可是,boot原来的意思是靴 阅读全文
posted @ 2024-05-14 10:41 飞雪飘鸿 阅读(3) 评论(0) 推荐(0) 编辑
摘要: go get -u -v google.golang.org/grpc 确保你的Go环境已经安装并配置。 安装gomobile工具:go get -u -v google.golang.org/grpc 创建Go代码,例如: package main import ( "fmt" "gomobile 阅读全文
posted @ 2024-05-10 17:38 飞雪飘鸿 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 生成密钥 ssh-keygen -t rsa 获取 RSA 公钥内容,并配置到 SSH公钥 中 cat ~/.ssh/id_rsa.pub 阅读全文
posted @ 2024-05-09 11:18 飞雪飘鸿 阅读(11) 评论(0) 推荐(0) 编辑
摘要: @echo off start cmd /k cd /d "%~dp0" REM 解释: REM @echo off 用于关闭命令回显,使得执行命令时不会在命令行中显示。 REM start 命令用于启动一个新的窗口。 REM /k 参数表示在新窗口中执行后续的命令。 REM cd /d "%~dp 阅读全文
posted @ 2024-05-08 08:39 飞雪飘鸿 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 环境变量 set GO111MODULE=on go env -w GOPROXY=https://goproxy.cn,direct go mod init 阅读全文
posted @ 2024-05-06 16:58 飞雪飘鸿 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 要进行安卓开发,你需要准备以下工具和软件: Go语言环境:确保你已经正确安装了Go语言环境,并设置了正确的环境变量。 Android Studio:下载并安装Android Studio,这是谷歌官方推荐的安卓开发工具。 Gradle:下载并安装Gradle,它是一个开源构建自动化工具,用于构建和管 阅读全文
posted @ 2024-05-06 16:50 飞雪飘鸿 阅读(7) 评论(0) 推荐(0) 编辑
摘要: package main import( "fmt" ) func main(){ fmt.Print("在终端打印。")//直接打印 name:="名字" fmt.Printf("名字是:%s\n",name)//参数打印 fmt.Println("在终端单独一行显示")//换行打印 } 阅读全文
posted @ 2024-05-06 10:36 飞雪飘鸿 阅读(5) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" "time" ) var channel = make(chan int, 5) func main() { go producer() // 遍历通道 for i:= range channel { fmt.Printf("consume % 阅读全文
posted @ 2024-04-30 18:06 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" ) func main() { arr:=make([]int, 3,5) arr[0],arr[1],arr[2]=2,7,9 brr:=append(arr,8) fmt.Printf("%d %d\n",len(arr),len(brr) 阅读全文
posted @ 2024-04-30 17:17 飞雪飘鸿 阅读(1) 评论(0) 推荐(0) 编辑
摘要: mkdir my-project cd my-project go mod init my-project $ go get fyne.io/fyne/v2@latest $ go install fyne.io/fyne/v2/cmd/fyne@latest 如果您不确定 Go 模块的工作原理,请 阅读全文
posted @ 2024-04-30 15:04 飞雪飘鸿 阅读(1) 评论(0) 推荐(0) 编辑
摘要: @echo off REM Author: YooooungLee TEL 155-****-9552 echo 欢迎使用自动关机计划设置脚本! echo. :choose_action set /p "action_choice=请选择要执行的操作(输入1设置定时关机任务,输入2删除定时关机任务) 阅读全文
posted @ 2024-04-30 09:23 飞雪飘鸿 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 对于 Go 语言编写的 GUI 程序,以下是比较成熟的方案: 1. fyne:Fyne 是一个新的、易于使用的 Go 语言UI 框架,他采用了基于模块的体系结构,提供了完整的API元素库,支持图形、文本、布局、画布等等。 2. go-qml:Go QML 是一个基于 Go 语言的跨平台界面设计工具, 阅读全文
posted @ 2024-04-29 14:55 飞雪飘鸿 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 环境:安装VS2022+选择WPF从最简单的记事本开始 一、创建一个ToolStripContainer控件,用于摆放工具栏,文本框和状态栏的位置 二、菜单控件 以下是MenuStrip控件的相关属性 Text属性 Name属性 ShortcutKeys属性 (快捷键) ShowShortcutKe 阅读全文
posted @ 2024-04-17 12:51 飞雪飘鸿 阅读(9) 评论(0) 推荐(0) 编辑
摘要: C++界面库是用于GUI界面设计的工具包,可以帮助开发人员快速开发出美观、易用的界面。在选择C++界面库的时候,开发人员需要根据项目要求、使用场景、开发难易程度以及所适配的操作系统等因素进行综合考虑。 下面列举了十几种常见的C++界面库,简单介绍它们的安装、使用、特点和适用场景。 1. Qt Qt是 阅读全文
posted @ 2024-04-10 16:45 飞雪飘鸿 阅读(450) 评论(0) 推荐(0) 编辑
摘要: 物联网的发展大势所趋,也被普遍看好和关注,但嵌入式设备的联网会使得软件复杂性大幅增加,传统的嵌入式 RTOS内核已经越来越难满足市场的需求,在这种情况下,物联网操作系统的概念应运而生。目前物联网操作系统主要分为两大类,一是由传统的嵌入式RTOS发展而来,二是由互联网公司的云平台延伸而来,本文将对现有 阅读全文
posted @ 2024-04-08 11:32 飞雪飘鸿 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 英文缩写:ISA指令集架构,Instruction Set Architecture CISC复杂指令集计算机,Complex Instruction Set Computer RISC精简指令集计算机,Reduced Instruction Set Computer EPIC显性并行指令计算,Ex 阅读全文
posted @ 2024-04-08 10:21 飞雪飘鸿 阅读(22) 评论(0) 推荐(0) 编辑
摘要: ISA指令集架构,Instruction Set Architecture CISC复杂指令集计算机,Complex Instruction Set Computer RISC精简指令集计算机,Reduced Instruction Set Computer EPIC显性并行指令计算,Explici 阅读全文
posted @ 2024-04-08 10:16 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 一、开源许可协议简述 开源许可协议是指开源社区为了维护作者和贡献者的合法权利,保证软件不被一些商业机构或个人窃取,影响软件的发展而开发的协议。它的中文名:开源许可协议;外文名:open source license。 二、开源许可协议之间的区别与联系 通过上图,可以很清晰的了解到6种常见的开源许可协 阅读全文
posted @ 2024-04-08 10:01 飞雪飘鸿 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 1985 年 —— 自由软件基金会成立 自由软件基金会(Free Software Foundation,简称 FSF)由 RMS 于 1985 年创立,这是一个非营利组织,其主要工作是运行 GNU 计划,使命是促进计算机用户的自由。基金会的员工编写并维护着一些 GNU 软件包。 1999 年 —— 阅读全文
posted @ 2024-04-08 09:51 飞雪飘鸿 阅读(13) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python import vtk def main(): colors = vtk.vtkNamedColors() # Create the RenderWindow, Renderer and Interactor. # renderer = vtk.vtkRen 阅读全文
posted @ 2024-03-28 13:27 飞雪飘鸿 阅读(7) 评论(0) 推荐(0) 编辑
摘要: import sys from PyQt5 import QtWidgets, QtGui __version__ = '0.1.0' __author__ = 'xuxc' __appname__ = 'PyPost' class PyPostMainWindow(QtWidgets.QMainW 阅读全文
posted @ 2024-03-28 13:09 飞雪飘鸿 阅读(5) 评论(0) 推荐(0) 编辑
摘要: # coding:utf-8 from tkinter import * import math,time global List global i root = Tk() List = [] root.title("a simple clock") #设置窗口是否可以变化长/宽 root.resi 阅读全文
posted @ 2024-03-27 17:32 飞雪飘鸿 阅读(4) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python # -*- coding: UTF-8 -*- # 导入自定义support模块 import support # 现在可以调用模块里包含的函数了 support.print_func("Runoob") 自定义模块 support def print_func( 阅读全文
posted @ 2024-03-27 16:55 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 14 下一页
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL