移位分量 SHIFT应用程序的UI组件 Gulp命令 发展 gulp 观看src文件夹中的coffee文件,并将它们编译为JavaScript文件,放入src-js文件夹。 位于src文件夹中的每个jade文件都被编译为html并存储到examples文件夹中。 示例文件夹在 版本控制 一个新的组件应该在ABC触发一个较小的修订版本,也就是B++ 。 gulp bump 一个错误修复应该增加ABC C++补丁 gulp patch 调用bump和patch也会调用build 。 调用build将所有源代码合并到一个JS中。 模板也包含在$templateCache 。 :warning: 请注意,如果在master以外的其他分支上进行构建,则调用构建可能会产生合并问题。 强烈建议仅在master分支后合并中触发它。 例子 对于每个示例,都会自动加载JQuery,lodash,angular
2023-02-18 20:22:29 81KB CoffeeScript
1
genshin-impact-script 甜的! 多么可爱的Genshin Impact脚本! 介绍 基于ahk的脚本,为Genshin Impact播放器提供了一些小功能。 不包含任何作弊。 特征 简易技能计时器 提供带有E技能的倒数计时器,并带有叠加。 角色首次亮相时使用E技能 当您按住numeric key切换字符时,角色会在出现在舞台上时自动使用E技能。 更好的跑步/跳跃 长按right click可以获得更好的运行效果。 跳跃时自动打开滑翔机。 快速物品提取 按下f键快速拾取项目。 记录/重播动作 按f10记录您的操作; 按f11重播。 更好的基本视力 当您按下middle button ,您将进入自动保持的基本视觉; 再次按中间按钮退出。 自动调整游戏流程优先级 当游戏窗口处于非活动状态时,将进程优先级设置为最低。 用法 首先,访问并安装ahk (1.33+,请勿使用v2
2023-01-13 13:41:13 189KB game coffeescript ahk genshin
1
Atom 编辑器的查找选择包 一键查找当前所选文本的下一个或上一个匹配项。 无需打开查找/替换对话框。 查找下一个匹配项的默认键是 Ctrl-F3 (find-selection:find-next),查找上一个匹配项的默认键是 Ctrl-Shift-F3 (find-selection:find-previous)。 对于区分大小写的搜索,查找下一个匹配项的键绑定是 Ctrl-F4(find-selection:find-next-casesensitive),查找前一个匹配项的键绑定是 Ctrl-Shift-F4(find-selection:find-previous-区分大小写)。 如果所选文本没有下一次出现,则什么都不会发生。 如果未选择任何内容,则再次使用上次使用的选择(如果有)。 无论查找/替换对话框是否打开,这些搜索功能都有效。 查找对话框不受影响。 这些功能也可
2022-08-27 21:23:28 5KB CoffeeScript
1
游戏时间玩家 一个超级简单的基于 JavaScript 的 libretro 前端。
2022-06-24 19:06:09 50KB CoffeeScript
输入成帧器 成帧器模块可轻松将您的设计输入转换为真实输入。 将其添加到Framer Studio项目中 与成帧器模块一起安装 或手动安装 从github下载项目。 将input.coffee和keyboard.png复制到modules/文件夹中。 通过编写以下InputModule = require "input"其导入Framer Studio: InputModule = require "input" 。 注意: keyboard.png适用于iPhone7。如果要使用其他尺寸,请替换为自己的图像。 如何使用它 像平常一样导出资产,然后创建一个输入对象并将其放置在设计的输入上。 完毕! 请记住,所有参数都是可选的。 # Basic usage InputModule = require " input " input = new InputModule.Input s
2022-05-24 11:44:19 320KB coffeescript prototype input framer
1
Over the last five years, CoffeeScript has taken the web development world by storm. With the humble motto "It's just JavaScript," CoffeeScript provides all the power of the JavaScript language in a friendly and elegant package. This extensively revised and updated new edition includes an all-new project to demonstrate CoffeeScript in action, both in the browser and on a Node.js server. There's no faster way to learn to write a modern web application. This new edition has been extensively revised and updated to reflect the current state and features of CoffeeScript. Every chapter has been revised and refactored, and new sections and a new chapter on testing have been added. If you already know JavaScript, this book will make your transition to CoffeeScript easy. If you're new to JavaScript, it's a great place to start. New in this edition: Automating setup with the Grunt task runner Using CoffeeScript classes with the Backbone framework Using CoffeeScript's simple callback syntax to interact with the Express framework A new chapter on client-side and server-side testing with Intern A new project that gives you hands-on experience with browser-side and server-side CoffeeScript CoffeeScript is every bit as portable and effective as JavaScript. It aids development by adding a bevy of features, such as classes, splats, list comprehensions, and destructuring. These features make it easier to write clear, readable code, and by learning how these features work, you'll deepen your understand of JavaScript as well. This book is your complete guide to writing better JavaScript code, faster. Table of Contents Chapter 1. Getting Started Chapter 2. Functions, Scope, and Context Chapter 3. Collections, Iteration, and Destructuring Chapter 4. Classes, Prototypes, and Inheritance Chapter 5. Web Applications with jQuery and Backbone.js Chapter 6. Web Servers with Node and Express Chapter 7. Testing with Intern
2022-05-06 00:42:50 2.58MB CoffeeScript
1
CoffeeScript是一套JavaScript的转译语言,创建者 Jeremy Ashkenas 戏称它是- JavaScript 的不那么铺张的小兄弟。因为 CoffeeScript 会将类似 Ruby 语法的代码编译成 JavaScript,而且大部分结构都相似,但不同的是 CoffeeScript 拥有更严格的语法。 语法:从 Lisp 系重生CoffeeScript打蛇打到七寸了. 它的最大功绩, 就是将 JavaScript 硬绑的 C/Java 语法抛弃了; 改为采用类似 Ruby/Python 的语法. Ruby/Python 本来就是深受 Lisp 影响的, 和 JavaScript 算是同门师兄, 他们的语法经过了实践考验, 是更适合函数式+动态语言内核的. Good Parts:CoffeeScript 只使用了 JavaScript 的 ”Good Parts(精粹)”, 抛弃了原来 JavaScript 晦涩的,容易出问题的那部分东西. 比如,全局变量声明, with 等. 语法糖和 ECMAScript:CoffeeScript 提供了很多语法糖, 让代码更优雅可读. 去主页仔细看看 CoffeeScript 的语法清单, 就会发现边边角角到处是创新. 这让编程语言真的成了开发者的朋友, 而不是机器的朋友. CoffeeScript 还提供了一个机会, 让你现在就可以使用 ECMAScript 里面的特性. 将来有个更多新特性, CoffeeScript 也有机会在浏览器支持之前实现它们. 程序员面对的是 CoffeeScript 的优雅接口, 它是程序员和JavaScript 之间的中间层, 脏活累活它都干了. CoffeeScript 构建在 JavaScript 上层, 这让人联想起 .Net 和 C#/F#/VB… , 以及 JVM 和 Java/JRuby/Scala… 在 JavaScript 上层做事情的, 不只 CoffeeScript, 还有很多其他的. 比如 Lua 就有通过 LLVM 转换成JavaScript 的实现. 前段时间的 JavaScript PC 模拟器也证明了这种思路的威力. 也许 JavaScript 就是下一个 JVM, 上面会有最适用于各种场景的各种语言. 很多人盼望 JavaScript 成为为未来的唯一语言, 看起来这是不切实际的幻想了.
2022-05-06 00:42:18 10.77MB coffeescript textbook pdf
1
CoffeeScript: Accelerated JavaScript Development CoffeeScript: Accelerated JavaScript Development CoffeeScript: Accelerated JavaScript Development
2022-05-06 00:41:43 2.54MB CoffeeScript JavaScript
1
概述 。 这个怎么运作 首先,为每个命中计算以下值。您可以在上述人员的调试输出中看到这些分数。 horaProb / Hora概率/完成率 如果您成功击中,您将能够在此站获胜的概率。 在蒙特卡洛询问。如果最后有N个Tsumo,则随机抽奖N,并检查是否可以用13张手牌+ N张牌赢钱。重复1000次。 实际上,为了加快速度,预先请求“从当前的手牌完成所需的牌”,并检查在随机绘制的N个牌中是否包括必要的牌。 avgHoraPt /平均霍拉积分/平均霍拉积分 完成时的平均获胜分数。 与horaProb同时在蒙特卡洛获得。获胜分数的平均分数为13 Tehai + N Tehai。 不安全的概率/不安全的概率/发射率 向遭受重击的人开火的可能性。 目前,只考虑对那些达到目标的人开枪。 使用决策树学习进行估算。功能包括“字符图块”和“条纹”。学习数据是Tenhou的分数。 请参阅。 avgH
2021-12-30 08:47:15 2.4MB CoffeeScript
1
ThreeStudio 基于Three.js和Electron的3D游戏编辑器。 该项目的目的是使用现有的基于Web的开源框架和库来创建功能性3D编辑器。 应用程序:Node.js + Electron 核心:HTML + CSS + JavaScript + jQuery 界面:jQuery UI + jsTree + GoldenLayout + CodeMirror + jscolor + Bootstrap + FontAwesome 渲染和物理:Three.js + ammo.js + csg.js 脚本:Esprima + CoffeeScript + RapydScript 用法: npm install npm start 按F9或Ctrl+P进入/退出游戏模式。 要以独立模式运行游戏: npm start player
2021-12-11 11:47:38 4.22MB electron javascript game coffeescript
1