上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 128 下一页
摘要: //WebAPI namespace BooksServices { public class Program { public static void Main(string[] args) { Console.WriteLine(DateTime.Now); var builder = WebA 阅读全文
posted @ 2025-12-05 00:21 FredGrit 阅读(10) 评论(0) 推荐(0)
摘要: 1.New WebApi solution,add controller,BooksController namespace BooksServices.Models { public class Book { public int Id { get; set; } public string Na 阅读全文
posted @ 2025-12-04 23:48 FredGrit 阅读(8) 评论(0) 推荐(0)
摘要: import uuid from datetime import datetime import json def main(cnt=1000000): t1=datetime.now() print(f'start at {t1}') book_list=[] for i in range(1,c 阅读全文
posted @ 2025-12-04 22:47 FredGrit 阅读(13) 评论(0) 推荐(0)
摘要: Install-Package Prism.Wpf; Install-Package Prism.DryIOC; using System.Configuration; using System.Data; using System.Windows; namespace WpfApp26 { /// 阅读全文
posted @ 2025-11-27 22:51 FredGrit 阅读(7) 评论(0) 推荐(0)
摘要: import time import threading import datetime import pandas as pd class Book(): def __init__(self,id,name,author,comment,content,isbn,summary,title,top 阅读全文
posted @ 2025-11-26 21:20 FredGrit 阅读(8) 评论(0) 推荐(0)
摘要: import datetime import pandas as pd import time class Book(): def __init__(self,id,name,isbn,comment,content,summary,title,topic): self.id=id self.nam 阅读全文
posted @ 2025-11-26 20:47 FredGrit 阅读(14) 评论(0) 推荐(0)
摘要: pyinstaller --onefile PythonTest9.py import uuid import datetime import time def get_uuid_time(): return f'{uuid.uuid4().hex}_{datetime.datetime.now() 阅读全文
posted @ 2025-11-21 23:40 FredGrit 阅读(10) 评论(0) 推荐(0)
摘要: import uuid import datetime import time import json import tkinter as tk import tkinter.messagebox as msgBox class Book(): def __init__(self,id,name,i 阅读全文
posted @ 2025-11-21 23:21 FredGrit 阅读(8) 评论(0) 推荐(0)
摘要: import datetime import uuid import time import numpy as np import threading def get_uuid_time(): return f"{uuid.uuid4().hex}_{datetime.datetime.now(). 阅读全文
posted @ 2025-11-20 22:47 FredGrit 阅读(6) 评论(0) 推荐(0)
摘要: python -m pip install pyinstaller -i https://pypi.tuna.tsinghua.edu.cn/simple/ //PythonTest6.pyimport datetime import uuid import time import numpy as 阅读全文
posted @ 2025-11-20 22:16 FredGrit 阅读(9) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 128 下一页