[背景音:咖啡馆环境音,键盘敲击声]
Alex: 嘿,Sam!好久不见,最近在搞什么?
Sam: Alex!正好想找你聊聊。我最近在用 Claude Code,就是 Anthropic 出的那个命令行工具。你知道吗?用着用着,我突然想起了咱们以前讨论过的 Smalltalk...
Alex: 当然记得!那个"代码即数据,数据即代码"的老古董?等等,你不会是想...
| "use client"; | |
| import React from "react"; | |
| import { View, StyleSheet, Animated, Easing, ViewStyle } from "react-native"; | |
| const BASE_COLORS = { | |
| dark: { primary: "rgb(17, 17, 17)", secondary: "rgb(51, 51, 51)" }, | |
| light: { | |
| primary: "rgb(250, 250, 250)", | |
| secondary: "rgb(205, 205, 205)", |
| # Google Analytics Bypassing Adblockers | |
| ## Client | |
| change www.googletagmanager.com => your.domain.com | |
| ``` | |
| <!-- Global site tag (gtag.js) - Google Analytics --> | |
| <script async src="https://your.domain.com/gtag/js?id=UA-123456789-1"></script> | |
| ``` |
| import $ from 'jquery'; | |
| import plugin from './plugin'; | |
| class ScrollToTop { | |
| constructor(element, options) { | |
| const $element = $(element); | |
| $(window).scroll(function () { | |
| if ($(this).scrollTop() > options.offset) { | |
| $element.fadeIn(); |
| # 30 minutes Lisp in Ruby | |
| # Hong Minhee <http://dahlia.kr/> | |
| # | |
| # This Lisp implementation does not provide a s-expression reader. | |
| # Instead, it uses Ruby syntax like following code: | |
| # | |
| # [:def, :factorial, | |
| # [:lambda, [:n], | |
| # [:if, [:"=", :n, 1], | |
| # 1, |