Skip to content

Instantly share code, notes, and snippets.

View vhpm18's full-sized avatar

VictorHugo Pereira vhpm18

  • San juan de los Morros, Venezuela
View GitHub Profile
@vhpm18
vhpm18 / claude_code_prompts_and_tools.yaml
Created September 19, 2025 12:00 — forked from sergeyk/claude_code_prompts_and_tools.yaml
Claude Code System Prompt and Tool Descriptions
model: claude-opus-4-20250514
messages:
- role: user
content:
- type: text
text: |
<system-reminder>
As you answer the user's questions, you can use the following context:
# important-instruction-reminders
Do what has been asked; nothing more, nothing less.
@vhpm18
vhpm18 / columns_cheat_sheet.md
Created August 28, 2024 22:35
Laravel Migration Cheat Sheet

Columns

Available Column Types

The schema builder contains a variety of column types that you may specify when building your tables:

The schema builder contains a variety of column types that you may specify when building your tables:

Command` Description
$table->bigIncrements('id'); Auto-incrementing UNSIGNED BIGINT (primary key) equivalent column.
$table-&gt;bigInteger('votes'); BIGINT equivalent column.
@vhpm18
vhpm18 / PrimeDatatables.vue
Created November 14, 2023 21:58 — forked from coolsam726/PrimeDatatables.vue
A fully functional Vue component to work with savannabits/primevue-datatables package (Works with tailwindcss and Vue.js 3.x). NB: The usage example is based on savannabits/acacia, a backend generator I developed to make your life easier by generating code for the backend CRUDs. You can flesh out the unnecessary parts to remain with the bare-bon…
<template>
<DataTable
class="p-datatable-sm"
:value="records"
:lazy="true"
:auto-layout="true"
:paginator="true"
:rows="10"
v-model:filters="filters"
ref="dt"