This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window.addEventListener('beforeunload', function (e) { | |
| const hasOutstandingRequests = | |
| Meteor.connection._outstandingMethodBlocks.length | |
| if (hasOutstandingRequests) { | |
| // Note: modern browsers don't show a custom message but still confirm | |
| const confirmationMessage = | |
| 'WARNING: There are outstanding requests. Really close this window? If you do you may lose data!' | |
| e.returnValue = confirmationMessage // Gecko, Trident, Chrome 34+ | |
| return confirmationMessage // Gecko, WebKit, Chrome <34 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Process: node [48757] | |
| Path: /Users/USER/*/node | |
| Identifier: node | |
| Version: ??? | |
| Code Type: X86-64 (Native) | |
| Parent Process: node [48750] | |
| Responsible: node [48757] | |
| User ID: 501 | |
| Date/Time: 2017-09-21 20:51:22.136 -0700 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "compilerOptions": { | |
| "baseUrl": ".", | |
| "paths": { | |
| "/imports/*": "./*" | |
| } | |
| } | |
| } | |
| --- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** Given an object, apply a Mongo update and return the resulting document */ | |
| function mongoUpdate(obj: Action, update: any): Action { | |
| const collection = new Mongo.Collection<Action>(null) | |
| const objId = collection.insert(obj) | |
| collection.update(objId, update) | |
| return collection.findOne(objId)! | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // client-side version of Accounts.onLogin | |
| export function onLoginUser(hook) { | |
| Meteor.subscribe('allUserData', () => | |
| Tracker.autorun(function (computation) { | |
| // waiting for user subscription to load | |
| if (!_.get(Meteor.user(), 'services.google')) { | |
| return | |
| } | |
| // cancel autorun now that we've authenticated | |
| computation.stop() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # OpenClaw Implementation Prompts | |
| Each prompt below is a self-contained brief you can hand to an AI coding assistant (or use as a project spec) to build that use case from scratch. Adapt the specific services to whatever you already use — the patterns are what matter. | |
| --- | |
| ## 1) Personal CRM Intelligence | |
| ``` | |
| Build me a personal CRM system that automatically tracks everyone I interact with, with smart filtering so it only adds real people — not newsletters, bots, or cold outreach. |
Compiled February 2026
The church is at a significant inflection point with technology. According to the 2025 State of AI in the Church survey, nearly 90% of faith leaders now support using AI in some form of ministry, and 45% of church leaders actively use AI tools -- an 80% increase from the prior year. Yet a 2025 Pew Research study found that 73% of Americans say AI should play no role in advising people about their faith. This tension is worth sitting with, because it reveals something important: people are open to AI helping with logistics and access, but deeply wary of it stepping into sacred relational space.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| REQUESTS="${REQUESTS:-15}" | |
| STALL_SECS="${STALL_SECS:-0.5}" | |
| MAX_TIME="${MAX_TIME:-45}" | |
| CONNECT_TIMEOUT="${CONNECT_TIMEOUT:-40}" | |
| OUTFILE="${OUTFILE:-network_repro_$(date +%Y%m%d_%H%M%S).csv}" |