摘要: package main import ( "fmt" "io/ioutil" "time" "unsafe" sdl "github.com/moonfdd/sdl2-go/sdl2" "github.com/moonfdd/sdl2-go/sdlcommon" ) const REFRESH_E 阅读全文
posted @ 2024-12-20 15:57 飞雪飘鸿 阅读(3) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" "runtime" ) func main() { fmt.Println("You are running on:") switch runtime.GOOS { case "windows": fmt.Println("Windows") 阅读全文
posted @ 2024-12-20 14:59 飞雪飘鸿 阅读(1) 评论(0) 推荐(0) 编辑
摘要: #ifdef _WINDOWS_ CreateThread(); //windows下线程的创建 #else Pthread_create(); //Linux下线程的创建 #endif https://zhuanlan.zhihu.com/p/627322587 阅读全文
posted @ 2024-12-20 14:55 飞雪飘鸿 阅读(1) 评论(0) 推荐(0) 编辑
摘要: package main import "fmt" func main() { //阶乘 jiecheng := 1 for i := 1; i < 10; i++ { jiecheng *= i fmt.Printf("%d的阶乘是%d\n", i, jiecheng) } } package m 阅读全文
posted @ 2024-12-20 12:25 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: package main import "fmt" func main() { for i := 0; i < 9; i++ { for j := 0; j < 9; j++ { fmt.Printf("%d x %d =%d\t", i, j, i*j) } } } 阅读全文
posted @ 2024-12-20 12:12 飞雪飘鸿 阅读(1) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" ) func main() { var b float64 var a float64 = 42 b = a * a fmt.Println("结果", b) } package main import ( "fmt" "math" ) fun 阅读全文
posted @ 2024-12-20 11:47 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" ) func divide(a, b int) (int, error) { if b == 0 { return 0, fmt.Errorf("不能除以0") } return a / b, nil } func main() { resul 阅读全文
posted @ 2024-12-20 09:52 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" ) func divide(a, b int) (int, error) { if b == 0 { return 0, fmt.Errorf("不能除以零") } return a / b, nil } func main() { resul 阅读全文
posted @ 2024-12-18 17:26 飞雪飘鸿 阅读(1) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" ) func main() { var a, b int fmt.Print("请输入第一个数字: ") fmt.Scanln(&a) fmt.Print("请输入第二个数字: ") fmt.Scanln(&b) sum := a + b fm 阅读全文
posted @ 2024-12-18 17:25 飞雪飘鸿 阅读(3) 评论(0) 推荐(0) 编辑
摘要: package main import ( "flag" "fmt" "os" ) func main() { // 定义命令行参数 op := flag.String("op", "add", "Operation to perform: add, sub, mul, div") a := fla 阅读全文
posted @ 2024-12-18 15:42 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: flag:用于解析命令行参数。 fmt:用于格式化和输出文本。 os:用于处理操作系统功能,如退出程序。 阅读全文
posted @ 2024-12-18 15:39 飞雪飘鸿 阅读(3) 评论(0) 推荐(0) 编辑
摘要: start_app.bat Apply @echo off chcp 65001 cls echo echo 应用启动程序 echo :: 检查Python是否安装 python --version >nul 2>&1 if %errorlevel% neq 0 ( echo [错误] 未检测到Py 阅读全文
posted @ 2024-12-18 15:18 飞雪飘鸿 阅读(6) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/515421827 Go语言的编译器是否有后门?如果有后门的编译器编译出来的Go程序是否有后门?有后门的编译器编译出来的Go编译器程序是否有后门? 阅读全文
posted @ 2024-12-17 17:11 飞雪飘鸿 阅读(1) 评论(0) 推荐(0) 编辑
摘要: https://www.zhihu.com/search?type=content&q=%E5%8A%A0%E5%AF%86%E5%92%8C%E8%A7%A3%E5%AF%86 https://blog.csdn.net/lanxin777/article/details/141386345 ht 阅读全文
posted @ 2024-12-17 16:40 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: Windows可信启动架构及其与安全启动共同建立的信任根 安全启动基于公钥基础设施(PKI)流程,在允许任何模块执行前,先对其进行严格认证。这些模块广泛包括固件驱动程序、选项ROM、磁盘上的UEFI驱动程序、UEFI应用程序或UEFI引导加载程序。通过执行前的镜像认证机制,安全启动有效降低了如roo 阅读全文
posted @ 2024-12-17 16:14 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: C++ Graphics Library 从BIOS到UEFI的转变标志着系统固件发展的一次重大进步。 计算机原理 理解BIOS和UEFI 小熊猫C++ XEGE绘图库 SimulIDE电路仿真软件 Java绘图库,类似XEGE Python绘图库,类似XEGE easyx Dev-C++ code 阅读全文
posted @ 2024-12-17 10:05 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: https://cloud.tencent.com/developer/article/1929441 https://royqh.net/ graphics.h BGI库谈起 在学习C语言图形编程之初,许多开发者接触的是古老的Borland Turbo C集成开发环境中的Graphics Libr 阅读全文
posted @ 2024-12-09 11:49 飞雪飘鸿 阅读(3) 评论(0) 推荐(0) 编辑
摘要: print和println 这两个打印方式类似,只在格式上有区别 println 打印的每一项之间都会有空行,print没有,例如: fmt.println("go","python","php",javascript") // go python php javascript fmt.print( 阅读全文
posted @ 2024-12-09 11:12 飞雪飘鸿 阅读(24) 评论(0) 推荐(0) 编辑
摘要: { // 使用 IntelliSense 了解相关属性。 // 悬停以查看现有属性的描述。 // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { 阅读全文
posted @ 2024-11-26 15:53 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: .sidebar { position: fixed; right: 0; top: 0; height: 100vh; /* 侧边栏高度与视口等高 */ width: 250px; background-color: #333; color: white; padding: 20px; box-s 阅读全文
posted @ 2024-11-25 11:08 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: /*.col-xs-* 超小屏幕如手机 (<768px)时使用;*/ /*.col-sm-* 小屏幕如平板 (768px ≤ 宽度 <992px)时使用;/ /*.col-md-* 中等屏幕如普通显示器 (992px ≤ 宽度 < 1200px)时使用;*/ /*.col-lg-* 大屏幕如大显示器 阅读全文
posted @ 2024-11-25 10:35 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <title>页面标题</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> 阅读全文
posted @ 2024-11-21 16:21 飞雪飘鸿 阅读(13) 评论(0) 推荐(0) 编辑
摘要: html { line-height: 1.15; -webkit-text-size-adjust: 100% } body { margin: 0 } main { display: block } h1 { font-size: 2em; margin: 0.67em 0 } hr { box 阅读全文
posted @ 2024-11-20 11:17 飞雪飘鸿 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Copyright (c) 1994 - 2024, XX(punkercn@gmail.com); all rights reserved. <a href="https://beian.miit.gov.cn" target="_blank">滇ICP备2021003198号</a> | <a 阅读全文
posted @ 2024-11-20 10:58 飞雪飘鸿 阅读(25) 评论(0) 推荐(0) 编辑
摘要: /*row-list*/.row-list {display: -webkit-flex;display:flex;flex-flow:row wrap;justify-content:space-around;/* 子元素沿主轴等间隔分布 */align-items:space-around; / 阅读全文
posted @ 2024-11-20 10:56 飞雪飘鸿 阅读(3) 评论(0) 推荐(0) 编辑
摘要: <div class="site-header"> <div>logo</div> <div class="actions-list"> <div class="actions-list-item">目录</div> <div class="actions-list-item">目录</div> < 阅读全文
posted @ 2024-11-20 10:55 飞雪飘鸿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: <div class="row-list"> <div class="box-item ys-a">1水资源模块</div> <div class="box-item ys-b">2水灾害模块</div> <div class="box-item ys-c">3水公共模块</div> <div cl 阅读全文
posted @ 2024-11-20 10:53 飞雪飘鸿 阅读(3) 评论(0) 推荐(0) 编辑
摘要: justify-content:space-around;/* 子元素沿主轴等间隔分布 */align-items:space-around; /* 子元素沿交叉轴等间隔分布 */ flex: 1 1 auto;/* 完全响应式: 允许放大,允许缩小,宽度自动 */ border: 1px soli 阅读全文
posted @ 2024-11-20 10:41 飞雪飘鸿 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1 列:一般用于移动端 2 列:一般用于平板设备 3 列:一般用于 PC 桌面设备 一、表格布局table Layout 最初的网页布局为表格布局<table></table>,被淘汰后适用于局部结构化数据。 二、浮动布局float Layout 漂浮飞动;多列布局。float:left;overf 阅读全文
posted @ 2024-11-19 15:49 飞雪飘鸿 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 信息系统与信息技术发展、 数字中国与数智化发展、 系统科学与哲学方法论、 信息系统规划、 应用系统规划、 云资源规划、 网络环境规划、 数据资源规划、 信息安全规划、 云原生系统规划、 信息系统治理、 信息系统服务管理、 人员管理、 规范与过程管理、 技术与研发管理、 资源与工具管理、 信息系统项目 阅读全文
posted @ 2024-11-07 14:51 飞雪飘鸿 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 截图: Ctrl + Alt + A 录屏: Ctrl + Alt + R 剪贴板: Ctrl + Alt + V - - - - - - 工作区: Super + S(即Win键 + S) 打开终端:Ctrl+Alt+T 打开文件资源管理器:Super键 + E(即 Win键 +E) - - - 阅读全文
posted @ 2024-10-29 16:02 飞雪飘鸿 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 一、计算机正高级职称评审条件 1. 学历要求:通常要求申报人具有硕士及以上学历,且所学专业与计算机领域相关。在部分情况下,本科学历但具有突出贡献的人才也可申报。2. 工作年限:申报人需要具有丰富的工作经验,一般要求在计算机领域从业不少于15年,其中5年以上为高级职称或相当职务。3. 技术能力:申报人 阅读全文
posted @ 2024-09-09 12:17 飞雪飘鸿 阅读(416) 评论(0) 推荐(0) 编辑
摘要: void main() { Man(); } class Person { void speak() { print('hi'); } } class Man extends Person { @override void speak() { print('你好'); } } 阅读全文
posted @ 2024-09-05 16:05 飞雪飘鸿 阅读(12) 评论(0) 推荐(0) 编辑
摘要: public class SnowflakeIdWorker{ /** 开始时间截 (2015-01-01) */ private final long twepoch = 1288834974657L; /** 机器id所占的位数 */ private final long workerIdBit 阅读全文
posted @ 2024-09-05 14:58 飞雪飘鸿 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 参考https://www.jb51.net/article/263730.htm 无状态 StatelessWidget class LessComponent extends StatelessWidget { const LessComponent({Key? key}) : super(ke 阅读全文
posted @ 2024-09-05 12:52 飞雪飘鸿 阅读(7) 评论(0) 推荐(0) 编辑
摘要: https://gitee.com/openharmony-sig/flutter_flutter.git 阅读全文
posted @ 2024-09-02 17:24 飞雪飘鸿 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 在浏览flutter的代码的时候,会发现widget类总是有一个可选的key参数。那么为什么需要有这个参数呢?带着疑惑去研究了下,总算找到了答案。 key参数简单的理解,就是widget的id,用来标识某个widget。在我们根据自己的需求,需要去定位某个widget的时候,就可以使用自定义的key 阅读全文
posted @ 2024-08-28 11:24 飞雪飘鸿 阅读(86) 评论(0) 推荐(0) 编辑
摘要: import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext cont 阅读全文
posted @ 2024-08-28 09:58 飞雪飘鸿 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 在 Flutter 中 BuildContext 可太常见了,不管是 StatelessWidget 还是 StatefulWidget 的 build() 函数参数都会带有 BuildContext,好像随处可见,就像我们的一位老朋友,但似乎又对其知之甚少(熟悉的陌生人),今天我们再来了解一下这位 阅读全文
posted @ 2024-08-28 09:34 飞雪飘鸿 阅读(13) 评论(0) 推荐(0) 编辑
摘要: import 'package:flutter/material.dart' ; class BoldText extends StatelessWidget { @ override //override 的方法 build Widget build(BuildContext context) { 阅读全文
posted @ 2024-08-28 09:26 飞雪飘鸿 阅读(6) 评论(0) 推荐(0) 编辑
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL