[Day30]30天心得感想

终于完成30天的练习了,佛祖保佑。 原本一开始的目标是利用python预测股价,但发生了技术上的问题导致最后其实我没有真正的达成我当初的目标,不过这

研究 OpenAI 第二篇: 快速入门 Quickstart

画面较友善的连结:https://hello-kirby.hashnode.dev/openai-quickstart 来源:https://beta.openai.com/docs/quickstart OpenAI已经训练了前沿的语言模型,它们非常擅长理解和生成

Promise.all() 案例: 异步查询出所有数据后,再一起回传

promise的所有用法 这裏是使用 Promise.all(): 当你有多个 Promise 事件需要一起执行与完成时,就可以使用 Promise.all; 所以使用的时候,需要把异步函数组合

Wuuu学习笔记

CEH 道德骇客 Module1 1.资安元素 资安元素 CIAAN Confidentiality 机密性 Integrity 数据完整性-确保资料不会被串改 Availability 可用性 Authenticity 真实性 Non-Repudiation 不

[Leetcode Week 2]Blind 18~33、Weekly Contest 323

前言 先附上前两篇文章, [Leetcode Week1]Blind1~17、Weekly Contest 322 [Leetcode 前传] 个人背景、优质资源分享 这礼拜接近学期末,事情比较多所以拖到今天才发文

Day04-LeetCode-SQL启航~

花了点时间完成昨日进度,加油!菜鸟! 608. Tree Node Example 1: +-------------+------+| Column Name | Type |+-------------+------+| id | int || p_id | int |+-------------+------+id is the

Soccer Super Star MOD APK (Unlimited Everything)

Are you a football fan tired of lackluster soccer games? Do you want to try your hand at managing experienced players but can't find the right game? Look no further than Soccer Super Star for Android.

Python学习笔记: Pandas栏位内容自订排序

本文同步发表于小弟自架网站:微确幸资讯站 範例资料如下: 学年:108, 109 学期:1, 2 学制:博士班, 硕士班, 大学部 性别:女, 男 import pandas as pdimport n

ISO 27001 资讯安全管理系统 【解析】(四十)

(五)监控量测流程 下图为典型监控量测的流程: 定义监控量测资讯需求 从第三方需求、组织策略与方向、资讯安全政策与目标及风险处理决定需要监控量

<<Accessing Inherited Functions>> _HakerRank_C++

#includeiostreamusing namespace std;class A{ public: A(){ callA = 0; } private: int callA; void inc(){ callA++; } protected: void func(int a) { a = a * 2; inc(); } public: int getA(){ return callA; }};

<<Inheritance Introduction>> _HakerRank_C++_Inhe

#include cmath#include cstdio#include vector#include iostream#include algorithmusing namespace std;class Triangle{ public: void triangle() { coutI am a triangle\n; }};class Isosceles : public Triangle{