For Your Insomnia
For Your Insomnia Cinematic Nangloeng 2026 Taiwan Documentary & Film Festival in Thailand 2026
For Your Insomnia Cinematic Nangloeng 2026 Taiwan Documentary & Film Festival in Thailand 2026
Cinematic Nangloeng 2026 Free classic Thai films at Sala Chalerm Thani (Nang Loeng Cinema, Bangkok), 28 July–1 August 2026. One film per day at 16:00 ICT. Tickets on site from 15:00 (no online booking); venue open for photos from 14:00. 250 seats; no air-con; no parking — use public transport. Tue 28 Jul Wed 29 Jul Thu 30 Jul Fri 31 Jul Sat 1 Aug The Boat House (เรือนแพ, 1961) Tone (โทน, 1970) Wan…
Taiwan Documentary & Film Festival in Thailand 2026 Screenings ran 22–26 July 2026 at House Samyan and Century Sukhumvit (Bangkok) and Pratudang Space (Khon Kaen). All times ICT. By film Poster Film Screenings Eat Drink Man Woman Wed 22 Jul 19:00 — House Samyan (Bangkok) Sun 26 Jul 19:15 — Century Sukhumvit (Bangkok) Girl Thu 23 Jul 17:45 — House Samyan (Bangkok) Sat 25 Jul 20:15 — Century…
Cursor Models Cursor models and pricing . Prices are per million tokens. Speed, cost, and intelligence tiers come from the Cursor docs model metadata. Release year and knowledge cutoff year come from provider documentation when Cursor does not publish them. Cursor Cloud indicates availability in the Cloud Agent model picker on cursor.com/agents (snapshot 14 Aug 2026). CursorBench CursorBench 3.2…
Agent instructions Keep this file short: many agents inject it into the system prompt. Details that are only needed for some tasks live under .agents/ — read them on demand. Style Short, direct, technical prose On feedback/analysis: say agree or disagree, then what changed Code quality Read files in full before broad edits, audits, or changing unread files; do not rely on search snippets Ask…
Conversation on the first koan of “Kotlin Koans” Source: https://github.com/weakish/weakish.github.com/issues/10 (I find no elsewhere to comment, so I click the link for the feedback and redirected here. Correct me if it is the wrong place.) First of all, I am not a fan of Kotlin. But I think it actually introduced some good things. Technically, the following "familiar" code is effective more…
Shath'Yar Grammar All example sentences in this section use official translations. Compound Words One function of the apostrophe ( ' ) is to form compound words. For example, the compound word shath'yar , referring to "old gods" or the language used by the old gods, is composed of shath (old) and yar (god). Case System Nominative, accusative, and possessive cases: Y'za noq mah... Y'za noq ormz...…
Red Northern Barbarians Red Northern Barbarians (赤狄) is a term seen in the Spring and Autumn Annals 1 referring to tribes lived in the Inner Asia. However, Hirose Tanso (広瀬 淡窓) in late Edo Period used "Red Northern Barbarians" and "Red People" (赤人) in his poem 2 referring to Russians. 3 Footnotes In the third year of Duke Sen of Ro, Red Northern Barbarians invaded Sei. 《左傳》宣《經》三年「秋,赤狄侵齊。」 ↩…
Translation of Two Similar Terms for Making Ends Meet in Literary Chinese When translating Literary Chinese to English, both 稻粱謀 and 餬口 can be translated to "making ends meet". However, there are more accurate translations. 粱 refers to the finest quality millet and 稻 (rice) was mainly produced in the Yangtze River basin thus hard to obtain in the Yellow River basin in the ancient times. 稻粱謀,…
Programming Learning Path Path One First, learn English to the level of A2 or B1. After that, through extensive reading of English materials, computing-related vocabulary will naturally accumulate. No need to deliberately memorize them in advance. Sharpening the axe doesn't delay chopping wood. However, if you feel your enthusiasm for learning programming is being worn away during the "sharpening"…
Windows User Manual Software Visual Studio Code : I don't really like it much, but its ecosystem is just too good - things like GitHub Copilot and WSL2 work out of the box. Notepad++ Lightweight text editor Windows Terminal A terminal emulator that should be pre-installed but isn't PowerToys These features should also be built directly into the system Docker Given the licensing issues with Docker…
Following the Map to Find a Horse People say, "Only when there is Hakuraku 1 in the world can there be chollima 2 ," which suggests that "chollima" is Hakuraku's invention. If horses had consciousness, they would probably despise the concept of chollima. The fortunate horses gallop freely in the wilderness, expressing their true nature; the unfortunate ones, though confined to stables, at least…
Less HTML HTML is a Text Markup Language HTML stands for HyperText Markup Language. As the name suggests, HTML is used to mark up text, not to describe user interfaces. Although it has been extended over time, it still doesn't excel at expressing user interfaces due to compatibility with its original design. Of course, JavaScript was originally intended to decorate pages, for creating some sparkly…
Kotlin coding style Use when expressions for cases, avoid other usage of when Avoid use when statement, which is not exhausted. Just use if ... else if ... . Kotlin uses when for both case and cond , which is confusing. Thus avoid use when expression for cond . Avoid variadic functions Kotlin uses Array<T> for vararg p: T underhood but special array types for basic types, e.g. IntArray for…
Coding Style for Python The design of Python is well considered. Also, the community tends to adhere PEP 8. Python dose have some flaws, but most of them are fixed by type hints. For example, Python does not have the capability to define a constant variable, but PEP 591 introduces Final . Personally I put a semicolon at the end of a mutation, e.g. a.append(1) . This is inspired by the…