@Youyousharechannel · Post #13957 · 10/02/2025, 01:46 AM
#ASCII 😞ASCII Art生成器 ASCII Generator V2.0(免费中文版) 一款简单易用的ASCII Art生成器,无需付费,无需安装,打开即用。支持切换字符混合模式,设置大小及字体,反相输出,旋转以及镜像等多样化的自定义设置。 🥰https://ascgendotnet.jmsoftware.co.uk/
Hashtags
TGINSIGHT SIMILAR POSTS
Source channel @githubtrending · Post #15321 · Dec 9
#go#game_engine#game_engine_2d#game_engine_3d#game_engine_development#game_engine_framework#gameengine#go#golang Kaiju Engine is a fast, modern 2D/3D game engine written in Go and powered by Vulkan, designed for simplicity and high performance. It runs on Windows, Linux, Android, and is working on Mac support. Kaiju offers much faster rendering speeds and lower memory use than popular engines like Unity, making game development quicker and more efficient. It uses Go’s garbage collector to help prevent common programming errors, improving stability. You can write games directly in Go, and the engine supports local AI integration and a flexible UI system using HTML/CSS. Although the editor is still in development, the engine itself is production-ready, offering a powerful tool for developers who want speed and simplicity. https://github.com/KaijuEngine/kaiju
Search: #ascii
@Youyousharechannel · Post #13957 · 10/02/2025, 01:46 AM
#ASCII 😞ASCII Art生成器 ASCII Generator V2.0(免费中文版) 一款简单易用的ASCII Art生成器,无需付费,无需安装,打开即用。支持切换字符混合模式,设置大小及字体,反相输出,旋转以及镜像等多样化的自定义设置。 🥰https://ascgendotnet.jmsoftware.co.uk/
Hashtags
@appmew · Post #16660 · 03/18/2026, 09:41 AM
asc11:多功能 ASCII 艺术编辑器,支持视频、实时画面与 WebGL 导出 🏷标签:#网站#ASCII#符号 ☁链接:点击获取 ⭐频道😮群聊✏投稿🌍中文
@appmew · Post #15029 · 11/03/2025, 01:40 AM
ASCII Motion:免费在线制作 ASCII、ANSI 字符动画,开源的 ASCII 字符动画编辑器。 可以将视频、动态图像或自定义创作转化为 ASCII 艺术动画。开发者提供了部署好的网站,可直接使用,也可自行部署。 🏷标签:#源码#ASCII#字符动画#网站 ☁链接:点击获取 ⭐频道😮群聊✏投稿🌍中文
@dejavuBlog · Post #3644 · 04/08/2026, 11:42 AM
#ASCII#原型#Markdown#工具 https://www.mockdown.design/
@seeker_rc · Post #19996 · 05/08/2026, 01:55 PM
[开源]用 Pretext 和 Three.js 做了一个个人网站,一个 ASCII 风格的小克劳德网站 四月初刷抖音看到 Pretext 之后做的,最近又整理了一下把仓库公开了。 网站网址是zeno.is-a.dev,欢迎点开玩呀。 模型是 Sketchfab/@Robduc 免费下载的,这个 ASCII 动态背景实际上来自 Pretext 的官方仓库。 仓库链接点这个,欢迎 Star 或 Fork 。 本人也才入门!有些地方确实没太处理好,特别是多端适配,感觉只有全屏的桌面端能看一眼…… via V2EX 分享创造 标签: #Pretext#ASCII#仓库 ⚡️探索号频道 ⚡️探索者频道 ⚡️探索者交流群 ⚡️ Youtube 频道:科技探索者 每天推荐有趣内容,欢迎订阅、转发。
@djangoproject · Post #435 · 09/07/2017, 01:47 PM
https://www.python.org/dev/peps/pep-0498/ #Interpolation # Python supports multiple ways to format text strings. # These include %-formatting, # str.format(), # and string.Template # The !s, !r, and !a conversions are not strictly required. # Because arbitrary expressions are allowed inside the #f_strings, # this code: »> a = 'some string' »> f'{a!r}' "'some string'" Is identical to: »> f'{repr(a)}' "'some string'" Similarly, !s can be replaced by calls to #str() and !a by calls to #ascii().