日常生活的交流与学习

首页 新随笔 联系 管理
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 20 下一页

2023年5月24日 #

摘要: # `/Users/song/Code/webgpu_learn/webgpu-for-beginners/webgpu_learn_typescript/index.html` ```html Vite + TS ``` # `/Users/song/Code/webgpu_learn/webgp 阅读全文
posted @ 2023-05-24 23:53 lazycookie 阅读(40) 评论(0) 推荐(0) 编辑

2023年5月22日 #

摘要: # `/Users/song/Code/webgpu_learn/webgpu-for-beginners/webgpu_learn_typescript/index.html` ```html Vite + TS ``` # `/Users/song/Code/webgpu_learn/webgp 阅读全文
posted @ 2023-05-22 23:49 lazycookie 阅读(28) 评论(0) 推荐(0) 编辑

2023年5月20日 #

摘要: > 100+学习的编程网站_国外篇 > Here are 100+ websites where you can learn to code online for free. If you're looking to learn techni...... Mar 30, 2023 Tashia T. 阅读全文
posted @ 2023-05-20 11:38 lazycookie 阅读(38) 评论(0) 推荐(0) 编辑

2023年5月17日 #

摘要: 基于webpack的typescript项目搭建 该项目是搭建了一个数值转换的前端项目,使用了webpack,typescript 重点学习webpack.config.js的配置 /Users/song/Code/webgpu_learn/webgpu-for-beginners/03 types 阅读全文
posted @ 2023-05-17 22:20 lazycookie 阅读(78) 评论(0) 推荐(0) 编辑

