GitHub API token authentication for browsers and Node.js
Mark scopes for deopt which contain a direct eval call
PHP.wasm – scoped URLs utils
Shareable commitlint config enforcing lerna package and workspace names as scopes
Shareable commitlint config enforcing workspace names as scopes
Shareable commitlint config enforcing pnpm workspaces names as scopes
Shareable commitlint config enforcing nx project names as scopes
Definitions and validations of the Forge manifest
A small plugin to allow you to scope your css with a custom selector
Type-safe internationalization (i18n) utility types
Extendable client for GitHub's REST & GraphQL APIs
Plugin handling for Cisco Webex
Universal library to retrieve GitHubâs identity URL for the OAuth web flow
Standard plugin interface and helpers to be used across the Graphile stack.
Manage node_modules trees
Fancy colorful console debugger with custom scope written in tiny TypeScript, ES module.
Descope JavaScript core SDK
A flexible and powerful Express controller for working with REST and gRPC APIs in Node.js applications.
A Lightweight annotation-based dependency injection container for typescript.
A library to process OpenAPI security definitions in parallel.
Paymentus Auth API Client for Rest APIs
Parse a Mapbox API token, in Node or the browser
Realtime application framework client
React Component for Login via Social Providers
ActiveRecord basic scopes.
Make your queries prettier and more reusable by having a named scope for every find-parameter. As easy as Post.include(:author, :comments)
Basic scopes to your ActiveRecord
Basic scopes to your ActiveRecord
Define very basic, commonly used scopes for ActiveRecord associations. E.g. if a Post model has an author and a category association, scopes will be defined like Post.for(author) or Post.for(category).
SimpleEnum::Scopes is extension of SimpleEnum, which brings scopes to ActiveRecord enum attributes.
Basic utility for executing ruby scripts with ridley chef API in scope
Add scopes and time windows to Rails's CSRF protection. Redirect to referrer with a flash message when possible.
ActionScope provides a comprehensive set of dynamic scopes for ActiveRecord models, including basic column filtering, text matching, range queries, association scopes, multi-column search, and sorting capabilities. Automatically generates scopes based on model attributes and associations.
Scoped search makes it easy to search your ActiveRecord-based models. It will create a named scope :search_for that can be called with a query string. It will build an SQL query using the provided query string and a definition that specifies on what fields to search. Because the functionality is built on named_scope, the result of the search_for call can be used like any other named_scope, so it can be chained with another scope or combined with will_paginate. Because it uses standard SQL, it does not require any setup, indexers or daemons. This makes scoped_search suitable to quickly add basic search functionality to your application with little hassle. On the other hand, it may not be the best choice if it is going to be used on very large datasets or by a large user base.
Basic tool which provides feature of generating tokens which can be used in url for identifying resource(uniquely of uniquely within a scope) instead of :id. Just add another field which starts with _bu_ of one or many existing fields to make it all happen. Example: For a blog post, if you have a 'title' field and want to beautify and use it instead of :id add another field like '_bu_title' and now modify routes and application to refer and fetch resource from '_bu_title' field.
A CLI (as in Command Line Interface) to delete your tweets based on faves, RTs, and time. There are some services out there with a friendly web interface, but this is not one of them. You must know the basics of working with a UNIX terminal and configuring a Twitter API app, as this will only work if you have a Twitter Developer account. Due to the irrevocable nature of tweet deletion, all delete commands are dry-run true, meaning you must call all of them with a --dry-run=false flag if you want them to really do something. Called with --dry-run=false, there is no way to revoke tweet deletion. They are just gone, disappeared into the ether (or the stashed in the Twitter-owned secret place you have no access to without a mandate since nothing gets really deleted from the web these days, folks). This tool won't delete all of your tweets in one fell swoop; it is more of a way to delete your old tweets from time to time. The Twitter API rate limits are relatively complicated, and I don't even wanna go there, but if you do intend on deleting all of your tweets, you can do it with this CLI and some perseverance. I did delete more than 100k of mine by using this script every day for a couple of weeks. The more tweets you delete, the fewer of them you have, and with time the rate limits won't be that much of a problem. I Delete My Tweets (IDMT) can delete your tweets by fetching them via API using an APP you will have to set up yourself. Still, it can also delete tweets from an CSV (comma-separated file) that you can generate from the archive you can request from twitter.com by going to Settings and privacy > Your Account > Download an archive of your data. It is out of the scope of this CLI to generate the CSV (at the moment) but there are scripts out there that can do this for you.