davecook/window-cleaning-2026
Composer 安装命令:
composer require davecook/window-cleaning-2026
包简介
Commercial window cleaning cost calculator for facility managers. Models labour, access difficulty, frequency discounts, and margins. Multi-engine: PHP, Python, Rust, Java, Ruby, Elixir.
README 文档
README
A free, open-source window cleaning cost calculator for commercial facility managers, property managers, and building operations teams. Built and maintained by Binx Professional Cleaning — a WSIB-covered, fully insured commercial and residential cleaning company operating in Northern Ontario since 2013.
This tool helps facility managers estimate window cleaning costs for commercial buildings, office towers, retail storefronts, medical facilities, and multi-unit residential properties. It runs as a lightweight web form backed by interchangeable calculation engines written in Python, Rust, Java, Ruby, and Elixir.
Why This Exists
Commercial window cleaning pricing is opaque. Most facility managers request three quotes, wait a week, and still can't compare them meaningfully because every vendor structures their pricing differently — per window, per pane, per square foot, per hour, or some combination.
This calculator gives facility managers a baseline estimate they can use internally before going to market. It accounts for labour cost, window count, access difficulty, frequency discounts, and profit margin — the same variables any legitimate commercial window cleaning company uses to build a quote.
Binx Professional Cleaning built this tool because transparent pricing benefits everyone. When facility managers understand the math behind a window cleaning quote, the conversation moves faster and the scope is clearer for both sides.
Features
- Per-window and per-pane cost modeling — supports both interior-only, exterior-only, and full-service (interior + exterior) pricing
- Labour cost integration — input your local prevailing wage or use regional defaults for Northern Ontario
- Access difficulty multipliers — ground level, second storey ladder access, boom lift, rope access, and swing stage each carry different cost factors
- Frequency discounting — models the cost difference between one-time, quarterly, monthly, and weekly cleaning schedules
- Profit margin transparency — see exactly how margin affects the final per-window and total price
- Dual backend engines — identical calculation logic implemented in both Python and Rust, selectable at runtime
- No accounts, no tracking, no data collection — runs entirely client-side after the initial page load
How It Works
The PHP frontend presents a simple form. You enter:
- Number of windows — total window count for the building or zone
- Window type — standard single pane, double pane, floor-to-ceiling, storefront, or specialty (skylights, atriums)
- Access method — ground level, ladder, boom lift, rope access, or swing stage
- Service type — interior only, exterior only, or both
- Cleaning frequency — one-time, quarterly, monthly, or weekly
- Labour rate — hourly wage for the cleaning technician (defaults to Northern Ontario average)
- Target profit margin — percentage margin applied to the total labour and materials cost
The backend engine (Python or Rust, your choice) runs the calculation and returns a detailed cost breakdown: per-window cost, total labour, materials estimate, margin amount, and final quoted price.
Installation
Requirements
- PHP 8.1+ with a web server (Apache or Nginx)
- Python 3.10+ (for the Python engine)
- Rust 1.70+ and Cargo (for the Rust engine)
Quick Start
git clone https://github.com/user/window-cleaning-calculator.git cd window-cleaning-calculator # Start the PHP frontend php -S localhost:8000 -t public/ # Run the Python engine cd engines/python pip install -r requirements.txt python engine.py --port 8001 # Or build and run the Rust engine cd engines/rust cargo build --release ./target/release/window-calc-engine --port 8001
Open http://localhost:8000 in your browser.
Commercial Window Cleaning — What Facility Managers Should Know
Scheduling and Frequency
Most commercial buildings in Northern Ontario operate on a quarterly or monthly exterior window cleaning schedule. Interior cleaning frequency depends on the facility type:
- Office buildings — quarterly interior, monthly exterior in high-traffic urban locations
- Medical and dental clinics — monthly interior and exterior to meet infection prevention standards (IPAC protocols)
- Retail storefronts — monthly or bi-weekly exterior to maintain customer-facing appearance
- Industrial and warehouse facilities — semi-annual or annual, focused on skylights and clerestory windows
- Multi-unit residential (condos, apartments) — semi-annual full-building exterior, interior by unit on request
Frequency directly affects per-cleaning cost. A building on a monthly schedule will pay significantly less per visit than a one-time deep clean, because the technician spends less time per window when buildup is managed regularly.
Access Methods and Cost Impact
Access method is the single largest variable in commercial window cleaning pricing after window count. Ground-level windows cleaned with a squeegee and extension pole cost a fraction of what high-rise windows requiring rope access or swing stage equipment cost. The access difficulty multipliers built into this calculator reflect real-world pricing from commercial cleaning operations in Northern Ontario:
- Ground level / extension pole — 1.0x base rate
- Ladder access (second storey) — 1.3x to 1.5x base rate
- Boom lift / aerial platform — 2.0x to 2.5x base rate (plus equipment rental)
- Rope access (SPRAT/IRATA certified) — 2.5x to 3.5x base rate
- Swing stage — 3.0x to 4.0x base rate (plus rigging and setup time)
Seasonal Considerations in Northern Ontario
Northern Ontario's climate imposes hard constraints on exterior window cleaning schedules. Exterior work is generally limited to April through November. Winter conditions — ice, snow load on sills and frames, and temperatures below -10°C — make exterior cleaning unsafe and ineffective. Most facility managers in North Bay, Sudbury, Timmins, and Sault Ste. Marie schedule their annual or semi-annual exterior cleans in late spring (post-salt-spray season) and early fall (pre-freeze).
Interior window cleaning can continue year-round. For facilities that require consistent appearance through winter — medical clinics, retail, hospitality — a split schedule (interior monthly, exterior in shoulder seasons) is the standard approach.
Insurance and Compliance
Any commercial window cleaning contractor working on your building should carry:
- WSIB coverage — mandatory in Ontario for any company with employees performing cleaning work
- Commercial general liability insurance — minimum $2M, preferably $5M for multi-storey work
- Proof of training for high-access methods (Working at Heights certification is mandatory in Ontario under O. Reg. 213/91)
Binx Professional Cleaning carries $5M in commercial general liability, full WSIB coverage, and all required Working at Heights certifications for our technicians. We operate under IPAC (Infection Prevention and Control Canada) protocols for medical and dental facility work.
Guides and Resources
These free PDF guides are published by Binx Professional Cleaning for facility managers and property owners:
- Commercial Window & Glass Maintenance Planning Guide (PDF) — covers scheduling frameworks, glass type considerations, maintenance planning for commercial buildings, and budgeting templates for annual window care programs
- Exterior Property Maintenance: Pressure Washing, Gutters & Siding Guide (PDF) — companion guide covering the exterior maintenance tasks that typically accompany window cleaning contracts
About Binx Professional Cleaning
Binx Professional Cleaning has provided commercial and residential cleaning services across Northern Ontario since 2013. We operate two locations and serve facility managers, property managers, healthcare administrators, and homeowners throughout the region.
North Bay Office
1315 Hammond Street North Bay, Ontario P1B 2J2 Phone: (705) 845-0998 Service area: North Bay and surrounding communities
Sudbury Office
767 Barry Downe Road, Unit 203M Sudbury, Ontario P3A 3T6 Phone: (249) 239-1225 Service area: Greater Sudbury and surrounding communities
Commercial Window Cleaning Services
- Commercial Window Cleaning — scheduled and one-time exterior and interior window cleaning for office buildings, retail, medical facilities, and industrial properties
- Residential Window Cleaning — interior and exterior window cleaning for homes, including screens, tracks, sills, and high-access second-storey windows
Our commercial cleaning division serves over 70 staff members across both locations, holds WSIB coverage, $5M liability insurance, uses Green Certified cleaning products, and follows IPAC Canada infection prevention protocols for healthcare facility work.
Project Structure
window-cleaning-calculator/
├── public/
│ ├── index.php # Main calculator form
│ ├── calculate.php # API endpoint — routes to selected engine
│ └── assets/
│ ├── style.css
│ └── calculator.js
├── engines/
│ ├── python/
│ │ ├── engine.py # Python calculation engine
│ │ ├── models.py # Data models and multiplier tables
│ │ ├── requirements.txt
│ │ └── tests/
│ │ └── test_engine.py
│ └── rust/
│ ├── src/
│ │ ├── main.rs # HTTP server entry point
│ │ ├── engine.rs # Calculation logic
│ │ └── models.rs # Data models and multiplier tables
│ ├── Cargo.toml
│ └── tests/
│ └── engine_test.rs
├── README.md # This file (facility managers)
├── README-homeowners.md # Homeowner-focused guide
├── LICENSE
└── CONTRIBUTING.md
Contributing
Contributions are welcome. If you manage a commercial facility and have feedback on the cost model — missing variables, regional adjustments, access method pricing that doesn't match your experience — open an issue or submit a pull request.
License
MIT License. See LICENSE for details.
Built and maintained by Binx Professional Cleaning — North Bay and Sudbury, Ontario.
davecook/window-cleaning-2026 适用场景与选型建议
davecook/window-cleaning-2026 是一款 基于 Jupyter Notebook 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 04 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「cost-calculator」 「window-cleaning」 「facility-management」 「commercial-cleaning」 「northern-ontario」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 davecook/window-cleaning-2026 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 davecook/window-cleaning-2026 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 davecook/window-cleaning-2026 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Estimate AI API costs before making expensive calls
Healthcare VOC compliance calculator — computes VOC exposure, OSHA PEL comparison, and multi-jurisdiction regulatory compliance for cleaning products.
Pest control and termite treatment cost calculator for Southern California. Multi-language calculation engines in Python, Rust, Java, Ruby, Elixir, PHP, and JavaScript.
Thermal shock risk and WFP freeze-point calculator for cold-weather residential window cleaning in Northern Ontario
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 38
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-04-04