1
注册GCP150刀相关【有手就行】
18 阅
2
常用安装脚本知识24年3月27日更新
16 阅
3
免费二级域名,包括可托管到cf的二级域名
15 阅
4
图片加速接口:缓存图片,加速访问,解决防盗链
9 阅
5
永久免费节点搭建!通过Cloudflare Worker部署免费的VLESS节点,4K高速,解锁Netflix、ChatGPT
9 阅
最新消息
apple001
· 04-13
给博主点赞
25263
· 03-28
收藏了。
123
· 02-05
春天来了,心情也好了。
123
· 02-03
太全了。
Typecho
· 01-26
欢迎加入 Typecho 大家族
首页
默认
日常
学习
技术
留言板
友链
关于
登 录
Search
标签搜索
cloudflare
壁纸
CF
白嫖
安装
脚本
图片
Linux
docker
域名
桌面壁纸
手机壁纸
NAT
LXC
哪吒
高清壁纸
优选
github
vps
代码
ws01
首页
栏目
默认
日常
学习
技术
留言板
友链
关于
登录
登 录
学习,技术
共 39 篇
1 人围观
VPS剩余价值计算器 V5.0
VPS剩余价值计算器 V5.0 本内容转载自: https://www.nodeseek.com/post-29398-1感谢 juhua大佬 修正了部分CSS错误改用js重写计算部分输出计算结果后原来输入的部分内容不会自动清除也就是说,现在可以脱离php环境运行了,直接另存为 shengyu.html后缀即可,甚至可以在本地用chrome直接打开该html文件即可运行 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>VPS交易计算器 V5.0</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> </head> <body> <div class="container mt-5"> <h1 class="mb-4">VPS交易计算器</h1> <form id="calculatorForm"> <div class="form-group"> <label for="purchasePrice">续费价格:</label> <input type="number" class="form-control" id="purchasePrice" name="purchasePrice" step="0.01" required> </div> <div class="form-group"> <label for="tradePrice">交易价格:</label> <input type="number" class="form-control" id="tradePrice" name="tradePrice" step="0.01" required> </div> <div class="form-group"> <label for="currentDate">当前日期:</label> <input type="date" class="form-control" id="currentDate" name="currentDate" required> </div> <div class="form-group"> <label for="expiryDate">到期日期:</label> <input type="date" class="form-control" id="expiryDate" name="expiryDate" required> </div> <div class="form-group"> <label for="paymentFrequency">付款周期:</label> <select class="form-control" id="paymentFrequency" name="paymentFrequency" required> <option value="yearly">年付</option> <option value="halfyearly">半年付</option> <option value="quarterly">季付</option> <option value="monthly">月付</option> <option value="two-yearly">二两付</option> <option value="three-yearly">三年付</option> <option value="five-yearly">五年付</option> </select> </div> <button type="button" class="btn btn-primary" onclick="calculateRemainingValue()">计算剩余价值</button> </form> <div class="result mt-4" style="display: none;"> <h3>计算结果:</h3> <p>续费价格: <span id="resultPurchasePrice"></span></p> <p>剩余价值计算周期: <span id="resultPaymentFrequency"></span></p> <p>剩余价值: <span id="resultRemainingValue"></span></p> <p>交易价格: <span id="resultTradePrice"></span></p> <p>溢价金额: <span id="resultPremium"></span></p> <p>购买建议: <span id="resultAdvice"></span></p> </div> <div class="mt-4"> <h3>计算过程:</h3> <div class="accordion" id="calculationProcess"> <div class="card"> <div class="card-header" id="headingOne"> <h2 class="mb-0"> <button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne"> 展开计算过程 </button> </h2> </div> <div id="collapseOne" class="collapse" aria-labelledby="headingOne" data-parent="#calculationProcess"> <div class="card-body" id="calculationDetails"> <!-- Calculation details will be displayed here --> </div> </div> </div> </div> </div> </div> <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.3/dist/umd/popper.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> <script> function calculateRemainingValue() { // Retrieve input values const purchasePrice = parseFloat(document.getElementById("purchasePrice").value); const tradePrice = parseFloat(document.getElementById("tradePrice").value); const currentDate = new Date(document.getElementById("currentDate").value); const expiryDate = new Date(document.getElementById("expiryDate").value); const paymentFrequency = document.getElementById("paymentFrequency").value; // Calculate remaining days const remainingDays = Math.floor((expiryDate - currentDate) / (24 * 60 * 60 * 1000)); const remainingMonths = Math.floor(remainingDays / 30); // Calculate remaining value let paymentFrequency_ = ""; let remainingValue = 0; switch (paymentFrequency) { case "quarterly": paymentFrequency_ = "季付"; remainingValue = purchasePrice / 90 * remainingDays; break; case "yearly": paymentFrequency_ = "年付"; remainingValue = purchasePrice / 365 * remainingDays; break; case "halfyearly": paymentFrequency_ = "半年付"; remainingValue = purchasePrice / 180 * remainingDays; break; case "monthly": paymentFrequency_ = "月付"; remainingValue = purchasePrice / 30 * remainingDays; break; case "two-yearly": paymentFrequency_ = "二两付"; remainingValue = purchasePrice / (365 * 2) * remainingDays; break; case "three-yearly": paymentFrequency_ = "三年付"; remainingValue = purchasePrice / (365 * 3) * remainingDays; break; case "five-yearly": paymentFrequency_ = "五年付"; remainingValue = purchasePrice / (365 * 5) * remainingDays; break; } const premium = tradePrice - remainingValue; // Display results document.getElementById("resultPurchasePrice").textContent = purchasePrice; document.getElementById("resultPaymentFrequency").textContent = paymentFrequency_; document.getElementById("resultRemainingValue").textContent = remainingValue; document.getElementById("resultTradePrice").textContent = tradePrice; document.getElementById("resultPremium").textContent = premium; // Determine advice let advice = ""; if (premium > 0) { advice = "存在溢价,请君三思而后行"; } else if (premium < 0) { advice = "卖家血亏,快买,错过拍断大腿!"; } else { advice = "不议价,良心卖家!"; } document.getElementById("resultAdvice").textContent = advice; // Display calculation details const calculationDetails = ` <p>剩余月份:${remainingMonths} 个月(剩余天数:${remainingDays} 天)</p> <p>剩余价值 = 历史购买价格 / ${paymentFrequency === 'yearly' ? 365 : (paymentFrequency === 'halfyearly' ? 180 : (paymentFrequency === 'quarterly' ? 90 : (paymentFrequency === 'monthly' ? 30 : (paymentFrequency === 'two-yearly' ? 730 : (paymentFrequency === 'three-yearly' ? 1095 : 1825)))))} * 剩余天数</p> <p>剩余价值 = ${purchasePrice} / ${paymentFrequency === 'yearly' ? 365 : (paymentFrequency === 'halfyearly' ? 180 : (paymentFrequency === 'quarterly' ? 90 : (paymentFrequency === 'monthly' ? 30 : (paymentFrequency === 'two-yearly' ? 730 : (paymentFrequency === 'three-yearly' ? 1095 : 1825)))))} * ${remainingDays} = ${remainingValue}</p> `; document.getElementById("calculationDetails").innerHTML = calculationDetails; // Show the result section document.querySelector(".result").style.display = "block"; } </script> </body> </html>
7个月前
0
0
2 人围观
分享几个github加速,需要的自取
分享几个github加速,需要的自取 本文转载自:https://www.nodeseek.com/post-77725-1HK https://gh.mzec.top/ https://gh.mixyun.cyou/ http://119.28.4.250/ KR https://git.domob.org/ http://www.subook.link:88/ http://152.67.215.57:8081/ http://138.2.123.193:8090/ http://52.78.23.245:9999/ http://193.123.237.163:8080/ JP https://uhk.corpa.me/ https://ghproxy.053000.xyz/ http://176.119.149.164:8110/ http://38.47.124.28:8080/ http://185.184.223.102:8880/ http://141.147.171.213:8888/ http://152.69.198.119:8000/ US http://212.50.233.214:8888/ https://gh.nxnow.top/ 打开网站:https://mirror.ghproxy.com/
8个月前
0
0
3 人围观
如何解决HTML网页中文显示乱码的方法
如何解决HTML网页中文显示乱码的方法 第一:定义网页显示编码。如果不定义网页编码,那么我们浏览网页的时候,IE会自动识别网页编码,这就有可能会导致中文显示乱码了。所以我们做网页的时候,都会用“”来定义网页编码。(我们常见的Unicode码是utf-8)<html> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <head>把文件保存成utf-8的编码,仿着上面的位置,在页面加上中间那行代码,如果还有乱码就把utf-8改成gbk第二:网页存储编码。大家经常会忽略这个问题。我就用建站常用工具Dreamweaver来说吧。我们用DW新建一张默认的编码保存的时候都会保存为两种编码uft8格式或gbk格式,这个可以在Dreamweaver->编辑->首选项->新建文档 进行设置。如果你设置了默认utf8格式,那么网页存储编码就是utf8,同时使用来什么网页显示编码也为utf8,如果不一致就会导致乱码。我这样说明,不知道是否说明了问题。也就是说,我们在遇到乱码问题的时候,是由于编码不一致导致的。这个是html网页的乱码情况的总结,我们举一反三,我们在使用php虚拟主机建站的时候遇到乱码问题的时候,我们也要通过三个因素来考虑解决问题。我总结的三个因素:网页显示编码、网页存储编码、数据库编码网站出现中文显示乱码的时候,请先从这三个方向去考虑解决问题,将事半功倍。
8个月前
0
0
9 人围观
图片加速接口:缓存图片,加速访问,解决防盗链
图片加速接口:缓存图片,加速访问,解决防盗链 一、加速接口1. WordPress提供的图片加速https://i0.wp.com/{url} https://i1.wp.com/{url} https://i2.wp.com/{url} https://i3.wp.com/{url} 其中url部分是不带协议头的,即https://2. 百度加速https://image.baidu.com/search/down?url={url} url填完整url,注意该url需要是直链,重定向链接会失效。3. CdnJson提供https://cdn.cdnjson.com/{url} 其中url部分是不带协议头的,即https:// 注意该url需要是直链,重定向链接会失效。4. 搜狗图片https://img02.sogoucdn.com/v2/thumb/retype_exclude_gif/ext/auto/q/95/crop/xy/ai/t/0/?appid=122&url={url} url为完整url5. 广西龙讯http://collect34.longsunhd.com/source/plugin/yzs1013_pldr/getimg.php?url={url} url为完整链接进阶使用https://pic.2ge.org/cdn/?url={url} url填完整url整合接口,使用这个接口会随机挑选上述一个接口进行加速,达到负载均衡的效果。同时,也能防止其中有接口挂了,也能进行筛除。转载自: 勿埋我心
8个月前
0
0
2 人围观
DD一个轻量的Alpine Linux 发行版 更轻 更快 更安全,也可以安装为其它官方系统
DD一个轻量的Alpine Linux 发行版 更轻 更快 更安全,也可以安装为其它官方系统 项目来源于:https://github.com/leitbogioro/Tools Alpine Linux 是一个轻量级的 Linux 发行版,以简单、小巧、安全和高效而著称。它的设计目标是提供一个最小化的基础系统,同时保持足够的灵活性,以便用户可以根据需要添加他们自己的软件包。Alpine Linux 使用了 musl libc 和 BusyBox,这些组件使其具有小体积和较低的资源消耗。主要特点包括:小巧: Alpine Linux 非常小,因此启动和运行速度较快,适用于嵌入式系统和资源受限的环境。安全性: Alpine Linux 采用 PaX 和 grsecurity 内核补丁,以提供额外的安全性层。此外,其默认配置也有助于减少系统的潜在攻击面。包管理: Alpine 使用 apk 包管理器,该管理器简单而有效。它支持轻松的软件包安装、更新和删除。Docker 使用: 由于其小巧的体积和快速启动时间,Alpine Linux 在容器化领域,特别是在 Docker 中,变得非常受欢迎。总体而言,Alpine Linux 是一个适用于许多用途的轻量级 Linux 发行版,特别适合用于容器化和嵌入式系统。安装alpine系统wget --no-check-certificate -qO InstallNET.sh 'https://raw.githubusercontent.com/leitbogioro/Tools/master/Linux_reinstall/InstallNET.sh' && chmod a+x InstallNET.sh{dotted startColor="#ff6c6c" endColor="#1989fa"/}一、bash InstallNET.sh -alpine安装后的端口,用户名,初始密码分别是:22 root LeitboGi0ro 开机后进系统后密码记得用passwd修改 更新系统:apk update && apk upgrade安装curlapk add curl安装docker:apk update && apk add dockerrc-update add docker defaultservice docker start安装docker-compose:curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-composechmod +x /usr/local/bin/docker-compose开启BBRv3:cat > /etc/sysctl.conf << EOFnet.core.default_qdisc=fq_pienet.ipv4.tcp_congestion_control=bbrEOFsysctl -p{dotted startColor="#ff6c6c" endColor="#1989fa"/}如需安装Debian 12 二bash InstallNET.sh -debian{dotted startColor="#ff6c6c" endColor="#1989fa"/}如需安装Ubuntu 22.04 三bash InstallNET.sh -ubuntu如需安装Windows 11 Pro for Workstations 四bash InstallNET.sh -windows
9个月前
0
0
1
...
5
6
7
8
您是第
29671
位访客