Skip to content

Instantly share code, notes, and snippets.

@dollspace-gay
dollspace-gay / VSDD.md
Last active March 11, 2026 18:39
Verified Spec-Driven Development

Verified Spec-Driven Development (VSDD)

The Fusion: VDD × TDD × SDD for AI-Native Engineering

Overview

Verified Spec-Driven Development (VSDD) is a unified software engineering methodology that fuses three proven paradigms into a single AI-orchestrated pipeline:

  • Spec-Driven Development (SDD): Define the contract before writing a single line of implementation. Specs are the source of truth.
  • Test-Driven Development (TDD): Tests are written before code. Red → Green → Refactor. No code exists without a failing test that demanded it.
@mannynotfound
mannynotfound / deactivate_twitter.py
Created July 30, 2018 15:05
deactive a twitter account automatically
from selenium import webdriver
def deactive_twitter(username, password):
driver = webdriver.Chrome()
driver.implicitly_wait(30)
driver.get('https://twitter.com/login')
username_field = driver.find_element_by_class_name('js-username-field')
password_field = driver.find_element_by_class_name('js-password-field')