稀样
码龄11年
关注
提问 私信
  • 博客:58,236
    社区:354
    问答:794
    动态:2
    59,386
    总访问量
  • 38
    原创
  • 1,253,038
    排名
  • 4
    粉丝
  • 0
    铁粉
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:江苏省
  • 加入CSDN时间: 2013-08-14
博客简介:

u011692164的专栏

查看详细资料
个人成就
  • 获得14次点赞
  • 内容获得2次评论
  • 获得69次收藏
  • 代码片获得129次分享
创作历程
  • 21篇
    2022年
  • 6篇
    2020年
  • 1篇
    2019年
  • 4篇
    2018年
  • 2篇
    2017年
  • 2篇
    2016年
  • 3篇
    2014年
成就勋章
TA的专栏
  • CI
    2篇
  • Linux
    4篇
  • web
    12篇
  • 一些题目
    4篇
  • mvn
    2篇
  • 考试
    2篇
  • 教练课程
  • python
    1篇
  • 工具
  • ant
    1篇
  • 旅游
  • mysql
  • opencv
    2篇
  • 安全
    2篇
  • 神经网络
  • 私人
    2篇
  • Django
    2篇
  • 前端
    1篇
  • struts2
    2篇
创作活动更多

HarmonyOS开发者社区有奖征文来啦!

用文字记录下您与HarmonyOS的故事。参与活动,还有机会赢奖,快来加入我们吧!

0人参与 去创作
  • 最近
  • 文章
  • 代码仓
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

springboot模板文件工程

发布资源 2023.01.11 ·
7z

spring-boot-reference.pdf

发布资源 2022.12.15 ·
pdf

Junit4测试用例示例

发布资源 2022.12.15 ·
zip

powermock-core

发布资源 2022.12.15 ·
jar

mokito-core

发布资源 2022.12.15 ·
jar

spring-cloud-demo2-20221020

发布资源 2022.10.20 ·
7z

spring-cloud-demo2.7z

发布资源 2022.09.06 ·
7z

修改Linux环境时区

设置时区
原创
发布博客 2022.08.25 ·
228 阅读 ·
0 点赞 ·
1 评论 ·
0 收藏

提交代码gerrit报错remote unpack failed解决方法

问题如下Admin@PS2020XTKFOPCF MINGW64 /d/IdeaProjects/Spring (master)$ git push --no-thin origin HEAD:refs/for/masterEnumerating objects: 30, done.Counting objects: 100% (30/30), done.Delta compression using up to 12 threadsCompressing objects: 100% (21
原创
发布博客 2022.04.13 ·
4069 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

gerrit安装成功后使用git更新代码

Admin@PS2020XTKFOPCF MINGW64 /d/study/gerrit$ git clone ssh://alice@192.168.100.131:29418/J2EE.gitCloning into 'J2EE'...remote: Counting objects: 2, doneremote: Finding sources: 100% (2/2)remote: Total 2 (delta 0), reused 0 (delta 0)Receiving object.
原创
发布博客 2022.04.09 ·
1366 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

gerrit搭建过程

gerrit环境搭建
原创
发布博客 2022.04.07 ·
2638 阅读 ·
0 点赞 ·
0 评论 ·
7 收藏

A 5-Card Hand

Problem 4: A 5-Card Hand Write a C++ program to generate a random hand of FIVE poker cards from a deck of 52 poker cards, and determine the type of poker hand it is. The input and output of your program as are follows: Input: • An integer x that
原创
发布博客 2022.03.18 ·
411 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Shift Cipher

Problem 3: Shift Cipher Write a C++ program which encrypts and decrypts a sequence of input characters using an algorithm adapted from the Vignѐre cipher as described below. We first consider the algorithm to encrypt/decrypt a single character: To
原创
发布博客 2022.03.18 ·
313 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Recurrent Neural Networks

Problem 2: Recurrent Neural Networks Recurrent neural networks (RNNs) are deep-learning architectures which are particularly powerful in dealing with time-series (e.g., financial) and natural language data. In this problem, you are going to write a p
原创
发布博客 2022.03.18 ·
1124 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Palindromic Numbers

Problem 1: Palindromic Numbers A palindromic number is one that reads the same both ways, from the beginning or from the end. For example, 525 and 8448 are palindromic numbers. Note that 525 and 8448 are also products of two 2-digit numbers: 525 = 15
原创
发布博客 2022.03.18 ·
395 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

图书订购系统前端设计

图书订购系统body { margin: 0; padding: 0;/* font: 12px/1.5 Tahoma, Helvetica, Arial, sans-serif; */}ul,li,{margin:0;padding:0;}ul { list-style: none;}#root { margin: 10px; wi
原创
发布博客 2022.03.17 ·
358 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

cookie对象简介

目录设置读取Cookie示例设置的Cookie包含中文字符时Cookie通常用来记录客户的某些信息,比如客户的用户名及客户的喜好等session会随浏览器关闭而失效,但Cookie会一直存放在客户端机器上,直到超出Cookie的生命期限。设置读取Cookie示例示例代码结构addCookie.jsp<%@ page contentType="text/html;charset=UTF-8" language="java" %><html>
原创
发布博客 2022.03.17 ·
379 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

session对象介绍

session对象通常用于跟踪用户的会话信息,如判断用户是否登录系统,或者在购物车应用中,跟踪用户购买的商品等。测试session对象示例代码结构shop.jsp<%@ page contentType="text/html;charset=UTF-8" language="java" %><html><head> <title>Shop</title></head><body><
原创
发布博客 2022.03.17 ·
2420 阅读 ·
2 点赞 ·
0 评论 ·
5 收藏

JSP的7个动作指令--forward指令、include指令

一、测试forward带参数传递示例代码结构basic.jsp<%@ page contentType="text/html;charset=UTF-8" language="java" %><html><head> <title>Basic Page</title></head><body><h3> basic page</h3><jsp:forward
原创
发布博客 2022.03.17 ·
1690 阅读 ·
0 点赞 ·
0 评论 ·
7 收藏

JSP 三大指令

JSP 三大指令
原创
发布博客 2022.03.16 ·
124 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏
加载更多