title
stringlengths
1
551
source
stringclasses
83 values
url
stringlengths
13
578
category
stringclasses
11 values
language
stringclasses
12 values
content
stringlengths
80
800
chunk_id
int64
0
6.66k
chunk_length
int64
80
800
last_updated
stringdate
2026-03-23 10:49:51
2026-03-23 11:44:43
?s=qryn
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=qryn
devops
python
Component Apache 2.0 License Documentation Repository OpenTelemetry Boto3 SQS Instrumentation by 🔭 OpenTelemetry Authors 🔭 This library allows tracing requests made by the Boto3 library to the SQS service. boto3sqs instrumentation python Python Language Instrumentation Component Apache 2.0 License Repository Botocore...
320
800
2026-03-23T11:23:59.058715
series.html
sqlite
https://www.sqlite.org/series.html
database
sql
er.id=value; /* or */ SELECT name FROM customer WHERE id IN (SELECT value FROM generate_series(10000,20000,200)); This page was last updated on 2023-05-01 21:49:55Z
3
164
2026-03-23T10:54:07.306578
llms.txt
svelte
https://svelte.dev/docs/kit/advanced-routing/llms.txt
framework
javascript
---cut--- import { reusableLoad } from '$lib/reusable-load-function'; /** @type {import('./$types').PageLoad} */ export function load(event) { // Add additional logic here, if needed return reusableLoad(event); } ``` ## Further reading - [Tutorial: Advanced Routing](/tutorial/kit/optional-params)
13
297
2026-03-23T11:32:54.664132
?s=yii
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=yii
devops
python
try Authors 🔭 OpenSearch exporter supports sending OpenTelemetry signals as documents to OpenSearch. opensearch exporter collector Quick Install When building a custom collector you can add this exporter to the manifest file like the following: exporters : - gomod : github.com/open-telemetry/opentelemetry-collector-co...
45
800
2026-03-23T11:15:59.450037
aff_short.html
sqlite
https://www.sqlite.org/aff_short.html
database
sql
Benefits of SQLite As A File Format Small. Fast. Reliable. Choose any three. Home Menu About Documentation Download License Support Purchase Search About Documentation Download Support Purchase SQLite As An Application File Format (Note: The current page is a brief summary of why SQLite makes a good application file fo...
0
795
2026-03-23T11:11:34.205503
fetch-perf-metrics-experiment
langchain
https://docs.langchain.com/langsmith/fetch-perf-metrics-experiment
ai
python
How to fetch performance metrics for an experiment - Docs by LangChain Skip to main content Docs by LangChain home page LangSmith Search... ⌘ K Search... Navigation Analyze experiment results How to fetch performance metrics for an experiment Get started Observability Evaluation Prompt engineering Agent deployment Plat...
0
800
2026-03-23T10:59:44.017630
?s=istio
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=istio
devops
python
ing the OpenTelemetry API. asp telemetry http module instrumentation dotnet Quick Install To install this instrumentation library run: dotnet add package OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule 1.15.1 Version .NET Language Instrumentation Component Apache 2.0 License Package Details (nuget) Repository ...
197
800
2026-03-23T11:28:03.962016
?s=sqlclient
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=sqlclient
devops
python
instrumentation for Quarkus RESTEasy Reactive quarkus resteasy reactive instrumentation java Java Language Instrumentation Component Apache 2.0 License Repository Quartz Instrumentation by 🔭 OpenTelemetry Authors 🔭 This package provides an instrumentation library for Quartz quartz instrumentation java Java Language I...
264
800
2026-03-23T11:37:18.460072
2.30.0
git
https://git-scm.com/docs/git-merge/2.30.0
devops
bash
e worktree. If there were uncommitted worktree changes present when the merge started, git merge --abort will in some cases be unable to reconstruct these changes. It is therefore recommended to always commit or stash your changes before running git merge . git merge --abort is equivalent to git reset --merge when MERG...
15
800
2026-03-23T11:15:28.963770
ServerTool.md
tanstack_start
https://tanstack.com/ai/latest/docs/reference/interfaces/ServerTool.md
framework
typescript
(Tool.md#metadata) *** ### name ```ts name: TName; ``` Defined in: [types.ts:401](https://github.com/TanStack/ai/blob/main/packages/typescript/ai/src/types.ts#L401) Unique name of the tool (used by the model to call it). Should be descriptive and follow naming conventions (e.g., snake_case or camelCase). Must be unique...
5
800
2026-03-23T11:32:54.004466
?s=haskell
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=haskell
devops
python
enTelemetry. java instrumentation Java Language Instrumentation Component Apache 2.0 License Repository Elasticsearch Java API Client native by Elasticsearch B.V. You can use OpenTelemetry to monitor the performance and behavior of your Elasticsearch requests through the Java Client. java elasticsearch api client Java ...
244
800
2026-03-23T11:20:15.839207
kubernetes
kubernetes
https://kubernetes.io/docs/concepts/workloads/controllers/job/
devops
yaml
e with a successfully executed pods, are recorded in the .status.completedIndexes field, regardless of whether you set the backoffLimitPerIndex field. Note that a failing index does not interrupt execution of other indexes. Once all indexes finish for a Job where you specified a backoff limit per index, if at least one...
21
800
2026-03-23T11:00:02.302495
redis
redis
https://redis.io/docs/latest/commands/lpush/
database
bash
The key of the list. values : RedisValue[] , // The values to add to the head of the list. flags : CommandFlags // The flags to use for this operation. ) → long // The length of the list after the push operations. ListLeftPush ( key : RedisKey , // The key of the list. value : RedisValue , when : When , flags : Command...
7
800
2026-03-23T11:39:08.512319
redis
redis
https://redis.io/docs/latest/commands/incr/
database
bash
ge of remembering the IP addresses of the clients currently performing an API call, that may be useful or not depending on the application. FUNCTION LIMIT_API_CALL(ip) current = LLEN(ip) IF current > 10 THEN ERROR "too many requests per second" ELSE IF EXISTS(ip) == FALSE MULTI RPUSH(ip,ip) EXPIRE(ip,1) EXEC ELSE RPUSH...
28
732
2026-03-23T11:29:09.694568
Children
react
https://react.dev/reference/react/Children
framework
javascript
e earlier example with Children.map because it works even if you keep extracting more components. For example, it still works if you extract your own MoreRows component: App.js RowList.js App.js Reload Clear Fork import { RowList , Row } from './RowList.js' ; export default function App ( ) { return ( < RowList > < Row...
16
800
2026-03-23T11:08:01.113109
console
bun
https://bun.sh/docs/runtime/console
runtime
javascript
a: { b: [Object] } } // With depth 4: { a: { b: { c: { d: 'deep' } } } } The CLI flag takes precedence over the configuration file setting. Reading from stdin In Bun, the console object can be used as an AsyncIterable to sequentially read lines from process.stdin . adder.ts Copy for await ( const line of console) { con...
2
798
2026-03-23T10:54:01.706395
flask
flask
https://flask.palletsprojects.com/api/
framework
python
s #anchor to the URL. _method ( str | None ) – If given, generate the URL associated with this method for the endpoint. _scheme ( str | None ) – If given, the URL will have this scheme if it is external. _external ( bool | None ) – If given, prefer the URL to be internal (False) or require it to be external (True). Ext...
182
800
2026-03-23T10:56:58.320345
?s=istio
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=istio
devops
python
ributed tracing go cortex incubating Go Language Application integration Component Apache-2.0 License Website Documentation Repository CRI-O native graduated by CRI-O Authors The crio.tracing table containers settings pertaining to the export of OpenTelemetry trace data. go cri-o graduated Go Language Application integ...
5
800
2026-03-23T11:28:03.961846
mysql
mysql
https://dev.mysql.com/doc/relnotes/mysql/5.7/en/
database
sql
) Changes in MySQL 5.7.9 (2015-10-21, General Availability) Changes in MySQL 5.7.8 (2015-08-03, Release Candidate) Changes in MySQL 5.7.7 (2015-04-08, Release Candidate) Changes in MySQL 5.7.6 (2015-03-09, Milestone 16) Changes in MySQL 5.7.5 (2014-09-25, Milestone 15) Changes in MySQL 5.7.4 (2014-03-31, Milestone 14) ...
5
653
2026-03-23T10:58:26.609479
opentelemetry
opentelemetry
https://opentelemetry.io/ecosystem/vendors/
devops
python
to the vendors list . The entry should include the following: Link to the documentation that details how your offering consumes OpenTelemetry natively via OTLP . Link to your distribution, if applicable Link that proves that your offering is open source, if applicable. An open source distribution does not qualify your ...
6
800
2026-03-23T10:50:00.187741
ctypes.html
python
https://docs.python.org/3/library/ctypes.html
language
python
expecting pointers to mutable memory. If you need mutable memory blocks, ctypes has a create_string_buffer() function which creates these in various ways. The current memory block contents can be accessed (or changed) with the raw property; if you want to access it as NUL terminated string, use the value property: >>> ...
12
799
2026-03-23T11:23:54.123404
security
expo
https://docs.expo.dev/app-signing/security
mobile
javascript
le Store Connect (ASC) API key for submitting your apps to the App Store instead. Expo won't use the Apple app-specific password in any way other than to submit your app to the App Store. Consequences if compromised If a malicious actor somehow gains access to the app-specific password, they would be able to access inf...
13
800
2026-03-23T11:13:38.391917
llms-styling.txt
chakra_ui
https://chakra-ui.com/llms-styling.txt
library
javascript
on Page({ children }: { children: React.ReactNode }) { return ( <> {children} ) } ``` ### Styling dark mode Use the `_dark` condition to style components for dark mode. ```tsx Hello ``` or ```tsx Hello ``` ## Using semantic tokens To reduce the amount of code you need to write, use semantic tokens to style components f...
18
791
2026-03-23T10:52:24.666365
?s=nestjs-core
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=nestjs-core
devops
python
y , "~> 0.3.0" } ] 0.3.0 Version Erlang Language Instrumentation Component Apache 2.0 License Package Details (hex) Repository Cowboy Instrumentation by 🔭 OpenTelemetry Authors 🔭 Instrumentation for Erlang HTTP server Cowboy. erlang elixir http instrumentation Erlang Language Instrumentation Component Apache 2.0 Lice...
215
799
2026-03-23T11:25:44.287861
?s=req
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=req
devops
python
rpc gem provides an OTLP exporter over gRPC for OpenTelemetry Ruby. otlp grpc exporter ruby Ruby Language Exporter Component Apache 2.0 License Repository OTLP over HTTP exporter for Ruby by 🔭 OpenTelemetry Authors 🔭 The opentelemetry-exporter-otlp-http gem provides an OTLP over HTTP exporter for OpenTelemetry Ruby. ...
189
800
2026-03-23T11:22:57.435709
to-string
bun
https://bun.sh/docs/guides/streams/to-string
runtime
javascript
MIME type Check file exists Watch directory Read as stream Write string to file Write Blob Write Response Append to file Incremental write Write stream Write to stdout Write file to stdout Copy file Delete file Delete files Delete directories Utilities Hash password Generate UUID Base64 encoding Gzip compression DEFLAT...
4
800
2026-03-23T10:57:59.016392
EnvironmentProviders
angular
https://angular.dev/api/core/EnvironmentProviders
framework
typescript
eateEnvironmentInjector createNgModule createNgModuleRef createPlatform createPlatformFactory CreateSignalOptions CSP_NONCE CUSTOM_ELEMENTS_SCHEMA DebugElement DebugEventListener DebugNode DEFAULT_CURRENCY_CODE DefaultIterableDiffer DestroyableInjector destroyPlatform DestroyRef Directive DirectiveWithBindings DoBootst...
3
800
2026-03-23T11:29:11.185613
?s=swift
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=swift
devops
python
anguage Instrumentation Component Apache 2.0 License Repository splunkpgx – Instrumentation for github.com/jackc/pgx by Splunk Inc. Instrumentation for the github.com/jackc/pgx package. go instrumentation database postgresql Go Language Instrumentation Component Apache 2.0 License Repository splunkpq – Instrumentation ...
234
800
2026-03-23T11:28:57.192398
redis
redis
https://redis.io/docs/latest/develop/data-types/streams/
database
bash
], null , 2 , true ); db . StreamAdd ( "race:italy" , [ new ( "rider" , "Henshaw" )], null , 2 , true ); long res35 = db . StreamLength ( "race:italy" ); Console . WriteLine ( res35 ); // >>> 8 StreamEntry [] res36 = db . StreamRange ( "race:italy" , "-" , "+" ); foreach ( StreamEntry entry in res36 ) { Console . Write...
2,242
800
2026-03-23T11:04:07.562755
SCP-116K
transformers
https://huggingface.co/datasets/EricLu/SCP-116K
ai
python
s motion is confined to a torus determined by initial conditions, and the projection onto configuration space gives the accessible region. The unreachable region is the interior of this torus. But maybe there's a simpler way. Let's consider the fact that in elliptic coordinates, the trajectory's equation can be derived...
116
800
2026-03-23T11:28:12.350755
?s=jvm
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=jvm
devops
python
edentials authenticator extension by 🔭 OpenTelemetry Authors 🔭 The OAuth2 Client Credentials authenticator extension allows gRPC and HTTP-based exporters to add authentication data to outgoing calls. go extension collector Quick Install When building a custom collector you can add this extension to the manifest file ...
68
800
2026-03-23T11:38:50.779790
subprocessors
planetscale
https://planetscale.com/legal/subprocessors
database
sql
PlanetScale Subprocessors — PlanetScale Get started with PlanetScale Postgres for just $5/month. Learn more PlanetScale Subprocessors Last Updated 3/14/2025 PlanetScale may engage third-party service providers to assist in providing our Services ("Subprocessors"). Terms used but not otherwise defined herein have the me...
0
800
2026-03-23T11:07:43.660934
prediction.html
xgboost
https://xgboost.readthedocs.io/en/stable/prediction.html
ml
python
n former is ignored. base_margin can be used to train XGBoost model based on other models. See demos on boosting from predictions. Staged Prediction Using the native interface with DMatrix , prediction can be staged (or cached). For example, one can first predict on the first 4 trees then run prediction on 8 trees. Aft...
6
796
2026-03-23T10:56:16.996232
?s=dart
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=dart
devops
python
s) Repository ActiveSupport Instrumentation by 🔭 OpenTelemetry Authors 🔭 ActiveSupport instrumentation for Ruby. ruby instrumentation active_support Quick Install To install this instrumentation library run: gem install opentelemetry-instrumentation-active_support 0.10.1 Version Ruby Language Instrumentation Componen...
340
800
2026-03-23T11:28:10.761007
use-exhaustive-dependencies
biome
https://biomejs.dev/linter/rules/use-exhaustive-dependencies
tooling
javascript
safe fix : Add the missing dependency b to the list. 8 │ · · }, · [ b ]); │ + 1 import { useCallback } from " react " ; 2 3 function component () { 4 const Component = () => null ; 5 const render = useCallback ( () => < Component /> , []); 6 } code-block.jsx:5:18 lint/correctness/useExhaustiveDependencies FIXABLE ━━━━━...
11
800
2026-03-23T11:20:56.317591
llms-full.txt
pydantic_ai
https://ai.pydantic.dev/llms-full.txt
ai
python
ode: [Learn about Gateway](https://ai.pydantic.dev/gateway) weather_app.py ```python import asyncio from datetime import date from pydantic_ai import Agent, RunContext from fake_database import DatabaseConn # (1)! from weather_service import WeatherService # (2)! weather_agent = Agent( 'gateway/openai:gpt-5.2', deps_ty...
6,373
752
2026-03-23T10:51:26.923683
configuring-tasks
turborepo
https://turbo.build/docs/crafting-your-repository/configuring-tasks
tooling
javascript
's build script runs. To do this, you'd use the following turbo.json : ./turbo.json { "tasks" : { "build" : { "dependsOn" : [ "^build" ] } } } You now have the build order you would expect, building dependencies before dependents . But be careful. At this point, you haven't marked the build outputs for caching. To do s...
3
800
2026-03-23T10:55:27.752745
?s=python
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=python
devops
python
ation Component MIT License Package Details (crates) Repository axum Instrumentation by David Bernard Middlewares to integrate axum + tracing + opentelemetry. rust axum instrumentation Quick Install To install this instrumentation library run: cargo add axum-tracing-opentelemetry 0.16.0 Version Rust Language Instrument...
358
800
2026-03-23T11:27:43.915165
multiple-triggers
inngest
https://www.inngest.com/docs/guides/multiple-triggers
devops
typescript
.updated . app/blog.post.* matches any event with the app/blog.post. prefix, like app/blog.post.published . Wildcards cannot be used following any characters other than / and . or in the middle of a pattern, so mid-word wildcards like app/user.update* and app/blog.*.published are not supported. Defining types for wildc...
2
799
2026-03-23T11:05:51.484178
ddp_comm_hooks.html
pytorch
https://pytorch.org/docs/stable/ddp_comm_hooks.html
ml
python
ng all the vector tensors (for biases). Handles uncompressed tensors: 2.1. Allocate contiguous memory for those uncompressed tensors, and allreduces all the uncompressed tensors as a batch, without compression; 2.2. Copies the individual uncompressed tensors from the contiguous memory back to the input tensor. Handles ...
17
800
2026-03-23T10:58:36.970598
django
django
https://docs.djangoproject.com/ko/2.1/faq/
framework
python
n the Django Discord Community. Official Django Forum Join the community on the Django Forum. Ticket tracker 티켓 트래커를 통해 Django 혹은 Django 문서의 버그를 신고해주세요. 다운로드: 오프라인(Django 2.1): HTML | PDF | ePub Read the Docs 제공. Diamond and Platinum Members JetBrains JetBrains delivers intelligent software solutions that make develope...
3
800
2026-03-23T11:32:18.635225
?s=tomee
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=tomee
devops
python
collector Quick Install When building a custom collector you can add this exporter to the manifest file like the following: exporters : - gomod : github.com/open-telemetry/opentelemetry-collector-contrib/exporter/bmchelixexporter v0.148.0 v0.148.0 Version Collector Language Exporter Component Apache 2.0 License Package...
30
800
2026-03-23T11:19:30.884227
consul-template-load-balancing
terraform
https://developer.hashicorp.com/consul/tutorials/network-automation/consul-template-load-balancing
devops
hcl
n file for the policy. $ tee /home/admin/assets/scenario/conf/acl-policy-consul-template.hcl > /dev/null << EOF # -------------------------------+ # acl-policy-consul-template.hcl | # -------------------------------+ service "hashicups-frontend" { policy = "read" } service "hashicups-api" { policy = "read" } node_prefi...
11
799
2026-03-23T11:24:49.352848
llms-full.txt
pydantic_ai
https://ai.pydantic.dev/llms-full.txt
ai
python
Unique identifier for the artifact.""" name: NotRequired[str] """The name of the artifact.""" description: NotRequired[str] """A description of the artifact.""" parts: list[Part] """The parts that make up the artifact.""" metadata: NotRequired[dict[str, Any]] """Metadata about the artifact.""" extensions: NotRequired[l...
2,676
744
2026-03-23T10:51:26.915176
?s=sumologic
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=sumologic
devops
python
ql Quick Install To install this instrumentation library run: gem install opentelemetry-instrumentation-pg 0.35.0 Version Ruby Language Instrumentation Component Apache 2.0 License Package Details (gems) Repository Que Instrumentation by 🔭 OpenTelemetry Authors 🔭 Que instrumentation for Ruby. ruby instrumentation que...
351
799
2026-03-23T11:36:46.287969
go
go
https://go.dev/pkg/runtime/
language
go
ogle to deliver and enhance the quality of its services and to analyze traffic. Learn more. Okay
91
96
2026-03-23T11:19:15.632781
python
tensorflow
https://www.tensorflow.org/api_docs/python
ml
python
.keras.metrics.get tf.keras.metrics.hinge tf.keras.metrics.huber tf.keras.metrics.kld tf.keras.metrics.kullback_leibler_divergence tf.keras.metrics.logcosh tf.keras.metrics.mae tf.keras.metrics.mape tf.keras.metrics.mse tf.keras.metrics.msle tf.keras.metrics.poisson tf.keras.metrics.serialize tf.keras.metrics.sparse_ca...
60
800
2026-03-23T10:52:24.539762
arm64
go
https://go.dev/pkg/cmd/internal/obj/arm64
language
go
EG_PMEVCNTR2_EL0 REG_PMEVCNTR3_EL0 REG_PMEVCNTR4_EL0 REG_PMEVCNTR5_EL0 REG_PMEVCNTR6_EL0 REG_PMEVCNTR7_EL0 REG_PMEVCNTR8_EL0 REG_PMEVCNTR9_EL0 REG_PMEVCNTR10_EL0 REG_PMEVCNTR11_EL0 REG_PMEVCNTR12_EL0 REG_PMEVCNTR13_EL0 REG_PMEVCNTR14_EL0 REG_PMEVCNTR15_EL0 REG_PMEVCNTR16_EL0 REG_PMEVCNTR17_EL0 REG_PMEVCNTR18_EL0 REG_PM...
35
800
2026-03-23T11:23:34.860758
webview-tag
electron
https://www.electronjs.org/docs/latest/api/webview-tag
desktop
javascript
onse() Returns boolean - Whether the guest page is waiting for a first-response for the main resource of the page. <webview>.stop() Stops any pending navigation. <webview>.reload() Reloads the guest page. <webview>.reloadIgnoringCache() Reloads the guest page and ignores cache. <webview>.canGoBack() Returns boolean - W...
13
778
2026-03-23T10:59:28.419564
?s=gateway
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=gateway
devops
python
collector Quick Install When building a custom collector you can add this extension to the manifest file like the following: extensions : - gomod : github.com/open-telemetry/opentelemetry-collector-contrib/extension/opampextension v0.148.0 v0.148.0 Version Collector Language Extension Component Apache 2.0 License Packa...
70
799
2026-03-23T11:31:10.785864
cache
langfuse
https://langfuse.com/self-hosting/deployment/infrastructure/cache
ai
python
assword # if authentication is enabled For production deployments, we recommend using 3 master nodes with 1 replica each (6 nodes total) for high availability. Example Configurations AWS ElastiCache Redis Cluster REDIS_CLUSTER_ENABLED = true REDIS_CLUSTER_NODES = clustercfg.my-redis-cluster.abc123.cache.amazonaws.com:6...
9
800
2026-03-23T10:55:27.723699
go_command.html
go
https://go.dev/doc/articles/go_command.html
language
go
ose trees contains, by convention, a top-level directory named " bin ", for holding compiled executables, and a top-level directory named " pkg ", for holding compiled packages that can be imported, and the " src " directory, for holding package source files. Imposing this structure lets us keep each of these directory...
6
799
2026-03-23T10:57:19.719698
newtypes.html
python
https://docs.python.org/3/extending/newtypes.html
language
python
unfilled.) PyNumberMethods * tp_as_number ; PySequenceMethods * tp_as_sequence ; PyMappingMethods * tp_as_mapping ; If you wish your object to be able to act like a number, a sequence, or a mapping object, then you place the address of a structure that implements the C type PyNumberMethods , PySequenceMethods , or PyMa...
22
800
2026-03-23T10:59:31.452247
supabase-inspect-db-index-stats
supabase
https://supabase.com/docs/reference/cli/supabase-inspect-db-index-stats
database
typescript
al migration files against the local database. -s, --schema <strings> Optional Comma separated list of schema to include. --use-migra Optional Use migra to generate schema diff. --use-pg-delta Optional Use pg-delta to generate schema diff. --use-pg-schema Optional Use pg-schema-diff to generate schema diff. --use-pgadm...
24
800
2026-03-23T11:30:35.764204
mocks
bun
https://bun.sh/docs/test/mocks
runtime
javascript
if (input.type === " B " ) { return processTypeB (input); } // ... lots of complex logic }); Use Type-Safe Mocks Copy interface UserService { getUser ( id : string ) : Promise < User >; createUser ( data : CreateUserData ) : Promise < User >; } const mockUserService : UserService = { getUser : mock ( async ( id : strin...
21
796
2026-03-23T11:23:00.891632
release-notes-1.22.0
flutter
https://docs.flutter.dev/release/release-notes/release-notes-1.22.0
mobile
dart
tree to go green) 63412 Fix App.framework path in Podfile (a: existing-apps, cla: yes, platform-ios, team, tool, waiting for tree to go green) 63430 Updated old button references in dev/integration_tests/flutter_gallery leave_behind_demo (f: material design, team) 63432 Updated old button references in dev/integration_...
83
799
2026-03-23T11:14:48.702324
git
git
https://git-scm.com/docs/git
devops
bash
.45.1 2024-04-29 2.45.0 2024-04-29 2.44.2 → 2.44.4 no changes 2.44.1 2024-04-19 2.44.0 2024-02-23 2.43.5 → 2.43.7 no changes 2.43.4 2024-04-19 2.43.2 → 2.43.3 no changes 2.43.1 2024-02-09 2.43.0 2023-11-20 2.42.3 → 2.42.4 no changes 2.42.2 2024-04-19 2.42.1 2023-11-02 2.42.0 2023-08-21 2.41.2 → 2.41.3 no changes 2.41.1...
2
800
2026-03-23T10:54:09.488666
what-makes-up-a-planetscale-database
planetscale
https://planetscale.com/blog/what-makes-up-a-planetscale-database
database
sql
Instead of querying the database multiple times, the same dataset is returned to each client. Throughout the rest of the article, we'll dive a bit deeper into how Vitess is used by PlanetScale, along with other features built on top of Vitess that enhance our users' experience. That said, the biggest takeaway is: Every...
2
800
2026-03-23T11:34:10.527844
django
django
https://docs.djangoproject.com/en/6.0/faq/
framework
python
and how might I remind the team of a change I care about? But I’ve reminded you several times and you keep ignoring my contribution! I’m sure my ticket is absolutely 100% perfect, can I mark it as “Ready For Checkin” myself? Troubleshooting Problems running django-admin Miscellaneous Back to Top Additional Information ...
4
799
2026-03-23T10:59:19.941912
?s=shim
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=shim
devops
python
nt instrumentation by 🔭 OpenTelemetry Authors 🔭 This package provides AWS SDK client instrumentation instrumentation aws aws-sdk dotnet sqs sns dynamodb Quick Install To install this instrumentation library run: dotnet add package OpenTelemetry.Instrumentation.AWS 1.15.0 Version .NET Language Instrumentation Componen...
198
800
2026-03-23T11:28:00.250240
essential-web-v1.0
transformers
https://huggingface.co/datasets/EssentialAI/essential-web-v1.0
ai
python
, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2...
139
688
2026-03-23T11:26:01.808772
redis
redis
https://redis.io/docs/latest/commands/hexpireat/
database
bash
ot met).</description> </item> <item> <term>-1</term> <description>No such field exists.</description> </item> </list> hexpireat ( $key : string , $unixTimeSeconds : int , $fields : array , string $flag = null : Any ) → array|null hexpire_at ( key : K , ts : i64 , opt : ExpireOption , fields : F ) → (Vec<IntegerReplyOr...
24
800
2026-03-23T11:37:13.401557
powersync-collection
tanstack_router
https://tanstack.com/db/latest/docs/collections/powersync-collection
framework
typescript
odos, syncMode: 'on-demand', onLoadSubset: async (options) => { console.log('onLoadSubset') const subscription = await db .syncStream('todos', { list: 'list_1' }) .subscribe() await subscription.waitForFirstSync() return () => { console.log('onUnloadSubset') subscription.unsubscribe() } }, }), ) // A live query that fi...
36
678
2026-03-23T11:39:27.973324
in
javascript
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/in
language
javascript
the in operator. js // Arrays const trees = ["redwood", "bay", "cedar", "oak", "maple"]; 0 in trees; // returns true 3 in trees; // returns true 6 in trees; // returns false "bay" in trees; // returns false (you must specify the index number, not the value at that index) "length" in trees; // returns true (length is an...
4
799
2026-03-23T11:26:20.953769
image
nextjs
https://nextjs.org/docs/pages/api-reference/components/image
framework
javascript
- height height={500} Integer (px) - fill fill={true} Boolean - loader loader={imageLoader} Function - sizes sizes="(max-width: 768px) 100vw, 33vw" String - quality quality={80} Integer (1-100) - preload preload={true} Boolean - placeholder placeholder="blur" String - style style={{objectFit: "contain"}} Object - onLoa...
1
799
2026-03-23T11:29:46.726096
supabase-functions-new
supabase
https://supabase.com/docs/reference/cli/supabase-functions-new
database
typescript
BLOCKED PID │ BLOCKING STATEMENT │ BLOCKING DURATION │ BLOCKING PID │ BLOCKED STATEMENT │ BLOCKED DURATION ──────────────┼──────────────────────────────┼───────────────────┼──────────────┼────────────────────────────────────────────────────────────────────────────────────────┼─────────────────── 253 │ select count(*) f...
39
698
2026-03-23T11:32:06.885757
webinar-mongodb-query-performance-optimization
mongodb
https://www.mongodb.com/resources/products/capabilities/webinar-mongodb-query-performance-optimization
database
javascript
ols like MongoDB Atlas Performance Advisor. You’ll walk away knowing how to uncover the “why” behind slow-running operations. Part 2: Optimizing Slow Queries April 28 - 11 a.m. ET Once you’ve identified what’s slowing things down, learn how to optimize queries through effective indexing strategies, query rewrites, and ...
1
605
2026-03-23T10:49:59.006036
supabase-sso-update
supabase
https://supabase.com/docs/reference/cli/supabase-sso-update
database
typescript
1 │ ≈1:1 (Balanced) public │ cache_data │ 123,456 │ 0│ 0 │ Read-Only auth │ audit_logs │ 0 │ 98,234│ 12,341 │ Write-Only Note: This command only displays tables that have had both read and write activity. Tables with no I/O operations are not shown. The classification ratio threshold (default: 5:1) determines when a ta...
51
744
2026-03-23T11:29:24.749311
?s=http
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=http
devops
python
hon Language Instrumentation Component Apache 2.0 License Repository OpenTelemetry aiohttp server Integration by 🔭 OpenTelemetry Authors 🔭 This library allows tracing HTTP requests made by the aiohttp server library. aio http server instrumentation python Python Language Instrumentation Component Apache 2.0 License R...
317
800
2026-03-23T11:26:49.080196
?s=development
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=development
devops
python
ory Azure Blob Receiver by 🔭 OpenTelemetry Authors 🔭 This receiver reads logs and trace data from Azure Blob Storage go receiver collector Quick Install When building a custom collector you can add this receiver to the manifest file like the following: receivers : - gomod : github.com/open-telemetry/opentelemetry-col...
103
800
2026-03-23T11:23:40.558115
git-svn
git
https://git-scm.com/docs/git-svn
devops
bash
Glossary Hooks gitignore gitmodules Revisions Submodules Tutorial Workflows All guides... Administration clean gc fsck reflog filter-branch instaweb archive bundle Plumbing Commands cat-file check-ignore checkout-index commit-tree count-objects diff-index for-each-ref hash-object ls-files ls-tree merge-base read-tree r...
1
796
2026-03-23T10:54:23.806289
qdrant
qdrant
https://qdrant.tech/articles/serverless/
database
python
e points (or just use the binary from the example). Be sure to include the port in the qdrant_url . Now that you have the points inserted, you can search them by embedding: use anyhow :: Result ; use qdrant_client :: prelude :: * ; pub async fn search ( text : & str , collection_name : String , client : & Client , api_...
12
800
2026-03-23T10:59:22.307110
?s=nginx
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=nginx
devops
python
s receiver to the manifest file like the following: receivers : - gomod : github.com/open-telemetry/opentelemetry-collector-contrib/receiver/httpcheckreceiver v0.148.0 v0.148.0 Version Collector Language Receiver Component Apache 2.0 License Package Details (go-collector) Repository Huawei Cloud CES Receiver by 🔭 Open...
121
800
2026-03-23T11:33:22.910554
index.html
java
https://docs.oracle.com/en/middleware/goldengate/index.html
language
java
tion Adapters include the necessary components for supporting Base24 and Enscribe data technologies. These adapters are intended for use with Oracle GoldenGate for HP NonStop. Oracle GoldenGate Monitor Oracle GoldenGate Monitor (legacy, end of life) is a web-based monitoring console for the Oracle GoldenGate replicatio...
7
800
2026-03-23T10:59:42.580444
?s=cassandra
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=cassandra
devops
python
u Kotel is an instrumentation plugin for the franz-go Kafka client. It provides tracing and metrics options. go instrumentation kafka franz-go tracing metrics Go Language Instrumentation Component BSD-3-Clause License Repository Labstack Echo instrumentation by 🔭 OpenTelemetry Authors 🔭 Go contrib plugin for the labs...
226
800
2026-03-23T11:33:08.676541
redis
redis
https://redis.io/docs/latest/commands/incr/
database
bash
long , // The amount to increment by (defaults to 1). flags : CommandFlags // The flags to use for this operation. ) → long // The value of key after the increment. StringIncrement ( key : RedisKey , // The key of the string. value : double , // The amount to increment by (defaults to 1). flags : CommandFlags // The fl...
5
798
2026-03-23T11:29:09.694549
result-2022-08-10.json
qdrant
https://qdrant.tech/benchmarks/result-2022-08-10.json
database
python
} } }, { "engine_name": "qdrant", "setup_name": "qdrant-m-32-ef-512", "dataset_name": "deep-image-96-angular", "upload_time": 914.723768478, "total_upload_time": 3060.065229332, "p95_time": 0.0103468265, "rps": 118.9145658682, "parallel": 1, "p99_time": 0.0126027615, "mean_time": 0.0082901929, "mean_precisions": 0.9929...
1,376
574
2026-03-23T11:15:13.616775
uk
git
https://git-scm.com/docs/git-mergetool/uk
devops
bash
ім’я тимчасового файлу, що містить вміст файлу, який потрібно об’єднати, та MERGED , встановленим на ім’я файлу, в який інструмент злиття має записати результат розв’язання злиття. Якщо користувацький інструмент злиття правильно вказує на успішне вирішення злиття за допомогою коду виходу, тоді змінну конфігурації merge...
5
799
2026-03-23T11:31:02.300434
filters
chakra_ui
https://chakra-ui.com/docs/styling/style-props/filters
library
javascript
rate prop to apply a saturate effect to the area behind an element. The requirement for this prop is to use the backdropFilter prop and set it to auto . < Box backdropFilter = "auto" backdropSaturate = "0.4" /> Prop CSS Property Token Category backdropSaturate --backdrop-saturate - Backdrop Sepia Use the backdropSepia ...
6
621
2026-03-23T11:10:03.866761
cloudinary
neon
https://neon.tech/docs/guides/cloudinary
database
sql
the relevant asset metadata received from Cloudinary ( public_id , secure_url , resource_type ). The endpoint saves this information, along with the userId , into the cloudinary_files table in Neon. Testing the upload workflow This workflow involves getting a signature from your backend, using it to upload directly to ...
9
799
2026-03-23T11:36:36.928335
typescript
typescript
https://www.typescriptlang.org/tsconfig/
language
javascript
a package.json . These conditions are added to whatever existing conditions a resolver will use by default. For example, when this field is set in a tsconfig.json as so: jsonc { "compilerOptions" : { "target" : "es2022" , "moduleResolution" : "bundler" , "customConditions" : [ "my-condition" ] } } Any time an exports o...
36
799
2026-03-23T10:56:11.751998
result-2022-08-10.json
qdrant
https://qdrant.tech/benchmarks/result-2022-08-10.json
database
python
"parallel": 8, "p99_time": 0.303446277, "mean_time": 0.215624374, "mean_precisions": 0.996264, "engine_params": { "params": { "ef": 256 } } }, { "engine_name": "milvus", "setup_name": "milvus-m-32-ef-128", "dataset_name": "deep-image-96-angular", "upload_time": 377.4848108441, "total_upload_time": 2299.0657255141, "p95...
313
535
2026-03-23T11:15:13.614957
TestCase
tensorflow
https://www.tensorflow.org/api_docs/python/tf/test/TestCase
ml
python
erEqual View source assertAllGreaterEqual ( a , comparison_target ) Assert element values are all greater than or equal to a target value. Args a The numpy ndarray , or anything that can be converted into a numpy ndarray (including Tensor). comparison_target The target value of comparison. assertAllInRange View source ...
5
800
2026-03-23T11:25:56.467620
?s=slog
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=slog
devops
python
go receiver collector Quick Install When building a custom collector you can add this receiver to the manifest file like the following: receivers : - gomod : github.com/open-telemetry/opentelemetry-collector-contrib/receiver/otlpjsonfilereceiver v0.148.0 v0.148.0 Version Collector Language Receiver Component Apache 2.0...
141
800
2026-03-23T11:14:47.273336
llms.txt
pydantic_ai
https://ai.pydantic.dev/llms.txt
ai
python
api/models/instrumented/index.md) - [pydantic_ai.models.mcp_sampling](https://ai.pydantic.dev/api/models/mcp-sampling/index.md) - [pydantic_ai.models.mistral](https://ai.pydantic.dev/api/models/mistral/index.md) - [pydantic_ai.models.openai](https://ai.pydantic.dev/api/models/openai/index.md) - [pydantic_ai.models.open...
7
800
2026-03-23T10:50:14.172744
?s=tap
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=tap
devops
python
.21.0 Version JavaScript Language Resource detector Component Apache 2.0 License Package Details (npm) Repository OpenTelemetry Resource Detector for Container by 🔭 OpenTelemetry Authors 🔭 Resource detector for container ID. Compatible with OpenTelemetry JS API and SDK 1.0+. container resource-detector js Quick Insta...
373
800
2026-03-23T11:23:19.950010
llms-full.txt
chakra_ui
https://chakra-ui.com/llms-full.txt
library
javascript
urn popover.setOpen(false)}>Close Popover } const MyPopover = () => ( Open ) ``` ### Positioning based on ref Use `positioning.getAnchorRect()` to position the popover based on a custom element ref. ```tsx import { useRef } from "react" const MyPopover = () => { const anchorRef = useRef (null) return ( <> Anchor Elemen...
730
792
2026-03-23T10:52:11.339174
lang_datefunc.html
sqlite
https://www.sqlite.org/lang_datefunc.html
database
sql
nd time functions can be expressed in terms of strftime(): Function Equivalent strftime() date(...) strftime('%F', ...) time(...) strftime('%T', ...) datetime(...) strftime('%F %T', ...) julianday(...) CAST(strftime('%J', ...) as REAL) unixepoch(...) CAST(strftime('%s', ...) as INT) The date(), time(), and datetime() f...
5
798
2026-03-23T11:02:20.710435
creating-streams
dart
https://dart.dev/libraries/async/creating-streams
language
dart
l and then yields the next number. If the maxCount parameter is omitted, there is no stop condition on the loop, so the stream outputs increasingly larger numbers forever - or until the listener cancels its subscription. When the listener cancels (by invoking cancel() on the StreamSubscription object returned by the li...
11
600
2026-03-23T11:01:11.560123
SCP-116K
transformers
https://huggingface.co/datasets/EricLu/SCP-116K
ai
python
guess for the next. This can help the solver gradually adapt to the stiffness. Let's try that. Define a function that solves the BVP for a given z, using the previous solution as an initial guess: ```python z_values = np.logspace(-4, -7, 10) # From 1e-4 down to 1e-7 # Reverse to go from largest to smallest z z_values =...
184
725
2026-03-23T11:28:12.350806
extending-copilot-chat-with-mcp
github_actions
https://docs.github.com/en/copilot/customizing-copilot/extending-copilot-chat-with-mcp
devops
yaml
with anyone who opens the project in Visual Studio Code. To do this, create a .vscode/mcp.json file in the root of your repository. Your personal instance of Visual Studio Code . You will be the only person who has access to configured MCP servers. To do this, add the configuration to your settings.json file in Visual ...
4
799
2026-03-23T11:22:22.710553
docker
docker
https://docs.docker.com/guides/genai-claude-code-mcp/claude-code-mcp-guide/
devops
bash
r Hub username and token later. Docker Hub Secrets 4. Connect Claude Code to Docker MCP Toolkit You can connect from Docker Desktop or using the CLI. Option A. Connect with Docker Desktop Open MCP Toolkit Go to the Clients tab Locate Claude Code Select Connect Option B. Connect using the CLI $ claude mcp add MCP_DOCKER...
4
799
2026-03-23T11:01:22.294542
redis
redis
https://redis.io/docs/latest/commands/zscan/
database
bash
or. @deprecated since 6.0 in favor of consuming large results through the org.reactivestreams.Publisher returned by #zscan. zscan ( channel : ScoredValueStreamingChannel<V> , // streaming channel that receives a call for every scored value. key : K // the key. ) → Mono<StreamScanCursor> // StreamScanCursor scan cursor....
7
800
2026-03-23T11:36:35.228687
?s=lmdb
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=lmdb
devops
python
ils (gems) Repository ActiveSupport Instrumentation by 🔭 OpenTelemetry Authors 🔭 ActiveSupport instrumentation for Ruby. ruby instrumentation active_support Quick Install To install this instrumentation library run: gem install opentelemetry-instrumentation-active_support 0.10.1 Version Ruby Language Instrumentation ...
340
800
2026-03-23T11:11:46.432494
?s=action
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=action
devops
python
Autoinjection deprecated by 🔭 OpenTelemetry Authors 🔭 Deprecated This browser extension is permanently deprecated. Other browser extensions are available that provide similar functionality . This browser extension allows you to inject OpenTelemetry instrumentation in any web page. It uses the Web SDK and can export d...
377
799
2026-03-23T11:12:37.665559
message-passing
temporal
https://docs.temporal.io/develop/ruby/message-passing
devops
go
input [ 'name' ] end # ... end The workflow_signal class method can accept arguments. Refer to the API docs: workflow_signal . The handler should not return a value. The response is sent immediately from the server, without waiting for the Workflow to process the Signal. Signal (and Update) handlers can be asynchronous...
3
797
2026-03-23T11:04:25.895089
results-1-100-thread-2024-06-15.json
qdrant
https://qdrant.tech/benchmarks/results-1-100-thread-2024-06-15.json
database
python
": 678.6138078793883, "parallel": 100, "engine_params": { "hnsw_ef": 512, "quantization": { "rescore": true, "oversampling": 64 } }, "mean_time": 0.004603237740695477, "mean_precisions": 8e-05, "std_time": 0.0033825670340169103, "min_time": 0.0020564720034599304, "max_time": 0.027715526521205902, "rps": 1619.3352724905...
1,572
666
2026-03-23T10:59:06.542388
changelog
turso
https://docs.turso.tech/tursodb/changelog
database
sql
u) do not check rowid alias for null (Nikita Sivukhin) CDC functions (Nikita Sivukhin) Ignore double quotes around table names (Zaid Humayun) Efficient Record Comparison and Incremental Record Parsing (Krishna Vishal) parse_schema_rows optimizations (Levy A.) Simulator - only output color on terminal (Mikaël Francoeur)...
159
800
2026-03-23T10:55:52.803358
GoUsers
go
https://go.dev/wiki/GoUsers
language
go
r - github Astrolink - github AutoCidade - City guide platform serving neighborhood and local business data for 20+ Brazilian cities B2W - github Beauty Date Bemobi - linkedin Benefício Fácil - forums Bexs - an forex Bank BoaCompra Catho - github CloudWalk - github - an open payment platform Coderockr Conductor Conta A...
3
800
2026-03-23T11:26:33.298191
redis
redis
https://redis.io/docs/latest/commands/tdigest.cdf/
database
bash
ware and Redis Cloud compatibility"},{"id":"return-information","title":"Return information"}]},"codeExamples":[]} TDIGEST.CDF Syntax text Syntax diagram API methods TDIGEST.CDF key value [value ...] Client: Python (redis-py) Node.js (node-redis) Java-Sync (Jedis) Lettuce-Sync (Lettuce) Java-Async (Lettuce) Java-Reacti...
1
800
2026-03-23T11:27:48.912008