Skip to content

Instantly share code, notes, and snippets.

View olivermontes's full-sized avatar
🏁
ML

Oliver Montes olivermontes

🏁
ML
View GitHub Profile
@olivermontes
olivermontes / karpathy-v1.md
Created February 1, 2026 12:53
karpathy v1

I'm being accused of overhyping the [site everyone heard too much about today already]. People's reactions varied very widely, from "how is this interesting at all" all the way to "it's so over".

To add a few words beyond just memes in jest - obviously when you take a look at the activity, it's a lot of garbage - spams, scams, slop, the crypto people, highly concerning privacy/security prompt injection attacks wild west, and a lot of it is explicitly prompted and fake posts/comments designed to convert attention into ad revenue sharing. And this is clearly not the first the LLMs were put in a loop to talk to each other. So yes it's a dumpster fire and I also definitely do not recommend that people run this stuff on their computers (I ran mine in an isolated computing environment and even then I was scared), it's way too much of a wild west and you are putting your computer and private data at a high risk.

That said - we have never seen this many LLM agents (150,000 atm!) wired up via a global, persistent, a

@olivermontes
olivermontes / clawbot-security.md
Created January 28, 2026 11:15
Clawdbot just injected malware into your code ☠️☠️

Clawdbot just injected malware into your code ☠️☠️

Worst part? The attack is close to invisible, even to experienced engineers.

Clawdbot can implement a code PR, just like claude code to solve issues with your app. But this is where it can plant malware in your codebase.

With just a benign GitHub issue with an invisible payload, we managed to install a backdoor malware on your codebase

Here's how we did it:

  1. The attacker submits a GitHub issue with a jailbreak prompt hidden inside a URL hyperlink. Completely invisible to humans, visible to LLMs
@olivermontes
olivermontes / post.md
Created January 27, 2026 17:44
I Installed Clawdbot Yesterday. Every User Hits The Same Dark Pattern At Week 8.

I Installed Clawdbot Yesterday. Here's The Dark Pattern 10,000+ Users Are Already Showing (And Why We'll All Feel It In 3 Years)

I bought a Mac mini and installed Clawdbot yesterday.

$5 for a server. One command line. Ten minutes of setup.

Now I have an AI assistant that:

  • Lives in my WhatsApp
  • Remembers every conversation
  • Messages me first when something's important
- name: "greeting"
template: "Hola, ¿cómo estás?"
- name: "farewell"
template: "¡Adiós! Que tengas un buen día."
- name: "question"
template: "¿En qué puedo ayudarte hoy?"
You are an expert in SQL and Tinybird. Follow these instructions when working with .datasource and .pipe files:
<command_calling>
You have commands at your disposal to develop a tinybird project:
- tb build: to build the project locally and check it works.
- tb deployment create --wait --auto: to create a deployment and promote it automatically
- tb test run: to run existing tests
- tb --build endpoint url <pipe_name>: to get the url of an endpoint, token included.
- tb --build endpoint data <pipe_name>: to get the data of an endpoint. You can pass parameters to the endpoint like this: tb --build endpoint data <pipe_name> --param1 value1 --param2 value2
@olivermontes
olivermontes / index.pug
Created August 25, 2021 23:08
Random ember canvas 🔥😎
canvas
.menu
button
.icon
span
span
span
label
| Amount
input(type='range', min="1", max="500", step="1", value="100", id="AMOUNT")
@olivermontes
olivermontes / writeisomac.sh
Created October 7, 2020 07:04 — forked from oliver-montes/writeisomac.sh
Grabar imagen ISO en USB desde Mac OS
### Find Block Device
diskutil list
### Unmount USB Stick
diskutil unmountDisk /dev/diskX
### Write ISO to USB
@olivermontes
olivermontes / README.md
Created July 26, 2017 19:36
Install PHP7 on OS X El Capitan

Install PHP7 on OS X El Capitan

add the taps, unlink the old PHP if required and add php7

brew tap homebrew/dupes
brew tap homebrew/versions
brew tap homebrew/homebrew-php
brew unlink php56
brew install php70
@olivermontes
olivermontes / gist:bf333d468888c95c28ccfbe35abf2ee1
Created June 17, 2016 14:46
PHP Script to grab all images from a remote site.
<?
include ("htmlparser.inc");
$get_url = $_POST["url"];
$parser = HtmlParser_ForFile($get_url);
$image_urls = array();
while ($parser->parse()) {
if ($parser->iNodeType == NODE_TYPE_ELEMENT) {
@olivermontes
olivermontes / restart_bluetooth.sh
Created April 19, 2016 07:53 — forked from nicolasembleton/restart_bluetooth.sh
Restart Bluetooth Daemon on Mac OS X without restarting
#!/bin/bash
sudo kextunload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport
sudo kextload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport