pandoc talk.md -o Why\ Adding\ Ontologies\ to\ LLMs\ Wont\ Yield\ Machine\ Intelligence.epub
Поводом дискусије https://cirilicalab.org/d/10-srpski-elektronski-recnik/27
mkdir eng_serb_cyrl
cd eng_serb_cyrl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;;; rdfox-datalog-mode.el --- Major mode for editing RDFox Datalog files -*- lexical-binding: t; -*- | |
| ;; Author: Aleksandar Simic <a@repl.ist> | |
| ;; Keywords: languages, convenience | |
| ;; Version: 0.1.0 | |
| ;; This file is NOT part of GNU Emacs. | |
| ;;; Commentary: | |
| ;; |
Taken from Geoffrey Huntley's X Space discussion, titled "On hiring software engineers & identifying talent now that AI is here".
Transcribed by R J Hunter: https://privatebin.net/?4901e18323cbfaa3#3X9BgUN9yprVbB2NULmDexv9VBbcVH4QKFgtSk2nisy3
Main Topic: How to hire software engineers now that AI tools have transformed the field
Three Categories of Candidates:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/sbcl --script | |
| ;;; Claude Code Status Bar - Common Lisp Implementation | |
| ;;; Equivalent of the Node.js/Bun statusline script | |
| (require :uiop) | |
| (require :sb-posix) | |
| ;;; ANSI color constants | |
| (defparameter *colors* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; inspiration taken from Marcin Borkowski's tweet, that makes non | |
| ;; interactive functions, interactive: | |
| ;; https://x.com/marcin_mbork/status/1937033217389076789 | |
| (defun my/make-function-interactive (function-name) | |
| "Make a non-interactive function interactive by adding advice. | |
| Prompts for FUNCTION-NAME and adds :before advice with an interactive declaration." | |
| (interactive "aFunction to make interactive: ") | |
| (let ((func-symbol (if (stringp function-name) | |
| (intern function-name) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Extract Augment Chat data from VS Code workspace storage. | |
| This script: | |
| 1. Takes a workspace directory path | |
| 2. Calculates the VS Code workspace storage hash using the correct algorithm | |
| 3. Finds the corresponding SQLite database | |
| 4. Extracts the Augment chat data | |
| 5. Formats it as readable Markdown |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Changelog podcast episode #96 with Steve Yegge: https://changelog.com/friends/96 | |
| Welcome to Change Log and Friends, a weekly talk show about | |
| babysitting AI agents. Thanks as always to our partners at Fly.io, the | |
| public Cloud built for developers who ship. We love Fly. You might | |
| too. Learn more at Fly.io. | |
| Okay. Let's talk. Well, friends, Retul agents is here. Yes. Retul has | |
| launched Retul agents. |
Amp CLI, a bit overzealous?
When you run amp CLI in a "non standard" terminal, like the ones that are available in Emacs, like eat the terminal behaves strangely.
But if I run amp in eat it displays like so:
bash-5.2$ amp
Type \ followed by Enter to insert newlines, or use Shift+Enter in supported terminals.
Interrupt the agent with Ctrl+C, exit with Ctrl+D.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| version="0.0.1" | |
| what_arch=`uname -m` | |
| if [ ${what_arch} == "x86_64" ] | |
| then | |
| arch="amd64" | |
| elif [ ${what_arch} == "arm64"] | |
| then |
NewerOlder