快速注册 ChatGPT
注意:本方法使用的谷歌邮箱登录,所以你要有谷歌邮箱,谷歌邮箱注册大同小异,自己去谷歌官网注册即可
快速注册 ChatGP 就两点:
魔法
海外手机号
国内手机卡问题首先,OpenAl 是不能使用国内手机号注册的,那怎么办呢?我们可以选择虚拟号码(不要尝试干坏事)。
我们可以先注册这个网站的账户:https://sms-activate.org/这个网站很强大。
注册后登录,如果你没有充值,可以先去充值。
https://sms-activate.org/buy
向下翻,可以看到支付宝支付
进入,充值 2 美元
扫码支付
回到首页,搜索并选择 OpenAi 服务。
点击 OpenApi,会弹出选择国家的界面,我选择的巴西的卡(很稳定,每次都能收到短信)
注册 OpenAi 账户前往 OpenAi 首页,地址:https://chat.openai.com
选择“谷歌账号注册”(提前自己注册一个账号)
输入密码
超过 18 岁即可
点击继续,选择巴西
去短信平台购买巴西的短信
复制手机号
点击发送手机 ...
Java 文件大小
文件大小用于衡量计算机文件包含多少数据,或者消耗其多少存储空间。 文件大小通常以字节表示。
在 Java 中,我们可以使用File,FileChannel,Files和 Apache Commons 的FileUtils确定文件的大小。 在新代码中,应该使用Files类。
示例中将使用位于src/main/resources目录中的words.txt文件:
1green, chair, pen, computer, apple, book, scissors
使用File的文件大小File的length()方法返回文件大小。 这是找出 Java 文件大小的最古老的 API。
JavaFileSizeEx.java : 使用File的length()方法确定文件大小
123456789101112public class JavaFileSizeEx { public static void main(String[] args) { String fileName = "src/main/resources/words.txt&q ...
13 个 颜色转换 的高级方法🌈
开发中经常需要在 JavaScript 中使用颜色,而想高效处理这些,又需要对颜色格式和转换有一定的了解。本文总结了 13 个代码片段,可以满足大部分日常的需求,从随机生成十六进制的颜色,到在十六进制和 RGB 值之间转换,甚至一些更高级的技巧,比如使用 HSL 格式来改变颜色的亮度等。
随机生成十六进制颜色12345678//随机生成十六进制颜色const randomHexColorCode = () => { let n = (Math.random() * 0xfffff * 1000000).toString(16); return "#" + n.slice(0, 6);};//使用randomHexColorCode(); // '#e34155'
RGB 转十六进制123456//RGB转十六进制const RGBToHex = (r, g, b) => ((r << 16) + (g << 8) + b).toString(16).padStart(6, &qu ...
Most popular Vue.js plugins & packages
A Javascript framework such as Vue.js is enhanced by a healthy ecosystem of plugins and packages that make development reliable, quick, and easy. Since Vue.js is the chosen framework of an international community of developers, there is a growing repository of plugins and packages that you can use in your projects. This article showcases 15 popular VueJs plugins for Vue 2 and Vue 3.
Looking to build an app but don’t know what packages to choose? This list should help. We’ll explore each one in d ...
Advantages of Pinia vs Vuex
What is Pinia?By now, you’ve probably heard that Pinia is the officially recognized state management library for Vue.js. Evan You even referred to it as the de facto Vuex 5. But do you know why you should be using Pinia over Vuex and how to use Pinia? In this article, we’ll explain why, in the fight between Vuex vs Pinia, Pinia is the clear winner for your Vue app’s state management. But first, let’s set some groundwork and answer some common questions.
Who created Pinia?Pinia was created by Ed ...
Utility-First CSS with Tailwind
In the past few years, utility-first CSS has been a popular trend within the front-end landscape. You might have seen it mentioned alongside a tool called Tailwind CSS.
So what is “utility”?
What problem does this utility-first approach solve?
How does Tailwind fit into this?
And most importantly: how do you apply Tailwind in a Vue.js application?
We’re going to answer all of that in this tutorial. And if you prefer watching videos, you can check out the Utility-First CSS with Tailwind course fr ...
Vite vs Webpack
Vite or the Vue CLI: Which One To ChooseAs the Vue ecosystem has matured, we’ve been introduced to a number of new technologies. While some developers may have started with just a plain JavaScript file and included Vue on the page, over time using bundlers and command-line interfaces has become more standard when developing Vue applications.
Vue doesn’t force you into any specific decisions on how you handle development or bundling, but the ecosystem is aided by a number of tools such as the Vue ...
Vue skills to master in 2023
As the front-end development world continues to evolve, the Vue.js framework and its team of sage core team members is at the leading edge of innovation. As a Vue developer, now more than ever there are new skills, tools and libraries you can add to your tool chest so you can be the best Vue developer you can be in 2023.
So what exactly should us Vue devs be focusing on for 2023? This article serves as your guide to the hot topics, tools and trends that you can stay on top of to elevate your cod ...
Vue 排行榜
Vue 排行榜资料
#
Repository
Description
Stars
Updated
1
shfshanyue/Daily-Question
互联网大厂内推及大厂面经整理,并且每天一道面试题推送。每天五分钟,半年大厂中
3959
2022-08-02
2
xugaoyi/vuepress-theme-vdoing
🚀 一款简洁高效的 VuePress 知识管理&博客(blog)主题
2386
2022-07-31
3
inoutcode/ethereum_book
精通以太坊 (中文版)
2304
2022-06-26
4
GitHub-Laziji/VBlog
使用 GitHub API 搭建一个可动态发布文章的博客
1456
2022-05-10
5
llldddbbb/dbblog
基于 SpringBoot2.x+Vue2.x+ElementUI+Iview+Elasticsearch+RabbitMQ+Redis+Shiro 的多模块前后端分离的博客项目
1132
2022-06 ...
Java 排行榜
Java 排行榜资料
#
Repository
Description
Stars
Updated
1
CyC2018/CS-Notes
:books: 技术面试必备基础知识、Leetcode、计算机操作系统、计算机网络、系统设计
154999
2022-07-07
2
Snailclimb/JavaGuide
「Java 学习+面试指南」一份涵盖大部分 Java 程序员所需要掌握的核心知识。准备 Java 面试,首选 JavaGuide!
125786
2022-08-02
3
MisterBooo/LeetCodeAnimation
Demonstrate all the questions on LeetCode in the form of animation.(用动画的形式呈现解 LeetCode 题目的思路)
71036
2022-03-06
4
doocs/advanced-java
😮 Core Interview Questions & Answers For Experienced Java(B ...