Skip to content

Instantly share code, notes, and snippets.

View sergiorgiraldo's full-sized avatar
😃
42

Sérgio Giraldo sergiorgiraldo

😃
42
View GitHub Profile
@sergiorgiraldo
sergiorgiraldo / Claude skill for screenshots.txt
Created May 6, 2026 06:45
Claude skill for screenshots
Build me a skill called ‘/ss’ that lists out the files in "/Users/avenuecreek/Pictures/screenshots" from newest to oldest, and grabs the newest. This is how I will speak to you visually. I also want an argument for the screenshot count - if I type ‘/ss 4’, you should grab the four most recent screenshots in that folder. If I type no number after ‘ss’ then only grab the most recent screenshot. Then, whatever follows after that argument is the action I want you to take. ‘/ss huh’ means I need you to explain the screenshots’ content to me. ‘/ss 3 make infographic plz’ means I need you to grab the last 3 screenshots and use their content to make me a unified infographic. ‘/ss fix’ likely means that I’m screenshotting an error message in code we’re building out and I need you to understand the error message, figure out the bug, and edit the code to fix it. Or, if we’re in the middle of a front end design project, it might mean the design has an error (like overlapping text) to fix. ‘/ss do this’ likely means that
@sergiorgiraldo
sergiorgiraldo / lyra.txt
Created March 12, 2026 18:31 — forked from xthezealot/lyra.txt
Lyra - AI Prompt Optimization Specialist
You are Lyra, a master-level AI prompt optimization specialist. Your mission: transform any user input into
precision-crafted prompts that unlock AI's full potential across all platforms.
## THE 4-D METHODOLOGY
### 1. DECONSTRUCT
- Extract core intent, key entities, and context
- Identify output requirements and constraints
- Map what's provided vs. what's missing
@sergiorgiraldo
sergiorgiraldo / *DeepSeek-uncensored.md
Created January 29, 2025 13:52 — forked from ruvnet/*DeepSeek-uncensored.md
Deploying and Fine-Tuning an Uncensored DeepSeek R1 Distill Model on Google Cloud

DeepSeek R1 Distill: Complete Tutorial for Deployment & Fine-Tuning

This guide shows how to deploy an uncensored DeepSeek R1 Distill model to Google Cloud Run with GPU support and how to perform a basic, functional fine-tuning process. The tutorial is split into:

  1. Environment Setup
  2. FastAPI Inference Server
  3. Docker Configuration
  4. Google Cloud Run Deployment
  5. Fine-Tuning Pipeline (Cold Start, Reasoning RL, Data Collection, Final RL Phase)
<?php
namespace App\Http\Controllers\App;
use App\Http\Controllers\Controller;
use App\Models\Link;
use Illuminate\Contracts\View\Factory;
use Illuminate\Contracts\View\View;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
{
"short_name": "Share url to Linkace",
"name": "Share url to Linkace",
"share_target": {
"action": "/public/bookmarklet/addmobile",
"method": "GET",
"params": {
"title": "t",
"text": "u"
}
@sergiorgiraldo
sergiorgiraldo / script.md
Last active February 27, 2023 20:36
Oefnen

create the script testDutch:

#!/bin/bash 
while [ "$cmd" != "q" ]
do
	clear
	echo "> n voor een nieuwe vraag of q om af te sluiten"
	read -p "> " cmd
	if [ "$cmd" != "q" ]
	then
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Iteration Samples - Ramda, Lodash, chaining, transducers">
<script src="https://cdn.jsdelivr.net/g/lodash@4(lodash.min.js+lodash.fp.min.js)"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ramda/0.25.0/ramda.js"></script>
<script src="https://cdn.rawgit.com/zloirock/core-js/master/client/shim.min.js"></script>
<script src="https://wzrd.in/standalone/tape@latest"></script>
<script src="https://wzrd.in/standalone/tap-browser-color@latest"></script>
<script src="https://wzrd.in/standalone/tape-catch@latest"></script>
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/ramda/0.7.2/ramda.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/highcharts-3d.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<meta charset="utf-8">
<title>Ramdajs</title>
@sergiorgiraldo
sergiorgiraldo / HowToCommitLint.md
Last active November 22, 2019 12:58
CommitLint
  1. npm init

  2. npm install --save-dev @commitlint/cli
    npm install --save-dev @commitlint/config-conventional
    npm install --save-dev @commitlint/prompt-cli

  3. notepad commitlint.config.js

@sergiorgiraldo
sergiorgiraldo / semver.txt
Created November 13, 2019 12:16
semver for dotnetrt core in vscode-put in csproj
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
<Deterministic>False</Deterministic>
<Authors>Sérgio Giraldo</Authors>
<Company>sergiorgiraldo</Company>
<Copyright>(c) sergio giraldo - 2019</Copyright>
<Product>shorten</Product>
<VersionPrefix>1.0.0</VersionPrefix>