摘要: 一个命令相当于执行两个命令 { "name": "npm-test", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { // 直接就是在npm start,可以就是先npm i,然后在npm run se 阅读全文
posted @ 2023-05-17 20:51 lazycookie 阅读(32) 评论(0) 推荐(0) 编辑

2023年5月5日 #

摘要: /Users/song/Code/flask_video_stream/main3.py from flask import Flask, Response, send_file import cv2 from PIL import Image import io app = Flask(__nam 阅读全文
posted @ 2023-05-05 23:45 lazycookie 阅读(100) 评论(0) 推荐(0) 编辑

2023年4月24日 #

摘要: 元组的初始化 39行 分割字符串,然后直接放到元组里面 通过静态方法或类方法实例对象然后返回 34行和40行,静态方法和类方法创建实例对象,然后返回 34行和41行 76和79行, 一般来说,创建实例对象都是直接通过调用类名new一个实例对象,但是有时候,调用有些要传入__init__()函数的参数 阅读全文
posted @ 2023-04-24 23:41 lazycookie 阅读(16) 评论(0) 推荐(0) 编辑

2023年4月22日 #

摘要: /Users/song/codelearn/FastAPI-Oracle-main/main.py import os, secrets, requests, json from typing import List, Optional from fastapi import Depends, Fa 阅读全文
posted @ 2023-04-22 20:26 lazycookie 阅读(29) 评论(0) 推荐(0) 编辑

2023年4月21日 #

摘要: @property装饰器 访问器 修改器 之前我们讨论过Python中属性和方法访问权限的问题,虽然我们不建议将属性设置为私有的,但是如果直接将属性暴露给外界也是有问题的,比如我们没有办法检查赋给属性的值是否有效。我们之前的建议是将属性命名以单下划线开头,通过这种方式来暗示属性是受保护的,不建议外界 阅读全文
posted @ 2023-04-21 21:43 lazycookie 阅读(25) 评论(0) 推荐(0) 编辑

摘要: heatmap > heatmap2d.ts import { Mesh, Texture, MeshBasicMaterial, PlaneGeometry, Box3, Vector3, } from 'three'; import Base from '../Base'; import Hea 阅读全文
posted @ 2023-04-21 20:57 lazycookie 阅读(155) 评论(0) 推荐(0) 编辑

2023年4月20日 #

摘要: 魔法函数 魔术访达的一些说明 23-24 魔术方法并不是来自继承,而是python自带的这些方法,跟类没有关系 __getitem__方法 因为实现了__getitem__(),所以可以直接遍历这个student对象 __getitem__方法的参数 item就是相当于数组的下标 13行 对象实例化 阅读全文
posted @ 2023-04-20 22:26 lazycookie 阅读(15) 评论(0) 推荐(0) 编辑

2023年4月16日 #

摘要: cheerio 关键字过滤 关键字替换 内容剔除 八曲仙人之歌讲解 import { log } from "console"; import { readFileSync, readdirSync, lstatSync, createWriteStream, mkdirSync, statSync 阅读全文
posted @ 2023-04-16 21:44 lazycookie 阅读(56) 评论(0) 推荐(0) 编辑

2023年4月15日 #

摘要: simple heat的使用 <script setup lang="ts"> import { SimpleHeat } from "simpleheat-ts"; import * as dat from "dat.gui"; let frame: number | null = null; c 阅读全文
posted @ 2023-04-15 23:36 lazycookie 阅读(69) 评论(0) 推荐(0) 编辑

2023年4月14日 #

摘要: miniconda python中的对象的三个基本特征 查看id type()查看类型,print()查看值 python和java面相对象的区别 函数和类的对象特性 装饰器用到了那个特性 python中函数也可以当做返回值 函数赋值给另外一个变量 类赋值给另外一个变量 将函数,类添加到一个列表中 阅读全文
posted @ 2023-04-14 22:31 lazycookie 阅读(13) 评论(0) 推荐(0) 编辑

2023年4月11日 #

摘要: gitpython将每次的commit导出项目(可以导出到指定文件夹) import git import subprocess import os from git.repo import Repo from git.repo.fun import is_git_dir class GitRepo 阅读全文
posted @ 2023-04-11 22:38 lazycookie 阅读(35) 评论(0) 推荐(0) 编辑

2023年4月6日 #

摘要: click点击添加物体,shirft+click点击删除物体 <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>three.js webgl - interactive - voxel painter</tit 阅读全文
posted @ 2023-04-06 23:19 lazycookie 阅读(207) 评论(0) 推荐(0) 编辑

2023年4月5日 #

摘要: E:\公众号文章采集\fi_filter_过滤器\src\exact_新浪博客手机版提取连接.js const fs = require('fs'); const jsdom = require('jsdom'); const { JSDOM } = jsdom; fs.readdir('./htm 阅读全文
posted @ 2023-04-05 23:49 lazycookie 阅读(84) 评论(0) 推荐(0) 编辑

2023年4月4日 #

摘要: nodejs cheerio 提取超链接 import { log } from "console"; import { readFileSync, readdirSync, lstatSync, createWriteStream, mkdirSync, statSync, } from "fs" 阅读全文
posted @ 2023-04-04 19:03 lazycookie 阅读(22) 评论(0) 推荐(0) 编辑

摘要: python代码 main.py import os import re import shutil import sys import easygui from easygui import * from pathlib import Path class User(EgStore): def _ 阅读全文
posted @ 2023-04-04 19:02 lazycookie 阅读(15) 评论(0) 推荐(0) 编辑

2023年4月3日 #

摘要: import * as THREE from "three"; import { OrbitControls } from "three/examples/jsm/controls/OrbitControls"; export function initThree() { THREE.Object3 阅读全文
posted @ 2023-04-03 19:52 lazycookie 阅读(275) 评论(0) 推荐(0) 编辑

2023年3月30日 #

摘要: E:\song3\agv_backend_demo\gunicorn.conf.py # 监听内网端口 bind = '0.0.0.0:8001' # 工作目录 chdir = '/fsm/backend/app' # 并行工作进程数 workers = 4 # 指定每个工作者的线程数 thread 阅读全文
posted @ 2023-03-30 14:59 lazycookie 阅读(172) 评论(0) 推荐(0) 编辑

2023年3月27日 #

摘要: /Users/song/codelearn/sqlalchemy_learn/init_test_data.py #!/usr/bin/env python3 # -*- coding: utf-8 -*- import asyncio import random from faker import 阅读全文
posted @ 2023-03-27 22:10 lazycookie 阅读(179) 评论(0) 推荐(0) 编辑

2023年3月16日 #

摘要: /Users/song/codelearn/golang/bubble-master/go.mod module bubble go 1.13 require ( github.com/0xAX/notificator v0.0.0-20220220101646-ee9b8921e557 // in 阅读全文
posted @ 2023-03-16 21:28 lazycookie 阅读(15) 评论(0) 推荐(0) 编辑

2023年3月14日 #

摘要: golang导包 导包 同一个项目下的导包 文件的目录结构 . ├── README.md ├── go.mod ├── main.go ├── mymath │ ├── multip.go │ └── sum.go ├── tree.txt └── utilset └── hello.go 3 d 阅读全文
posted @ 2023-03-14 22:49 lazycookie 阅读(12) 评论(0) 推荐(0) 编辑

2023年3月12日 #

摘要: oop fp initialState从头到尾都没有变化 fp更喜欢递归代替循环 pure function side effect 使用递归实现for循环 递归实现数组的累加 const arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; function sumArr( 阅读全文
posted @ 2023-03-12 22:45 lazycookie 阅读(15) 评论(0) 推荐(0) 编辑

摘要: 在线运行lua的luatos 变量 a是本地变量 b是全局变量 nil 未赋值的变量c,其值是nil 批量赋值 16进制和科学计数法 字符串支持双引号和单引号 原始字符串 [[ ]]中的字符串保持原样 字符串拼接,使用两个点 字符串转数字,数字转字符串 tostring tonumber 'abc' 阅读全文
posted @ 2023-03-12 22:10 lazycookie 阅读(39) 评论(0) 推荐(0) 编辑

摘要: vscode中的live sass complier插件 文件分离 第四行,导入_header.sass文件 mixin 将重复使用的flexCenter作为一个mixin抽离出来,类似函数 一到五行,mixin;第十行,使用 mixin传参 $direction 继承extend 继承之后可以重写 阅读全文
posted @ 2023-03-12 17:06 lazycookie 阅读(11) 评论(0) 推荐(0) 编辑

2023年3月11日 #

摘要: gitcode上传代码之后的一些命令 Git global setup git config --global user.name "小怪兽" git config --global user.email "xxxxx@example.com" Create a new repository git 阅读全文
posted @ 2023-03-11 16:39 lazycookie 阅读(26) 评论(0) 推荐(0) 编辑

摘要: macOS 终端 (Terminal) 历史命令查询 默认显示部分命令行 history 只显示了部分命令行。 显示全部命令行 history 0 显示特定行开始的命令行 history 660 终端会打印出 660~最近一次输入的命令行。 阅读全文
posted @ 2023-03-11 16:10 lazycookie 阅读(729) 评论(0) 推荐(0) 编辑

摘要: sqlite系统命令 sqlite test.db 创建 test.db 文件并进入 sqlite3 sqlite>.database 查看数据库文件信息命令 (注意命令前带字符'.') sqlite>.schema 查看所有表的创建语句: sqlite>.schema table_name 查看指 阅读全文
posted @ 2023-03-11 16:06 lazycookie 阅读(1504) 评论(0) 推荐(1) 编辑

摘要: 进入 sqlite3 命令行模式 安装好 sqlite3 之后,在 linux 命令行中输入 sqlite3 , 进入 sqlite3 的命令行模式。 root@172:/# sqlite3 SQLite version 3.23.1 2018-04-10 17:39:29 Enter ".help 阅读全文
posted @ 2023-03-11 15:32 lazycookie 阅读(538) 评论(0) 推荐(0) 编辑

摘要: 创建model文件 from sqlalchemy import create_engine,Column,String,Integer from sqlalchemy.ext.declarative import declarative_base engine = create_engine("s 阅读全文
posted @ 2023-03-11 14:54 lazycookie 阅读(313) 评论(0) 推荐(0) 编辑

2023年3月10日 #

摘要: 1. 协程 在定义函数的时候在前面加上 async 修饰,在耗时任务那行代码使用 await 修饰,这时候调用函数,它就会返回一个协程(coroutine)对象,然后调用 asyncio.run() 把协程对象丢进去就能执行了 import asyncio import time async def 阅读全文
posted @ 2023-03-10 07:11 lazycookie 阅读(147) 评论(0) 推荐(0) 编辑

2023年3月5日 #

摘要: /admin-one-vue-tailwind-master/index.html <!DOCTYPE html> <html lang="zh"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="I 阅读全文
posted @ 2023-03-05 14:44 lazycookie 阅读(67) 评论(0) 推荐(0) 编辑

2023年3月4日 #

摘要: template tag <template> <button :class="classes" > <slot :iconSizeClasses="iconSizeClasses" /> </button> </template> script tag <script setup> import 阅读全文
posted @ 2023-03-04 08:55 lazycookie 阅读(110) 评论(0) 推荐(0) 编辑

摘要: 问题 git push origin master 行不通 然后就是直接git push,还是行不通,但是提示让我使用git push --set-upstream oring main,然后就是ok了 阅读全文
posted @ 2023-03-04 00:11 lazycookie 阅读(7) 评论(0) 推荐(0) 编辑

2023年3月3日 #

摘要: gitcode ssh 密钥配对 查看现有的 SSH 密钥 如果您已有 SSH 密钥,则可以使用它们来与 GitCode 的代码库进行连接。 默认情况下,Linux 和 macOS 系统上的 SSH 密钥存储在用户的主目录中的.ssh/子目录中,下表包括每种 SSH 密钥算法的默认文件名: 算法公钥 阅读全文
posted @ 2023-03-03 23:51 lazycookie 阅读(287) 评论(0) 推荐(0) 编辑

摘要: mockjs vue learn /Users/song/Downloads/vue3_demo_mockjs-master/__mock_learn/mock_learn/index.html <!DOCTYPE html> <html lang="en"> <head> <meta charse 阅读全文
posted @ 2023-03-03 23:34 lazycookie 阅读(15) 评论(0) 推荐(0) 编辑

2023年3月2日 #

摘要: E:\song2\paddler_ocr\paddleocr_learn00\le00.py from paddleocr import PaddleOCR # 2. 声明PaddleOCR类 ocr = PaddleOCR() img_path = './12.jpg' # 3. 执行预测 res 阅读全文
posted @ 2023-03-02 19:34 lazycookie 阅读(203) 评论(0) 推荐(0) 编辑

摘要: opencv 绘图 参数说明 绘制形状的函数有一些共同的参数: img:要绘制形状的图片 color:绘制的颜色 彩色图就传入 BGR 的一组值,如蓝色就是 (255,0,0) 灰度图,传入一个灰度值就行 thickness:线宽,默认为 1;对于矩形 / 圆之类的封闭形状而言,传入 - 1 表示填 阅读全文
posted @ 2023-03-02 17:34 lazycookie 阅读(132) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 20 下一页