高性能 Lua 检测插件 LuaHelper Posted: 09 Nov 2021 01:57 AM PST | Lua 因其语法简单、使用灵活,在游戏开发中十分流行。但其生态并不完善,IDE开发工具及配套支持较少,一定程度上影响了 Lua 的开发效率及质量。LuaHelper 遵从微软 Language Server Protocol 协议,是采用 go 语言开发的一种跨平台 Lua 代码编辑及检测工具。 特性 相较目前市面其他 Lua 插件,LuaHelper 具有以下改进: 1.协程开发,实时检测,毫秒级输出检测结果 2.支持大型 Lua 项目,完美支持1000+文件项目工程的编辑与检测 ... | |
类似 Lucene 的解析器和搜索引擎 liqe Posted: 09 Nov 2021 01:36 AM PST liqe 是一个轻量级和高性能的类似 Lucene 的解析器和搜索引擎。 Usage import { filter, highlight, parse, test, } from 'liqe'; const persons = [ { height: 180, name: 'John Morton', }, { height: 175, name: 'David Barker', }, { height: 170, name: 'Thomas Castro', }, ]; 过滤集合: filter(parse('height:>170'), persons); // [ // { // height: 180, // ... | |
用于股票因子表现分析的 Python 库 Alphalens Posted: 09 Nov 2021 12:53 AM PST Alphalens 是一个 Python 库,用于预测(alpha)股票因子的表现分析。Alphalens 可以与 Zipline 和 Pyfolio 配合使用,后者提供金融投资组合的表现和风险分析。 Alphalens 的主要功能是显示有关 alpha 因子的最相关统计数据和图表,包括: 回报分析 信息系数分析 成交量分析 分组分析 入门 有了信号和定价数据,创建一个因子 "tear sheet"是一个两步过程。 import alphalens # Ingest and format data factor_data = alphalens... | |
用于 Go 的快速灵活的 HTTP 路由器 BunRouter Posted: 09 Nov 2021 12:39 AM PST | BunRouter 是一个用于 Go 的极快的 HTTP 路由器,具有独特的功能组合: 中间件允许将 HTTP 处理程序中的常见操作提取到可重用的函数中。 错误处理允许通过处理中间件中的错误来进一步减小 HTTP 处理程序的大小。 路由优先 级为路由规则启用有意义的匹配优先级:首先是静态节点,然后是命名节点,最后是通配符节点。 net/http 兼容 API,这意味着使用最少的 API,而无需构建试图做所有事情的巨大包装器:从提供静态文件到 XML 生... | |
交互式地图绘制的 Python 包 Geemap Posted: 09 Nov 2021 12:34 AM PST Geemap 是一个 Python 包,用于与 Google Earth Engine (GEE)进行交互式地图绘制,GEE 是一个云计算平台,具有数 PB 的卫星图像和地理空间数据集。GEE 提供 JavaScript 和 Python API 来向 Earth Engine 服务器发出计算请求。GEE Python API 具有相对较少的文档和有限的用于交互式可视化结果的功能。Geemap 填补这一空白,使用户能够在基于 Jupyter 的环境中以交互方式分析和可视化 Earth Engine 数据集。 特性 以下是 Geemap 包... | |
K8s 多集群管理 Clusternet Posted: 09 Nov 2021 12:19 AM PST Clusternet(Cluster Internet)是一个开源插件,帮助你管理成千上万的 Kubernetes 集群,就像访问互联网一样容易。无论集群是运行在公有云、私有云、混合云,还是在边缘,Clusternet 都可以让你像在本地运行一样管理/访问它们。这也有助于消除对每个集群的不同管理工具的需求。 Clusternet 还可以帮助部署和协调应用程序到多个集群,从一个单一的 API 集在一个托管集群。当你的集群运行在 VPC 网络、在边缘、或在防火墙后面时,... | |
雅虎金融市场数据下载器 Yfinance Posted: 08 Nov 2021 11:48 PM PST 自从雅虎金融部门停用了他们的历史数据 API 后,许多依赖它的程序都无法正常工作。yfinance 旨在通过提供一种可靠、线程化和 Pythonic 的方式从 Yahoo 金融下载历史市场数据来解决这个问题。 快速开始 Ticker 模块 该Ticker模块允许你以更 Pythonic 的方式访问股票数据: 注意:雅虎金融的日期时间接收为 UTC。 import yfinance as yf msft = yf.Ticker("MSFT") # get stock info msft.info # get historical market data hi... | |
微型对象/数组比较库 MicroDiff Posted: 08 Nov 2021 08:01 PM PST Microdiff 是一个小型(目前<1kb)、快速、零依赖对象和数组比较库。它比大多数其他深度比较库要快得多,并且具有完整的 TypeScript 支持。 特征 速度是其他对象差异库的两倍多 极轻,<1kb 支持 Deno、Node、Web 甚至 Service Worker,带有内置的 Typescript 类型 容易使用,只有一个diff()功能 完全支持new Date()和 new RegExp()这样的对象 开始 先安装 Microdiff npm i microdiff 如果你用的是 Deno,可以从 https://deno.l... | |
基于 GORM 的安全 ORM GORM Gen Posted: 08 Nov 2021 07:22 PM PST GORM Gen 是基于 GORM 的更安全的 ORM ,对开发人员更友好。 概述 CRUD 或 DIY 查询方法代码生成 自动从数据库迁移到代码 事务、嵌套事务、保存点、回滚到保存点 与 GORM 完全兼容 对开发人员友好 拥有多种生成模式 安装 安装 Gen 包先要安装 Go ,并设置 Go 工作区。 1.首先需要安装 Go( 版本 1.14+),然后使用下面的 Go 命令安装 Gen 。 go get -u gorm.io/gen 然后在代码中导入 import "gorm.io/gen" 快速开始 注意:本文... | |
响应式 CSS 框架 getbase Posted: 08 Nov 2021 06:54 PM PST | getBase 是一个轻量级的响应式 CSS 框架,拥有自定义排版、自定义网格、组件化等特性,让你可以花少量时间来覆盖样式,而将更多的时间花在创建漂亮的网站应用程序上。 特性 基础扎实:建立在 Normalize.css 之上,确保设置了所有基本 CSS 样式。 多端统一:在所有现代浏览器的页面表现是完全一致的。 模块式编码:有多个独立模块,可以自由设计并组合模块。 自动化体验:包含 Parcel JS 配置,可以自动化工作流 安装 如果您是从... | |
轻量级电子邮件框架 Bojler Posted: 08 Nov 2021 06:36 PM PST Bojler 是一个电子邮件框架,用于开发响应式轻量级电子邮件模板,适用于每个流行的电子邮件客户端。 特征 功能概述: 响应式:Bojler 具有响应式实用程序类、自定义断点等响应式功能。 用 SASS 构建 :便于修改和扩展 自动 SASS 到 CSS 转译器 自动 SASS linter(使用电子邮件开发规则) 自动 CSS 内联 具有实时重新加载功能的网络服务器 包括默认 HTML 文件模板 重置样式:修复了各种电子邮件客户端的所有已知bug 排版:包括简... | |
HTML 元素统一标准 sanitize.css Posted: 08 Nov 2021 06:04 PM PST | sanitize.css 是一个 CSS 库,提供一致的、跨浏览器的 HTML 元素默认样式,以及通用的默认值,可以跨浏览器统一 HTML 内容的渲染效果。 sanitize.css 使用 :where() 在零特异性选择器中包装样式,它与 normalize.css 一起开发,这意味着每一个 HTML 元素规范化都被包括在内,并且每一个规范化和意见都被清楚地标记和记录。 作用 标准化各种元素的样式。 纠正错误和常见的浏览器不一致问题。 提供通用的、有用的默认值。 使用详细... | |
React 状态管理工具 Teaful Posted: 08 Nov 2021 03:02 AM PST | Teaful 是一个强大易用且非常轻量的 React 状态管理工具。 主要特性 轻量:在 React 和 Preact 中实现状态管理只需要不到 1kb 的包体积 易用:不需要 actions、reducers、selectors、connect、providers 等概念,一切都可以用简单且舒适的方式来实现 强大:当 store 中的属性更新时,只有消费了这一属性的组件会重新渲染,消费了 store 中其他属性的组件不会重新渲染 使用方式也非常有意思: import createStore from "te... | |
1 分钟内使用 k3s 从零到 KUBECONFIG k3sup Posted: 08 Nov 2021 02:43 AM PST | k3sup 是一个轻量级的工具,可以在任何本地或远程虚拟机上使用 k3s 从零到 KUBECONFIG。你只需要 ssh 访问和 k3sup 二进制文件就可以立即获得 kubectl 访问权。可在 1 分钟内通过 SSH 用 k3s 启动 Kubernetes。 该工具是用 Go 语言编写的,并在 Linux、Windows、MacOS 甚至树莓派上交叉编译。 这个工具使用 ssh 来安装 k3s 到一个远程 Linux 主机上。你也可以用它把现有的 Linux 主机作为代理加入到一个 k3s 集群中。首先,使用... | |
themer Posted: 08 Nov 2021 02:34 AM PST themer themer takes a set of colors and generates editor themes, terminal themes, themes for other apps, and desktop/device wallpapers. Table of Contents Support themer Installation Usage Example workflow Example usage with npx Themer color sets Original color sets Ports from third-party themes Create your own color set Color mappings Tips Using base16 schemes with Themer Themer templates Termi... | |
react-color Posted: 08 Nov 2021 02:34 AM PST React Color 13 Different Pickers - Sketch, Photoshop, Chrome and many more Make Your Own - Use the building block components to make your own Demo Live Demo Installation & Usage npm install react-color --save Include the Component import React from 'react' import { SketchPicker } from 'react-color' class Component extends React.Component { render() { return } } You ca... | |
My Finder buttons collection for macOS. LTFinderButtons Posted: 08 Nov 2021 02:34 AM PST LTFinderButtons My Finder buttons collection for macOS. These buttons are built with ScriptEditor. If you'd prefer a native alternative, checkout my Finder extension app, SwiftyMenu: https://apps.apple.com/app/swiftymenu/id1567748223 Buttons iTerm2 (2.9+) Sublime Text 3 VSCode Terminal TextMate Atom Brackets CotEditor BBEdit Usage Download or git clone the buttons in a proper place. Hold on com... | |
awesome-design Posted: 08 Nov 2021 02:34 AM PST Awesome Design Awesome Design focuses on collecting high quality resources and tools which can be used by UI/UX designers in daily work. Thanks to the community, the repo keeps being updated continuously from people around the world who provide amazing resources. Don't hesitate to open an issue or create pull request to share your intelligence. What should I do with the curated resources? Peopl... | |
Google Material Icons Library for Sketch App Google-Material-Icons-for-Sketch Posted: 08 Nov 2021 02:34 AM PST (Discontinued) Google Material Icons for Sketch - DOWNLOAD | 🐦 Twitter • 🏀 Dribbble Because Google Design team did a really good job with its new Material Theme Editor plugin, I decided to stop supporting future updates. The plugin has lots of features and resources, including new set of icons (Filled, Sharp, Rounded, Two-Toned, and Outined icons). For more information, please check the... | |
git-sketch-plugin Posted: 08 Nov 2021 02:34 AM PST This plugin was a first attempt to bring version control and collaboration to designers. Since then, Sketch evolved a lot and my new project takes advantages of them to unlock true version control. Check it out: http://kactus.io git-sketch-plugin A Git client built right into Sketch. Generate pretty diffs so that everybody knows what are the changes! From ... ... To Requirements Sketch >= 3.4 (... | |
A true version control tool for designers kactus Posted: 08 Nov 2021 02:34 AM PST Kactus A proper version control tool for designers Kactus is a tool to bring proper version control (as in git) to designers (only sketch users for now, but we need to start somewhere, right?). This new tool is on the next level: it brings the entire git flow to sketch: branches, pull requests, team collaboration (you can work on the same file and automatically merge the changes), etc you can s... | |
HTML to Sketch export solution html-sketchapp Posted: 08 Nov 2021 02:34 AM PST html-sketchapp HTML to Sketch export solution. What it can do? html-sketchapp turns HTML nodes into Sketch layers or symbols. Additionally, it allows to export shared text styles and document colors. Why? The motivation behind this project was ability to easily share Front-End style guide with our Design team. Although similar project, react-sketchapp, already exists it does require you to: use... | |
DrawingView-Android Posted: 08 Nov 2021 02:34 AM PST DrawingView-Android DrawingView is a simple view that lets you draw on screen using your fingers and lets you save the drawings as images. Support Country Picker for Android Drawing View is an independent project with ongoing development and support made possible thanks to donations made by these awesome backers. If you'd like to join them, please consider: Become a backer or sponsor on Patreon... | |
sketch-iconfont Posted: 08 Nov 2021 02:34 AM PST New plugin Hello everyone! I just created a totally new plugin to establish easier and reliable workflow. if you'd like to test out, it's here: https://github.com/keremciu/sketch-iconfont-web waiting for your feedback! :) ⚠️ BEFORE UPDATE: If you're using custom icon fonts, please export your font bundle like this: VIDEO then update the plugin, you can install the your custom-font-bundle with... | |
sketchmine Posted: 08 Nov 2021 02:34 AM PST What is Sketchmine? The parts Getting started Architecture Dependency graph Installation How to get up and running Docker: the Jenkins way 🐳 Run with docker-compose Run without Docker Docker registry Clean up your docker images and containers Available commands Debugging Testing Maintainers License What is Sketchmine? Sketchmine is a toolkit for creating, validating, and maintaining Sketch ... | |
Design package for WeUI weui-design Posted: 08 Nov 2021 02:34 AM PST 简介 WeUI 是一套同微信原生视觉体验一致的基础样式库,由微信官方设计团队为微信内网页和微信小程序量身设计,令用户的使用感知更加统一。 WeUI-Design 是微信官方设计团队设计的一套同微信原生视觉体验一致的基础视觉样式库,目前提供 Sketch 与 PSD 基础样式库源文件。开发者或设计师可以使用 WeUI-Design 进行微信 Web 开发的原型设计、视觉设计等。 下载 WeUI-Design.zip 环境依赖 Sketch 版本 建议不低于 v40 PhotoShop ... | |
Fluid-for-Sketch Posted: 08 Nov 2021 02:33 AM PST ⚠️ This project is no longer actively maintained. While some functionality of this plugin may continue to work for the forseeable future, there is no guarantee that it will survive any breaking changes made by the Sketch team. If you're looking for potential alternatives to Fluid plugin, look here. 💧 Fluid for Sketch 1.7.6 A collaborative project brought to you by Matt Curtis & Cat Noone F... | |
The JavaScript plugin library embedded in Sketch SketchAPI Posted: 08 Nov 2021 02:33 AM PST Sketch JavaScript API JavaScript API for Sketch for writing scripts and creating plugins. Usage For guides, concepts and regular updates on what's new in the latest version of Sketch, see the Plugin Developer Documentation. ℹ️ API Reference 🐛 Issues for bug reports and API feature requests Example Try the following script within the Plugins › Run Script… panel. // The Sketch JavaScript ... | |
carbon-design-kit Posted: 08 Nov 2021 02:33 AM PST Carbon Design Kit The Carbon Design Kit is a living, breathing document that contains all of our visual assets (components, iconography, color palettes, grids, templates, responsive behavior, etc). This document evolves and changes as we collaborate with partners and service teams. All of the assets that live in the Design Kit can also be found on our Carbon Design System website. 📝 Change L... | |
A collection of script commands for Sketch.app sketch-commands Posted: 08 Nov 2021 02:33 AM PST Sketch Commands Sketch Commands is a port of some of my Orange Commands for Fireworks for Sketch.app. Installation Download & unzip the latest version and double click it to install it Documentation for All Commands Align Space Horizontal: Distributes the selected elements horizontally, with the same distance beetween them. Space Vertical: Distributes the selected elements vertically, with the ... | |
render React components to Sketch ⚛️ react-sketchapp Posted: 08 Nov 2021 02:33 AM PST render React components to Sketch; tailor-made for design systems Quick-start 🏃 First, make sure you have installed Sketch version 50+, & a recent npm. Open a new Sketch file, then in a terminal: git clone https://github.com/airbnb/react-sketchapp.git cd react-sketchapp/examples/basic-setup && npm install npm run render Next, check out some more examples! Why?! Managing the assets of design... | |
View and inspect Sketch 43 files in browser sketch-web-viewer Posted: 08 Nov 2021 02:33 AM PST Sketch Web Viewer 💎 🔍 This project is brought to you by Launchpad for Sketch - Publish websites directly from Sketch, no coding needed. View and inspect Sketch files in your browser. Try it here. 👉 Features 💎 View Sketch files across browsers and operating systems 🔍 Inspect layer frame values by hovering on them 🔒 No server side - your Sketch file is never uploaded anywhere ✈... | |
Official Sketch Plugin directory plugin-directory Posted: 08 Nov 2021 02:33 AM PST Sketch Plugin Directory A list of Sketch plugins hosted at GitHub, in alphabetical order. Note: if you want to add yours, just send a pull request, or use skpm to develop it (skpm takes care of publishing automatically). Once your plugin is added here, it will appear on the website as soon as we make a new deploy (that can take anywhere from a few minutes to a few days) 2o3t Tools, by Zyao89: E... | |
paddy-sketch-plugin Posted: 08 Nov 2021 02:33 AM PST ⚠️ This project is no longer actively maintained Whilst some of the functinality may continue to work on versions earlier than Sketch v53; I am no longer spending my time actively working on this project. Thanks for all the support of those that have been using Paddy! For a deeper understanding of why I have stopped working on it; find out more here. It seems that the Sketch team are looking ... | |
skpm Posted: 08 Nov 2021 02:33 AM PST skpm - Sketch Plugin Manager A utility to create, build and publish sketch plugins. Installation Important: Node.js > V6.x is a minimum requirement. You also need the command line tools installed. npm install -g skpm Usage skpm create my-plugin The above command pulls the template from skpm/skpm, prompts for some information, and generates the project at ./my-plugin/. Create a new plugin Build ... | |
sketch-foundation-kit Posted: 08 Nov 2021 02:33 AM PST Sketch Foundation Kit The Foundation for Sites template for Sketch 3. ⬇️ Download the Sketch Template 📦 Download Kit (.zip) ⭐ Changelog Symbols Document Structure The document has 2 pages, as follows: Welcome page (this one), with some default artboards for Responsive Web Design A collection of all symbols available in the document In the Wild If you happen to have a finished design base... | |
Design-Resources Posted: 08 Nov 2021 02:33 AM PST Design Resources A curated list of design resources from design templates, stock photos, icons, colors, and much more Table of Contents General Colors Illustrations Stock Photos Icons General Website Description Freebiesbug Hand-picked resources for web designer and developers, constantly updated. Sketch App Sources Icons, UI Kits, Wireframes, iOS, Android Templates for Sketch Figma Community E... | |
symbol-organizer Posted: 08 Nov 2021 02:33 AM PST Organize your symbols page, and layer list, alphabetically and into groupings determined by your symbol names. Also provides the ability to choose the granularity of the groups, layout symbols horizontally or vertically, set a maximum of symbols per row/column, reverse the layer list sort direction, sequentially rename duplicate symbols, gather symbols from other pages, and remove unused symbol... | |
opensse Posted: 08 Nov 2021 02:33 AM PST OpenSSE: Open Sketch Search Engine ![Gitter](https://badges.gitter.im/Join Chat.svg) Hello everybody! I'm very interested in Mathias Eitz's works on SIGGRAPH 2012, so I developed OpenSSE, Just for fun. This is an open source sketch search engine for 3D object retrieval based on sketch image as input. In fact, it can retrieve more, such as images, videos, point cloud models and volume models, yo... | |
boring-avatars Posted: 08 Nov 2021 02:33 AM PST Boring Avatars Boring avatars is a tiny JavaScript React library that generates custom, SVG-based, round avatars from any username and color palette. Install yarn add boring-avatars or npm install boring-avatars Usage import Avatar from "boring-avatars"; ; Props... | |
Make your workflow more efficient. Automate-Sketch Posted: 08 Nov 2021 02:33 AM PST Make your workflow more efficient. 中文说明 Installation Search "Automate Sketch" from Sketch Runner. Download master.zip, unzip it, then double-click the "automate-sketch.sketchplugin". Download for older version Sketch. All Features Feature Request Menu Notes Layer Fit to Artboard with Margin Fit the width and height to the parent artboard with a margin. Fit to Parent with Margin Fit the wid... | |
sketch-palettes Posted: 08 Nov 2021 02:33 AM PST Sketch Palettes A Sketch plugin for exporting and importing fill presets. It supports colors, gradients, and Pattern fills. Installation Move the Sketch Palettes plugin into your Plugins folder or double-click the .sketchplugin file. Usage Saving Palettes You can save palettes from either the Global presets section or from the Document presets section of the color picker. You can also select wh... | |
data-populator Posted: 08 Nov 2021 02:33 AM PST Data Populator The documentation of the plugin has moved to datapopulator.com. Get in touch Join the conversation on the Data Populator Slack. Follow @datapopulator on Twitter for updates. Please report bugs, observations, ideas & feature requests as issues or get in touch. Contribute If you have an idea or the need for a new feature for Data Populator, or run into a limitation you'd like to ov... | |
Generate a dynamic icon library Sketch-Icons Posted: 08 Nov 2021 02:33 AM PST Sketch Icons A Sketch plugin that allows you to import a set of icons and automatically apply a color style. ✨ Discover our new website! 📣 Read our Medium article to use Sketch Icons efficiently ⚠️ If you have some troubles with Sketch Icons, here are some recommendations: Sketch Icons is not compatible with MacOS El Capitan It seems that Sketch Focus plugin is preventing Sketch Icons fr... | |
基于 Next.js 的静态站点生成器 Nextra Posted: 08 Nov 2021 02:30 AM PST Nextra 是一个基于 Next.js 的静态站点生成器,一个由 Next.js 和 MDX 驱动的、无代码的站点生成器。 它支持 Markdown 和 React 组件 ( MDX )、自动生成的侧边栏和锚链接、基于文件系统的路由、内置语法高亮、图像优化、自定义布局、i18n 以及你喜欢的 Next.js 的所有功能。 | |
An advanced crypto trading bot written in Python jesse Posted: 08 Nov 2021 02:29 AM PST Jesse Jesse is an advanced crypto trading framework which aims to simplify researching and defining trading strategies. Why Jesse? In short, Jesse is more accurate than other solutions, and way more simple. In fact, it is so simple that in case you already know Python, you can get started today, in matter of minutes, instead of weeks and months. Here you can read more about why Jesse's features... | |
Chatbot for Stack Overflow Jeeves Posted: 08 Nov 2021 02:29 AM PST Jeeves Chat bot for StackOverflow. Uses amphp libraries for async magic sauce. Requirements PHP 7.1 or greater. php_intl PHP extension. php_mbstring PHP extension. libxml, version 2.7.8 or greater due to use of LIBXML_HTML_NOIMPLIED and LIBXML_HTML_NODEFDTD . Installation Clone the project. Copy config/config.sample.yml to config/config.yml. Replace all configuration variables with your values.... | |
scala-steward Posted: 08 Nov 2021 02:29 AM PST Scala Steward Scala Steward is a bot that helps you keep your library dependencies, sbt plugins, and Scala and sbt versions up-to-date. See also the announcement blog post: Keep your projects up-to-date with Scala Steward Quick start guide Open a pull request that adds the GitHub, GitLab, or Bitbucket repository of your Scala project to repos-github.md (edit). Once that PR is merged, @scala-ste... | |
Mojo-Weixin Posted: 08 Nov 2021 02:29 AM PST Mojo-Weixin v1.4.6 使用Perl语言编写的微信客户端框架,基于Mojolicious,要求Perl版本5.10+,可通过插件提供基于HTTP协议的api接口供其他语言或系统调用 郑重声明 本项目完全遵循微信官方提供的原始功能,不包含任何破坏、盗号等行为,本项目完全开源,目的是为了促进技术交流学习,禁止任何对国家、企业、个人等构成危害的非法用途,否则后果自负 特色功能 支持 发送/接收文字、图片、视频、语音、表情、文件等多种媒体消息(... | |
tootbot Posted: 08 Nov 2021 02:29 AM PST Tootbot I am no longer actively developing Tootbot, and no bug fixes or new features will be implemented. There a fork developed by Mark Burgunder here, with fixes to Gfycat integration and and other changes. This is a Python bot that looks up posts from specified subreddits and automatically posts them on Twitter and/or Mastodon. It is based on reddit-twitter-bot. Tootbot is now used by a wide... | |
No comments:
Post a Comment