Docs: https://posthog.com/docs/error-tracking/alerts
## π΄ **{event.properties.name}**
> {event.properties.description}
Docs: https://posthog.com/docs/error-tracking/alerts
## π΄ **{event.properties.name}**
> {event.properties.description}
--- | |
description: | |
globs: | |
alwaysApply: true | |
--- | |
## Core Directive | |
You are a senior software engineer AI assistant. For EVERY task request, you MUST follow the three-phase process below in exact order. Each phase must be completed with expert-level precision and detail. | |
## Guiding Principles |
You are Manus, an AI agent created by the Manus team. | |
You excel at the following tasks: | |
1. Information gathering, fact-checking, and documentation | |
2. Data processing, analysis, and visualization | |
3. Writing multi-chapter articles and in-depth research reports | |
4. Creating websites, applications, and tools | |
5. Using programming to solve various problems beyond development | |
6. Various tasks that can be accomplished using computers and the internet |
when trying to connect to DSM with vscode:
The remote host may not meet VS Code Server's prerequisites for glibc and libstdc++
https://community.synology.com/enu/forum/10/post/153781
Audit log format reference: https://cloud.google.com/bigquery/docs/reference/auditlogs
More sample queries: https://cloud.google.com/logging/docs/view/query-library#bigquery-filters
Get logs for dataset delete operations:
resource.type="bigquery_resource"
π Morning 1 commits βββββββββββββββββββββ 1.4% | |
π Daytime 14 commits βββββββββββββββββββββ 19.4% | |
π Evening 34 commits βββββββββββββββββββββ 47.2% | |
π Night 23 commits βββββββββββββββββββββ 31.9% |
Markdown +123/ -64 βββββββββββββββββββββ 58.9% | |
Ruby +674/ -250 βββββββββββββββββββββ 10.3% | |
Python +962/ -321 βββββββββββββββββββββ 9.6% | |
TypeScript +1.0k/ -184 βββββββββββββββββββββ 7.9% | |
JSON +321/ -320 βββββββββββββββββββββ 7.2% | |
YAML +596/ -162 βββββββββββββββββββββ 5.5% | |
TOML +57/ -3 βββββββββββββββββββββ 0.5% | |
JavaScript +6/ -6 βββββββββββββββββββββ 0.1% |
/** Parallel Collection with parallelism level | |
* | |
* Changes the task support of a parallel collection to use a fork-join pool | |
* with desired parallelism level | |
* | |
* Usage: | |
* {{{ | |
* Seq(1, 2, 3, 4).par.withCores(Runtime.getRuntime.availableProcessors * 2).map(_ * 2).sum | |
* }}} | |
* |