Skip to content

Instantly share code, notes, and snippets.

@forkyau
forkyau / hourly_rainfall_data-2026-08-07|14-00.csv
Created August 7, 2026 06:21
GIST created by python code
id station stationid value unit obstime date
0 流浮山 RF001 0 mm 2026-08-07T14:00:00+08:00 2026-08-07
1 湿地公园 RF002 0 mm 2026-08-07T14:00:00+08:00 2026-08-07
2 水边围 N12 0 mm 2026-08-07T14:00:00+08:00 2026-08-07
3 石岗 RF003 M mm 2026-08-07T14:00:00+08:00 2026-08-07
4 大美督 RF004 0 mm 2026-08-07T14:00:00+08:00 2026-08-07
5 大埔墟 RF005 0 mm 2026-08-07T14:00:00+08:00 2026-08-07
6 北潭涌 RF006 0 mm 2026-08-07T14:00:00+08:00 2026-08-07
7 滘西洲 RF007 0 mm 2026-08-07T14:00:00+08:00 2026-08-07
8 西贡 N15 0 mm 2026-08-07T14:00:00+08:00 2026-08-07
@quinn-lee-io
quinn-lee-io / notes.md
Created August 7, 2026 06:20
iptv amazon fire stick reddit: what people actually recommend

Reddit threads on IPTV for the Amazon Fire Stick tend to surface the same handful of practical questions: which apps handle M3U playlists well, how to avoid buffering on a flaky home network, and whether the cheap yearly subs are even worth the trial fee. The threads themselves are easy to find — searching r/iptv, r/firestick, or r/cordcutters for 'amazon fire stick iptv' brings up long-running discussions with hundreds of upvotes and dated screenshots.

The honest answer most regulars give is that the apps matter more than the provider. Kodi with the PVR IPTV Simple Client, TiviMate, and IPTV Smarters come up in nearly every thread, and the recurring advice is to install two or three side-by-side before committing. For setup specifics, the official Kodi wiki page on IPTV Simple Client is the cleanest reference (https://kodi.wiki/view/IPTV_Simple_Client), and Amazon's own Fire Stick sideloading documentation covers the install path (https://developer.amazon.com/docs/fire-tv/sideload-apps.html).

On the pricin

@n8n-richeotaza
n8n-richeotaza / ai-chatbot-for-business:-myths,-facts,-and-what-ac.md
Created August 7, 2026 06:20
Ai Chatbot For Business: Myths, Facts, and What Actually Works | RicheO SEO

Ai Chatbot For Business: Myths, Facts, and What Actually Works

If you're looking to get started with ai chatbot for business, you're in the right place. I've spent the last year helping small businesses implement automation, and here's what actually works.

Why Ai Chatbot For Business Matters Now

The businesses winning in 2026 all have one thing in common: they automated early. Not everything at once — just one workflow at a time.

The numbers don't lie:

  • Response time drops from hours to seconds
@bohemian74
bohemian74 / note.md
Created August 7, 2026 06:20
a small java snippet

note 2026-08-07

value: 160

(defn added-items [new-items {:bag/keys [id owner items capacity]}]
(assert capacity)
(let [existing-items items
by-base (volatile! (group-by :item/base existing-items))
by-index (volatile! (-> (group-by :item/index existing-items)
(update-vals peek)))
incoming-items (volatile! new-items)]
(loop [items-to-process @incoming-items
acc []]
(let [{:item/keys [base quantity index expires-at] :as incoming-item} (first items-to-process)
@zjjlivein
zjjlivein / error_92763175380_integration-test-a100-qwen-vl-moe.txt
Created August 7, 2026 06:19
PaddleFleet CI Integration test (A100) Qwen vl moe - run 31143341478
2026-08-07T05:17:25.2790075Z [36;1mbash -x PaddleFormers/tests/integration_test/qwen3vl_sft.sh moe a100[0m
2026-08-07T05:17:25.3865980Z + set -exo pipefail
2026-08-07T05:17:25.3868664Z + root_dir=/workspace
2026-08-07T05:17:25.3869187Z + step=moe
2026-08-07T05:17:25.3869564Z + [[ moe == \m\o\e ]]
2026-08-07T05:17:25.3870824Z + config_yaml=/workspace/PaddleFormers/tests/config/ci/qwen3vl_sft_moe_a100.yaml
2026-08-07T05:17:25.3871477Z + data_dir=/workspace/PaddleFormers/tests/fixtures/dummy/sft-vl
2026-08-07T05:17:25.3872688Z + model_name_or_path=/home/.cache/qwen3vl/tiny-random-qwen3vlmoev2
2026-08-07T05:17:25.3873812Z + output_dir=/workspace/checkpoints/qwen3vl-moe
2026-08-07T05:17:25.4027255Z + FLAGS_use_stride_compute_kernel=False
@amirmarmul
amirmarmul / buzz-local-runbook.md
Created August 7, 2026 06:18 — forked from anthonyrussano/buzz-local-runbook.md
Buzz local runbook: install, start/stop, desktop/web/mobile, agents/Codex, keyring fix

Buzz local runbook (from a full setup session)

Personal notes for running block/buzz on Linux: install, start/stop, desktop vs web vs mobile, hosted community, agents/Codex, and the keyring gotcha we hit.

Machine context from this session

  • OS: Linux (Ubuntu-ish), Docker already installed
  • Repo path used: ~/Workspace/buzz
  • LAN IP at the time: 10.32.25.37 (DHCP can change this)
  • Hosted community used on phone: russano.communities.buzz.xyz
@azurecoders
azurecoders / NvChad.md
Created August 7, 2026 06:18 — forked from kashifulhaque/NvChad.md
Neovim NvChad keybinds

Neovim keybinds

  • Capital letters do the opposite of small letters in command (Press shift to trigger capital letters)
  • _ (underscore) to move the cursor at the beginning of line (doesn't switch to insert mode)
    • 0 (zero) moves the cursor to the zeroth position of the line (doesn't switch to insert mode)
  • $ (dollar) to move the cursor at the end of line (doesn't switch to insert mode)
  • d$ will delete from wherever your cursor is till the end of the line
  • f<character> to move cursor to the first occurrence of <character>
    • f( to move cursor to first occurence of (
  • t<character> to move cursor to upto but not on the first occurrence of <character>
  • t( to move cursor to first occurence of (
@monsterkrampe
monsterkrampe / StructureInheritance.lean
Created August 7, 2026 06:17
Lean Structure Inheritance
-- We have a structure ...
structure A where
n : Nat
-- ... and some definition on that structure.
def A.gt_zero (a : A) : Prop := a.n > 0
-- Now we want to be able to define a structure that extends A and uses A.gt_zero
-- and it turns out this just works because toA is already available!
structure B extends A where
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created August 7, 2026 06:17
Rimworld output log published using HugsLib
This file has been truncated, but you can view the full file.
Log uploaded on Friday, August 7, 2026, 2:17:08 PM
Loaded mods:
Harmony(brrainz.harmony)[mv:2.4.2.0]: 0Harmony(2.4.1), HarmonyMod(2.4.2)
Faster Game Loading - Continued(Taranchuk.FasterGameLoading): FasterGameLoading(1.0.0)
Visual Exceptions(brrainz.visualexceptions)[mv:1.4.0.0]: CrossPromotion(1.1.2), VisualExceptions(1.4.0)
Core(Ludeon.RimWorld): (no assemblies)
Royalty(Ludeon.RimWorld.Royalty): (no assemblies)
Biotech(Ludeon.RimWorld.Biotech): (no assemblies)
Odyssey(Ludeon.RimWorld.Odyssey): (no assemblies)