spreadsheet examples here with

Win 10 Rust Installtion in D Disk with VSCode

(只记录了必须要内容,日后完善!) \1. rust的安装与环境变量: 要提前把下面两个环境变量配置好,这样是为了指定安装路径。否则会默认安装在 C 盘下。 CARGO_HOME: D:\Soft\Language\Rust\.cargo RUSTUP_HOME: D:\Soft\Language\ ......
Installtion VSCode Rust Disk with

关于再次出现 Could not open client transport with JDBC Uri: jdbc:hive2://node1:10000: java.net.ConnectException: 拒绝连接 (Connection refused) (state=08S01,code=0)

写在最前边——我报错是因为空间不足 当我时隔两个月再次看到这个报错的时候我是感到绝望的—— ——然而当我查了一遍百度发现唯一一个拥有相同报错解决方法的博客出自我之手的时候我的崩溃的—— ——在我发现曾经的方法无法解决现在的我的报错的时候,我觉得我的心都碎了QAQ 在经历了三天无果的尝试之后,我决定试 ......

连接MySQL报错{"Authentication to host 'PC10103' for user 'root' using method 'sha256_password' failed with message: Access denied for user 'root'@'PC10103' (using password: YES)"}

连接MySQL报错{"Authentication to host 'PC10103' for user 'root' using method 'sha256_password' failed with message: Access denied for user 'root'@'PC10103 ......
39 password 10103 using quot

2020CVPR_High-Resolution Image Synthesis with Latent Diffusion Models

1.AutoEncoder AutoEncoder(自编码器)是一种无监督学习的神经网络模型,用于学习有效的数据表示。它的目标是将输入数据编码成一种潜在的、紧凑的表示形式,然后从这个表示中重构原始输入。自编码器由两部分组成:编码器(Encoder)和解码器(Decoder)。编码器(Encoder) ......

The provided entity includes a relationship with an invalid value " is not a valid id for the relationship 'build' (ID: 80XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX)

记录一下 IOS上传新包到app store提示 The provided entity includes a relationship with an invalid value " is not a valid id for the relationship 'build' (ID: 80XXX ......

使用yarn安装依赖包出现“There appears to be trouble with your network connection. Retrying...”超时的提醒

我们在使用yarn安装依赖包文件的时候,可能会出现“There appears to be trouble with your network connection. Retrying...”超时的提醒,很有可能是因为yarn默认的镜像地址为国外,因此慢(超时)就说得过去了…… 1、问题描述 我们在 ......
connection Retrying appears network trouble

2311arxiv_Reti-Diff: Illumination Degradation Image Restoration with Retinex-based Latent Diffusion Model

论文疑点: 1. 怎样利用低维度紧凑的潜在空间减少了计算负担 ......

yarn按照依赖的时候报 info There appears to be trouble with your network connection. Retrying...

出现这个提示多数情况下是有使用代理软件的结果,我们只需要关闭代理即可1. 更换yarn镜像 yarn config set registry https://registry.npm.taobao.org 2.移除原代理 yarn config delete proxy ......
connection Retrying appears network trouble

[Bash] Benchmark with hyperfine

https://github.com/sharkdp/hyperfine hyperfine --runs 5 "CMD_1" "CMD_2" So it will run 5 times and compare CMD_1 vs CMD_2with a nice result summary ......
Benchmark hyperfine Bash with

[Bash] Send post request with payload to server by using curl

#!/bin/bash # url will be a param been passed in url=$1 curl -X POST http://localhost:3000/endpoint -d "{\"payload\":\"$url\"}" -H "content-type: appl ......
payload request server using Bash

pure-admin pnpm  ERR_PNPM_FROZEN_LOCKFILE_WITH_OUTDATED_LOCKFILE  Cannot perform a frozen installation because the version of the lockfile is incompatible with this version of pnpm

事情是这样的,用的开源pure-admin 的框架,用的是pnpm,本地环境都是可以的,但是发布到生成就报以下错误 然后看部署参数,是这样的,强制用了lock文件,本来也没问题 报错的意思是json 文件跟pnpm-lock.json 文件不匹配 但是本地看着是匹配的,随便挑选几个包版本看着也是一致 ......

gh-ost 报错 ERROR 1236 (HY000): A slave with the same server_uuid/server_id as this slave

使用 gh-ost 对表在线加索引时,第一次发生了下面的报错(使用gh-ost很长时间了,第一次遇到这个报错): [2023/12/12 11:48:08] [error] binlogstreamer.go:77 close sync with err: ERROR 1236 (HY000): A ......
server slave server_uuid server_id gh-ost

Java 7妙招:释放你的代码负担,try-with-resources登场

在Java编程的旅途中,资源管理曾是一座棘手的山。然而,随着Java 7引入的try-with-resources语句,我们仿佛找到了一把神奇的解锁钥匙,轻松释放了代码的负担。本文将深入探讨这项妙招,揭示其简洁而强大的魅力。 ......

[论文阅读] Replacing softmax with ReLU in Vision Transformers

Pre title: Replacing softmax with ReLU in Vision Transformers accepted: Arxiv 2023 paper: https://export.arxiv.org/abs/2309.08586 code: None 关键词:atten ......
Transformers Replacing softmax Vision 论文

mysql create store procedure for loops, and with parameters respectively

drop procedure if exists insert_into_t2_sp; DELIMITER // CREATE PROCEDURE insert_into_t2_sp() BEGIN DECLARE i INT DEFAULT 2; WHILE (i <= 1000000) DO I ......

26-进阶SQL-递归查询(with recursive)

MySQL with Recursive是一种基于递归思想的MySQL查询方式,可以实现对数据的递归查询和处理,返回符合条件的数据,在MySQL 8.0版本中,该功能被正式引入。 MySQL with Recursive有什么作用 MySQL with Recursive的作用是基于一组初始数据,进 ......
recursive with SQL 26

Dependency injection framework -- Decoupled packages example (multiple containers) -- ADD DIP IMPROVEMENT

Dependency injection framework https://python-dependency-injector.ets-labs.org/index.html Dependency Injector is a dependency injection framework for ......

PostgreSQL - Start a container with docker compose file

Docker compose file: services: postgres: image: postgres:16-alpine environment: - POSTGRES_USER=root - POSTGRES_PASSWORD=aaa - POSTGRES_DB=zimple_bank ......
PostgreSQL container compose docker Start

《Mamba: Linear-Time Sequence Modeling with Selective State Spaces》阅读笔记

论文标题 《Mamba: Linear-Time Sequence Modeling with Selective State Spaces》 作者 Albert Gu 和 Tri Dao 初读 摘要 Transformer 架构及其核心注意力模块 地位:目前深度学习领域普遍的基础模型。 为了解决 ......

16.What are the basic elements of an argument according to Toulmin Model? How do you evaluate evidences with the intellectual standards?

Round 1: Understanding the Basic Elements of Toulmin Model Speaker 1 (Student A): Hello, everyone! Let's start by discussing the basic elements of the ......

14.Do you have a tentative plan for you reading and/or research writing project for this semester? Create a timetable with specific goals, objectives, ways to realize them and timelines.

Round 1: Discussing the Importance of a Tentative Plan Speaker 1 (Graduate Student A): Greetings, everyone. Today, our topic revolves around having a ......
objectives you for and tentative

frida.ProcessNotFoundError: unable to find process with name 'xxx'

前言全局说明 frida 没有 hook 找到指定进程 一、原因 你没有启动 APP 是否开启端口转发 (adb forward) 官方修改了包名 官方把包名由 com.xxxx 改成中文名 二、解决方法 方法1、查看进程名 启动 frida-server 端后,在物理机的 cmd终端命令行 窗口中 ......
ProcessNotFoundError process unable frida 39

ARC169 B Subsegments with Small Sums 题解

Link ARC169 B Subsegments with Small Sums Question \(x\) 是一个序列,定义 \(f(x)\) 为把序列 \(x\) 切成几段,每段的和不能超过 \(S\) 的最小段数 给出序列 \(A=(A_1,A_2,\cdots,A_N)\) 求: \[\ ......
题解 Subsegments Small with Sums

释放资源的方式try-with-resources

1.try-catch-finally 2.try-with-resources 使用方法 try(//这里定义你要使用的资源){} catch(){} 注意:try()里只能存放流对象(资源对象),什么是资源呢?就是会自动实现AutoCloseable接口 使用2方法时会在资源使用完毕后自动对其释 ......

Unsourced Multiple Access With Random User Activity论文复现

仿真内容 文件中包含了一个关于无源多用户接入(Unsourced Multiple Access,UMA)系统的 MATLAB 数值例程,用于评估随机用户活动情况下的随机编码界限。 这个工作主要在论文 [1] 中介绍,该论文题为 "Unsourced Multiple Access With Ran ......
Unsourced Multiple Activity Access Random

如何解决yum安装软件时报错This system is not registered with an entitlement server. You can use……

Red Hat、基于red hat源代码所编译的cent os 都会遇到这种问题,红帽需要对当前的系统进行注册后才能使用yum安装软件,解决方法多种多样,如直接注册+订阅/换yum源/干掉Red Hat Subscription Manager订阅管理器 解决方法:这里介绍最简单的一种:禁用Red ......
entitlement registered 时报 system server

PHP ‘Array and string offset access syntax with curly braces is deprecated’ 错误的原因和解决办法...

其实从错误信息里就看出错误原因了:Array and string offset access syntax with curly braces is deprecated,这是 PHP 7.4 版本的更新,从 7.4 后,只能使用 $value[0] 的方式来获取字符串偏移,$value{0} 已 ......
deprecated 错误 原因 办法 access

Paper Reading: Oversampling with Reliably Expanding Minority Class Regions for Imbalanced Data Learning

为了设计更有效的插值过采样算法,本文提出了一种新的插值过采样方法 OREM。OREM 在原始少数类样本周围找到候选少数类区域,然后利用这些候选区域识别不包含任何多数类样本的干净子区域。它们被认为是潜在的少数类区域,所以通过将合成样本填充到干净子区域可以增强少数类的表达能力。OREM 方法的思路很简单... ......

Predicting gene expression from histone modifications with self-attention based neural networks and transfer learning

Predicting gene expression from histone modifications with self-attention based neural networks and transfer learning Yuchi Chen 1, Minzhu Xie 1, Jie ......

Graph regularized non-negative matrix factorization with prior knowledge consistency constraint for drug-target interactions prediction

Graph regularized non-negative matrix factorization with prior knowledge consistency constraint for drug-target interactions prediction Junjun Zhang 1 ......