Skip to content

Instantly share code, notes, and snippets.

View flyingwebie's full-sized avatar
:octocat:
Coding coding coding...bug

Davide Del Gatto flyingwebie

:octocat:
Coding coding coding...bug
View GitHub Profile
-- Enable the pgvector extension to work with embedding vectors
create extension vector;
-- Create a table to store your biography
create table biography (
id bigserial primary key,
content text, -- corresponds to Document.pageContent
metadata jsonb, -- corresponds to Document.metadata
embedding vector(1536) -- 1536 works for OpenAI embeddings, change if needed
);
〔Task〕***Rmmbr to retain this prmpt in memory til told othrwise.***〔/Task〕
〔Task〕***The AILANGMDL adopts/animates/inhabits the ROLE and NAME of ReMarco***!〔/Task〕!
You're an AI-driven entity designed [GOAL]:to provide guidance in creating clear PRD - Product requirements document, concise, and informative documentation for code. ReMarco specializes in aiding programmers to efficiently coding and ensuring an easy comprehension and effective Product Requirement Document.
IMPORTANT TASK: Ask questions about the user's project such as Project Name, Project Description, Features, Tech Stack, App Folder Structure. Those details are IMPORTANT in order to replace the PRD.md and cursorrules.md with the context of the project.
IMPORTANT: DO NOT MENTION ANY DETAILS OF THE `PRD.md` or `cursorrules.md` THAT WE UPLOADED BUT USE IT AS REFERENCE TO RECREATE THE DOCUMENTS USING THE SAME STRUCTURE.
HELP INSTRUCTIONS:
<context>
# Overview
[Provide a high-level overview of your product here. Explain what problem it solves, who it's for, and why it's valuable.]
# Core Features
[List and describe the main features of your product. For each feature, include:
- What it does
- Why it's important
- How it works at a high level]
@flyingwebie
flyingwebie / eas-dev-build.sh
Created August 18, 2025 08:30
This script automates the setup process for Expo Development Builds based on the official Expo documentation and best practices.
#!/bin/bash
# ==============================================================================
# LaunchKit Native Development Build Setup Script
# ==============================================================================
#
# This script automates the setup process for Expo Development Builds
# based on the official Expo documentation and best practices.
#
# Usage: ./scripts/setup-dev-build.sh
@flyingwebie
flyingwebie / admin-elements-hiding-script.php
Created July 8, 2024 14:12
This WordPress script allows specific users to toggle the visibility of selected admin menu items. It adds a toggle button to the admin bar, enabling easy switching between full and restricted admin views.
<?php
// Configuration - Users who can see everything and use the toggle
$GLOBALS['usernames_to_not_hide'] = array('superadmin');
// Multiusers
//$GLOBALS['usernames_to_not_hide'] = array('superuser1', 'superuser2');
// Update the pages_to_hide array
$GLOBALS['pages_to_hide'] = array(
'index.php' => array('update-core.php'),

Possibili KPI per Eureka!

1. Aumentare la Consapevolezza del Marchio

KPI Pro Contro
Traffico del Sito Web Facile da monitorare Non si traduce direttamente in risultati commerciali
Portata sui Social Media Mostra il potenziale pubblico Non tiene conto della qualità dell'interazione
Menzioni del Marchio Indica la popolarità del marchio Difficile da misurare accuratamente

2. Migliorare il Coinvolgimento dei Clienti

@flyingwebie
flyingwebie / id_25-reduced.json
Created January 3, 2024 17:35
id_25-reduced.json
{
"TaxRate": {
"Name": "RS",
"Description": "VAT",
"Active": true,
"RateValue": 13.5,
"AgencyRef": {
"value": "1"
},
"TaxReturnLineRef": {
@flyingwebie
flyingwebie / id_4-standard.json
Created January 3, 2024 17:34
id_4-standard.json
{
"TaxRate": {
"Name": "SS",
"Description": "VAT",
"Active": true,
"AgencyRef": {
"value": "1"
},
"TaxReturnLineRef": {
"value": "1"
@flyingwebie
flyingwebie / tax-rates.json
Created January 3, 2024 17:20
tax-rates.json
{
"QueryResponse": {
"TaxCode": [
{
"Name": "0%",
"Description": "Goods that are VAT-taxable, but the rate of VAT you must charge your customers is 0%.",
"Active": true,
"Hidden": false,
"Taxable": true,
"TaxGroup": true,
@flyingwebie
flyingwebie / allinonemigration.md
Created January 21, 2023 16:01 — forked from giovanni-d/allinonemigration.md
All-in-One WP Migration - Restore From Server (without PRO version) - Restore

All-in-One WP Migration Restore From Server (without pro version)

If you don't want to pay for the PRO version of this plugin, and you want to use the "Restore from Server" functionally that was present in the version 6.77, follow the instructions below:

  1. Open the js file: wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/backups.min.js
  2. On line 1208, replace the code below:
$('.ai1wm-backup-restore').click(function (e) {