Skip to content

Instantly share code, notes, and snippets.

@calebcgates
calebcgates / audit-report.md
Created May 1, 2026 20:12
Nark audit report — Recoupable-com/Recoup-API

Nark Audit Report

Project: Recoupable-com/Recoup-API Date: 2026-05-01 Nark Version: 1.9.1 Git Commit: c9c4065f Total Violations: 53 (26 True Positives, 27 False Positives, 0 Borderline)


@calebcgates
calebcgates / nark-audit-report.md
Created May 1, 2026 20:08
Nark audit report — Recoup Chat (Next.js 16, React Query, Vercel AI SDK)

Nark Violation Analysis Report

Project: Recoup-Chat Date: 2026-05-01 Nark Version: 1.9.1 Corpus Version: 1.0.0 Git Commit: 5897f0d2 Total Violations: 79 (40 True Positives, 39 False Positives)


let querySentance = '';
let wordSlots = ["WordI", "WordII", "WordIII", "WordIV", "WordV", "WordVI", "WordVII", "WordVIII", "WordIX", "WordX", "WordXI", "WordXII", "WordXIII", "WordXIV", "WordXV", "WordXVI", "WordXVII", "WordXVIII", "WordIXX", "WordXX", "WordXXI", "WordXXII", "WordXXIII", "WordXXIV", "WordXXV", "WordXXVI", "WordXXVII", "WordXXVIII", "WordIXXX", "WordXXX",];
wordSlots.forEach((word)=>{
let slot = this.event.request.intent.slots[word];
if (slot !== undefined && slot.value !== '' && slot.value !== '?' && slot.value !== null && slot.value !== undefined){
querySentance = querySentance+' '+slot.value;
}
});
{
"interactionModel": {
"languageModel": {
"invocationName": "free form text",
"intents": [
{
"name": "AMAZON.CancelIntent",
"samples": [
"cancel"
]
const fetchquote = async ()=> {
const res = await fetch('https://talaikis.com/api/quotes/random/');
const jsonObject = await res.json();
console.log(jsonObject.quote)
}
fetchquote();
LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/ audacity
This starts it.
Read this article next
http://xahlee.info/UnixResource_dir/_/ldpath.html
cd py_environments/[project name]
source bin/activate
//Activates the virual environment
cd src
//once pip install everything you want in your virual environment save to requirments.txt
pip freeze > requirements.txt
// if you change a model
src$ python manage.py makemigrations
src$ python manage.py migrate
// starting your web app.
//
// Copyright Caleb Gates 2017
//
'use strict';
const AWS = require('aws-sdk');
AWS.config.region = 'us-east-1';
var lambda = new AWS.Lambda();
const docClient = new AWS.DynamoDB.DocumentClient({region: 'us-east-1'});
'use strict';
/**
* This sample demonstrates a simple skill built with the Amazon Alexa Skills Kit.
* The Intent Schema, Custom Slots, and Sample Utterances for this skill, as well as
* testing instructions are located at http://amzn.to/1LzFrj6
*
* For additional samples, visit the Alexa Skills Kit Getting Started guide at
* http://amzn.to/1LGWsLG
*/
'use strict';
/**
* This sample demonstrates a simple skill built with the Amazon Alexa Skills Kit.
* The Intent Schema, Custom Slots, and Sample Utterances for this skill, as well as
* testing instructions are located at http://amzn.to/1LzFrj6
*
* For additional samples, visit the Alexa Skills Kit Getting Started guide at
* http://amzn.to/1LGWsLG
*/