替代方案

发布于 2024-10-12 08:27:00 字数 158 浏览 2 评论 0原文

我运行的是Windows XP。我没有安装 Microsoft Visual Studio,也不想安装它。

我需要几个 UUID,但 uuidgen 似乎不在我的系统上。

是否有来自信誉良好的来源的单个可执行文件可供我下载并用于生成 UUID?

I'm running Windows XP. I don't have Microsoft Visual Studio installed and I don't want to install it.

I need a couple of UUIDs but uuidgen doesn't seem to be on my system.

Is there a single executable out there from a reputable source, that I can download and use to generate UUIDs?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

触ぅ动初心 2024-10-19 08:27:00

啊哈,我的机器上已经有 python 了:

C:\WINDOWS>python
Python 2.6.5 (r265:79096, Mar 19 2010, 21:48::26) [MSC v.1500 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "licen
>>> import uuid
>>> uuid.uuid4()
UUID('640628d4-4e4d-4a7a-8f9e-24aa6106b56a')

aha, I already have python on my machine:

C:\WINDOWS>python
Python 2.6.5 (r265:79096, Mar 19 2010, 21:48::26) [MSC v.1500 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "licen
>>> import uuid
>>> uuid.uuid4()
UUID('640628d4-4e4d-4a7a-8f9e-24aa6106b56a')
白首有我共你 2024-10-19 08:27:00

如果您更喜欢使用 Web 服务而不是本地二进制文件,您可以尝试我的 uuid-serve 应用程序。这是一个 Sinatra 应用托管在 Heroku 上,源代码为 可在 GitHub 上获取

由于它是一个网络应用程序,因此无需安装任何内容。甚至还有一个用于通过 SSL 生成批量 UUID 的 RESTful URL。例如:

curl -sL https://uuid-serve.herokuapp.com/bulk/5

If you prefer to use a web service rather than a local binary, you could try my uuid-serve application. It's a Sinatra app hosted on Heroku, and the source code is available on GitHub.

Since it's a web application, there's nothing to install. There's even a RESTful URL for generating bulk UUIDs over SSL. For example:

curl -sL https://uuid-serve.herokuapp.com/bulk/5
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文