
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
github.com/filllabs/sincap-common
common libs, utils
go get -u github.com/gophertown/looper
looper
Multi level searches only works with SingularTableNames for PolymorphicModel and for equals
Give the API consumer the ability to choose returned fields. This will also reduce the network traffic and speed up the usage of the API.
GET /cars?_fields=manufacturer,model,id,color
Give the API consumer the ability to choose preloaded (eager) relations. This will also reduce the network traffic and speed up the usage of the API.
GET /cars?_preloads=manufacturer,model,id,color
GET /cars?_offset=10&_limit=5
Add _offset and _limit (an X-Total-Count header is included in the response).
To send the total entries back to the user use the custom HTTP header: X-Total-Count.
Content-Range offset – limit / count.
offset: Index of the first element returned by the request.
limit: Index of the last element returned by the request.
count: Total number of elements in the collection.
Accept-Range resource max.
_sort
.-
, ascending describe as +
.GET /cars?_sort=-manufactorer,+model
_filter
query parameter and continue with field names,operations and values separated by ,
._filter=<fieldname><operation><value>
.=
equal!=
not equal<
less<=
less or equals>
greater>=
greater or equals~=
like|=
in (values must be separated with |
*=
in alternative (values must be separated with *
GET http://127.0.0.1:8080/app/users?_filter=name=seray,active=true
_q
.GET /cars?_q=nissan
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.