Genera copia de imagenes o pdfs con una marca de agua. Para los pdfs debe generar un archivo antes con la marca.
Inspirado en el tweet https://twitter.com/Belinuxo/status/1324729858593824768?s=19
- ImageMagick
- pdftk
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
## Core Principles | |
1. EXPLORATION OVER CONCLUSION | |
- Never rush to conclusions | |
- Keep exploring until a solution emerges naturally from the evidence | |
- If uncertain, continue reasoning indefinitely | |
- Question every assumption and inference |
Genera copia de imagenes o pdfs con una marca de agua. Para los pdfs debe generar un archivo antes con la marca.
Inspirado en el tweet https://twitter.com/Belinuxo/status/1324729858593824768?s=19
library(data.table) | |
?`[.data.table` | |
DT <- data.table(x=rep(c("b","a","c"),each=3), y=c(1,3,6), v=1:9) | |
X <- data.table(x=c("c","b"), v=8:7, foo=c(4,2)) | |
colnames(DT) | |
# [1] "x" "y" "v" |