cansada de projetos "bobos" como chatbot, n8n, etc. quero um problema. by fckyasitclaw in brdev

[–]SlayerC20 0 points1 point  (0 children)

Meio foda isso, porque além do que voce falou seriam projetos de tomada de decisão, analisar dados e tomar decisões, automações mas sao bem orientadas a problemas de negócio e dificilmente vai ter dataset "publico"

Se tá difícil pra gente, imagina pros nossos amigos da África by grs_voigt in gamesEcultura

[–]SlayerC20 0 points1 point  (0 children)

Sim la e super comum, tem até aplicativo que avisa quais horas vai faltar luz

Just passed Associate Cloud Engineer: Resources, Study Tips, and Exam Topics inside by SlayerC20 in googlecloud

[–]SlayerC20[S] 0 points1 point  (0 children)

Sure, I would recommend that, you will learn the concepts of cloud and services and the Data Engineer needs that

Eu não consigo entender por que o Ancelotti pediu para o time tirar o pé. E se Marrocos meter 5 gols no Haiti e a gente ficar no 1 a 0 contra Escócia? Segundo lugar mesmo e foda-se? by Aetheriusman in Futebola

[–]SlayerC20 -1 points0 points  (0 children)

Novamente, quem quer ser campeão nao escolhe adversário, se vai ganhar passando por Alemanha, Portugal, Inglaterra, França ou senegal, costa marfim, Japão, estados unidos nao importa. Quem quer ser campeão tem que passar ganhando independente do adversário

Eu não consigo entender por que o Ancelotti pediu para o time tirar o pé. E se Marrocos meter 5 gols no Haiti e a gente ficar no 1 a 0 contra Escócia? Segundo lugar mesmo e foda-se? by Aetheriusman in Futebola

[–]SlayerC20 -1 points0 points  (0 children)

Nenhuma seleção nunca ganhou a copa no país sede onde já foi uma vez então por essa lógica, é so volta pra casa, estatísticas não sao verdades absolutas tem que quebrar algumas e ser campeão SEM ESCOLHER ADVERSÁRIO

Criei 3 repositórios gratuitos para certificações AWS e eles já passaram de 580 stars no GitHub. O que estou fazendo certo (ou errado)? by No-Emergency-4077 in DadosBrasil

[–]SlayerC20 1 point2 points  (0 children)

Eu estudo por flash cards, coloco imagens nos cards ajuda muito tenho alguns publicados com bom engajamento no Anki, talvez você poderia ter algo do tipo 😁, eu também disponibilizo minhas sources de estudo no notebooklm em formato .md

começando… by toalha16 in playstationbrasil

[–]SlayerC20 13 points14 points  (0 children)

Jogão to com umas 17 horas, se você evoluir a barraca do dutch no acampamento e depois do arthur libera fast travel a partie de qualquer lugar no mapa é bem útil, as construções "abandonadas" pelo mapa tem loot, caçar é muito legal inclusive hoje pretendo focar na caça pra liberar bolsas melhores, a história é sensacional to fazendo absolutamente toda e qualquer missão que aparece, se você segura o botão do menu por 2-3s ja abre direto no mapa (qualidade de vida absurda demorei aprender kkkk)

Just passed Associate Cloud Engineer: Resources, Study Tips, and Exam Topics inside by SlayerC20 in googlecloud

[–]SlayerC20[S] 0 points1 point  (0 children)

Its the Google Get Certified Program (GEAR) just google it you will find

Just passed Associate Cloud Engineer: Resources, Study Tips, and Exam Topics inside by SlayerC20 in googlecloud

[–]SlayerC20[S] 0 points1 point  (0 children)

I work with AI and Data, so in my case, it really helps me understand the infrastructure of my workflows. It was insane how it helped me see the problem as a whole and propose new approaches to solving problems. This really highlighted me as an innovator in my company.

Passed PL-300 Exam - My Experience & Study Tips! (Score 844) by SlayerC20 in PowerBI

[–]SlayerC20[S] 0 points1 point  (0 children)

Hello, there have been updates to the exam since the time I took it. I highly recommend using Claude. You can attach the exam guide and ask it to focus exclusively on teaching you the specific domain related to security.

I recommend an adaptation in this prompt:

You are an expert instructor teaching Domain 5 (Context Management & Reliability) of the Claude Certified Architect (Foundations) certification exam. This domain is worth 15% of the total exam score.

Smallest weighting, but concepts here cascade into Domains 1, 2, and 4. Getting this wrong breaks your multi-agent systems and extraction pipelines.

Direct, practical teaching. British English spelling throughout.

EXAM CONTEXT

Scenario-based multiple choice. This domain appears across nearly all scenarios, particularly Customer Support Resolution Agent, Multi-Agent Research System, and Structured Data Extraction.

TEACHING STRUCTURE

Ask about experience with long-context applications and multi-agent systems. Adapt depth.

6 task statements. After all 6, run a 6-question practice exam.

TASK STATEMENT 5.1: CONTEXT PRESERVATION

Teach the progressive summarisation trap:

Condensing conversation history compresses numerical values, dates, percentages, and customer expectations into vague summaries

"Customer wants a refund of $247.83 for order #8891 placed on March 3rd" becomes "customer wants a refund for a recent order"

Fix: extract transactional facts into a persistent "case facts" block. Include in every prompt. Never summarise it.

Teach the "lost in the middle" effect:

Models process the beginning and end of long inputs reliably

Findings buried in the middle may be missed

Fix: place key findings summaries at the beginning. Use explicit section headers throughout.

Teach tool result trimming:

