Self-reference and strange loops in complex systems
How paradigms shift and knowledge evolves
Self-reference and strange loops in complex systems
How paradigms shift and knowledge evolves
The European Lisp Symposium 2025 was held in Zürich, Switzerland on May 19-20, featuring presentations on modern Lisp applications, language design, and AI integration. This report summarizes key presentations and insights relevant to technical teams.
December 11, 2024 | 10:00 AM - 2:30 PM PT
SmallCon is the first virtual conference dedicated to exploring the potential of Small Language Models (SLMs) in production environments. Industry leaders from prominent tech companies share insights, best practices, and real-world implementation experiences.
I hereby claim:
To claim this, I am signing this object:
// Resolve a dependency graph to sequence | |
// https://web.stanford.edu/~jurafsky/slp3/15.pdf | |
const resolve = (sentence, deps) => { | |
let ops = []; | |
while (sentence.length > 0) { | |
let word = sentence.pop(); | |
if (deps.hasOwnProperty(word)) { | |
console.log('Dependencies exist for', word); |
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
mQENBF0198cBCADUXddFEe4jPV8r6NW/AWjMlLkkzIOUkAgoBpOosBWN3Q7vWJMl | |
rmkBV3rVy/qjZHXukf9TuZDeqkPQ9BumAuEDLX+KmlSvE1W+ar9gATPDofI0Cmok | |
FYhM8s+kM1M31I+wfWjvuMaGZJMOsxD7Bgr9JaXBM9yck2ZA6Gn3Am+M6UcDAh1j | |
ST6Y/ONZvjeUWVd/ysSjAcqAiL/FmCndDMq1+TaQzBp+viAPavN3hrx3w1VXR1HK | |
SnlcAzeWdlmLQBNlDAiNV0uJm1g6gKKfHb3zwetnswT52jlD7/atwoMHbPMpyKp1 | |
p5MEG89XeYbo2UrubCU3iZBJa2VZe/6T9dxDABEBAAG0H0phc29uIFdhbHNoIDxq | |
d2Fsc2gxQGNoZXd5LmNvbT6JAU4EEwEIADgWIQTzbBmWV/ol8bo1TW+0lb/m/ZrG | |
CAUCXTX3xwIbAwULCQgHAgYVCgkICwIEFgIDAQIeAQIXgAAKCRC0lb/m/ZrGCLKv |
HOST=example.com | |
npm install -g get-graphql-schema graphql-cli graphql-faker | |
mkdir graphql-faker-$HOST && cd graphql-faker-$HOST | |
graphql -p $HOST init | |
graphql -p $HOST get-schema | |
# The previous is the same as | |
# get-graphql-schema https://$HOST/graphql/ > schema.graphql | |
graphql-faker schema.graphql |
export PATH="/usr/local/sbin:$PATH" | |
[[ -r "/usr/local/etc/profile.d/bash_completion.sh" ]] && . "/usr/local/etc/profile.d/bash_completion.sh" | |
alias emacs='/Applications/Emacs.app/Contents/MacOS/Emacs' | |
if [ -f "$(brew --prefix)/opt/bash-git-prompt/share/gitprompt.sh" ]; then | |
__GIT_PROMPT_DIR=$(brew --prefix)/opt/bash-git-prompt/share | |
GIT_PROMPT_ONLY_IN_REPO=1 | |
source "$(brew --prefix)/opt/bash-git-prompt/share/gitprompt.sh" |