Skip to content

Instantly share code, notes, and snippets.

View lancetw's full-sized avatar
🐈

Hsin-lin Cheng lancetw

🐈
View GitHub Profile

created: 2026-04-18T16:30 date: 2026-04-18 reference: Exodus 16; Deuteronomy 8:3; John 6:26-58; Pirkei Avot 1 topic: 從第一世紀視角審視「不要用 AI 生成講章」的牧師貼文 study_type: 常見誤讀糾正 + 主題研究(三線批判) sources:

  • Sefaria.org (Hebrew Bible + Mishnah)
  • Bible Gateway (RCUV)
  • FHL bible.fhl.net (NT Greek)

每日靈修:腓立比書 4:15-20

[15] 腓立比人哪,你們也知道我開始傳福音、離開馬其頓的時候,在收支的事上,除了你們以外,並沒有別的教會和我分擔。 [16] 就是我在帖撒羅尼迦,你們也一再差人來供給我的需用。 [17] 我並不求甚麼饋贈,只求你們的果子不斷增多,歸在你們的賬上。 [18] 但我已經如數收到,並且有餘;我已經充足,因我從以巴弗提受了你們的饋贈,當作極美的香氣,為 神所接納、所喜悅的祭物。 [19] 我的 神必照他榮耀的豐富,在基督耶穌裏,使你們一切所需用的都充足。 [20] 願榮耀歸給我們的父 神,直到永永遠遠。阿們! — 和合本修訂版(RCUV)


created: 2026-04-11T20:41 date: 2026-04-11 reference: Matthew 10:27 topic: 「暗中告訴、明處說出;耳中所聽、屋頂上宣揚」的第一世紀原意 study_type: 逐節解讀(Mode 1) sources:

  • SBLGNT (Society of Biblical Literature Greek New Testament)
  • FHL fhlwh (信望愛新約希臘原文)
  • 和合本修訂版 RCUV (2010, Bible Gateway RCU17TS)

created: 2026-04-11T12:37+08:00 date: 2026-04-11 reference: John 1:1-5 topic: "太初有道:λόγος 的猶太根源 — 不是希臘哲學,不是老子的道" study_type: 逐節解讀 sources:

  • SBLGNT (Greek NT)
  • FHL fhlwh (Greek NT)
  • Sefaria (Genesis 1:1-5 Hebrew, Psalm 33:6-9, Proverbs 8:22-31)

審查:板橋車站「研究聖經的學生」身份辨識

來源:使用者提供的親身經歷 日期:2026-04-11 00:59:00

情境描述

在台北板橋車站遇到一位自稱研究聖經的學生,問我有沒有3分鐘。


@lancetw
lancetw / longest_chinese_tokens_gpt4o.py
Created May 14, 2024 13:36 — forked from ctlllll/longest_chinese_tokens_gpt4o.py
Longest Chinese tokens in gpt4o
import tiktoken
import langdetect
T = tiktoken.get_encoding("o200k_base")
length_dict = {}
for i in range(T.n_vocab):
try:
length_dict[i] = len(T.decode([i]))
except:

News APIs:

  • Fetch: [GET] -> /news/:id
  • List: [GET] -> /news/list
  • Add: [POST] -> /news
  • Update: [POST] -> /news/:id
  • Remove: [DELETE] -> /news/:id

// ref: https://gitlab.com/manning-fpcpp-book/code-examples/-/blob/master/chapter-01/count-lines-transform/main.cpp
#include <iostream>
#include <string>
#include <vector>
#include <unordered_map>
#include <fstream>
#include <algorithm>
#include <iterator>
#include <ranges>
this.query = (filter: Filter) =>
Observable.from(
this.api.getData(filter).switchMap((res) => {
this.setData(res)
})
)
var alphabetBoardPath=function(f){var g=new Map(Array.from("abcdefghijklmnopqrstuvwxyz").map(function(a,c){return[a,{x:c/5|0,y:c%5|0}]})),d=function(a,c){return 0>=c?"":a.repeat(c)},a={x:0,y:0};return Array.from(f).reduce(function(e,c){var b=g.get(c);e.push(b.y<a.y?d("L",a.y-b.y):"",b.x<a.x?d("U",a.x-b.x):"",b.x>a.x?d("D",b.x-a.x):"",b.y>a.y?d("R",b.y-a.y):"","!");a=b;return e},[]).join("")};