javascript common algorithm collection
Appscript vite plugin
Applications shared TypeScript framework
Funções utilizadas no https://glitch.com/~puppeteer-appscript da Lendico
Funções utilizadas no https://glitch.com/~puppeteer-appscript da Vivara
Import local google appscript files written with .js or .ts extension for testing
Google Apps Script API client for project management and execution
Lightweight TypeScript client for Apps Script Google Sheets 'Mongo-like' API
Lightweight TypeScript client for Apps Script Google Sheets 'Mongo-like' API
Run V8-compatible AppsScripts/JavaScript code locally by making a sandboxed environment. Batteries included.
An Apple event (“AppleScript”) bridge to control desktop apps on macOS.
Type-safe parameter definitions for CADit scripts
Compiles javascript modules using cjs and amd into a single file
<h1>Custom Google CRUD</h1> <p> This is a simplified CRUD program that mimics backend development. It uses spreadsheet instead of databases.The functions were categorized into 4 parts: ACTIONS, GET, POST, DELETE. </p>
boilerplate for your next TypeScript library
Vite plugin pour exporter/importer des sources au format HTML Apps Script et générer version.js.
Project off-liner. Gets some Google appSript project's json-file, converts it to object,selects appropriated project parts' files array from jsonObj.files property, parses each element content and saves as separate js-file into specified temporary folder
Utility to make common js tasks easier
Scaffolding tool for AppSheet projects - Initializes complete development environment with Claude Code skills, documentation, and templates
Ruby appscript (rb-appscript) is a high-level, user-friendly Apple event bridge that allows you to control scriptable Mac OS X applications using ordinary Ruby scripts.
simplified rb-appscript for excel
rb-appscript wrapper built to assist in scripting terminal events.
Port of Sam Davis' growl_notify gem without the Appscript dependency
This is a fork of the original rb-appscript. Ruby AppleScript (rb-scpt) is a high-level, user-friendly Apple event bridge that allows you to control scriptable Mac OS X applications using ordinary Ruby scripts.
TermSaver is just a simple library built around the Appscript library to automate saving the geometry of Mac OS' Terminal.app windows and provide a way to rebuild them and provide them with initial commands on their creation.
This is a fork of the original rb-appscript. Ruby AppleScript (rb-scpt) is a high-level, user-friendly Apple event bridge that allows you to control scriptable Mac OS X applications using ordinary Ruby scripts.
FinderColor is a an extremely simple interface to the Finder label colors in Mac OS X. It uses Apple Events via the rb-appscript bridge to allow the getting and setting of colors without locking up the Finder using AppleScript. FinderColor can get and set labels by index or by color names (as symbols, e.g. :none, :orange, :red).
go (to project) do (stuffs) godo provides a smart way of opening a project folder in multiple terminal tabs and, in each tab, invoking a commands appropriate to that project. For example if the folder contains a Rails project the actions might include: starting mongrel, tailing one or more logs, starting consoles or IRB sessions, tailing production logs, opening an editor, running autospec, or gitk. godo works by searching your project paths for a given search string and trying to match it against paths found in one or more configured project roots. It will make some straightforward efforts to disambiguate among multiple matches to find the one you want. godo then uses configurable heuristics to figure out what type of project it is, for example "a RoR project using RSpec and Subversion". From that it will invokes a series of action appropriate to the type of project detected with each action being run, from the project folder, in its own terminal session. godo is entirely configured by a YAML file (~/.godo) that contains project types, heuristics, actions, project paths, and a session controller. A sample configuration file is provided that can be installed using godo --install. godo comes with an iTerm session controller for MacOSX that uses the rb-appscript gem to control iTerm (see lib/session.rb and lib/sessions/iterm_session.rb). It should be relatively straightforward to add new controller (e.g. for Leopard Terminal.app), or a controller that works in a different way (e.g. by creating new windows instead of new tabs). There is nothing MacOSX specific about the rest of godo so creating controllers for other unixen should be straightforward if they can be controlled from ruby. godo is a rewrite of my original 'gp' script (http://matt.blogs.it/entries/00002674.html) which fixes a number of the deficiencies of that script, turns it into a gem, has a better name, and steals the idea of using heuristics to detect project types from Solomon White's gp variant (http://onrails.org/articles/2007/11/28/scripting-the-leopard-terminal). godo now includes contributions from Lee Marlow <lee.marlow@gmail.com> including support for project level .godo files to override the global configuration, support for Terminal.app, and maximum depth support to speed up the finder. godo lives at the excellent GitHub: http://github.com/mmower/godo/ and accepts patches and forks.