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
llms-full.txt
angular
https://angular.dev/assets/context/llms-full.txt
framework
typescript
you could with what the `AnimationPlayer` from the animations package offered. From here you can `cancel()`, `play()`, `pause()`, `reverse()` and much more. This native API should provide everything you need to control your animations. ## Route Transitions You can use view transitions to animate between routes. See the...
899
799
2026-03-23T10:56:08.872255
bugs.html
python
https://docs.python.org/3/bugs.html
language
python
b issues tracker offers a web form which allows pertinent information to be entered and submitted to the developers. The first step in filing a report is to determine whether the problem has already been reported. The advantage in doing so, aside from saving the developers’ time, is that you learn what has been done to...
2
799
2026-03-23T10:54:15.635347
?s=thousandeyes
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=thousandeyes
devops
python
/opentelemetry-collector-contrib/receiver/huaweicloudcesreceiver v0.148.0 v0.148.0 Version Collector Language Receiver Component Apache 2.0 License Package Details (go-collector) Repository Microsoft IIS Receiver by 🔭 OpenTelemetry Authors 🔭 The iis receiver grabs metrics about an IIS instance using the Windows Perfo...
122
800
2026-03-23T11:23:10.675355
StreamProcessorEvents
tanstack_router
https://tanstack.com/ai/latest/docs/reference/interfaces/StreamProcessorEvents
framework
typescript
Tool ToolCall ToolCallPart ToolCallStreamChunk ToolConfig ToolDefinition ToolDefinitionConfig ToolDefinitionInstance ToolInputAvailableStreamChunk ToolResultPart ToolResultStreamChunk UIMessage VideoPart Type Alias References AgentLoopStrategy AnyClientTool TextStreamOptionsForModel TextStreamOptionsUnion ConstrainedCo...
7
799
2026-03-23T11:16:10.475893
capi3ref.html
sqlite
https://www.sqlite.org/capi3ref.html
database
sql
eap_limit64 sqlite3_sourceid sqlite3_sql sqlite3_status sqlite3_status64 sqlite3_step sqlite3_stmt_busy sqlite3_stmt_explain sqlite3_stmt_isexplain sqlite3_stmt_readonly sqlite3_stmt_scanstatus sqlite3_stmt_scanstatus_reset sqlite3_stmt_scanstatus_v2 sqlite3_stmt_status sqlite3_str_append sqlite3_str_appendall sqlite3_...
23
800
2026-03-23T11:15:05.573230
HttpClient
angular
https://angular.dev/api/common/http/HttpClient
framework
typescript
ferrerPolicy?: ReferrerPolicy | undefined; transferCache?: boolean | { includeHeaders?: string[] | undefined; } | undefined; timeout?: number | undefined; } The HTTP options to send with the request. @returns Observable< HttpEvent <any>> Constructs a request which interprets the body as a JavaScript object and returns ...
147
799
2026-03-23T10:58:20.421599
kubernetes
kubernetes
https://kubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm-init/
devops
yaml
any changes; just output what would be done. --feature-gates string A set of key=value pairs that describe feature gates for various features. Options are: ControlPlaneKubeletLocalMode=true|false (default=true) NodeLocalCRISocket=true|false (BETA - default=true) PublicKeysECDSA=true|false (DEPRECATED - default=false) R...
6
791
2026-03-23T11:01:13.315120
2026-03-20
neon
https://neon.tech/docs/changelog/2026-03-20
database
sql
Changelog Mar 20, 2026 - Neon Specific.dev is a cloud platform built for coding agents - with a database layer powered by Neon. Read the Case Study Search ... ⌘K Ask AI Back to Changelog Mar 20, 2026 Mar 20, 2026 – One-command setup supports more agents, improved billing support, and more One-command setup for more AI ...
0
800
2026-03-23T11:25:55.823047
qdrant
qdrant
https://qdrant.tech/documentation/examples/rag-contract-management-stackit-aleph-alpha/
database
python
official SDKs of Aleph Alpha and Qdrant. However, to streamline the process let’s use LangChain . This framework is already integrated with both services, so we can focus our efforts on developing business logic. Qdrant collection Aleph Alpha embeddings are high dimensional vectors by default, with a dimensionality of ...
5
799
2026-03-23T10:58:34.603241
redis
redis
https://redis.io/docs/latest/develop/data-types/lists/
database
bash
"bikes:finished" , 0 , - 1 ). Result () if err != nil { panic ( err ) } fmt . Println ( res14 ) // >>> [bike:2] } func ExampleClient_lpush_rpush () { ctx := context . Background () rdb := redis . NewClient ( & redis . Options { Addr : "localhost:6379" , Password : "" , // no password docs DB : 0 , // use default DB }) ...
285
799
2026-03-23T11:05:26.645341
anatomy-of-a-throttler-part-1
planetscale
https://planetscale.com/blog/anatomy-of-a-throttler-part-1
database
sql
lication mechanism itself is a queue: the changelog event queue. A new write on the primary manifests as a "write event", which is shipped to the replica, and waits to be consumed (processed, replayed) by the replica. Replication lag is the event's time spent in the queue, where our queue is a combination of the networ...
8
800
2026-03-23T11:31:27.052353
?s=desktop
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=desktop
devops
python
k Install To install this instrumentation library run: npm install @jufab/opentelemetry-angular-interceptor 1.9.0-1 Version JavaScript Language Instrumentation Component Apache 2.0 License Package Details (npm) Repository Fastify OpenTelemetry by Holden Whitehead Fastify OpenTelemetry API integration, using the Fastify...
273
800
2026-03-23T11:33:39.068085
signal.html
python
https://docs.python.org/3/library/signal.html
language
python
e always executed in the main Python thread of the main interpreter, even if the signal was received in another thread. This means that signals can’t be used as a means of inter-thread communication. You can use the synchronization primitives from the threading module instead. Besides, only the main thread of the main ...
3
797
2026-03-23T11:26:48.043553
tauri
tauri
https://tauri.app/develop/calling-frontend/
desktop
rust
s use tauri :: {AppHandle, Emitter}; #[tauri :: command] fn download ( app : AppHandle, url : String) { app . emit ( " download-started " , & url ) . unwrap (); for progress in [ 1 , 15 , 50 , 80 , 100 ] { app . emit ( " download-progress " , progress ) . unwrap (); } app . emit ( " download-finished " , & url ) . unwr...
2
800
2026-03-23T11:05:55.811260
react-labs-what-we-have-been-working-on-march-2023
react
https://react.dev/blog/2023/03/22/react-labs-what-we-have-been-working-on-march-2023
framework
javascript
to the React component for that page or screen. However, the HTML tags for this metadata need to be in the document <head> which is typically rendered in a component at the very root of your app. Today, people solve this problem with one of the two techniques. One technique is to render a special third-party component ...
6
799
2026-03-23T10:52:51.553055
pydantic_ai
pydantic_ai
https://ai.pydantic.dev/api/agent/
ai
python
_validator : ( ArgsValidatorFunc [ AgentDepsT , ToolParams ] | None ) = None , docstring_format : DocstringFormat = "auto" , require_parameter_descriptions : bool = False , schema_generator : type [ GenerateJsonSchema ] = GenerateToolJsonSchema , strict : bool | None = None , sequential : bool = False , requires_approv...
175
799
2026-03-23T10:51:55.517400
redis
redis
https://redis.io/docs/latest/operate/kubernetes/reference/api/redis_enterprise_cluster_api/
database
bash
ersistentDisk object false portworxVolume object false projected object false quobyte object false rbd object false scaleIO object false secret object false storageos object false vsphereVolume object false status ↩ Parent Name Type Description Required bundledDatabaseVersions []object Versions of open source databases...
80
800
2026-03-23T10:59:45.410063
colors
tailwind
https://tailwindcss.com/docs/colors
library
javascript
-zinc-950 : oklch ( 14.1 % 0.005 285.823 ); --color-neutral-50 : oklch ( 98.5 % 0 0 ); --color-neutral-100 : oklch ( 97 % 0 0 ); --color-neutral-200 : oklch ( 92.2 % 0 0 ); --color-neutral-300 : oklch ( 87 % 0 0 ); --color-neutral-400 : oklch ( 70.8 % 0 0 ); --color-neutral-500 : oklch ( 55.6 % 0 0 ); --color-neutral-6...
24
800
2026-03-23T11:20:27.027599
planetscale-postgres-laravel
planetscale
https://planetscale.com/docs/postgres/tutorials/planetscale-postgres-laravel
database
sql
als for your database branch. 1 Run the following command to create the “Default role” for your database branch. Report incorrect code Copy Ask AI pscale role reset-default < DATABASE_NAM E > < BRANCH_NAM E > 2 Record the “Host”, “Username”, and “Password” for the “Default role” somewhere secure. Passwords are shown on...
8
796
2026-03-23T11:00:43.716314
flask
flask
https://flask.palletsprojects.com/changes/
framework
python
tions. #5071 Version 2.2.5 ¶ Released 2023-05-02 Update for compatibility with Werkzeug 2.3.3. Set Vary: Cookie header when the session is accessed, modified, or refreshed. Version 2.2.4 ¶ Released 2023-04-25 Update for compatibility with Werkzeug 2.3. Version 2.2.3 ¶ Released 2023-02-15 Autoescape is enabled by defaul...
8
799
2026-03-23T10:57:26.128620
?s=settings
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=settings
devops
python
like the following: receivers : - gomod : github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filestatsreceiver v0.148.0 v0.148.0 Version Collector Language Receiver Component Apache 2.0 License Package Details (go-collector) Repository FlinkMetrics Receiver by 🔭 OpenTelemetry Authors 🔭 This receiver u...
114
799
2026-03-23T11:26:12.522372
opentelemetry
opentelemetry
https://opentelemetry.io/docs/specs/opamp/
devops
python
tors. We recommend the following: The Agent should run at the minimum possible privilege to prevent itself from accessing sensitive files or perform high privilege operations. The Agent should not run as root user, otherwise a compromised Agent may result in total control of the machine by malicious actors. If the Agen...
158
800
2026-03-23T11:09:24.252614
llms-full.txt
pydantic_ai
https://ai.pydantic.dev/llms-full.txt
ai
python
text=text or OMIT, include=include or OMIT, prompt_cache_key=model_settings.get('openai_prompt_cache_key', OMIT), prompt_cache_retention=prompt_cache_retention, extra_headers=extra_headers, extra_body=model_settings.get('extra_body'), ) except APIStatusError as e: if model_response := _check_azure_content_filter(e, sel...
4,437
597
2026-03-23T10:51:26.920001
worker-performance
temporal
https://docs.temporal.io/develop/worker-performance
devops
go
ic from the corresponding Worker type frequently shows a depleted number of available Worker slots. Alternatively, consider using a resource-based slot supplier as described here . Poller count Sometimes, it can be appropriate to increase the number of task pollers. This is usually more common in situations where your ...
48
798
2026-03-23T11:07:48.661383
?s=prometheus
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=prometheus
devops
python
h) objects from the Kubernetes API server. k8sobjects 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/k8sobjectsreceiver v0.148.0 v0.148.0 Version...
127
800
2026-03-23T11:32:56.767113
sqlalchemy
turso
https://docs.turso.tech/sdk/python/orm/sqlalchemy
database
sql
tion Errors Resources Integrations Vercel On this page Prerequisites Prerequisites Before you start, make sure you: Install the Turso CLI Sign up or login to Turso 1 Install the libSQL dialect for SQLAlchemy Copy pip install sqlalchemy-libsql 2 Retrieve database credentials Get the database URL: Copy turso db show --ur...
1
798
2026-03-23T11:27:00.394813
viewing-a-pull-request-review
github_actions
https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/viewing-a-pull-request-review
devops
yaml
Viewing a pull request review - GitHub Docs Skip to main content Viewing a pull request review You can view all of the comments made in a single pull request review. Copy as Markdown You can find a pull request where you or a team you're a member of is requested for review with the search qualifier review-requested:[US...
0
800
2026-03-23T11:27:26.867504
mui
mui
https://mui.com/material-ui/guides/minimizing-bundle-size/
library
javascript
e in good hands. These versions include automatic import optimization via the optimizePackageImports option. This removes the need for manual configuration or Babel plugins to optimize imports. Using parcel Parcel, by default, doesn't resolve package.json "exports" . This makes it always resolve to the commonjs version...
3
545
2026-03-23T11:07:33.787278
opentelemetry
opentelemetry
https://opentelemetry.io/docs/platforms/kubernetes/operator/automatic/
devops
python
bectl apply -f - <<EOF apiVersion: opentelemetry.io/v1alpha1 kind: Instrumentation metadata: name: demo-instrumentation spec: env: - name: OTEL_DENO value: 'true' exporter: endpoint: http://demo-collector:4318 propagators: - tracecontext - baggage sampler: type: parentbased_traceidratio argument: '1' EOF Deno processes...
6
800
2026-03-23T10:52:53.430056
?s=tap
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=tap
devops
python
omponent Apache 2.0 License Package Details (go-collector) Repository Metric Start Time Processor by 🔭 OpenTelemetry Authors 🔭 The metric start time processor ( metricstarttime ) is used to set the start metricstarttime processor collector Quick Install When building a custom collector you can add this processor to t...
88
800
2026-03-23T11:23:19.949777
toString
javascript
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/toString
language
javascript
last modified on Jul 10, 2025 by MDN contributors . View this page on GitHub • Report a problem with this content
6
113
2026-03-23T10:55:10.563257
2024-11-most-used-oss-llmops
langfuse
https://langfuse.com/blog/2024-11-most-used-oss-llmops
ai
python
s 163 XSpoonAi / spoon-core 150 chatchat-space / LangGraph-Chatchat 144 piyushgarg-dev / genai-cohort 135 i-dot-ai / redbox 132 bmd1905 / ChatOpsLLM 127 Fintech-Dreamer / FinSynth 121 kenshiro-o / nagato-ai 119 AmineDjeghri / generative-ai-project-template 106 zozoheir / tinyllm 100 tuhinsharma121 / ai-playground 97 pa...
6
800
2026-03-23T10:55:34.448178
authoring
convex
https://docs.convex.dev/components/authoring
database
typescript
context, use the usePaginatedQuery from convex-helpers instead of the default one from convex/react . It will have a fixed first page size until you hit “load more,” at which point the first page will grow if anything before the second page is added. Here is an example of pagination in the RAG component. Tips and best ...
14
795
2026-03-23T11:13:54.891016
?s=elasticsearch
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=elasticsearch
devops
python
License Website Documentation Repository Deno new native by Deno Land Inc. Deno has built-in OpenTelemetry support for traces, metrics, and logs. Enabled via the OTEL_DENO=true environment variable, it automatically instruments HTTP servers, outgoing fetch requests, and Deno.cron jobs, exports telemetry over OTLP, and ...
14
799
2026-03-23T11:39:25.409461
release-notes
docker
https://docs.docker.com/engine/release-notes
devops
bash
Engine v29 | Docker Docs Answers are generated based on the documentation. Back Manuals Get started Guides Reference Docker Engine version 29 release notes Copy as Markdown Open Markdown Ask Docs AI Claude Open in Claude Table of contents This page describes the latest changes, additions, known issues, and fixes for Do...
0
800
2026-03-23T11:13:56.756876
?s=oltp
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=oltp
devops
python
ent Collector (HEC) Exporter by 🔭 OpenTelemetry Authors 🔭 The Splunk HTTP Event Collector (HEC) Exporter for the OpenTelemetry Collector. go 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-teleme...
52
800
2026-03-23T11:25:57.743843
lang_keywords.html
sqlite
https://www.sqlite.org/lang_keywords.html
database
sql
If a keyword in double quotes (ex: "key" or "glob" ) is used in a context where it cannot be resolved to an identifier but where a string literal is allowed, then the token is understood to be a string literal instead of an identifier. Programmers are cautioned not to use the two exceptions described in the previous bu...
2
798
2026-03-23T11:16:37.235378
gitlab_ci
gitlab_ci
https://docs.gitlab.com/user/compliance/
devops
yaml
ck-sm check-sm check-sm Configure customizable policies that require merge request approval based on policy rules, or enforce security scanners to execute in project pipelines for compliance requirements. Policies can be enforced granularly against specific projects, or all projects in a group or subgroup. Other compli...
5
800
2026-03-23T11:36:53.811411
fsys@go1.26.1
go
https://go.dev/cmd/go/internal/fsys@go1.26.1
language
go
es [] string , err error ) Glob is like filepath.Glob but uses the overlay file system. func Init ¶ func Init() error Init initializes the overlay, if one is being used. func IsDir ¶ func IsDir(path string ) ( bool , error ) IsDir returns true if path is a directory on disk or in the overlay. func IsGoDir ¶ added in go...
3
800
2026-03-23T11:08:21.188517
relations
drizzle_orm
https://orm.drizzle.team/docs/relations
database
typescript
text ( 'name' ) , invitedBy : integer ( 'invited_by' ) , }); export const usersRelations = relations (users , ({ one }) => ({ invitee : one (users , { fields : [ users .invitedBy] , references : [ users .id] , }) , })); Another example would be a user having a profile information stored in separate table. In this case,...
4
800
2026-03-23T10:57:57.834112
performance-bottlenecks
temporal
https://docs.temporal.io/troubleshooting/performance-bottlenecks
devops
go
n of Workflow Task slots: Monitor Worker CPU and Memory usage while increasing (Max)ConcurrentWorkflowTaskExecutionSize to add more execution slots. Scale up Workers both vertically (increasing CPU and Memory) and horizontally (increasing Worker instances). Depletion of temporal_worker_task_slots_available for Activity...
15
798
2026-03-23T11:24:09.863806
?s=purefb
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=purefb
devops
python
list of dependencies in mix.exs : def deps do [ { :opentelemetry_ecto , "~> 1.2.0" } ] 1.2.0 Version Erlang Language Instrumentation Component Apache 2.0 License Package Details (hex) Repository Elli Instrumentation by 🔭 OpenTelemetry Authors 🔭 Instrumentation for Erlang HTTP server Elli. erlang http instrumentation ...
216
800
2026-03-23T11:25:22.484992
?s=logger
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=logger
devops
python
nse Package Details (go-collector) Repository JMX Collector Receiver by 🔭 OpenTelemetry Authors 🔭 The JMX Receiver will work in conjunction with the OpenTelemetry JMX Metric Gatherer to report metrics from a target MBean server using a built-in or your custom OpenTelemetry helper-utilizing Groovy script. go receiver ...
124
800
2026-03-23T11:31:00.937479
?s=thousandeyes
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=thousandeyes
devops
python
l 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/loadbalancingexporter v0.148.0 v0.148.0 Version Collector Language Exporter Component Apache 2.0 License Package Details (go-coll...
42
800
2026-03-23T11:23:10.675293
gitlab_ci
gitlab_ci
https://docs.gitlab.com/user/project/repository/branches/protected/
devops
yaml
protections: In the top bar, select Search or go to and find your project. In the left sidebar, select Code > Branches . Select New branch . Fill in the branch name and select an existing branch, tag, or commit to base the new branch on. If you require everyone to submit merge requests for a protected branch, only exis...
22
799
2026-03-23T10:51:39.055870
gitlab_ci
gitlab_ci
https://docs.gitlab.com/security/tokens/
devops
yaml
o repositories. Only certain endpoints . Token prefixes The following table shows the prefixes for each type of token. With the exception of Personal Access tokens, these prefixes cannot be configured, as they are designed to be standard identifications. Token name Prefix Personal access token glpat- OAuth Application ...
16
800
2026-03-23T11:16:44.290793
?s=k8sobjects
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=k8sobjects
devops
python
rumentation-faraday 0.32.0 Version Ruby Language Instrumentation Component Apache 2.0 License Package Details (gems) Repository OpenTelemetry Grape Instrumentation by 🔭 OpenTelemetry Authors 🔭 The Grape instrumentation is a community-maintained instrumentation for Grape, a REST-like API framework for Ruby. grape inst...
346
800
2026-03-23T11:36:38.894429
HierarchicalCopyAllReduce
tensorflow
https://www.tensorflow.org/api_docs/python/tf/distribute/HierarchicalCopyAllReduce
ml
python
View source broadcast ( tensor , destinations ) Broadcast tensor to destinations . This can only be called in the cross-replica context. Args tensor a tf.Tensor like object. The value to broadcast. destinations a tf.distribute.DistributedValues , a tf.Variable , a tf.Tensor alike object, or a device string. It specifie...
3
799
2026-03-23T11:17:24.291571
rss.xml
neon
https://neon.tech/docs/changelog/rss.xml
database
sql
![CDATA[Predefined compute configurations, larger computes, more branch protection, and hackable AI starter apps release - Jul 19, 2024]]> https://neon.com/docs/changelog/2024-07-19 https://neon.com/docs/changelog/2024-07-19 Fri, 19 Jul 2024 00:00:00 GMT <![CDATA[CLI updates including app bootstrapping, more Branches p...
24
800
2026-03-23T11:25:58.532818
message-passing
temporal
https://docs.temporal.io/develop/java/message-passing
devops
go
o become true. Ensure your handlers finish before the Workflow completes Workflow.await can ensure your handler completes before a Workflow finishes. When your Workflow uses blocking Signal or Update handlers, your main Workflow method can return or Continue-as-New while a handler is still waiting on an async task, suc...
25
798
2026-03-23T10:58:35.462980
create
inngest
https://www.inngest.com/docs/reference/typescript/v4/functions/create
devops
typescript
ved step.sendEvent() - Send event(s) reliably within your function. Use this instead of inngest.send() to ensure reliable event delivery from within functions. runId The unique ID for the given function run. This can be useful for logging and looking up specific function runs in the Inngest dashboard. logger The logger...
16
800
2026-03-23T11:13:07.522930
result-2022-08-10.json
qdrant
https://qdrant.tech/benchmarks/result-2022-08-10.json
database
python
f-512", "dataset_name": "deep-image-96-angular", "upload_time": 914.723768478, "total_upload_time": 3060.065229332, "p95_time": 0.1438154406, "rps": 735.2877954179, "parallel": 100, "p99_time": 0.1554130639, "mean_time": 0.1231356232, "mean_precisions": 0.992525, "engine_params": { "search_params": { "hnsw_ef": 128 } }...
1,398
589
2026-03-23T11:15:13.616804
observability
tanstack_start
https://tanstack.com/start/latest/docs/framework/react/guide/observability
framework
typescript
y, we recommend Sentry - our trusted partner for error tracking and performance monitoring. Sentry provides: Real-time Error Tracking - Catch and debug errors across your entire stack Performance Monitoring - Track slow transactions and optimize bottlenecks Release Health - Monitor deployments and track error rates ove...
4
790
2026-03-23T10:56:52.329362
reading-data
convex
https://docs.convex.dev/database/reading-data
database
typescript
ge for complex logic like a join, an aggregation, or a group by. Instead, you can write the complex logic in JavaScript! Convex guarantees that the results will be consistent. Join Table join might look like: convex/events.ts TS import { query } from "./_generated/server" ; import { v } from "convex/values" ; export co...
8
798
2026-03-23T11:00:23.978430
CdkDrag
angular
https://angular.dev/api/cdk/drag-drop/CdkDrag
framework
typescript
xjs-interop @angular/core/testing @angular/elements @angular/forms @angular/forms/signals @angular/forms/signals/compat @angular/localize @angular/localize/init @angular/platform-browser @angular/platform-browser-dynamic @angular/platform-browser-dynamic/testing @angular/platform-browser/animations @angular/platform-br...
1
800
2026-03-23T11:00:48.256069
imagecache-large-images
flutter
https://docs.flutter.dev/release/breaking-changes/imagecache-large-images
mobile
dart
ImageCache large images Skip to main content docs.flutter.dev uses cookies from Google to deliver and enhance the quality of its services and to analyze traffic. Learn more OK, got it asterisk Guides play_lesson Learn api Reference list On this page chevron_right ImageCache large images vertical_align_top ImageCache la...
0
728
2026-03-23T11:20:52.721676
?s=b3
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=b3
devops
python
mentation Component BSD-2-Clause License Repository Akka Actor Instrumentation by 🔭 OpenTelemetry Authors 🔭 This library provides a Akka Actor instrumentation to track requests through OpenTelemetry. java instrumentation akka Java Language Instrumentation Component Apache 2.0 License Repository Akka Actor Fork Join I...
237
800
2026-03-23T11:20:37.875626
SWE-smith
transformers
https://huggingface.co/datasets/SWE-bench/SWE-smith
ai
python
SWE-bench/SWE-smith · Datasets at Hugging Face Dataset Viewer Auto-converted to Parquet API Embed Duplicate Data Studio Subset (1) default · 59.1k rows default (59.1k rows) Split (1) train · 59.1k rows train (59.1k rows) SQL Console instance_id string lengths 26 79 patch string lengths 199 223k FAIL_TO_PASS list length...
0
787
2026-03-23T11:25:54.351711
kubernetes
kubernetes
https://kubernetes.io/docs/tutorials/stateless-application/guestbook/
devops
yaml
Example: Deploying PHP Guestbook application with Redis | Kubernetes Example: Deploying PHP Guestbook application with Redis This tutorial shows you how to build and deploy a simple (not production ready) , multi-tier web application using Kubernetes and Docker . This example consists of the following components: A sin...
0
800
2026-03-23T10:52:35.259370
latest.yaml
docker
https://docs.docker.com/reference/api/hub/latest.yaml
devops
bash
password and keep it secret. You cannot retrieve your token after it is generated.*** - name: audit-logs x-displayName: Audit Logs description: | The Audit Logs API endpoints allow you to query audit log events across a namespace. For more information, see [Audit Logs](https://docs.docker.com/admin/organization/activit...
7
725
2026-03-23T11:26:19.925747
deno
deno
https://docs.deno.com/examples/sandbox_ssh_access/
runtime
javascript
e } @ ${ hostname } ` ) ; // Keep the process alive by sleeping, otherwise the sandbox will be destroyed // when the script exits. await new Promise ( ( resolve ) => setTimeout ( resolve , 10 * 60 * 1000 ) ) ; // 10 minutes For more information, see the Deno Sandbox documentation . Did you find what you needed?
1
312
2026-03-23T10:59:34.822790
throttling-deploy-requests
planetscale
https://planetscale.com/docs/vitess/schema-changes/throttling-deploy-requests
database
sql
eyspace level For the first two options, first select your database, click “Settings” in the left nav, and scroll down to “Advanced settings”. Here, you’ll see the options to configure deploy request throttling. You can adjust the slider or manually type in the value you’d like to set throttling to. If you’d like to se...
3
798
2026-03-23T11:15:24.543911
?s=cisco
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=cisco
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:10:45.886631
temporal
langfuse
https://langfuse.com/integrations/frameworks/temporal
ai
python
l output. \n " "The final output should be in markdown format, and it should be lengthy and detailed. Aim " "for 5-10 pages of content, at least 1000 words." ), model = "o3-mini" , output_type = ReportData, ) 6. Define Temporal Workflow Create a workflow that orchestrates the research activities. Temporal ensures the w...
7
800
2026-03-23T11:16:54.229690
?s=qryn
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=qryn
devops
python
ities sentry error monitoring .NET Language Utilities Component MIT License Repository tails by Jacob Aronoff Tails is a small webserver written in Elixir that listens on a socket and streams live messages from a collector. otel webserver tailing Elixir Language Utilities Component Apache 2.0 License Repository docker-...
381
800
2026-03-23T11:23:59.058805
kubernetes
kubernetes
https://kubernetes.io/docs/concepts/architecture/garbage-collection/
devops
yaml
garbage collect a container. Disable by setting to 0 . MaxPerPodContainer : the maximum number of dead containers each Pod can have. Disable by setting to less than 0 . MaxContainers : the maximum number of dead containers the cluster can have. Disable by setting to less than 0 . In addition to these variables, the kub...
9
800
2026-03-23T10:58:38.596207
?s=executors
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=executors
devops
python
ector accepts metrics in the SignalFx proto format and events (Logs) in the SignalFx proto format. 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/recei...
150
799
2026-03-23T11:39:10.067246
nep-0047-array-api-standard.html
numpy
https://numpy.org/neps/nep-0047-array-api-standard.html
ml
python
he code for the wrapper functions also contains # Note: comments everywhere there is a difference with the NumPy API. The implementation is entirely in pure Python, and consists primarily of wrapper classes/functions that pass through to the corresponding NumPy functions after applying input validation and any changed ...
30
800
2026-03-23T11:02:09.404502
nx
nx
https://nx.dev/
tooling
typescript
ly of broken PRs. Runs on your CI providers Let agents fix broken PRs, automatically While Scaling Tangled codebases end up crushing team velocity and product quality. Scattered repositories force AI agents to rebuild their understanding every session—turning 30-minute tasks into 2-hour frustrations. Nx monorepos limit...
4
800
2026-03-23T10:56:50.883190
kubernetes
kubernetes
https://kubernetes.io/docs/reference/kubectl/generated/kubectl_patch/
devops
yaml
mplate, templatefile, jsonpath, jsonpath-as-json, jsonpath-file). -p, --patch string The patch to be applied to the resource JSON file. --patch-file string A file containing a patch to be applied to the resource. -R, --recursive Process the directory used in -f, --filename recursively. Useful when you want to manage re...
3
796
2026-03-23T11:27:22.044015
onpremapps.html
java
https://docs.oracle.com/en/industries/retail/onpremapps.html
language
java
ory Planning Replenishment Optimization Retail Demand Forecasting Warehouse Management System Analytics Retail Insights Legacy Oracle Retail Data Models Oracle Retail 18.x Data Models, see document 2480297.1 Oracle Retail 17.x Data Models, see document 2345017.1 Oracle Retail 16.x Data Models, see document 2200398.1 Or...
3
694
2026-03-23T11:38:52.782866
?s=akka
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=akka
devops
python
vers : - gomod : github.com/open-telemetry/opentelemetry-collector-contrib/receiver/nsxtreceiver v0.148.0 v0.148.0 Version Collector Language Receiver Component Apache 2.0 License Package Details (go-collector) Repository NTP Receiver by 🔭 OpenTelemetry Authors 🔭 This receiver periodically retrieves the clock offset ...
137
800
2026-03-23T11:18:15.453658
redis
redis
https://redis.io/docs/latest/develop/data-types/vector-sets/
database
bash
vadd ( "points" , "pt:C" , - 1 . 0 , 1 . 0 ). doOnNext ( result -> { System . out . println ( result ); // >>> true }); Mono < Boolean > addPointD = reactiveCommands . vadd ( "points" , "pt:D" , 1 . 0 , - 1 . 0 ). doOnNext ( result -> { System . out . println ( result ); // >>> true }); Mono < Boolean > addPointE = rea...
305
799
2026-03-23T11:01:42.071840
data-loading
tanstack_start
https://tanstack.com/router/latest/docs/guide/data-loading
framework
typescript
how long data is considered fresh By default, staleTime for navigations is set to 0 ms (and 30 seconds for preloads) which means that the route's data will always be considered stale. When a stale route is entered again, its loader key changes, or router.load() is called explicitly, the route will reload in the backgro...
18
793
2026-03-23T11:32:22.039161
llms-components.txt
chakra_ui
https://chakra-ui.com/llms-components.txt
library
javascript
iately. ```tsx import { AbsoluteCenter, Box, For, HStack, Span, Text, VStack, } from "@chakra-ui/react" export const AbsoluteCenterWithRtl = () => { return ( {(axis) => ( RTL ({axis}) البداية )} ) } ``` ## Props | Prop | Default | Type | Description | | --- | --- | --- | --- | | axis | undefined | `'horizontal' \| 'ver...
2
780
2026-03-23T10:52:18.208340
?s=weaviate
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=weaviate
devops
python
ation by Arize AI Instrumentation for tracing the Mistral AI Python SDK python instrumentation mistralai Python Language Instrumentation Component Apache 2.0 License Documentation Repository MySQL Instrumentation by 🔭 OpenTelemetry Authors 🔭 Instrumentation with MySQL that supports the mysql-connector library. python...
328
799
2026-03-23T11:21:21.444808
releases.html
rust
https://doc.rust-lang.org/releases.html
language
rust
eliminary REPL, rusti License changed from MIT to dual MIT/APL2 § Version 0.4 (2012-10-15) ~2000 changes, numerous bugfixes Syntax All keywords are now strict and may not be used as identifiers anywhere Keyword removal: ‘again’, ‘import’, ‘check’, ‘new’, ‘owned’, ‘send’, ‘of’, ‘with’, ‘to’, ‘class’. Classes are replace...
529
800
2026-03-23T10:51:05.441024
describing-the-ui
react
https://react.dev/learn/describing-the-ui
framework
javascript
syntax extension called JSX to represent that markup. JSX looks a lot like HTML, but it is a bit stricter and can display dynamic information. If we paste existing HTML markup into a React component, it won’t always work: App.js App.js Reload Clear Fork export default function TodoList ( ) { return ( // This doesn't qu...
3
800
2026-03-23T10:58:35.559533
Indexed_collections
javascript
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Indexed_collections
language
javascript
as joining, reversing, and sorting them. It has a property for determining the array length and other properties for use with regular expressions. We will be focusing on arrays in this article, but many of the same concepts apply to typed arrays as well, since arrays and typed arrays share many similar methods. For mor...
1
799
2026-03-23T11:04:33.917499
?s=confluent-kafka-go
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=confluent-kafka-go
devops
python
rumentation Elixir Language Instrumentation Component Apache 2.0 License Repository OpentelemetryBandit by 🔭 OpenTelemetry Authors 🔭 Telemetry handler that creates OpenTelemetry spans from Bandit events . bandit instrumentation erlang Quick Install The package can be installed by adding opentelemetry_bandit to your l...
214
800
2026-03-23T11:29:52.354190
django
django
https://docs.djangoproject.com/en/2.0/faq/help/
framework
python
re solutions that make developers more productive by simplifying their challenging tasks, automating the routine, and helping them adopt the best development practices. PyCharm is the Python IDE for Professional Developers by JetBrains providing a complete set of tools for productive Python, Web and scientific developm...
5
800
2026-03-23T11:21:12.076452
?s=backstage
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=backstage
devops
python
receiver to the manifest file like the following: receivers : - gomod : github.com/open-telemetry/opentelemetry-collector-contrib/receiver/simpleprometheusreceiver v0.148.0 v0.148.0 Version Collector Language Receiver Component Apache 2.0 License Package Details (go-collector) Repository Skywalking Receiver by 🔭 OpenT...
151
800
2026-03-23T11:30:01.101127
fine-tune-whisper
transformers
https://huggingface.co/blog/fine-tune-whisper
ai
python
eady to start training! Training To launch training, simply execute: trainer.train() Training will take approximately 5-10 hours depending on your GPU or the one allocated to the Google Colab. Depending on your GPU, it is possible that you will encounter a CUDA "out-of-memory" error when you start training. In this cas...
39
795
2026-03-23T11:31:58.042781
alerts
langchain
https://docs.langchain.com/langsmith/alerts
ai
python
on Escalation Policy : Select the appropriate team escalation policy Integration Type : Select “Events API V2” Click Add Service to create the service 2. Obtain integration key After creating the service, retrieve the Integration Key: From the Service Directory , locate and click on your newly created service Select th...
6
796
2026-03-23T11:01:31.620150
pytorch
pytorch
https://pytorch.org/blog/amazon-ads-case-study/
ml
python
reserved. The Linux Foundation has registered trademarks and uses trademarks. For more information, including terms of use, privacy policy, and trademark usage, please see our Policies page. Trademark Usage . Privacy Policy . Close Menu Learn Get Started Tutorials Learn the Basics PyTorch Recipes Intro to PyTorch – You...
23
754
2026-03-23T11:27:19.716499
occ
convex
https://docs.convex.dev/database/advanced/occ
database
typescript
OCC and Atomicity | Convex Developer Hub Skip to main content Copy as Markdown Copied! On this page In Queries , we mentioned that determinism was important in the way optimistic concurrency control (OCC) was used within Convex. In this section, we'll dive much deeper into why . Convex Financial, Inc. Imagine that you'...
0
798
2026-03-23T10:54:37.670818
redis
redis
https://redis.io/docs/latest/develop/data-types/streams/
database
bash
res36 ) # >>> [ # ('1692630648281-0', {'rider': 'Henshaw'}), # ('1692631018238-0', {'rider': 'Smith'}) # ] res37 = r . xtrim ( "race:italy" , maxlen = 10 , approximate = False ) print ( res37 ) # >>> 0 res38 = r . xtrim ( "race:italy" , maxlen = 10 ) print ( res38 ) # >>> 0 res39 = r . xrange ( "race:italy" , "-" , "+"...
1,555
776
2026-03-23T11:04:07.561808
?s=connect
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=connect
devops
python
nse Package Details (npm) Repository Prometheus Exporter by 🔭 OpenTelemetry Authors 🔭 The OpenTelemetry Prometheus Exporter for Node.js. Node.js exporter Quick Install To install this exporter run: npm install @opentelemetry/exporter-prometheus 0.213.0 Version JavaScript Language Exporter Component Apache 2.0 License...
181
800
2026-03-23T11:24:38.264943
?s=emissary
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=emissary
devops
python
uage Resource detector Component Apache 2.0 License Package Details (npm) Repository OpenTelemetry Resource Detector for GitHub Actions by 🔭 OpenTelemetry Authors 🔭 Detects GITHUB_* environment variables specified and adds as attributes on a resource. github resource-detector js Quick Install To install this resource...
374
800
2026-03-23T11:31:06.709614
streaming-import-export
convex
https://docs.convex.dev/production/integrations/streaming-import-export
database
typescript
ationally intensive machine learning algorithms. Streaming export requires a Convex Pro plan. Streaming export requires a Convex Pro plan. Learn more about our plans or upgrade . See the Fivetran or Airbyte docs to learn how to set up a streaming export. Contact us if you need help or have questions. Streaming Import A...
2
797
2026-03-23T10:55:49.566504
providers-plugin-framework
terraform
https://developer.hashicorp.com/terraform/tutorials/providers-plugin-framework
devops
hcl
ing capabilities. Terraform Interactive 17min Implement resource create and read Add a resource with create and read capabilities to a custom provider. Terraform 12min Implement resource update Add update capabilities to a resource. Terraform 7min Implement resource delete Add delete capabilities to a resource. Terrafo...
1
800
2026-03-23T10:51:22.266125
hosting
tanstack_start
https://tanstack.com/start/latest/docs/framework/react/guide/hosting
framework
typescript
t Posts 5x SSR Throughput: Profiling SSR Hot Paths in TanStack Start Mar 17, 2026 Lazy Tool Discovery: Scaling AI Tool Systems Without Drowning in Tokens Mar 12, 2026 TanStack AI Just Got Middleware — And It Changes Everything Mar 12, 2026 TanStack Start Full-stack Framework powered by TanStack Router for React and Sol...
19
435
2026-03-23T10:54:01.790250
providers-plugin-framework-provider-configure
terraform
https://developer.hashicorp.com/terraform/tutorials/providers-plugin-framework/providers-plugin-framework-provider-configure
devops
hcl
rn // errors with provider-specific guidance. if host == "" { resp.Diagnostics. AddAttributeError ( path. Root ( "host" ), "Missing HashiCups API Host" , "The provider cannot create the HashiCups API client as there is a missing or empty value for the HashiCups API host. " + "Set the host value in the configuration or ...
12
800
2026-03-23T10:59:08.138749
llms-full.txt
angular
https://angular.dev/assets/context/llms-full.txt
framework
typescript
rn userResource.value().firstName; } // fallback in case the resource value is `undefined` or if the resource is in error state return undefined; }); ``` The `resource` function accepts a `ResourceOptions` object with two main properties: `params` and `loader`. The `params` property defines a reactive computation that ...
245
794
2026-03-23T10:56:08.577983
quickstart
supabase
https://supabase.com/docs/guides/queues/quickstart
database
typescript
q schema # For security purposes, you must enable Row Level Security (RLS) on all Queue tables (all tables in pgmq schema that begin with q_ ) if the Data API is enabled. You’ll want to create RLS policies for any Queues you want your client-side consumers to interact with. Grant permissions to pgmq_public database fun...
4
800
2026-03-23T11:25:22.660575
spring-boot-flyway
neon
https://neon.tech/guides/spring-boot-flyway
database
sql
2. Using the Flyway API Programmatically For more fine-grained control or to integrate migration execution within your application lifecycle, you can use the Flyway API programmatically. Start by creating a configuration class to set up the Flyway bean: package com . example . neon ; import org . flywaydb . core . Flyw...
8
800
2026-03-23T11:18:36.848377
releases.html
rust
https://doc.rust-lang.org/releases.html
language
rust
Set::replace HashSet::get OsString::with_capacity OsString::clear OsString::capacity OsString::reserve OsString::reserve_exact OsStr::is_empty OsStr::len std::os::unix::thread RawPthread JoinHandleExt JoinHandleExt::as_pthread_t JoinHandleExt::into_pthread_t HashSet::hasher HashMap::hasher CommandExt::exec File::try_cl...
403
800
2026-03-23T10:51:05.440580
?s=k8sobjects
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=k8sobjects
devops
python
stall When building a custom collector you can add this exporter to the manifest file like the following: exporters : - gomod : github.com/hydrolix/hydrolix-exporter v1.2.0 v1.2.0 Version Collector Language Exporter Component Apache 2.0 License Package Details (go-collector) Repository InfluxDB Exporter by 🔭 OpenTelem...
40
800
2026-03-23T11:36:38.894173
move-config
terraform
https://developer.hashicorp.com/terraform/tutorials/modules/move-config
devops
hcl
) } # (7 unchanged attributes hidden) + timeouts { + create = "10m" + delete = "15m" } } # module.web_security_group.aws_security_group_rule.egress_with_cidr_blocks[0] will be updated in-place # (moved from module.security_group.aws_security_group_rule.egress_rule) ~ resource "aws_security_group_rule" "egress_with_cidr...
19
756
2026-03-23T11:29:45.049853
?s=genai
opentelemetry
https://opentelemetry.io/ecosystem/registry//?s=genai
devops
python
HTTPS provider for OpenTelemetry Collector configuration maps. go confmap provider collector https Quick Install When building a custom collector you can add this provider to the manifest file like the following: providers : - gomod : go.opentelemetry.io/collector/confmap/provider/httpsprovider v1.54.0 v1.54.0 Version ...
22
800
2026-03-23T11:31:34.220251