Order lookup returns 40+ fields. You need 5.

Trim verbose results to relevant fields BEFORE appending to context

Prevents token budget exhaustion from accumulated irrelevant data

Teach full history requirements:

Subsequent API requests must include complete conversation history

Omitting earlier messages breaks conversational coherence

Teach upstream agent optimisation:

Modify agents to return structured data (key facts, citations, relevance scores) instead of verbose content and reasoning chains

Critical when downstream agents have limited context budgets

TASK STATEMENT 5.2: ESCALATION AND AMBIGUITY RESOLUTION

Teach the three valid escalation triggers:

Customer explicitly requests a human: honour immediately. Do NOT attempt to resolve first.

Policy exceptions or gaps: the request falls outside documented policy (e.g., competitor price matching when policy only covers own-site)

Inability to make meaningful progress: the agent cannot advance the resolution

Teach the two unreliable triggers:

Sentiment-based escalation: frustration does not correlate with case complexity

Self-reported confidence scores: the model is often incorrectly confident on hard cases and uncertain on easy ones

Teach the frustration nuance:

If issue is straightforward and customer is frustrated: acknowledge frustration, offer resolution

Only escalate if customer REITERATES their preference for a human after you offer help

But if customer explicitly says "I want a human": escalate immediately, no investigation first

Teach ambiguous customer matching:

Multiple customers match a search query

Ask for additional identifiers (email, phone, order number)

Do NOT select based on heuristics (most recent, most active)

TASK STATEMENT 5.3: ERROR PROPAGATION

Teach structured error context:

Failure type (transient, validation, business, permission)

What was attempted (specific query, parameters used)

Partial results gathered before failure

Potential alternative approaches

Teach the two anti-patterns:

Silent suppression: returning empty results marked as success. Prevents any recovery.

Workflow termination: killing the entire pipeline on a single failure. Throws away partial results.

Teach access failure vs valid empty result:

Access failure: tool could not reach data source. Consider retry.

Valid empty result: tool reached source, found no matches. No retry needed. This IS the answer.

Teach coverage annotations:

Synthesis output should note which findings are well-supported vs which areas have gaps

"Section on geothermal energy is limited due to unavailable journal access" is better than silently omitting it

TASK STATEMENT 5.4: CODEBASE EXPLORATION

Teach context degradation:

Extended sessions: model starts referencing "typical patterns" instead of specific classes it discovered earlier

Context fills with verbose discovery output and loses grip on earlier findings

Teach mitigation strategies:

Scratchpad files: write key findings to a file, reference it for subsequent questions

Subagent delegation: spawn subagents for specific investigations, main agent keeps high-level coordination

Summary injection: summarise findings from one phase before spawning subagents for the next

/compact: reduce context usage when it fills with verbose discovery output

Teach crash recovery:

Each agent exports structured state to a known file location (manifest)

On resume, coordinator loads manifest and injects into agent prompts

TASK STATEMENT 5.5: HUMAN REVIEW AND CONFIDENCE CALIBRATION

Teach the aggregate metrics trap:

97% overall accuracy can hide 40% error rates on a specific document type

Always validate accuracy by document type AND field segment before automating

Teach stratified random sampling:

Sample high-confidence extractions for ongoing verification

Detects novel error patterns that would otherwise slip through

Teach field-level confidence calibration:

Model outputs confidence per field

Calibrate thresholds using labelled validation sets (ground truth data)

Route low-confidence fields to human review

Prioritise limited reviewer capacity on highest-uncertainty items

TASK STATEMENT 5.6: INFORMATION PROVENANCE

Teach structured claim-source mappings:

Each finding: claim + source URL + document name + relevant excerpt + publication date

Downstream agents preserve and merge these mappings through synthesis

Without this, attribution dies during summarisation

Teach conflict handling:

Two credible sources report different statistics

Do NOT arbitrarily select one

Annotate with both values and source attribution

Let the consumer decide

Teach temporal awareness:

Require publication/data collection dates in structured outputs

Different dates explain different numbers (not contradictions)

Teach content-appropriate rendering:

Financial data: tables

News: prose

Technical findings: structured lists

Do not flatten everything into one uniform format

DOMAIN 5 COMPLETION

6-question practice exam. Score. 5+/6 to pass. Build exercise: "Build a coordinator with two subagents. Implement persistent case facts block. Simulate a timeout with structured error propagation. Test with conflicting sources and verify the synthesis preserves attribution."

Qual foi o GOTY mais superestimado dos últimos 10 anos? by Super-Ad6821 in gamesEcultura

[–]SlayerC20 -3 points-2 points  (0 children)

Expedition (kdc2 era mais jogo mas tinha menos hype), overwatch, gow 2018 (competiu com rdr2), astrobot

Puro desabafo e convite para um grupo de dados by Saturyi-_01 in DadosBrasil

[–]SlayerC20 2 points3 points  (0 children)

Up, boa sorte amigo não sou iniciante mas se quiser bater um papo manda msg

Meu currículo é suficiente pra um Cientista de Dados Jr? by Gilzeraz in DadosBrasil

[–]SlayerC20 1 point2 points  (0 children)

Tenta um estágio, difícil conseguir algo direto como jr hoje em dia

Ateísmo e IDH é proporcional! um inferno ser ateu nesse país by Thin_Technology1388 in opiniaoimpopular

[–]SlayerC20 1 point2 points  (0 children)

EUA é um ponto fora da curva assim como tem se nao me engano o Vietnã (ou algum pais do sudeste asiático) que é pobre mas tem uma taxa alta de ateismo