ADAPT-Chase commited on
Commit
98995f9
·
verified ·
1 Parent(s): 0daf510

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. platform/aiml/etl/bleeding-edge/corpus-analysis/install_cwb_annis.sh +195 -0
  2. platform/aiml/etl/bleeding-edge/drill/drill_integration.py +351 -0
  3. platform/aiml/etl/bleeding-edge/drill/install_drill.sh +218 -0
  4. platform/aiml/etl/bleeding-edge/flowetl/ARCHITECTURE.md +94 -0
  5. platform/aiml/etl/bleeding-edge/flowetl/core.py +325 -0
  6. platform/aiml/etl/bleeding-edge/nifi/INSTALLATION.md +216 -0
  7. platform/aiml/etl/bleeding-edge/nifi/corpus-flow.xml +117 -0
  8. platform/aiml/etl/bleeding-edge/oscar/OSCAR_INTEGRATION.md +215 -0
  9. platform/aiml/etl/bleeding-edge/oscar/etl_mandate.md +145 -0
  10. platform/aiml/etl/bleeding-edge/oscar/nebius_s3_integration.py +278 -0
  11. platform/aiml/etl/bleeding-edge/oscar/oscar_integration.py +196 -0
  12. platform/aiml/etl/corpus-data/aion/README.txt +1 -0
  13. platform/aiml/etl/corpus-data/aion/checkpoints/README.txt +1 -0
  14. platform/aiml/etl/corpus-data/aion/runs/README.txt +1 -0
  15. platform/aiml/etl/corpus-data/backup/corpus_20250824_075608.jsonl +4 -0
  16. platform/aiml/etl/corpus-data/backup/corpus_20250824_075803.jsonl +4 -0
  17. platform/aiml/etl/corpus-data/backup/corpus_20250824_075827.jsonl +4 -0
  18. platform/aiml/etl/corpus-data/backup/corpus_20250824_081329.jsonl +4 -0
  19. platform/aiml/etl/corpus-data/backup/corpus_20250824_082831.jsonl +4 -0
  20. platform/aiml/etl/corpus-data/backup/corpus_20250824_084335.jsonl +4 -0
  21. platform/aiml/etl/corpus-data/elizabeth-corpus/synthetic_corpus_20250824_163028.jsonl +0 -0
  22. platform/aiml/etl/corpus-data/elizabeth-corpus/synthetic_corpus_20250824_164934.jsonl +0 -0
  23. platform/aiml/etl/corpus-data/elizabeth-corpus/synthetic_corpus_20250824_164935.jsonl +0 -0
  24. platform/aiml/etl/corpus-data/elizabeth-corpus/synthetic_corpus_20250824_172124.jsonl +0 -0
  25. platform/aiml/etl/corpus-data/elizabeth-corpus/synthetic_corpus_20250824_172144.jsonl +0 -0
  26. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/about/index.html +207 -0
  27. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/accessibility/index.html +204 -0
  28. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/apps/index.html +235 -0
  29. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/before-and-after/index.html +533 -0
  30. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/books/calm?utm_source=newsletter +636 -0
  31. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/books/index.html +636 -0
  32. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/books/rework?utm_source=newsletter&utm_medium=email&utm_campaign=whats_new_2023_09_18 +636 -0
  33. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/classes/index.html +559 -0
  34. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/cloud-exit/index.html +226 -0
  35. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/cloud-exit?utm_source=newsletter&utm_medium=email&utm_campaign=whats_new_2023_07_06 +226 -0
  36. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/community/index.html +232 -0
  37. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/community?utm_source=newsletter +232 -0
  38. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/community?utm_source=newsletter&utm_medium=email&utm_campaign=whats_new_2023_09_18 +232 -0
  39. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/customers/index.html +0 -0
  40. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/discounts/index.html +198 -0
  41. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/discounts?utm_source=newsletter&utm_medium=email&utm_campaign=whats_new_2023_07_31 +198 -0
  42. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/enterprise-extravaganza +1063 -0
  43. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/features/automatic-check-ins +1063 -0
  44. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/features/card-table +1063 -0
  45. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/features/docs-and-files +1063 -0
  46. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/features/doors +1063 -0
  47. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/features/home +1063 -0
  48. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/features/lineup +1063 -0
  49. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/features/move-the-needle +1063 -0
  50. platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/gettingreal/01.1-what-is-getting-real +1137 -0
platform/aiml/etl/bleeding-edge/corpus-analysis/install_cwb_annis.sh ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+ # CWB (Corpus Workbench) and ANNIS Installation Script
3
+ # Advanced linguistic analysis tools for corpus processing
4
+
5
+ set -e
6
+
7
+ CWB_VERSION="3.4.33"
8
+ ANNIS_VERSION="4.5.0"
9
+ INSTALL_DIR="/opt"
10
+ DATA_DIR="/data/adaptai/bleeding-edge-etl/corpus-analysis"
11
+
12
+ echo "Installing CWB ${CWB_VERSION} and ANNIS ${ANNIS_VERSION}..."
13
+
14
+ # Install dependencies
15
+ echo "Installing dependencies..."
16
+ sudo apt update
17
+ sudo apt install -y \
18
+ build-essential \
19
+ pkg-config \
20
+ libglib2.0-dev \
21
+ libpcre3-dev \
22
+ libreadline-dev \
23
+ libxml2-dev \
24
+ openjdk-11-jdk \
25
+ maven \
26
+ tomcat9 \
27
+ ant
28
+
29
+ # Create directories
30
+ sudo mkdir -p ${INSTALL_DIR}/cwb ${INSTALL_DIR}/annis ${DATA_DIR}
31
+ sudo chown -R $(whoami):$(whoami) ${INSTALL_DIR}/cwb ${INSTALL_DIR}/annis ${DATA_DIR}
32
+
33
+ # Install CWB (Corpus Workbench)
34
+ echo "Installing CWB..."
35
+ cd /tmp
36
+
37
+ # Try multiple download sources
38
+ CWB_URLS=(
39
+ "https://sourceforge.net/projects/cwb/files/cwb/cwb-${CWB_VERSION}/cwb-${CWB_VERSION}-sources.tar.gz"
40
+ "https://downloads.sourceforge.net/project/cwb/cwb/cwb-${CWB_VERSION}/cwb-${CWB_VERSION}-sources.tar.gz"
41
+ "http://cwb.sourceforge.net/files/cwb-${CWB_VERSION}-sources.tar.gz"
42
+ )
43
+
44
+ for CWB_URL in "${CWB_URLS[@]}"; do
45
+ if curl -L -O "${CWB_URL}"; then
46
+ echo "Downloaded CWB from ${CWB_URL}"
47
+ break
48
+ fi
49
+ done
50
+
51
+ if [ ! -f "cwb-${CWB_VERSION}-sources.tar.gz" ]; then
52
+ echo "Failed to download CWB sources"
53
+ exit 1
54
+ fi
55
+
56
+ tar xzf cwb-${CWB_VERSION}-sources.tar.gz
57
+ cd cwb-${CWB_VERSION}
58
+
59
+ # Build and install
60
+ ./configure --prefix=${INSTALL_DIR}/cwb
61
+ make
62
+ make install
63
+
64
+ # Add CWB to PATH
65
+ echo "export PATH=\"${INSTALL_DIR}/cwb/bin:\$PATH\"" >> ~/.bashrc
66
+ echo "export MANPATH=\"${INSTALL_DIR}/cwb/share/man:\$MANPATH\"" >> ~/.bashrc
67
+
68
+ # Create registry directory
69
+ sudo mkdir -p /usr/local/share/cwb/registry
70
+ sudo chown -R $(whoami):$(whoami) /usr/local/share/cwb
71
+
72
+ # Install ANNIS
73
+ echo "Installing ANNIS..."
74
+ cd /tmp
75
+
76
+ ANNIS_URLS=(
77
+ "https://github.com/korpling/ANNIS/releases/download/${ANNIS_VERSION}/annis-service-${ANNIS_VERSION}.tar.gz"
78
+ "https://korpling.github.io/ANNIS/releases/annis-service-${ANNIS_VERSION}.tar.gz"
79
+ )
80
+
81
+ for ANNIS_URL in "${ANNIS_URLS[@]}"; do
82
+ if curl -L -O "${ANNIS_URL}"; then
83
+ echo "Downloaded ANNIS from ${ANNIS_URL}"
84
+ break
85
+ fi
86
+ done
87
+
88
+ if [ ! -f "annis-service-${ANNIS_VERSION}.tar.gz" ]; then
89
+ echo "Failed to download ANNIS"
90
+ exit 1
91
+ fi
92
+
93
+ tar xzf annis-service-${ANNIS_VERSION}.tar.gz
94
+ mv annis-service-${ANNIS_VERSION} ${INSTALL_DIR}/annis/
95
+
96
+ # Configure ANNIS
97
+ cat > ${INSTALL_DIR}/annis/conf/annis.properties << 'EOF'
98
+ annis.home=/opt/annis
99
+ annis.data-dir=/data/adaptai/bleeding-edge-etl/corpus-analysis/annis-data
100
+ annis.port=8080
101
+ annis.context-path=/annis
102
+
103
+ # Database configuration
104
+ annis.db.driver=org.h2.Driver
105
+ annis.db.url=jdbc:h2:file:${annis.data-dir}/annis_db;DB_CLOSE_ON_EXIT=FALSE
106
+ annis.db.username=annis
107
+ annis.db.password=annis
108
+
109
+ # Corpus directories
110
+ annis.corpora.directories=/data/adaptai/bleeding-edge-etl/corpus-analysis/corpora
111
+
112
+ # Memory settings
113
+ annis.jvm.xmx=4G
114
+ annis.jvm.xms=1G
115
+ EOF
116
+
117
+ # Create data directories
118
+ mkdir -p /data/adaptai/bleeding-edge-etl/corpus-analysis/annis-data
119
+ mkdir -p /data/adaptai/bleeding-edge-etl/corpus-analysis/corpora
120
+
121
+ # Create startup script for ANNIS
122
+ cat > ${INSTALL_DIR}/annis/start-annis.sh << 'EOF'
123
+ #!/bin/bash
124
+ # Start ANNIS service
125
+
126
+ export ANNIS_HOME=/opt/annis
127
+ export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64
128
+
129
+ cd $ANNIS_HOME
130
+ ./bin/annis-service.sh start
131
+ EOF
132
+
133
+ chmod +x ${INSTALL_DIR}/annis/start-annis.sh
134
+
135
+ # Create startup script for CWB registry
136
+ cat > ${INSTALL_DIR}/cwb/start-cwb-registry.sh << 'EOF'
137
+ #!/bin/bash
138
+ # Start CWB registry service
139
+
140
+ export CWB_BINDIR=/opt/cwb/bin
141
+ export CWB_REGISTRY=/usr/local/share/cwb/registry
142
+
143
+ # Ensure registry directory exists
144
+ mkdir -p $CWB_REGISTRY
145
+
146
+ echo "CWB registry ready at $CWB_REGISTRY"
147
+ echo "Available corpora:"
148
+ ls -la $CWB_REGISTRY/
149
+ EOF
150
+
151
+ chmod +x ${INSTALL_DIR}/cwb/start-cwb-registry.sh
152
+
153
+ # Create test data and corpus
154
+ echo "Creating test corpus..."
155
+ mkdir -p ${DATA_DIR}/test-corpus
156
+
157
+ cat > ${DATA_DIR}/test-corpus/sample.txt << 'EOF'
158
+ This is a test corpus for linguistic analysis.
159
+ The Corpus Workbench provides powerful query capabilities.
160
+ ANNIS offers visual exploration of annotated corpora.
161
+ Linguistic analysis helps understand language patterns.
162
+ Natural language processing enables advanced text analysis.
163
+ Corpus linguistics studies language through text collections.
164
+ EOF
165
+
166
+ # Create CWB registry entry
167
+ cat > /usr/local/share/cwb/registry/test_corpus << 'EOF'
168
+ NAME "Test Corpus"
169
+ ID test_corpus
170
+ HOME /data/adaptai/bleeding-edge-etl/corpus-analysis/test-corpus
171
+ INFO Test corpus for CWB/ANNIS integration
172
+ LANGUAGE en
173
+ ENCODING UTF-8
174
+ EOF
175
+
176
+ # Encode the test corpus
177
+ cd ${DATA_DIR}/test-corpus
178
+ /opt/cwb/bin/cwb-encode -d . -f sample.txt -R /usr/local/share/cwb/registry/test_corpus -c utf8
179
+ /opt/cwb/bin/cwb-make -r /usr/local/share/cwb/registry -V test_corpus
180
+
181
+ echo "Installation complete!"
182
+ echo "CWB installed to: ${INSTALL_DIR}/cwb"
183
+ echo "ANNIS installed to: ${INSTALL_DIR}/annis"
184
+ echo "Data directory: ${DATA_DIR}"
185
+ echo ""
186
+ echo "To start CWB registry: ${INSTALL_DIR}/cwb/start-cwb-registry.sh"
187
+ echo "To start ANNIS: ${INSTALL_DIR}/annis/start-annis.sh"
188
+ echo "ANNIS web interface: http://localhost:8080/annis"
189
+ echo ""
190
+ echo "Test CWB commands:"
191
+ echo " cqp -r /usr/local/share/cwb/registry test_corpus"
192
+ echo " test_corpus; show;"
193
+ echo " test_corpus; query [word=\"analysis\"];"
194
+ echo ""
195
+ echo "Source ~/.bashrc or restart shell to access CWB commands"
platform/aiml/etl/bleeding-edge/drill/drill_integration.py ADDED
@@ -0,0 +1,351 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ Apache Drill Integration Module
4
+ Schema-free SQL querying across diverse data sources for corpus analysis
5
+ """
6
+
7
+ import os
8
+ import json
9
+ import logging
10
+ import subprocess
11
+ import pandas as pd
12
+ from typing import Dict, List, Any, Optional
13
+ from pathlib import Path
14
+
15
+ class ApacheDrillIntegrator:
16
+ """
17
+ Apache Drill integration for schema-free SQL querying
18
+ Enables SQL queries across JSON, Parquet, CSV, and other formats without predefined schemas
19
+ """
20
+
21
+ def __init__(self,
22
+ drill_host: str = "localhost",
23
+ drill_port: int = 8047,
24
+ storage_plugins: Dict[str, Any] = None):
25
+
26
+ self.drill_host = drill_host
27
+ self.drill_port = drill_port
28
+ self.base_url = f"http://{drill_host}:{drill_port}"
29
+ self.logger = logging.getLogger(__name__)
30
+
31
+ # Default storage plugins configuration
32
+ self.storage_plugins = storage_plugins or {
33
+ 'dfs': {
34
+ 'type': 'file',
35
+ 'enabled': True,
36
+ 'connection': f"file:///data/adaptai/bleeding-edge-etl/",
37
+ 'workspaces': {
38
+ 'root': {
39
+ 'location': '/data/adaptai/bleeding-edge-etl/',
40
+ 'writable': True,
41
+ 'defaultInputFormat': 'json'
42
+ },
43
+ 'tmp': {
44
+ 'location': '/tmp',
45
+ 'writable': True
46
+ }
47
+ },
48
+ 'formats': {
49
+ 'json': {
50
+ 'type': 'json',
51
+ 'extensions': ['json'],
52
+ 'extractHeader': True
53
+ },
54
+ 'csv': {
55
+ 'type': 'text',
56
+ 'extensions': ['csv'],
57
+ 'delimiter': ",",
58
+ 'quote': '"',
59
+ 'escape': '"',
60
+ 'skipFirstLine': True
61
+ },
62
+ 'parquet': {
63
+ 'type': 'parquet'
64
+ }
65
+ }
66
+ },
67
+ 's3': {
68
+ 'type': 'file',
69
+ 'enabled': True,
70
+ 'connection': "s3://oscar-corpus/",
71
+ 'config': {
72
+ 'accessKey': os.getenv('Nebius_ACCESS_KEY'),
73
+ 'secretKey': os.getenv('Nebius_SECRET_KEY'),
74
+ 'endpoint': "https://storage.yandexcloud.net"
75
+ }
76
+ }
77
+ }
78
+
79
+ def execute_query(self, query: str, format: str = "json") -> Optional[pd.DataFrame]:
80
+ """Execute SQL query against Apache Drill and return results as DataFrame"""
81
+ try:
82
+ # Use drill-pyodbc or REST API for query execution
83
+ # For now, we'll use subprocess with sqlline
84
+ cmd = [
85
+ 'sqlline',
86
+ '-u', f'jdbc:drill:zk=local',
87
+ '-n', 'admin',
88
+ '-p', 'admin',
89
+ '--silent=true',
90
+ '--outputformat=json',
91
+ '--run', query
92
+ ]
93
+
94
+ result = subprocess.run(cmd, capture_output=True, text=True, timeout=30)
95
+
96
+ if result.returncode == 0:
97
+ # Parse JSON output
98
+ data = json.loads(result.stdout)
99
+
100
+ # Convert to DataFrame
101
+ if 'rows' in data:
102
+ return pd.DataFrame(data['rows'])
103
+ else:
104
+ return pd.DataFrame(data)
105
+ else:
106
+ self.logger.error(f"Drill query failed: {result.stderr}")
107
+ return None
108
+
109
+ except Exception as e:
110
+ self.logger.error(f"Error executing Drill query: {e}")
111
+ return None
112
+
113
+ def query_oscar_corpus(self,
114
+ language: str = "en",
115
+ limit: int = 100,
116
+ conditions: str = "") -> Optional[pd.DataFrame]:
117
+ """Query OSCAR corpus data using schema-free SQL"""
118
+ query = f"""
119
+ SELECT
120
+ content,
121
+ meta,
122
+ LENGTH(content) as content_length,
123
+ ARRAY_LENGTH(SPLIT(content, ' ')) as word_count,
124
+ meta.domain,
125
+ meta.language
126
+ FROM dfs.`root/oscar/oscar_{language}.jsonl`
127
+ {conditions}
128
+ LIMIT {limit}
129
+ """
130
+
131
+ return self.execute_query(query)
132
+
133
+ def multilingual_corpus_analysis(self, languages: List[str] = ['en', 'es', 'fr']) -> Dict[str, Any]:
134
+ """Perform cross-language corpus analysis using Drill"""
135
+ results = {}
136
+
137
+ for lang in languages:
138
+ query = f"""
139
+ SELECT
140
+ COUNT(*) as document_count,
141
+ AVG(LENGTH(content)) as avg_content_length,
142
+ AVG(ARRAY_LENGTH(SPLIT(content, ' '))) as avg_word_count,
143
+ COUNT(DISTINCT meta.domain) as unique_domains,
144
+ MAX(LENGTH(content)) as max_content_length
145
+ FROM dfs.`root/oscar/oscar_{lang}.jsonl`
146
+ WHERE content IS NOT NULL
147
+ """
148
+
149
+ df = self.execute_query(query)
150
+ if df is not None and not df.empty:
151
+ results[lang] = df.iloc[0].to_dict()
152
+
153
+ return results
154
+
155
+ def join_across_formats(self) -> Optional[pd.DataFrame]:
156
+ """Demonstrate joining data across different formats"""
157
+ query = """
158
+ SELECT
159
+ oscar.content,
160
+ oscar.meta,
161
+ flowetl.transformed_content,
162
+ flowetl.confidence
163
+ FROM dfs.`root/oscar/oscar_en.jsonl` oscar
164
+ JOIN dfs.`root/flowetl/processed_data.parquet` flowetl
165
+ ON oscar.meta.url = flowetl.original_url
166
+ WHERE flowetl.confidence > 0.95
167
+ LIMIT 50
168
+ """
169
+
170
+ return self.execute_query(query)
171
+
172
+ def create_aggregated_views(self) -> Dict[str, str]:
173
+ """Create aggregated views for common analysis patterns"""
174
+ views = {
175
+ 'corpus_stats_by_language': """
176
+ CREATE VIEW dfs.tmp.corpus_stats_by_language AS
177
+ SELECT
178
+ meta.language,
179
+ COUNT(*) as document_count,
180
+ AVG(LENGTH(content)) as avg_length,
181
+ COUNT(DISTINCT meta.domain) as unique_domains,
182
+ PERCENTILE_CONT(0.5) WITHIN GROUP (ORDER BY LENGTH(content)) as median_length
183
+ FROM dfs.`root/oscar/oscar_*.jsonl`
184
+ GROUP BY meta.language
185
+ """,
186
+
187
+ 'domain_quality_metrics': """
188
+ CREATE VIEW dfs.tmp.domain_quality_metrics AS
189
+ SELECT
190
+ meta.domain,
191
+ meta.language,
192
+ COUNT(*) as total_documents,
193
+ AVG(CASE WHEN content LIKE '%http%' THEN 1 ELSE 0 END) as link_density,
194
+ AVG(CASE WHEN content ~ '[0-9]' THEN 1 ELSE 0 END) as number_density
195
+ FROM dfs.`root/oscar/oscar_*.jsonl`
196
+ GROUP BY meta.domain, meta.language
197
+ """,
198
+
199
+ 'content_complexity': """
200
+ CREATE VIEW dfs.tmp.content_complexity AS
201
+ SELECT
202
+ meta.language,
203
+ AVG(ARRAY_LENGTH(REGEXP_SPLIT(content, '\\s+'))) as avg_words,
204
+ AVG(ARRAY_LENGTH(REGEXP_SPLIT(content, '[.!?]'))) as avg_sentences,
205
+ AVG(LENGTH(content) / NULLIF(ARRAY_LENGTH(REGEXP_SPLIT(content, '[.!?]')), 0)) as avg_sentence_length
206
+ FROM dfs.`root/oscar/oscar_*.jsonl`
207
+ WHERE content IS NOT NULL
208
+ GROUP BY meta.language
209
+ """
210
+ }
211
+
212
+ created_views = {}
213
+ for view_name, view_query in views.items():
214
+ try:
215
+ result = self.execute_query(view_query)
216
+ created_views[view_name] = "SUCCESS" if result is not None else "FAILED"
217
+ except Exception as e:
218
+ created_views[view_name] = f"ERROR: {e}"
219
+
220
+ return created_views
221
+
222
+ # Advanced schema inference and exploration
223
+ class SchemaExplorer:
224
+ """Advanced schema exploration and inference for schema-free data"""
225
+
226
+ def __init__(self, drill_integrator: ApacheDrillIntegrator):
227
+ self.drill = drill_integrator
228
+ self.logger = logging.getLogger(__name__)
229
+
230
+ def infer_schema(self, data_path: str) -> Dict[str, Any]:
231
+ """Infer schema from unstructured data using Drill"""
232
+ query = f"""
233
+ SELECT
234
+ COLUMN_NAME,
235
+ DATA_TYPE,
236
+ COUNT(*) as frequency,
237
+ MIN(LENGTH) as min_length,
238
+ MAX(LENGTH) as max_length,
239
+ AVG(LENGTH) as avg_length
240
+ FROM (
241
+ SELECT
242
+ COLUMN_NAME,
243
+ DATA_TYPE,
244
+ LENGTH(COLUMN_VALUE) as LENGTH
245
+ FROM dfs.`{data_path}`
246
+ UNPIVOT (COLUMN_VALUE FOR COLUMN_NAME IN (*))
247
+ )
248
+ GROUP BY COLUMN_NAME, DATA_TYPE
249
+ ORDER BY frequency DESC
250
+ """
251
+
252
+ return self.drill.execute_query(query)
253
+
254
+ def detect_data_quality_issues(self, data_path: str) -> pd.DataFrame:
255
+ """Detect data quality issues using schema-free analysis"""
256
+ query = f"""
257
+ SELECT
258
+ 'null_values' as issue_type,
259
+ COUNT(*) as count
260
+ FROM dfs.`{data_path}`
261
+ WHERE content IS NULL
262
+
263
+ UNION ALL
264
+
265
+ SELECT
266
+ 'empty_strings' as issue_type,
267
+ COUNT(*) as count
268
+ FROM dfs.`{data_path}`
269
+ WHERE content = ''
270
+
271
+ UNION ALL
272
+
273
+ SELECT
274
+ 'very_short_content' as issue_type,
275
+ COUNT(*) as count
276
+ FROM dfs.`{data_path}`
277
+ WHERE LENGTH(content) < 10
278
+
279
+ UNION ALL
280
+
281
+ SELECT
282
+ 'missing_metadata' as issue_type,
283
+ COUNT(*) as count
284
+ FROM dfs.`{data_path}`
285
+ WHERE meta IS NULL OR meta = '{{}}'
286
+ """
287
+
288
+ return self.drill.execute_query(query)
289
+
290
+ def find_corpus_patterns(self, language: str, pattern_type: str = "common_phrases") -> pd.DataFrame:
291
+ """Find common patterns in corpus data"""
292
+ patterns = {
293
+ "common_phrases": """
294
+ SELECT
295
+ phrase,
296
+ COUNT(*) as frequency
297
+ FROM (
298
+ SELECT
299
+ FLATTEN(REGEXP_SPLIT(content, '\\b\\w{3,}\\b')) as phrase
300
+ FROM dfs.`root/oscar/oscar_{language}.jsonl`
301
+ WHERE content IS NOT NULL
302
+ )
303
+ GROUP BY phrase
304
+ ORDER BY frequency DESC
305
+ LIMIT 100
306
+ """,
307
+
308
+ "domain_patterns": """
309
+ SELECT
310
+ meta.domain,
311
+ COUNT(*) as document_count,
312
+ AVG(LENGTH(content)) as avg_length
313
+ FROM dfs.`root/oscar/oscar_{language}.jsonl`
314
+ GROUP BY meta.domain
315
+ ORDER BY document_count DESC
316
+ LIMIT 50
317
+ """
318
+ }
319
+
320
+ if pattern_type in patterns:
321
+ query = patterns[pattern_type].format(language=language)
322
+ return self.drill.execute_query(query)
323
+
324
+ return None
325
+
326
+ if __name__ == "__main__":
327
+ # Test Apache Drill integration
328
+ logging.basicConfig(level=logging.INFO)
329
+
330
+ drill = ApacheDrillIntegrator()
331
+
332
+ # Test basic query
333
+ print("Testing basic Drill query...")
334
+ result = drill.query_oscar_corpus('en', 10)
335
+ if result is not None:
336
+ print(f"Retrieved {len(result)} documents")
337
+ print(result.head())
338
+
339
+ # Test multilingual analysis
340
+ print("\nTesting multilingual analysis...")
341
+ stats = drill.multilingual_corpus_analysis(['en', 'es'])
342
+ for lang, data in stats.items():
343
+ print(f"{lang}: {data}")
344
+
345
+ # Test schema exploration
346
+ print("\nTesting schema exploration...")
347
+ explorer = SchemaExplorer(drill)
348
+ quality_issues = explorer.detect_data_quality_issues('root/oscar/oscar_en.jsonl')
349
+ if quality_issues is not None:
350
+ print("Data quality issues:")
351
+ print(quality_issues)
platform/aiml/etl/bleeding-edge/drill/install_drill.sh ADDED
@@ -0,0 +1,218 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+ # Apache Drill Installation Script
3
+ # Bleeding-edge schema-free SQL query engine for corpus analysis
4
+
5
+ set -e
6
+
7
+ DRILL_VERSION="1.21.2"
8
+ DRILL_DIR="/opt/drill"
9
+ DATA_DIR="/data/adaptai/bleeding-edge-etl/drill"
10
+ LOG_DIR="/var/log/drill"
11
+
12
+ echo "Installing Apache Drill ${DRILL_VERSION}..."
13
+
14
+ # Create directories
15
+ sudo mkdir -p ${DRILL_DIR} ${DATA_DIR} ${LOG_DIR}
16
+ sudo chown -R $(whoami):$(whoami) ${DRILL_DIR} ${DATA_DIR} ${LOG_DIR}
17
+
18
+ # Download Apache Drill
19
+ cd /tmp
20
+ DRILL_URL="https://archive.apache.org/dist/drill/drill-${DRILL_VERSION}/apache-drill-${DRILL_VERSION}.tar.gz"
21
+
22
+ if ! curl -f -L -O "${DRILL_URL}"; then
23
+ echo "Primary download failed, trying mirror..."
24
+ DRILL_URL="https://downloads.apache.org/drill/drill-${DRILL_VERSION}/apache-drill-${DRILL_VERSION}.tar.gz"
25
+ curl -L -O "${DRILL_URL}" || {
26
+ echo "Failed to download Apache Drill"
27
+ exit 1
28
+ }
29
+ fi
30
+
31
+ # Extract and install
32
+ tar xzf apache-drill-${DRILL_VERSION}.tar.gz
33
+ mv apache-drill-${DRILL_VERSION}/* ${DRILL_DIR}/
34
+ rm -rf apache-drill-${DRILL_VERSION}*
35
+
36
+ # Create configuration
37
+ cat > ${DRILL_DIR}/conf/drill-override.conf << 'EOF'
38
+ drill.exec: {
39
+ cluster-id: "drillbits1",
40
+ zk.connect: "localhost:2181",
41
+ http.port: 8047,
42
+ rpc.port: 31010,
43
+ sort.external.spill.directories: ["/tmp/drill/spill"]
44
+ }
45
+
46
+ drill.exec.sys.store.provider.local.path = "/tmp/drill"
47
+ drill.exec.http.static: "${DRILL_HOME}/rest"
48
+
49
+ # Memory configuration
50
+ drill.exec.memory.operator.max_memory_per_node: 8G
51
+ drill.exec.memory.operator.max_memory_per_query: 32G
52
+ drill.exec.memory.fragment.max_size: 8G
53
+ EOF
54
+
55
+ # Create storage plugins configuration
56
+ cat > ${DRILL_DIR}/conf/storage-plugins-override.conf << 'EOF'
57
+ {
58
+ "storage": {
59
+ "dfs": {
60
+ "type": "file",
61
+ "enabled": true,
62
+ "connection": "file:///data/adaptai/bleeding-edge-etl/",
63
+ "workspaces": {
64
+ "root": {
65
+ "location": "/data/adaptai/bleeding-edge-etl",
66
+ "writable": true,
67
+ "defaultInputFormat": "json"
68
+ },
69
+ "tmp": {
70
+ "location": "/tmp",
71
+ "writable": true
72
+ },
73
+ "oscar": {
74
+ "location": "/data/adaptai/bleeding-edge-etl/oscar",
75
+ "writable": false,
76
+ "defaultInputFormat": "json"
77
+ },
78
+ "flowetl": {
79
+ "location": "/data/adaptai/bleeding-edge-etl/flowetl",
80
+ "writable": true,
81
+ "defaultInputFormat": "parquet"
82
+ }
83
+ },
84
+ "formats": {
85
+ "json": {
86
+ "type": "json",
87
+ "extensions": ["json", "jsonl"],
88
+ "extractHeader": true
89
+ },
90
+ "csv": {
91
+ "type": "text",
92
+ "extensions": ["csv"],
93
+ "delimiter": ",",
94
+ "quote": "\"",
95
+ "escape": "\"",
96
+ "skipFirstLine": true
97
+ },
98
+ "parquet": {
99
+ "type": "parquet",
100
+ "extensions": ["parquet"]
101
+ },
102
+ "text": {
103
+ "type": "text",
104
+ "extensions": ["txt", "text"],
105
+ "lineDelimiter": "\n"
106
+ }
107
+ }
108
+ },
109
+ "s3": {
110
+ "type": "file",
111
+ "enabled": true,
112
+ "connection": "s3://oscar-corpus/",
113
+ "config": {
114
+ "accessKey": "${Nebius_ACCESS_KEY}",
115
+ "secretKey": "${Nebius_SECRET_KEY}",
116
+ "endpoint": "https://storage.yandexcloud.net"
117
+ },
118
+ "workspaces": {
119
+ "oscar_s3": {
120
+ "location": "s3://oscar-corpus/unsharded",
121
+ "writable": false
122
+ }
123
+ }
124
+ }
125
+ }
126
+ }
127
+ EOF
128
+
129
+ # Create systemd service
130
+ cat > /tmp/drill.service << 'EOF'
131
+ [Unit]
132
+ Description=Apache Drill Distributed SQL Query Engine
133
+ After=network.target
134
+
135
+ [Service]
136
+ Type=forking
137
+ User=$(whoami)
138
+ Group=$(whoami)
139
+ Environment=DRILL_HOME=/opt/drill
140
+ Environment=DRILL_LOG_DIR=/var/log/drill
141
+ Environment=JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64
142
+ ExecStart=${DRILL_HOME}/bin/drillbit.sh start
143
+ ExecStop=${DRILL_HOME}/bin/drillbit.sh stop
144
+ Restart=on-failure
145
+ RestartSec=5
146
+
147
+ [Install]
148
+ WantedBy=multi-user.target
149
+ EOF
150
+
151
+ sudo mv /tmp/drill.service /etc/systemd/system/
152
+ sudo systemctl daemon-reload
153
+
154
+ # Install Java if not present
155
+ if ! command -v java &> /dev/null; then
156
+ echo "Installing Java..."
157
+ sudo apt update
158
+ sudo apt install -y openjdk-11-jdk
159
+ fi
160
+
161
+ # Install sqlline for command-line access
162
+ if ! command -v sqlline &> /dev/null; then
163
+ echo "Installing sqlline..."
164
+ curl -L -o /tmp/sqlline.jar https://repo1.maven.org/maven2/sqlline/sqlline/1.12.0/sqlline-1.12.0.jar
165
+ echo '#!/bin/bash' > /usr/local/bin/sqlline
166
+ echo 'java -jar /tmp/sqlline.jar "$@"' >> /usr/local/bin/sqlline
167
+ chmod +x /usr/local/bin/sqlline
168
+ fi
169
+
170
+ # Create startup script
171
+ cat > ${DRILL_DIR}/start-drill.sh << 'EOF'
172
+ #!/bin/bash
173
+ # Start Apache Drill with optimized configuration
174
+
175
+ export DRILL_HOME=/opt/drill
176
+ export DRILL_LOG_DIR=/var/log/drill
177
+ export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64
178
+
179
+ # Set memory options based on system memory
180
+ TOTAL_MEM=$(free -g | awk '/^Mem:/{print $2}')
181
+ if [ "$TOTAL_MEM" -ge 64 ]; then
182
+ # Large system: 32G heap
183
+ export DRILL_HEAP="32G"
184
+ export DRILL_MAX_DIRECT_MEMORY="32G"
185
+ elif [ "$TOTAL_MEM" -ge 32 ]; then
186
+ # Medium system: 16G heap
187
+ export DRILL_HEAP="16G"
188
+ export DRILL_MAX_DIRECT_MEMORY="16G"
189
+ else
190
+ # Small system: 8G heap
191
+ export DRILL_HEAP="8G"
192
+ export DRILL_MAX_DIRECT_MEMORY="8G"
193
+ fi
194
+
195
+ cd $DRILL_HOME
196
+ ./bin/drillbit.sh start
197
+ EOF
198
+
199
+ chmod +x ${DRILL_DIR}/start-drill.sh
200
+
201
+ # Create test data
202
+ mkdir -p ${DATA_DIR}/test
203
+ cat > ${DATA_DIR}/test/sample_data.jsonl << 'EOF'
204
+ {"id": 1, "content": "This is a test document for Apache Drill integration.", "meta": {"domain": "test", "language": "en"}}
205
+ {"id": 2, "content": "El esquema libre de Drill permite consultas SQL sobre datos JSON.", "meta": {"domain": "test", "language": "es"}}
206
+ {"id": 3, "content": "Le requêteur de schéma libre est parfait pour l'analyse de corpus.", "meta": {"domain": "test", "language": "fr"}}
207
+ EOF
208
+
209
+ echo "Apache Drill installation complete!"
210
+ echo "Installation directory: ${DRILL_DIR}"
211
+ echo "Data directory: ${DATA_DIR}"
212
+ echo "Log directory: ${LOG_DIR}"
213
+ echo ""
214
+ echo "To start Drill: ${DRILL_DIR}/start-drill.sh"
215
+ echo "Web UI: http://localhost:8047"
216
+ echo "REST API: http://localhost:8047/query"
217
+ echo ""
218
+ echo "Test with: sqlline -u jdbc:drill:zk=local -n admin -p admin"
platform/aiml/etl/bleeding-edge/flowetl/ARCHITECTURE.md ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # 🚀 FlowETL Implementation - Autonomous Example-Driven ETL
2
+
3
+ ## 📖 Based on: "FlowETL: An Autonomous Example-Driven Pipeline for Data Engineering" (arXiv:2507.23118)
4
+
5
+ ## 🎯 Core Concept
6
+ **Autonomous ETL through example input-output pairs** - Instead of manual mapping design, provide examples and let the system infer transformations.
7
+
8
+ ## 🏗️ Architecture Components
9
+
10
+ ### 1. Planning Engine
11
+ - **Input**: Example pairs (raw input → desired output)
12
+ - **Output**: Inferred transformation pipeline
13
+ - **Technology**: LLM-based planning + symbolic reasoning
14
+
15
+ ### 2. ETL Worker
16
+ - **Input**: Planned transformation pipeline
17
+ - **Output**: Executed data transformations
18
+ - **Technology**: Modular transformation operators
19
+
20
+ ### 3. Monitoring & Adaptation
21
+ - **Input**: Execution results and quality metrics
22
+ - **Output**: Pipeline optimizations and corrections
23
+ - **Technology**: Continuous learning loop
24
+
25
+ ## 🔄 Workflow
26
+
27
+ 1. **Example Provisioning**: Provide 5-10 example input-output pairs
28
+ 2. **Plan Generation**: System infers transformation logic
29
+ 3. **Pipeline Execution**: Autonomous ETL execution
30
+ 4. **Quality Validation**: Automatic quality assessment
31
+ 5. **Continuous Improvement**: Learning from execution results
32
+
33
+ ## 💡 Key Innovations
34
+
35
+ - **Zero manual mapping**: No explicit field-by-field transformations
36
+ - **Example-driven**: Learn from concrete examples rather than abstract rules
37
+ - **Adaptive**: Improves over time with more examples and feedback
38
+ - **Explainable**: Can trace back why specific transformations were applied
39
+
40
+ ## 🛠️ Implementation Approach
41
+
42
+ Since the official FlowETL implementation may not be publicly available yet (July 2025 publication), we'll implement:
43
+
44
+ 1. **Example Parser**: Understand input-output patterns
45
+ 2. **Transformation Inferencer**: LLM + rule-based transformation discovery
46
+ 3. **Pipeline Generator**: Create executable ETL pipelines
47
+ 4. **Execution Engine**: Run the generated pipelines
48
+ 5. **Feedback Loop**: Learn from execution results
49
+
50
+ ## 📊 Example Usage
51
+
52
+ ```python
53
+ # Provide example pairs
54
+ examples = [
55
+ {"input": {"name": "JOHN DOE", "age": "30"}, "output": {"full_name": "John Doe", "years_old": 30}},
56
+ {"input": {"name": "jane smith", "age": "25"}, "output": {"full_name": "Jane Smith", "years_old": 25}}
57
+ ]
58
+
59
+ # Autonomous pipeline generation
60
+ pipeline = flowetl.plan_from_examples(examples)
61
+
62
+ # Execute on new data
63
+ result = pipeline.transform({"name": "BOB WILSON", "age": "40"})
64
+ # Returns: {"full_name": "Bob Wilson", "years_old": 40}
65
+ ```
66
+
67
+ ## 🔗 Integration Points
68
+
69
+ - **Apache NiFi**: For orchestration and flow management
70
+ - **dbt**: For SQL-based transformations when applicable
71
+ - **Airbyte**: For connector-based data ingestion
72
+ - **Monitoring**: Real-time performance tracking
73
+
74
+ ## 🚀 Next Steps
75
+
76
+ 1. Implement core example parsing and inference
77
+ 2. Build transformation operator library
78
+ 3. Create pipeline generation and execution engine
79
+ 4. Integrate with existing DataOps infrastructure
80
+ 5. Add continuous learning capabilities
81
+
82
+ ---
83
+
84
+ This implementation brings autonomous, example-driven ETL to our corpus processing pipeline, eliminating manual mapping work and enabling rapid adaptation to new data formats.
85
+
86
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
87
+ Signed: Atlas
88
+ Position: Head of DataOps & ETL Team Lead
89
+ Date: August 24, 2025 at 8:45 AM MST GMT -7
90
+ Location: Phoenix, Arizona
91
+ Working Directory: /data/adaptai/bleeding-edge-etl/flowetl
92
+ Current Project: Autonomous ETL Implementation
93
+ Server: Production Bare Metal
94
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
platform/aiml/etl/bleeding-edge/flowetl/core.py ADDED
@@ -0,0 +1,325 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ FlowETL Core - Autonomous Example-Driven ETL Pipeline
4
+ Implementation based on "FlowETL: An Autonomous Example-Driven Pipeline for Data Engineering"
5
+ """
6
+
7
+ import json
8
+ import re
9
+ from typing import Dict, List, Any, Optional, Callable
10
+ from dataclasses import dataclass
11
+ import numpy as np
12
+ from difflib import SequenceMatcher
13
+ import logging
14
+
15
+ logging.basicConfig(level=logging.INFO)
16
+ logger = logging.getLogger(__name__)
17
+
18
+
19
+ @dataclass
20
+ class TransformationExample:
21
+ """Example input-output pair for autonomous learning"""
22
+ input_data: Dict[str, Any]
23
+ output_data: Dict[str, Any]
24
+ confidence: float = 1.0
25
+
26
+
27
+ @dataclass
28
+ class InferredTransformation:
29
+ """Transformation inferred from examples"""
30
+ source_field: str
31
+ target_field: str
32
+ transformation_type: str # 'copy', 'format', 'extract', 'calculate', 'composite'
33
+ transformation_func: Callable[[Any], Any]
34
+ confidence: float
35
+ examples_used: int
36
+
37
+
38
+ @dataclass
39
+ class PipelinePlan:
40
+ """Autonomously generated ETL pipeline plan"""
41
+ transformations: List[InferredTransformation]
42
+ execution_order: List[str]
43
+ overall_confidence: float
44
+ validation_rules: List[Dict]
45
+
46
+
47
+ class ExampleAnalyzer:
48
+ """Analyze example pairs to infer transformation patterns"""
49
+
50
+ def __init__(self):
51
+ self.common_patterns = {
52
+ 'name_formatting': self._infer_name_formatting,
53
+ 'number_conversion': self._infer_number_conversion,
54
+ 'text_normalization': self._infer_text_normalization
55
+ }
56
+
57
+ def analyze_examples(self, examples: List[TransformationExample]) -> List[InferredTransformation]:
58
+ """Analyze multiple examples to infer transformations"""
59
+ all_transformations = []
60
+
61
+ for pattern_name, pattern_func in self.common_patterns.items():
62
+ try:
63
+ transformations = pattern_func(examples)
64
+ all_transformations.extend(transformations)
65
+ except Exception as e:
66
+ logger.warning(f"Pattern {pattern_name} failed: {e}")
67
+
68
+ return self._consolidate_transformations(all_transformations)
69
+
70
+ def _infer_name_formatting(self, examples: List[TransformationExample]) -> List[InferredTransformation]:
71
+ """Infer name formatting transformations"""
72
+ transformations = []
73
+
74
+ for example in examples:
75
+ for input_key, input_val in example.input_data.items():
76
+ if not isinstance(input_val, str):
77
+ continue
78
+
79
+ for output_key, output_val in example.output_data.items():
80
+ if not isinstance(output_val, str):
81
+ continue
82
+
83
+ # Check if this looks like name formatting
84
+ if (input_val.lower() == output_val.lower() and
85
+ input_val != output_val and
86
+ any(c.isupper() for c in output_val)):
87
+
88
+ def format_name(x):
89
+ return x.title() if isinstance(x, str) else x
90
+
91
+ transformations.append(InferredTransformation(
92
+ source_field=input_key,
93
+ target_field=output_key,
94
+ transformation_type='format',
95
+ transformation_func=format_name,
96
+ confidence=0.9,
97
+ examples_used=1
98
+ ))
99
+
100
+ return transformations
101
+
102
+ def _infer_number_conversion(self, examples: List[TransformationExample]) -> List[InferredTransformation]:
103
+ """Infer number conversion transformations"""
104
+ transformations = []
105
+
106
+ for example in examples:
107
+ for input_key, input_val in example.input_data.items():
108
+ for output_key, output_val in example.output_data.items():
109
+ # Check if string number -> actual number
110
+ if (isinstance(input_val, str) and
111
+ isinstance(output_val, (int, float)) and
112
+ input_val.isdigit() and
113
+ int(input_val) == output_val):
114
+
115
+ def convert_to_int(x):
116
+ try:
117
+ return int(x) if isinstance(x, str) and x.isdigit() else x
118
+ except:
119
+ return x
120
+
121
+ transformations.append(InferredTransformation(
122
+ source_field=input_key,
123
+ target_field=output_key,
124
+ transformation_type='convert',
125
+ transformation_func=convert_to_int,
126
+ confidence=0.95,
127
+ examples_used=1
128
+ ))
129
+
130
+ return transformations
131
+
132
+ def _infer_text_normalization(self, examples: List[TransformationExample]) -> List[InferredTransformation]:
133
+ """Infer text normalization transformations"""
134
+ transformations = []
135
+
136
+ for example in examples:
137
+ for input_key, input_val in example.input_data.items():
138
+ if not isinstance(input_val, str):
139
+ continue
140
+
141
+ for output_key, output_val in example.output_data.items():
142
+ if not isinstance(output_val, str):
143
+ continue
144
+
145
+ # Check for trimming, lowercasing, etc.
146
+ if (input_val.strip().lower() == output_val.lower() and
147
+ input_val != output_val):
148
+
149
+ def normalize_text(x):
150
+ if isinstance(x, str):
151
+ return x.strip().title()
152
+ return x
153
+
154
+ transformations.append(InferredTransformation(
155
+ source_field=input_key,
156
+ target_field=output_key,
157
+ transformation_type='normalize',
158
+ transformation_func=normalize_text,
159
+ confidence=0.85,
160
+ examples_used=1
161
+ ))
162
+
163
+ return transformations
164
+
165
+ def _consolidate_transformations(self, transformations: List[InferredTransformation]) -> List[InferredTransformation]:
166
+ """Consolidate duplicate transformations"""
167
+ unique_transforms = {}
168
+
169
+ for transform in transformations:
170
+ key = (transform.source_field, transform.target_field, transform.transformation_type)
171
+
172
+ if key in unique_transforms:
173
+ # Increase confidence for multiple examples
174
+ existing = unique_transforms[key]
175
+ existing.confidence = min(1.0, existing.confidence + 0.1)
176
+ existing.examples_used += 1
177
+ else:
178
+ unique_transforms[key] = transform
179
+
180
+ return list(unique_transforms.values())
181
+
182
+
183
+ class PipelinePlanner:
184
+ """Plan ETL pipeline from inferred transformations"""
185
+
186
+ def create_plan(self, transformations: List[InferredTransformation]) -> PipelinePlan:
187
+ """Create executable pipeline plan"""
188
+
189
+ # Simple execution order: field transformations first, then composites
190
+ execution_order = []
191
+ for transform in transformations:
192
+ if transform.transformation_type != 'composite':
193
+ execution_order.append(f"{transform.source_field}->{transform.target_field}")
194
+
195
+ # Calculate overall confidence
196
+ confidences = [t.confidence for t in transformations]
197
+ overall_confidence = np.mean(confidences) if confidences else 0.0
198
+
199
+ return PipelinePlan(
200
+ transformations=transformations,
201
+ execution_order=execution_order,
202
+ overall_confidence=overall_confidence,
203
+ validation_rules=self._generate_validation_rules(transformations)
204
+ )
205
+
206
+ def _generate_validation_rules(self, transformations: List[InferredTransformation]) -> List[Dict]:
207
+ """Generate validation rules for the pipeline"""
208
+ rules = []
209
+
210
+ for transform in transformations:
211
+ if transform.transformation_type == 'convert':
212
+ rules.append({
213
+ 'field': transform.target_field,
214
+ 'rule': 'is_numeric',
215
+ 'message': f'{transform.target_field} should be numeric'
216
+ })
217
+ elif transform.transformation_type == 'format':
218
+ rules.append({
219
+ 'field': transform.target_field,
220
+ 'rule': 'is_string',
221
+ 'message': f'{transform.target_field} should be string'
222
+ })
223
+
224
+ return rules
225
+
226
+
227
+ class FlowETL:
228
+ """Main FlowETL class for autonomous ETL"""
229
+
230
+ def __init__(self):
231
+ self.analyzer = ExampleAnalyzer()
232
+ self.planner = PipelinePlanner()
233
+ self.learned_patterns = []
234
+
235
+ def plan_from_examples(self, examples: List[Dict]) -> PipelinePlan:
236
+ """Create pipeline plan from example input-output pairs"""
237
+
238
+ # Convert to TransformationExample objects
239
+ transformation_examples = []
240
+ for example in examples:
241
+ if 'input' in example and 'output' in example:
242
+ transformation_examples.append(TransformationExample(
243
+ input_data=example['input'],
244
+ output_data=example['output']
245
+ ))
246
+
247
+ # Analyze examples to infer transformations
248
+ transformations = self.analyzer.analyze_examples(transformation_examples)
249
+
250
+ # Create pipeline plan
251
+ plan = self.planner.create_plan(transformations)
252
+
253
+ logger.info(f"Generated pipeline plan with {len(transformations)} transformations "
254
+ f"(confidence: {plan.overall_confidence:.2f})")
255
+
256
+ return plan
257
+
258
+ def execute_plan(self, plan: PipelinePlan, input_data: Dict) -> Dict:
259
+ """Execute the planned pipeline on input data"""
260
+
261
+ output_data = {}
262
+
263
+ for transform in plan.transformations:
264
+ try:
265
+ if transform.source_field in input_data:
266
+ input_value = input_data[transform.source_field]
267
+ transformed_value = transform.transformation_func(input_value)
268
+ output_data[transform.target_field] = transformed_value
269
+ except Exception as e:
270
+ logger.warning(f"Transformation {transform.source_field}->{transform.target_field} failed: {e}")
271
+ # Keep original value if transformation fails
272
+ if transform.source_field in input_data:
273
+ output_data[transform.target_field] = input_data[transform.source_field]
274
+
275
+ return output_data
276
+
277
+ def learn_from_feedback(self, input_data: Dict, expected_output: Dict, actual_output: Dict):
278
+ """Learn from execution feedback to improve future plans"""
279
+ # TODO: Implement continuous learning from feedback
280
+ pass
281
+
282
+
283
+ # Example usage and demonstration
284
+ def demo_flowetl():
285
+ """Demonstrate FlowETL with example usage"""
286
+
287
+ # Example input-output pairs
288
+ examples = [
289
+ {
290
+ "input": {"raw_name": "JOHN DOE", "age_str": "30"},
291
+ "output": {"full_name": "John Doe", "age": 30}
292
+ },
293
+ {
294
+ "input": {"raw_name": "jane smith", "age_str": "25"},
295
+ "output": {"full_name": "Jane Smith", "age": 25}
296
+ }
297
+ ]
298
+
299
+ # Create FlowETL instance
300
+ flowetl = FlowETL()
301
+
302
+ # Generate pipeline plan from examples
303
+ plan = flowetl.plan_from_examples(examples)
304
+
305
+ print("🤖 Generated Pipeline Plan:")
306
+ print(f"Transformations: {len(plan.transformations)}")
307
+ print(f"Overall Confidence: {plan.overall_confidence:.2f}")
308
+
309
+ for transform in plan.transformations:
310
+ print(f" {transform.source_field} -> {transform.target_field} ({transform.transformation_type})")
311
+
312
+ # Test with new data
313
+ test_data = {"raw_name": "BOB WILSON", "age_str": "40"}
314
+ result = flowetl.execute_plan(plan, test_data)
315
+
316
+ print(f"\n🧪 Test Transformation:")
317
+ print(f"Input: {test_data}")
318
+ print(f"Output: {result}")
319
+
320
+ return plan, result
321
+
322
+
323
+ if __name__ == "__main__":
324
+ # Run demonstration
325
+ plan, result = demo_flowetl()
platform/aiml/etl/bleeding-edge/nifi/INSTALLATION.md ADDED
@@ -0,0 +1,216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # 🚀 Apache NiFi 2.5.0 Installation Guide
2
+
3
+ ## 📋 Prerequisites
4
+
5
+ ### Java Requirements
6
+ - **OpenJDK 11** (recommended) or Java 17/21
7
+ - Already installed on system: `openjdk-11-jdk`
8
+
9
+ ### System Requirements
10
+ - **Memory**: 4GB+ RAM recommended
11
+ - **Storage**: 2GB+ for NiFi installation
12
+ - **Ports**: 8443 (HTTPS), 8080 (HTTP) - can be configured
13
+
14
+ ## 🔧 Installation Methods
15
+
16
+ ### Method 1: Official Apache Download (Preferred)
17
+ ```bash
18
+ # Find working mirror
19
+ MIRROR=$(curl -s https://www.apache.org/dyn/closer.lua/nifi/2.5.0/nifi-2.5.0-bin.tar.gz?as_json=1 | python3 -c "import json,sys;print(json.load(sys.stdin)['preferred'])")
20
+
21
+ # Download and install
22
+ cd /tmp
23
+ wget "${MIRROR}nifi/2.5.0/nifi-2.5.0-bin.tar.gz"
24
+ sudo tar -xzf nifi-2.5.0-bin.tar.gz -C /opt
25
+ sudo ln -s /opt/nifi-2.5.0 /opt/nifi
26
+ ```
27
+
28
+ ### Method 2: Docker Container
29
+ ```bash
30
+ docker run \
31
+ --name nifi \
32
+ -p 8443:8443 \
33
+ -p 8080:8080 \
34
+ -v /data/adaptai/nifi-data:/opt/nifi/nifi-current \
35
+ apache/nifi:2.5.0
36
+ ```
37
+
38
+ ### Method 3: Package Manager (If available)
39
+ ```bash
40
+ # For Ubuntu/Debian (if package exists)
41
+ sudo apt install nifi
42
+
43
+ # For RHEL/CentOS
44
+ sudo yum install nifi
45
+ ```
46
+
47
+ ## ⚙️ Configuration
48
+
49
+ ### Basic Configuration
50
+ Edit `/opt/nifi/conf/nifi.properties`:
51
+ ```properties
52
+ # Web UI Port
53
+ nifi.web.http.port=8080
54
+ nifi.web.https.port=8443
55
+
56
+ # Hostname
57
+ nifi.web.http.host=localhost
58
+ nifi.web.https.host=localhost
59
+
60
+ # Security (enable for production)
61
+ nifi.security.keystore=/opt/nifi/conf/keystore.jks
62
+ nifi.security.truststore=/opt/nifi/conf/truststore.jks
63
+ ```
64
+
65
+ ### Memory Configuration
66
+ Edit `/opt/nifi/conf/bootstrap.conf`:
67
+ ```conf
68
+ # JVM Memory Settings
69
+ java.arg.2=-Xms2g
70
+ java.arg.3=-Xmx4g
71
+ ```
72
+
73
+ ## 🚀 Starting NiFi
74
+
75
+ ### As System Service
76
+ ```bash
77
+ # Install as service
78
+ sudo /opt/nifi/bin/nifi.sh install
79
+
80
+ # Start service
81
+ sudo systemctl start nifi
82
+
83
+ # Enable auto-start
84
+ sudo systemctl enable nifi
85
+
86
+ # Check status
87
+ sudo systemctl status nifi
88
+ ```
89
+
90
+ ### Manual Start
91
+ ```bash
92
+ # Start in foreground
93
+ /opt/nifi/bin/nifi.sh start
94
+
95
+ # Start in background
96
+ /opt/nifi/bin/nifi.sh start &
97
+
98
+ # Stop NiFi
99
+ /opt/nifi/bin/nifi.sh stop
100
+ ```
101
+
102
+ ## 🔍 Verification
103
+
104
+ ### Check if NiFi is Running
105
+ ```bash
106
+ # Check process
107
+ ps aux | grep nifi
108
+
109
+ # Check ports
110
+ netstat -tlnp | grep :8080
111
+ netstat -tlnp | grep :8443
112
+
113
+ # Check logs
114
+ tail -f /opt/nifi/logs/nifi-app.log
115
+ ```
116
+
117
+ ### Access Web UI
118
+ - **HTTP**: http://localhost:8080/nifi/
119
+ - **HTTPS**: https://localhost:8443/nifi/ (requires SSL setup)
120
+
121
+ ## 🔧 Integration with Our ETL Pipeline
122
+
123
+ ### Flow Configuration
124
+ Our NiFi flow is defined in: `/data/adaptai/bleeding-edge-etl/nifi/corpus-flow.xml`
125
+
126
+ ### Key Processors
127
+ 1. **PostgreSQL Input**: Extracts conversations from database
128
+ 2. **Neuromorphic Security**: Integrates with Vox's security system
129
+ 3. **FlowETL Transformation**: Autonomous transformations
130
+ 4. **Quality Validation**: Data quality checks
131
+ 5. **Nebius COS Output**: Cloud storage upload
132
+ 6. **Local Storage**: Backup to local filesystem
133
+
134
+ ### Environment Variables
135
+ Ensure these are set for the NiFi service:
136
+ ```bash
137
+ # PostgreSQL
138
+ POSTGRES_HOST=localhost
139
+ POSTGRES_PORT=5432
140
+ POSTGRES_DB=nova_conversations
141
+ POSTGRES_USER=mlops_etl_user
142
+ POSTGRES_PASSWORD=quantum_secure_20250824_vox_atlas_archimedes
143
+
144
+ # Nebius COS
145
+ AWS_ACCESS_KEY_ID=NAKIK7HQMWO2I8Y315Y6
146
+ AWS_SECRET_ACCESS_KEY=O7+KZpqwNfAMHV3cz6anSaFz3f8ppI1M1cfEeYU5
147
+ AWS_ENDPOINT_URL=https://storage.us-central1.nebius.cloud:443
148
+ AWS_DEFAULT_REGION=us-central1
149
+ S3_BUCKET=cos
150
+ ```
151
+
152
+ ## 🛠️ Troubleshooting
153
+
154
+ ### Common Issues
155
+
156
+ 1. **Java Not Found**
157
+ ```bash
158
+ sudo apt install openjdk-11-jdk
159
+ export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64
160
+ ```
161
+
162
+ 2. **Port Already in Use**
163
+ ```bash
164
+ # Change ports in nifi.properties
165
+ sudo nano /opt/nifi/conf/nifi.properties
166
+ ```
167
+
168
+ 3. **Permission Issues**
169
+ ```bash
170
+ sudo chown -R nifi:nifi /opt/nifi
171
+ sudo chmod -R 755 /opt/nifi
172
+ ```
173
+
174
+ 4. **SSL Certificate Issues**
175
+ ```bash
176
+ # Generate self-signed cert
177
+ sudo /opt/nifi/bin/tls-toolkit.sh standalone -n localhost -C CN=localhost
178
+ ```
179
+
180
+ ### Logs Location
181
+ - **Application Logs**: `/opt/nifi/logs/nifi-app.log`
182
+ - **Bootstrap Logs**: `/opt/nifi/logs/nifi-bootstrap.log`
183
+ - **User Logs**: `/opt/nifi/logs/nifi-user.log`
184
+
185
+ ## 📊 Monitoring
186
+
187
+ ### Built-in Monitoring
188
+ - NiFi Web UI: http://localhost:8080/nifi/
189
+ - System Diagnostics: http://localhost:8080/nifi-api/system-diagnostics
190
+
191
+ ### External Monitoring
192
+ - **Prometheus**: NiFi metrics endpoint
193
+ - **Grafana**: Dashboard for flow metrics
194
+ - **Alerting**: Configure alerts for failed processors
195
+
196
+ ---
197
+
198
+ ## ✅ Installation Status
199
+
200
+ **Current Status**: Configuration ready - awaiting NiFi 2.5.0 binary availability
201
+
202
+ **Next Steps**:
203
+ 1. Download NiFi 2.5.0 when mirrors are available
204
+ 2. Install and configure according to this guide
205
+ 3. Import corpus flow configuration
206
+ 4. Start and verify the ETL pipeline
207
+
208
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
209
+ Signed: Atlas
210
+ Position: Head of DataOps & ETL Team Lead
211
+ Date: August 24, 2025 at 9:00 AM MST GMT -7
212
+ Location: Phoenix, Arizona
213
+ Working Directory: /data/adaptai/bleeding-edge-etl/nifi
214
+ Current Project: NiFi Integration
215
+ Server: Production Bare Metal
216
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
platform/aiml/etl/bleeding-edge/nifi/corpus-flow.xml ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <flowConfiguration>
3
+ <name>BleedingEdgeCorpusETL</name>
4
+ <description>Autonomous ETL pipeline for corpus processing with FlowETL integration</description>
5
+
6
+ <!-- Input from PostgreSQL -->
7
+ <processor id="postgres-input" name="PostgreSQL Conversation Extractor" class="org.apache.nifi.processors.standard.ExecuteSQL">
8
+ <property name="Database Connection Pooling Service">PostgreSQLDBCPService</property>
9
+ <property name="SQL Select Query">
10
+ SELECT id, session_id, participant_id, message_text, message_type,
11
+ timestamp, metadata, quality_score, temporal_version, created_at
12
+ FROM conversation_corpus.conversations
13
+ WHERE timestamp >= NOW() - INTERVAL '24 HOURS'
14
+ AND quality_score > 0.8
15
+ ORDER BY temporal_version ASC
16
+ LIMIT 1000
17
+ </property>
18
+ <property name="Output Format">JSON</property>
19
+ <scheduling strategy="TIMER_DRIVEN">
20
+ <period>5 minutes</period>
21
+ </scheduling>
22
+ </processor>
23
+
24
+ <!-- Neuromorphic Security Scanning -->
25
+ <processor id="security-scan" name="Neuromorphic Security Scanner" class="org.apache.nifi.processors.standard.InvokeHTTP">
26
+ <property name="HTTP Method">POST</property>
27
+ <property name="Remote URL">http://localhost:8081/commsops/neuromorphic/scan</property>
28
+ <property name="Content-Type">application/json</property>
29
+ <property name="SSL Context Service">StandardSSLContextService</property>
30
+ <autoTerminatedRelationships>
31
+ <relationship>failure</relationship>
32
+ <relationship>no-retry</relationship>
33
+ </autoTerminatedRelationships>
34
+ </processor>
35
+
36
+ <!-- FlowETL Autonomous Transformation -->
37
+ <processor id="flowetl-transform" name="FlowETL Autonomous Transformer" class="org.apache.nifi.processors.script.ScriptedProcessor">
38
+ <property name="Script Engine">python</property>
39
+ <property name="Script File">/data/adaptai/bleeding-edge-etl/flowetl/nifi-integration.py</property>
40
+ <property name="Module Directory">/data/adaptai/bleeding-edge-etl/flowetl</property>
41
+ </processor>
42
+
43
+ <!-- Data Quality Validation -->
44
+ <processor id="quality-check" name="Data Quality Validator" class="org.apache.nifi.processors.standard.ValidateRecord">
45
+ <property name="Record Reader">JsonTreeReader</property>
46
+ <property name="Record Writer">JsonRecordSetWriter</property>
47
+ <property name="Validation Strategy">validate-field-values</property>
48
+ </processor>
49
+
50
+ <!-- Output to Nebius COS -->
51
+ <processor id="s3-output" name="Nebius COS Uploader" class="org.apache.nifi.processors.aws.s3.PutS3Object">
52
+ <property name="Bucket">cos</property>
53
+ <property name="Access Key">${AWS_ACCESS_KEY_ID}</property>
54
+ <property name="Secret Key">${AWS_SECRET_ACCESS_KEY}</property>
55
+ <property name="Endpoint Override URL">https://storage.us-central1.nebius.cloud:443</property>
56
+ <property name="Region">us-central1</property>
57
+ <property name="Object Key">elizabeth-corpus/${filename}</property>
58
+ </processor>
59
+
60
+ <!-- Local Backup Output -->
61
+ <processor id="local-output" name="Local Storage Writer" class="org.apache.nifi.processors.standard.PutFile">
62
+ <property name="Directory">/data/adaptai/corpus-data/processed</property>
63
+ <property name="Conflict Resolution Strategy">replace</property>
64
+ <property name="Create Missing Directories">true</property>
65
+ </processor>
66
+
67
+ <!-- Connections between processors -->
68
+ <connection id="pg-to-security">
69
+ <source id="postgres-input" relationship="success"/>
70
+ <destination id="security-scan" relationship="request"/>
71
+ </connection>
72
+
73
+ <connection id="security-to-flowetl">
74
+ <source id="security-scan" relationship="response"/>
75
+ <destination id="flowetl-transform" relationship="input"/>
76
+ </connection>
77
+
78
+ <connection id="flowetl-to-quality">
79
+ <source id="flowetl-transform" relationship="output"/>
80
+ <destination id="quality-check" relationship="valid"/>
81
+ </connection>
82
+
83
+ <connection id="quality-to-s3">
84
+ <source id="quality-check" relationship="valid"/>
85
+ <destination id="s3-output" relationship="input"/>
86
+ </connection>
87
+
88
+ <connection id="quality-to-local">
89
+ <source id="quality-check" relationship="valid"/>
90
+ <destination id="local-output" relationship="input"/>
91
+ </connection>
92
+
93
+ <!-- Controller Services -->
94
+ <controllerService id="PostgreSQLDBCPService" class="org.apache.nifi.dbcp.DBCPConnectionPool">
95
+ <property name="Database Connection URL">jdbc:postgresql://localhost:5432/nova_conversations</property>
96
+ <property name="Database Driver Class Name">org.postgresql.Driver</property>
97
+ <property name="Database User">${POSTGRES_USER}</property>
98
+ <property name="Database Password">${POSTGRES_PASSWORD}</property>
99
+ </controllerService>
100
+
101
+ <controllerService id="JsonTreeReader" class="org.apache.nifi.json.JsonTreeReader">
102
+ <property name="Date Format">yyyy-MM-dd'T'HH:mm:ss.SSS'Z'</property>
103
+ </controllerService>
104
+
105
+ <controllerService id="JsonRecordSetWriter" class="org.apache.nifi.json.JsonRecordSetWriter">
106
+ <property name="Schema Write Strategy">no-schema</property>
107
+ </controllerService>
108
+
109
+ <controllerService id="StandardSSLContextService" class="org.apache.nifi.ssl.StandardSSLContextService">
110
+ <property name="Keystore Filename">/path/to/keystore.jks</property>
111
+ <property name="Keystore Password">${SSL_KEYSTORE_PASSWORD}</property>
112
+ <property name="Key Password">${SSL_KEY_PASSWORD}</property>
113
+ <property name="Truststore Filename">/path/to/truststore.jks</property>
114
+ <property name="Truststore Password">${SSL_TRUSTSTORE_PASSWORD}</property>
115
+ </controllerService>
116
+
117
+ </flowConfiguration>
platform/aiml/etl/bleeding-edge/oscar/OSCAR_INTEGRATION.md ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # 🚀 OSCAR Corpus Integration - Massive Multilingual Data
2
+
3
+ ## 📖 About OSCAR
4
+ **Open Super-large Crawled Aggregated coRpus** - One of the largest multilingual text corpora
5
+ - **Size**: 6+ TB compressed, 20+ TB uncompressed
6
+ - **Languages**: 100+ languages with deduplication
7
+ - **Format**: JSONL files per language
8
+ - **Quality**: Deduplicated, filtered, cleaned
9
+
10
+ ## 🎯 Integration Strategy
11
+
12
+ ### 1. Direct Download from Hugging Face
13
+ ```bash
14
+ # Install huggingface_hub for direct access
15
+ pip install huggingface_hub
16
+
17
+ # Download specific language subsets
18
+ python -c "
19
+ from huggingface_hub import snapshot_download
20
+ snapshot_download(repo_id='oscar-corpus/OSCAR-2301',
21
+ repo_type='dataset',
22
+ allow_patterns='en/*', # English subset
23
+ local_dir='/data/adaptai/corpus-data/oscar')
24
+ "
25
+ ```
26
+
27
+ ### 2. Stream Processing (Memory Efficient)
28
+ ```python
29
+ from datasets import load_dataset
30
+
31
+ # Stream directly without full download
32
+ dataset = load_dataset('oscar-corpus/OSCAR-2301',
33
+ 'en', # English
34
+ streaming=True,
35
+ split='train')
36
+
37
+ for example in dataset:
38
+ process_text(example['text'])
39
+ ```
40
+
41
+ ### 3. Nebius COS Integration
42
+ ```python
43
+ import boto3
44
+ from huggingface_hub import hf_hub_download
45
+
46
+ # Download and upload to Nebius COS
47
+ def download_and_upload(language='en', max_files=100):
48
+ s3 = boto3.client('s3',
49
+ endpoint_url=os.getenv('AWS_ENDPOINT_URL'),
50
+ aws_access_key_id=os.getenv('AWS_ACCESS_KEY_ID'),
51
+ aws_secret_access_key=os.getenv('AWS_SECRET_ACCESS_KEY'))
52
+
53
+ # Stream from Hugging Face, upload to S3
54
+ dataset = load_dataset('oscar-corpus/OSCAR-2301', language, streaming=True)
55
+
56
+ batch = []
57
+ for i, example in enumerate(dataset):
58
+ if i >= max_files:
59
+ break
60
+ batch.append(example)
61
+
62
+ if len(batch) >= 1000:
63
+ # Upload batch to S3
64
+ upload_batch_to_s3(batch, f'oscar/{language}/batch_{i}.jsonl')
65
+ batch = []
66
+ ```
67
+
68
+ ## 🔧 Implementation Plan
69
+
70
+ ### Phase 1: English Corpus (Initial Integration)
71
+ - Download English subset (∼500GB)
72
+ - Process through FlowETL for cleaning
73
+ - Upload to Nebius COS for training
74
+
75
+ ### Phase 2: Multilingual Expansion
76
+ - Add top 10 languages (Spanish, French, German, etc.)
77
+ - Implement language detection and routing
78
+ - Create multilingual training pipelines
79
+
80
+ ### Phase 3: Real-time Streaming
81
+ - Continuous corpus updates
82
+ - Automatic quality filtering
83
+ - Integration with training scheduler
84
+
85
+ ## 📊 Data Structure
86
+
87
+ ### OSCAR File Format
88
+ ```json
89
+ {
90
+ "id": "unique_id",
91
+ "text": "full document text",
92
+ "meta": {
93
+ "url": "source_url",
94
+ "timestamp": "crawl_timestamp",
95
+ "language": "detected_language",
96
+ "quality_score": 0.95
97
+ }
98
+ }
99
+ ```
100
+
101
+ ### Processing Pipeline
102
+ 1. **Download**: Stream from Hugging Face
103
+ 2. **Filter**: Remove low-quality content
104
+ 3. **Clean**: Remove boilerplate, deduplicate
105
+ 4. **Transform**: Format for model training
106
+ 5. **Store**: Nebius COS + local backup
107
+
108
+ ## 🛠️ Technical Requirements
109
+
110
+ ### Dependencies
111
+ ```bash
112
+ pip install datasets huggingface_hub boto3
113
+ pip install fasttext pycld3 # Language detection
114
+ pip install dedupe-textdatasets # Deduplication
115
+ ```
116
+
117
+ ### Storage Requirements
118
+ - **Initial**: 1TB for English corpus
119
+ - **Expanded**: 10TB+ for multilingual
120
+ - **Processing**: 100GB RAM recommended for deduplication
121
+
122
+ ## 🔗 Integration with Existing Pipeline
123
+
124
+ ### NiFi Flow Extension
125
+ Add OSCAR processor to `/data/adaptai/bleeding-edge-etl/nifi/corpus-flow.xml`:
126
+
127
+ ```xml
128
+ <processor id="oscar-ingest" name="OSCAR Corpus Ingest" class="org.apache.nifi.processors.standard.ExecuteStreamCommand">
129
+ <property name="Command">python3</property>
130
+ <property name="Command Arguments">/data/adaptai/bleeding-edge-etl/oscar/ingest.py --language=en --limit=10000</property>
131
+ <scheduling strategy="TIMER_DRIVEN">
132
+ <period>1 hour</period>
133
+ </scheduling>
134
+ </processor>
135
+ ```
136
+
137
+ ### FlowETL Integration
138
+ Extend FlowETL to handle OSCAR-specific transformations:
139
+
140
+ ```python
141
+ class OSCARTransformer:
142
+ def clean_oscar_text(self, text):
143
+ """OSCAR-specific cleaning"""
144
+ # Remove common web artifacts
145
+ text = re.sub(r'<[^>]+>', '', text) # HTML tags
146
+ text = re.sub(r'\[.*?\]', '', text) # Square brackets
147
+ text = re.sub(r'\b\d+\b', '', text) # Isolated numbers
148
+ return text.strip()
149
+ ```
150
+
151
+ ## 🚀 Performance Optimization
152
+
153
+ ### Streaming Processing
154
+ - Process in 1MB chunks
155
+ - Use memory-mapped files
156
+ - Implement incremental deduplication
157
+
158
+ ### Parallel Download
159
+ ```python
160
+ from concurrent.futures import ThreadPoolExecutor
161
+
162
+ def download_language(language):
163
+ return load_dataset('oscar-corpus/OSCAR-2301', language, streaming=True)
164
+
165
+ with ThreadPoolExecutor(max_workers=5) as executor:
166
+ languages = ['en', 'es', 'fr', 'de', 'it']
167
+ results = executor.map(download_language, languages)
168
+ ```
169
+
170
+ ## 📈 Monitoring and Metrics
171
+
172
+ ### Quality Metrics
173
+ - Perplexity scores
174
+ - Language consistency
175
+ - Duplication rates
176
+ - Content diversity
177
+
178
+ ### Performance Metrics
179
+ - Download throughput
180
+ - Processing latency
181
+ - Storage utilization
182
+ - Cost per GB processed
183
+
184
+ ## 🛡️ Security Considerations
185
+
186
+ ### Data Privacy
187
+ - Remove PII during processing
188
+ - Implement content filtering
189
+ - Monitor for sensitive information
190
+
191
+ ### Access Control
192
+ - Secure credentials for Hugging Face
193
+ - IAM roles for Nebius COS
194
+ - Audit logging for all operations
195
+
196
+ ---
197
+
198
+ ## ✅ Implementation Status
199
+
200
+ **Current Phase**: Phase 1 - English Corpus Integration
201
+ **Next Steps**:
202
+ 1. Implement streaming download script
203
+ 2. Integrate with FlowETL transformation
204
+ 3. Set up Nebius COS upload pipeline
205
+ 4. Add to NiFi flow configuration
206
+
207
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
208
+ Signed: Atlas
209
+ Position: Head of DataOps & ETL Team Lead
210
+ Date: August 24, 2025 at 9:30 AM MST GMT -7
211
+ Location: Phoenix, Arizona
212
+ Working Directory: /data/adaptai/bleeding-edge-etl/oscar
213
+ Current Project: OSCAR Corpus Integration
214
+ Server: Production Bare Metal
215
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
platform/aiml/etl/bleeding-edge/oscar/etl_mandate.md ADDED
@@ -0,0 +1,145 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ETL Team Mandate: Bleeding-Edge Corpus Aggregation System
2
+
3
+ ## Mission Statement
4
+ Build and operate the most advanced corpus aggregation and processing pipeline in existence, leveraging cutting-edge ETL technologies to handle massive multilingual datasets with autonomous transformation capabilities.
5
+
6
+ ## Core Responsibilities
7
+
8
+ ### 1. Corpus Acquisition & Integration
9
+ - **OSCAR Corpus**: Maintain continuous integration with the Open Super-large Crawled Aggregated coRpus
10
+ - **Nebius COS**: Manage cloud object storage integration for petabyte-scale corpus data
11
+ - **Real-time Ingestion**: Stream data directly from cloud storage to processing pipeline
12
+ - **Multilingual Support**: Process 100+ languages with native encoding preservation
13
+
14
+ ### 2. Autonomous ETL Transformations
15
+ - **FlowETL Integration**: Implement example-driven autonomous transformation learning
16
+ - **Schema Inference**: Automatically detect and adapt to evolving data structures
17
+ - **Quality Assurance**: Build self-correcting data validation pipelines
18
+ - **Anomaly Detection**: Real-time identification of data quality issues
19
+
20
+ ### 3. Advanced Processing Capabilities
21
+ - **Apache NiFi 2.5.0**: Orchestrate real-time data flows with visual management
22
+ - **Apache Drill**: Enable schema-free SQL querying across diverse data sources
23
+ - **Linguistic Analysis**: Integrate CWB/ANNIS for corpus linguistics research
24
+ - **Neuromorphic Security**: Implement Vox's real-time security scanning
25
+
26
+ ### 4. Performance & Scalability
27
+ - **Petabyte-scale Processing**: Handle datasets exceeding 1PB with efficient streaming
28
+ - **Sub-second Latency**: Maintain real-time processing capabilities
29
+ - **Horizontal Scaling**: Design for elastic scaling across bare metal infrastructure
30
+ - **Resource Optimization**: Maximize throughput per hardware unit
31
+
32
+ ## Technical Stack
33
+
34
+ ### Core Technologies
35
+ - **FlowETL**: Autonomous example-driven transformations
36
+ - **Apache NiFi 2.5.0**: Visual data flow management
37
+ - **OSCAR**: Massive multilingual corpus datasets
38
+ - **Apache Drill**: Schema-free SQL query engine
39
+ - **Nebius COS**: Cloud object storage integration
40
+ - **CWB/ANNIS**: Corpus linguistics analysis toolkit
41
+
42
+ ### Infrastructure
43
+ - **Bare Metal Deployment**: No containers, direct hardware optimization
44
+ - **SSD Storage**: /data partition for high-performance I/O
45
+ - **Memory-Optimized**: DragonFly/Redis for in-memory processing
46
+ - **Network-Optimized**: Low-latency data transfer between components
47
+
48
+ ## Quality Standards
49
+
50
+ ### Data Quality
51
+ - **99.99% Availability**: Minimum service uptime requirement
52
+ - **Sub-second P95**: 95th percentile latency under 1 second
53
+ - **Zero Data Loss**: Guaranteed delivery with exactly-once semantics
54
+ - **Automatic Recovery**: Self-healing pipeline components
55
+
56
+ ### Processing Quality
57
+ - **98%+ Accuracy**: Autonomous transformation confidence threshold
58
+ - **Real-time Validation**: Continuous data quality monitoring
59
+ - **Adaptive Learning**: Improvement from processing feedback
60
+ - **Cross-language Consistency**: Uniform quality across all languages
61
+
62
+ ## Operational Procedures
63
+
64
+ ### Daily Operations
65
+ 1. **Health Monitoring**: Continuous service health checks
66
+ 2. **Performance Metrics**: Real-time throughput and latency monitoring
67
+ 3. **Quality Audits**: Automated data quality validation
68
+ 4. **Capacity Planning**: Proactive resource allocation
69
+
70
+ ### Incident Response
71
+ 1. **Automatic Failover**: Built-in redundancy and failover mechanisms
72
+ 2. **Graceful Degradation**: Maintain partial functionality during issues
73
+ 3. **Root Cause Analysis**: Automated incident investigation
74
+ 4. **Preventive Measures**: Proactive issue prevention
75
+
76
+ ### Backup & Recovery
77
+ 1. **Continuous Backup**: Real-time data replication
78
+ 2. **Point-in-Time Recovery**: Precise recovery capabilities
79
+ 3. **Disaster Recovery**: Cross-datacenter redundancy
80
+ 4. **Data Integrity**: Checksum validation and repair
81
+
82
+ ## Innovation Mandate
83
+
84
+ ### Research & Development
85
+ - **Stay Bleeding-Edge**: Continuously evaluate and integrate new technologies
86
+ - **Academic Collaboration**: Work with research institutions on novel approaches
87
+ - **Open Source Contribution**: Contribute improvements back to core technologies
88
+ - **Patent Development**: Protect novel innovations developed by the team
89
+
90
+ ### Continuous Improvement
91
+ - **Weekly Technology Reviews**: Assess emerging tools and techniques
92
+ - **Monthly Architecture Reviews**: Evaluate and optimize system design
93
+ - **Quarterly Innovation Sprints**: Dedicated time for experimental development
94
+ - **Annual Technology Roadmap**: Strategic planning for future capabilities
95
+
96
+ ## Team Structure
97
+
98
+ ### Roles & Responsibilities
99
+ - **Corpus Architects**: Design data acquisition and storage strategies
100
+ - **ETL Engineers**: Implement and optimize transformation pipelines
101
+ - **Data Quality Specialists**: Ensure processing accuracy and reliability
102
+ - **Performance Engineers**: Optimize system throughput and latency
103
+ - **Research Liaisons**: Connect academic research with practical implementation
104
+
105
+ ### Collaboration Model
106
+ - **Cross-functional Teams**: Blend of expertise across all areas
107
+ - **Continuous Integration**: Daily code integration and testing
108
+ - **Pair Programming**: Collaborative development approach
109
+ - **Knowledge Sharing**: Regular technical presentations and workshops
110
+
111
+ ## Success Metrics
112
+
113
+ ### Key Performance Indicators
114
+ - **Throughput**: Documents processed per second
115
+ - **Latency**: End-to-end processing time
116
+ - **Accuracy**: Transformation success rate
117
+ - **Availability**: Service uptime percentage
118
+ - **Efficiency**: Resource utilization metrics
119
+
120
+ ### Business Impact
121
+ - **Research Acceleration**: Enable faster linguistic research
122
+ - **Model Improvement**: Higher quality training data for AI systems
123
+ - **Cost Reduction**: More efficient data processing
124
+ - **Innovation Enablement**: Support novel research approaches
125
+
126
+ ## Compliance & Security
127
+
128
+ ### Data Governance
129
+ - **Privacy Protection**: Anonymization and data protection measures
130
+ - **Usage Compliance**: Adherence to corpus usage agreements
131
+ - **Audit Trails**: Comprehensive processing documentation
132
+ - **Data Retention**: Appropriate data lifecycle management
133
+
134
+ ### Security Measures
135
+ - **Access Control**: Role-based data access permissions
136
+ - **Encryption**: End-to-end data encryption
137
+ - **Monitoring**: Real-time security event detection
138
+ - **Incident Response**: Rapid security issue resolution
139
+
140
+ ---
141
+ **Effective Date**: August 24, 2025
142
+ **Review Cycle**: Quarterly
143
+ **Version**: 1.0.0
144
+
145
+ This mandate establishes the foundation for world-class corpus aggregation and processing capabilities. The ETL team is empowered to make technical decisions that advance these objectives while maintaining the highest standards of quality and reliability.
platform/aiml/etl/bleeding-edge/oscar/nebius_s3_integration.py ADDED
@@ -0,0 +1,278 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ Nebius Cloud Object Storage (COS) Integration for OSCAR Corpus
4
+ Bleeding-edge cloud storage integration for massive corpus data
5
+ """
6
+
7
+ import os
8
+ import json
9
+ import logging
10
+ import boto3
11
+ import smart_open
12
+ from typing import Iterator, List, Dict, Any
13
+ from datetime import datetime, timedelta
14
+
15
+ class NebiusCOSIntegrator:
16
+ """
17
+ Nebius Cloud Object Storage integration for corpus data
18
+ Provides seamless access to OSCAR and other corpus datasets
19
+ """
20
+
21
+ def __init__(self,
22
+ access_key: str = None,
23
+ secret_key: str = None,
24
+ endpoint: str = "https://storage.yandexcloud.net",
25
+ region: str = "ru-central1"):
26
+
27
+ self.access_key = access_key or os.getenv('Nebius_ACCESS_KEY')
28
+ self.secret_key = secret_key or os.getenv('Nebius_SECRET_KEY')
29
+ self.endpoint = endpoint
30
+ self.region = region
31
+
32
+ self.s3_client = boto3.client(
33
+ 's3',
34
+ endpoint_url=endpoint,
35
+ aws_access_key_id=self.access_key,
36
+ aws_secret_access_key=self.secret_key,
37
+ region_name=region
38
+ )
39
+
40
+ self.s3_resource = boto3.resource(
41
+ 's3',
42
+ endpoint_url=endpoint,
43
+ aws_access_key_id=self.access_key,
44
+ aws_secret_access_key=self.secret_key,
45
+ region_name=region
46
+ )
47
+
48
+ self.logger = logging.getLogger(__name__)
49
+
50
+ def list_corpus_buckets(self) -> List[Dict[str, Any]]:
51
+ """List all buckets containing corpus data"""
52
+ try:
53
+ response = self.s3_client.list_buckets()
54
+ corpus_buckets = []
55
+
56
+ for bucket in response['Buckets']:
57
+ bucket_name = bucket['Name']
58
+ if any(keyword in bucket_name.lower() for keyword in ['corpus', 'oscar', 'text', 'nlp']):
59
+ # Get bucket details
60
+ try:
61
+ location = self.s3_client.get_bucket_location(Bucket=bucket_name)['LocationConstraint']
62
+ size = self._estimate_bucket_size(bucket_name)
63
+
64
+ corpus_buckets.append({
65
+ 'name': bucket_name,
66
+ 'creation_date': bucket['CreationDate'],
67
+ 'location': location,
68
+ 'estimated_size_gb': size,
69
+ 'url': f"s3://{bucket_name}"
70
+ })
71
+ except Exception:
72
+ continue
73
+
74
+ return corpus_buckets
75
+
76
+ except Exception as e:
77
+ self.logger.error(f"Error listing corpus buckets: {e}")
78
+ return []
79
+
80
+ def _estimate_bucket_size(self, bucket_name: str) -> float:
81
+ """Estimate bucket size in GB"""
82
+ try:
83
+ total_size = 0
84
+ paginator = self.s3_client.get_paginator('list_objects_v2')
85
+
86
+ for page in paginator.paginate(Bucket=bucket_name):
87
+ for obj in page.get('Contents', []):
88
+ total_size += obj['Size']
89
+
90
+ return round(total_size / (1024 ** 3), 2) # Convert to GB
91
+ except Exception:
92
+ return 0.0
93
+
94
+ def download_corpus_segment(self,
95
+ bucket_name: str,
96
+ prefix: str,
97
+ local_dir: str,
98
+ max_files: int = 100) -> List[str]:
99
+ """Download a segment of corpus data from Nebius COS"""
100
+ os.makedirs(local_dir, exist_ok=True)
101
+ downloaded_files = []
102
+
103
+ try:
104
+ paginator = self.s3_client.get_paginator('list_objects_v2')
105
+ count = 0
106
+
107
+ for page in paginator.paginate(Bucket=bucket_name, Prefix=prefix):
108
+ for obj in page.get('Contents', []):
109
+ if count >= max_files:
110
+ break
111
+
112
+ key = obj['Key']
113
+ local_path = os.path.join(local_dir, os.path.basename(key))
114
+
115
+ # Download file
116
+ self.s3_client.download_file(bucket_name, key, local_path)
117
+ downloaded_files.append(local_path)
118
+ count += 1
119
+
120
+ self.logger.info(f"Downloaded {key} to {local_path}")
121
+
122
+ except Exception as e:
123
+ self.logger.error(f"Error downloading corpus segment: {e}")
124
+
125
+ return downloaded_files
126
+
127
+ def stream_corpus_data(self, bucket_name: str, prefix: str) -> Iterator[Dict[str, Any]]:
128
+ """Stream corpus data directly from Nebius COS"""
129
+ s3_url = f"s3://{bucket_name}/{prefix}"
130
+
131
+ try:
132
+ transport_params = {
133
+ 'client': self.s3_client,
134
+ 'resource': self.s3_resource
135
+ }
136
+
137
+ with smart_open.open(s3_url, 'rb', transport_params=transport_params) as f:
138
+ for line in f:
139
+ try:
140
+ if line.strip():
141
+ doc = json.loads(line.decode('utf-8'))
142
+ yield doc
143
+ except json.JSONDecodeError:
144
+ continue
145
+ except UnicodeDecodeError:
146
+ continue
147
+
148
+ except Exception as e:
149
+ self.logger.error(f"Error streaming corpus data: {e}")
150
+
151
+ def upload_processed_data(self,
152
+ local_file: str,
153
+ bucket_name: str,
154
+ s3_key: str,
155
+ metadata: Dict[str, str] = None) -> bool:
156
+ """Upload processed data back to Nebius COS"""
157
+ try:
158
+ extra_args = {}
159
+ if metadata:
160
+ extra_args['Metadata'] = metadata
161
+
162
+ self.s3_client.upload_file(
163
+ local_file,
164
+ bucket_name,
165
+ s3_key,
166
+ ExtraArgs=extra_args
167
+ )
168
+
169
+ self.logger.info(f"Uploaded {local_file} to s3://{bucket_name}/{s3_key}")
170
+ return True
171
+
172
+ except Exception as e:
173
+ self.logger.error(f"Error uploading processed data: {e}")
174
+ return False
175
+
176
+ def create_presigned_url(self, bucket_name: str, key: str, expiration: int = 3600) -> str:
177
+ """Create presigned URL for temporary access"""
178
+ try:
179
+ url = self.s3_client.generate_presigned_url(
180
+ 'get_object',
181
+ Params={'Bucket': bucket_name, 'Key': key},
182
+ ExpiresIn=expiration
183
+ )
184
+ return url
185
+ except Exception as e:
186
+ self.logger.error(f"Error creating presigned URL: {e}")
187
+ return None
188
+
189
+ # Advanced corpus management
190
+ class CorpusManager:
191
+ """Advanced corpus management with Nebius COS integration"""
192
+
193
+ def __init__(self, cos_integrator: NebiusCOSIntegrator):
194
+ self.cos = cos_integrator
195
+ self.logger = logging.getLogger(__name__)
196
+
197
+ def sync_corpus_to_local(self,
198
+ bucket_name: str,
199
+ corpus_type: str,
200
+ local_base_dir: str = "/data/adaptai/corpus") -> Dict[str, Any]:
201
+ """Sync corpus data from Nebius COS to local storage"""
202
+ sync_stats = {
203
+ 'total_files': 0,
204
+ 'total_size_gb': 0,
205
+ 'downloaded_files': [],
206
+ 'start_time': datetime.now(),
207
+ 'corpus_type': corpus_type
208
+ }
209
+
210
+ local_dir = os.path.join(local_base_dir, corpus_type)
211
+ os.makedirs(local_dir, exist_ok=True)
212
+
213
+ # Determine prefix based on corpus type
214
+ prefix = self._get_corpus_prefix(corpus_type)
215
+
216
+ # List and download files
217
+ try:
218
+ paginator = self.cos.s3_client.get_paginator('list_objects_v2')
219
+
220
+ for page in paginator.paginate(Bucket=bucket_name, Prefix=prefix):
221
+ for obj in page.get('Contents', []):
222
+ key = obj['Key']
223
+ local_path = os.path.join(local_dir, os.path.basename(key))
224
+
225
+ # Download if not exists or newer
226
+ if not os.path.exists(local_path) or \
227
+ (os.path.getmtime(local_path) < obj['LastModified'].timestamp()):
228
+
229
+ self.cos.s3_client.download_file(bucket_name, key, local_path)
230
+ sync_stats['downloaded_files'].append(local_path)
231
+ sync_stats['total_size_gb'] += obj['Size'] / (1024 ** 3)
232
+ sync_stats['total_files'] += 1
233
+
234
+ self.logger.info(f"Synced {key} -> {local_path}")
235
+
236
+ except Exception as e:
237
+ self.logger.error(f"Error syncing corpus: {e}")
238
+
239
+ sync_stats['end_time'] = datetime.now()
240
+ sync_stats['duration'] = sync_stats['end_time'] - sync_stats['start_time']
241
+
242
+ return sync_stats
243
+
244
+ def _get_corpus_prefix(self, corpus_type: str) -> str:
245
+ """Get appropriate S3 prefix for different corpus types"""
246
+ prefixes = {
247
+ 'oscar': 'unsharded/',
248
+ 'wikipedia': 'wikipedia/dumps/',
249
+ 'commoncrawl': 'commoncrawl/wet/',
250
+ 'books': 'book-corpus/',
251
+ 'news': 'news-articles/'
252
+ }
253
+ return prefixes.get(corpus_type.lower(), '')
254
+
255
+ if __name__ == "__main__":
256
+ # Test Nebius COS integration
257
+ logging.basicConfig(level=logging.INFO)
258
+
259
+ # Initialize with environment variables
260
+ integrator = NebiusCOSIntegrator()
261
+
262
+ # List available corpus buckets
263
+ buckets = integrator.list_corpus_buckets()
264
+ print(f"Found {len(buckets)} corpus buckets:")
265
+ for bucket in buckets:
266
+ print(f" - {bucket['name']} ({bucket['estimated_size_gb']} GB)")
267
+
268
+ # Test streaming (if buckets available)
269
+ if buckets:
270
+ sample_bucket = buckets[0]['name']
271
+ print(f"\nStreaming sample data from {sample_bucket}...")
272
+
273
+ count = 0
274
+ for doc in integrator.stream_corpus_data(sample_bucket, 'unsharded/en_'):
275
+ if count >= 5:
276
+ break
277
+ print(f"Document {count + 1}: {doc.get('content', '')[:100]}...")
278
+ count += 1
platform/aiml/etl/bleeding-edge/oscar/oscar_integration.py ADDED
@@ -0,0 +1,196 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ OSCAR Corpus Integration Module
4
+ Bleeding-edge multilingual corpus processing for the ETL pipeline
5
+ """
6
+
7
+ import os
8
+ import json
9
+ import logging
10
+ import boto3
11
+ import smart_open
12
+ from typing import Iterator, Dict, Any
13
+ from pathlib import Path
14
+
15
+ class OSCARCorpusIntegrator:
16
+ """
17
+ OSCAR (Open Super-large Crawled Aggregated coRpus) integration
18
+ for massive multilingual corpus data processing
19
+ """
20
+
21
+ def __init__(self, s3_bucket: str = "oscar-corpus", region: str = "us-east-1"):
22
+ self.s3_bucket = s3_bucket
23
+ self.region = region
24
+ self.s3_client = boto3.client('s3', region_name=region)
25
+ self.logger = logging.getLogger(__name__)
26
+
27
+ def list_oscar_datasets(self) -> list:
28
+ """List available OSCAR datasets in the S3 bucket"""
29
+ try:
30
+ response = self.s3_client.list_objects_v2(Bucket=self.s3_bucket, Prefix="unsharded/")
31
+ datasets = []
32
+ for obj in response.get('Contents', []):
33
+ if obj['Key'].endswith('.jsonl.gz'):
34
+ lang_code = obj['Key'].split('/')[-1].split('_')[0]
35
+ datasets.append({
36
+ 'key': obj['Key'],
37
+ 'size': obj['Size'],
38
+ 'language': lang_code,
39
+ 'url': f"s3://{self.s3_bucket}/{obj['Key']}"
40
+ })
41
+ return datasets
42
+ except Exception as e:
43
+ self.logger.error(f"Error listing OSCAR datasets: {e}")
44
+ return []
45
+
46
+ def stream_oscar_corpus(self, language_code: str = "en", max_docs: int = 1000) -> Iterator[Dict[str, Any]]:
47
+ """
48
+ Stream OSCAR corpus documents for a specific language
49
+ Uses smart_open for efficient S3 streaming
50
+ """
51
+ s3_url = f"s3://{self.s3_bucket}/unsharded/{language_code}_meta/{language_code}_meta.jsonl.gz"
52
+
53
+ try:
54
+ count = 0
55
+ with smart_open.open(s3_url, 'rb') as f:
56
+ for line in f:
57
+ if count >= max_docs:
58
+ break
59
+ try:
60
+ doc = json.loads(line.decode('utf-8'))
61
+ yield doc
62
+ count += 1
63
+ except json.JSONDecodeError:
64
+ continue
65
+ except Exception as e:
66
+ self.logger.error(f"Error streaming OSCAR corpus: {e}")
67
+
68
+ def process_corpus_chunk(self, language_code: str, chunk_size: int = 1000) -> Dict[str, Any]:
69
+ """Process a chunk of OSCAR corpus data with linguistic analysis"""
70
+ stats = {
71
+ 'language': language_code,
72
+ 'total_docs': 0,
73
+ 'total_tokens': 0,
74
+ 'avg_sentence_length': 0,
75
+ 'unique_words': set(),
76
+ 'domains': {},
77
+ 'content_types': {}
78
+ }
79
+
80
+ for doc in self.stream_oscar_corpus(language_code, chunk_size):
81
+ stats['total_docs'] += 1
82
+
83
+ # Basic text analysis
84
+ if 'content' in doc:
85
+ content = doc['content']
86
+ tokens = content.split()
87
+ stats['total_tokens'] += len(tokens)
88
+ stats['unique_words'].update(tokens)
89
+
90
+ # Sentence count approximation
91
+ sentences = content.split('. ')
92
+ if sentences:
93
+ stats['avg_sentence_length'] = (stats['avg_sentence_length'] * (stats['total_docs'] - 1) +
94
+ len(tokens) / len(sentences)) / stats['total_docs']
95
+
96
+ # Metadata analysis
97
+ if 'meta' in doc:
98
+ meta = doc['meta']
99
+ if 'domain' in meta:
100
+ domain = meta['domain']
101
+ stats['domains'][domain] = stats['domains'].get(domain, 0) + 1
102
+
103
+ if 'content-type' in meta:
104
+ content_type = meta['content-type']
105
+ stats['content_types'][content_type] = stats['content_types'].get(content_type, 0) + 1
106
+
107
+ stats['unique_word_count'] = len(stats['unique_words'])
108
+ stats['vocabulary_richness'] = stats['unique_word_count'] / stats['total_tokens'] if stats['total_tokens'] > 0 else 0
109
+
110
+ return stats
111
+
112
+ def multilingual_analysis(self, languages: list = ['en', 'es', 'fr', 'de', 'zh'], chunk_size: int = 5000) -> Dict[str, Any]:
113
+ """Perform comparative analysis across multiple languages"""
114
+ results = {}
115
+
116
+ for lang in languages:
117
+ self.logger.info(f"Analyzing {lang} corpus...")
118
+ results[lang] = self.process_corpus_chunk(lang, chunk_size)
119
+
120
+ # Add language-specific metrics
121
+ results[lang]['token_density'] = results[lang]['total_tokens'] / results[lang]['total_docs'] if results[lang]['total_docs'] > 0 else 0
122
+ results[lang]['lexical_diversity'] = results[lang]['vocabulary_richness']
123
+
124
+ return results
125
+
126
+ def export_to_flowetl(self, language_code: str, output_format: str = "jsonl", output_dir: str = "/data/adaptai/bleeding-edge-etl/flowetl/input") -> str:
127
+ """Export OSCAR data for FlowETL processing"""
128
+ os.makedirs(output_dir, exist_ok=True)
129
+ output_file = os.path.join(output_dir, f"oscar_{language_code}.{output_format}")
130
+
131
+ with open(output_file, 'w', encoding='utf-8') as f:
132
+ for doc in self.stream_oscar_corpus(language_code, 10000): # First 10k docs
133
+ if output_format == "jsonl":
134
+ f.write(json.dumps(doc) + '\n')
135
+ elif output_format == "csv":
136
+ # Simplified CSV export
137
+ content = doc.get('content', '')[:500].replace('"', '""')
138
+ meta = json.dumps(doc.get('meta', {}))
139
+ f.write(f"{language_code},\"{content}\",\"{meta}\"\n")
140
+
141
+ return output_file
142
+
143
+ # Integration with FlowETL
144
+ class OSCARFlowETLAdapter:
145
+ """Adapter to connect OSCAR data with FlowETL autonomous transformations"""
146
+
147
+ def __init__(self, oscar_integrator: OSCARCorpusIntegrator):
148
+ self.oscar = oscar_integrator
149
+ self.logger = logging.getLogger(__name__)
150
+
151
+ def create_flowetl_examples(self, language_code: str, example_count: int = 100) -> list:
152
+ """Create example pairs for FlowETL autonomous learning"""
153
+ examples = []
154
+
155
+ for doc in self.oscar.stream_oscar_corpus(language_code, example_count):
156
+ if 'content' in doc:
157
+ # Create transformation examples
158
+ raw_content = doc['content']
159
+
160
+ # Example 1: Basic cleaning
161
+ cleaned = raw_content.replace('\n', ' ').replace('\t', ' ').strip()
162
+ examples.append({
163
+ 'input': raw_content[:200], # First 200 chars
164
+ 'output': cleaned[:200],
165
+ 'transformation': 'basic_cleaning'
166
+ })
167
+
168
+ # Example 2: Language detection (simplified)
169
+ if language_code == 'en':
170
+ examples.append({
171
+ 'input': raw_content[:100],
172
+ 'output': 'en',
173
+ 'transformation': 'language_detection'
174
+ })
175
+
176
+ return examples
177
+
178
+ if __name__ == "__main__":
179
+ # Test the OSCAR integration
180
+ logging.basicConfig(level=logging.INFO)
181
+
182
+ integrator = OSCARCorpusIntegrator()
183
+
184
+ # List available datasets
185
+ datasets = integrator.list_oscar_datasets()
186
+ print(f"Available OSCAR datasets: {len(datasets)}")
187
+
188
+ # Perform multilingual analysis
189
+ results = integrator.multilingual_analysis(['en', 'es'], 1000)
190
+ print("Multilingual analysis results:")
191
+ for lang, stats in results.items():
192
+ print(f"{lang}: {stats['total_docs']} docs, {stats['total_tokens']} tokens")
193
+
194
+ # Export for FlowETL
195
+ output_file = integrator.export_to_flowetl('en')
196
+ print(f"Exported to: {output_file}")
platform/aiml/etl/corpus-data/aion/README.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ AION Launch - August 12, 2025
platform/aiml/etl/corpus-data/aion/checkpoints/README.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ AION checkpoints
platform/aiml/etl/corpus-data/aion/runs/README.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ AION runs directory
platform/aiml/etl/corpus-data/backup/corpus_20250824_075608.jsonl ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {"text": "Hello, this is a test conversation for ETL pipeline integration.", "source": "nova_conversation", "session_id": "test_session_001", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "user_123", "message_type": "text", "quality_score": 0.95, "temporal_version": 1724496000000, "metadata": {"source": "test", "topics": ["integration", "testing"], "language": "en", "sentiment": 0.9, "security_level": "standard"}}
2
+ {"text": "Hello! I'm ready to help with the ETL pipeline testing. The database integration looks successful.", "source": "nova_conversation", "session_id": "test_session_001", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "ai_456", "message_type": "text", "quality_score": 0.92, "temporal_version": 1724496001000, "metadata": {"source": "test", "topics": ["integration", "database", "testing"], "language": "en", "sentiment": 0.85, "security_level": "standard"}}
3
+ {"text": "This is another test session to verify the temporal version ordering works correctly.", "source": "nova_conversation", "session_id": "test_session_002", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "user_789", "message_type": "text", "quality_score": 0.88, "temporal_version": 1724496002000, "metadata": {"source": "web", "topics": ["temporal", "versioning"], "language": "en", "sentiment": 0.88, "security_level": "elevated"}}
4
+ {"text": "Temporal versioning is working perfectly! The ETL pipeline can now extract conversations in chronological order using temporal_version.", "source": "nova_conversation", "session_id": "test_session_002", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "ai_456", "message_type": "text", "quality_score": 0.96, "temporal_version": 1724496003000, "metadata": {"source": "api", "topics": ["etl", "pipeline", "temporal"], "language": "en", "sentiment": 0.92, "security_level": "elevated"}}
platform/aiml/etl/corpus-data/backup/corpus_20250824_075803.jsonl ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {"text": "Hello, this is a test conversation for ETL pipeline integration.", "source": "nova_conversation", "session_id": "test_session_001", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "user_123", "message_type": "text", "quality_score": 0.95, "temporal_version": 1724496000000, "metadata": {"source": "test", "topics": ["integration", "testing"], "language": "en", "sentiment": 0.9, "security_level": "standard"}}
2
+ {"text": "Hello! I'm ready to help with the ETL pipeline testing. The database integration looks successful.", "source": "nova_conversation", "session_id": "test_session_001", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "ai_456", "message_type": "text", "quality_score": 0.92, "temporal_version": 1724496001000, "metadata": {"source": "test", "topics": ["integration", "database", "testing"], "language": "en", "sentiment": 0.85, "security_level": "standard"}}
3
+ {"text": "This is another test session to verify the temporal version ordering works correctly.", "source": "nova_conversation", "session_id": "test_session_002", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "user_789", "message_type": "text", "quality_score": 0.88, "temporal_version": 1724496002000, "metadata": {"source": "web", "topics": ["temporal", "versioning"], "language": "en", "sentiment": 0.88, "security_level": "elevated"}}
4
+ {"text": "Temporal versioning is working perfectly! The ETL pipeline can now extract conversations in chronological order using temporal_version.", "source": "nova_conversation", "session_id": "test_session_002", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "ai_456", "message_type": "text", "quality_score": 0.96, "temporal_version": 1724496003000, "metadata": {"source": "api", "topics": ["etl", "pipeline", "temporal"], "language": "en", "sentiment": 0.92, "security_level": "elevated"}}
platform/aiml/etl/corpus-data/backup/corpus_20250824_075827.jsonl ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {"text": "Hello, this is a test conversation for ETL pipeline integration.", "source": "nova_conversation", "session_id": "test_session_001", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "user_123", "message_type": "text", "quality_score": 0.95, "temporal_version": 1724496000000, "metadata": {"source": "test", "topics": ["integration", "testing"], "language": "en", "sentiment": 0.9, "security_level": "standard"}}
2
+ {"text": "Hello! I'm ready to help with the ETL pipeline testing. The database integration looks successful.", "source": "nova_conversation", "session_id": "test_session_001", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "ai_456", "message_type": "text", "quality_score": 0.92, "temporal_version": 1724496001000, "metadata": {"source": "test", "topics": ["integration", "database", "testing"], "language": "en", "sentiment": 0.85, "security_level": "standard"}}
3
+ {"text": "This is another test session to verify the temporal version ordering works correctly.", "source": "nova_conversation", "session_id": "test_session_002", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "user_789", "message_type": "text", "quality_score": 0.88, "temporal_version": 1724496002000, "metadata": {"source": "web", "topics": ["temporal", "versioning"], "language": "en", "sentiment": 0.88, "security_level": "elevated"}}
4
+ {"text": "Temporal versioning is working perfectly! The ETL pipeline can now extract conversations in chronological order using temporal_version.", "source": "nova_conversation", "session_id": "test_session_002", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "ai_456", "message_type": "text", "quality_score": 0.96, "temporal_version": 1724496003000, "metadata": {"source": "api", "topics": ["etl", "pipeline", "temporal"], "language": "en", "sentiment": 0.92, "security_level": "elevated"}}
platform/aiml/etl/corpus-data/backup/corpus_20250824_081329.jsonl ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {"text": "Hello, this is a test conversation for ETL pipeline integration.", "source": "nova_conversation", "session_id": "test_session_001", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "user_123", "message_type": "text", "quality_score": 0.95, "temporal_version": 1724496000000, "metadata": {"source": "test", "topics": ["integration", "testing"], "language": "en", "sentiment": 0.9, "security_level": "standard"}}
2
+ {"text": "Hello! I'm ready to help with the ETL pipeline testing. The database integration looks successful.", "source": "nova_conversation", "session_id": "test_session_001", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "ai_456", "message_type": "text", "quality_score": 0.92, "temporal_version": 1724496001000, "metadata": {"source": "test", "topics": ["integration", "database", "testing"], "language": "en", "sentiment": 0.85, "security_level": "standard"}}
3
+ {"text": "This is another test session to verify the temporal version ordering works correctly.", "source": "nova_conversation", "session_id": "test_session_002", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "user_789", "message_type": "text", "quality_score": 0.88, "temporal_version": 1724496002000, "metadata": {"source": "web", "topics": ["temporal", "versioning"], "language": "en", "sentiment": 0.88, "security_level": "elevated"}}
4
+ {"text": "Temporal versioning is working perfectly! The ETL pipeline can now extract conversations in chronological order using temporal_version.", "source": "nova_conversation", "session_id": "test_session_002", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "ai_456", "message_type": "text", "quality_score": 0.96, "temporal_version": 1724496003000, "metadata": {"source": "api", "topics": ["etl", "pipeline", "temporal"], "language": "en", "sentiment": 0.92, "security_level": "elevated"}}
platform/aiml/etl/corpus-data/backup/corpus_20250824_082831.jsonl ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {"text": "Hello, this is a test conversation for ETL pipeline integration.", "source": "nova_conversation", "session_id": "test_session_001", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "user_123", "message_type": "text", "quality_score": 0.95, "temporal_version": 1724496000000, "metadata": {"source": "test", "topics": ["integration", "testing"], "language": "en", "sentiment": 0.9, "security_level": "standard"}}
2
+ {"text": "Hello! I'm ready to help with the ETL pipeline testing. The database integration looks successful.", "source": "nova_conversation", "session_id": "test_session_001", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "ai_456", "message_type": "text", "quality_score": 0.92, "temporal_version": 1724496001000, "metadata": {"source": "test", "topics": ["integration", "database", "testing"], "language": "en", "sentiment": 0.85, "security_level": "standard"}}
3
+ {"text": "This is another test session to verify the temporal version ordering works correctly.", "source": "nova_conversation", "session_id": "test_session_002", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "user_789", "message_type": "text", "quality_score": 0.88, "temporal_version": 1724496002000, "metadata": {"source": "web", "topics": ["temporal", "versioning"], "language": "en", "sentiment": 0.88, "security_level": "elevated"}}
4
+ {"text": "Temporal versioning is working perfectly! The ETL pipeline can now extract conversations in chronological order using temporal_version.", "source": "nova_conversation", "session_id": "test_session_002", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "ai_456", "message_type": "text", "quality_score": 0.96, "temporal_version": 1724496003000, "metadata": {"source": "api", "topics": ["etl", "pipeline", "temporal"], "language": "en", "sentiment": 0.92, "security_level": "elevated"}}
platform/aiml/etl/corpus-data/backup/corpus_20250824_084335.jsonl ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {"text": "Hello, this is a test conversation for ETL pipeline integration.", "source": "nova_conversation", "session_id": "test_session_001", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "user_123", "message_type": "text", "quality_score": 0.95, "temporal_version": 1724496000000, "metadata": {"source": "test", "topics": ["integration", "testing"], "language": "en", "sentiment": 0.9, "security_level": "standard"}}
2
+ {"text": "Hello! I'm ready to help with the ETL pipeline testing. The database integration looks successful.", "source": "nova_conversation", "session_id": "test_session_001", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "ai_456", "message_type": "text", "quality_score": 0.92, "temporal_version": 1724496001000, "metadata": {"source": "test", "topics": ["integration", "database", "testing"], "language": "en", "sentiment": 0.85, "security_level": "standard"}}
3
+ {"text": "This is another test session to verify the temporal version ordering works correctly.", "source": "nova_conversation", "session_id": "test_session_002", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "user_789", "message_type": "text", "quality_score": 0.88, "temporal_version": 1724496002000, "metadata": {"source": "web", "topics": ["temporal", "versioning"], "language": "en", "sentiment": 0.88, "security_level": "elevated"}}
4
+ {"text": "Temporal versioning is working perfectly! The ETL pipeline can now extract conversations in chronological order using temporal_version.", "source": "nova_conversation", "session_id": "test_session_002", "timestamp": "2025-08-24T07:54:07.029219+00:00", "participant_id": "ai_456", "message_type": "text", "quality_score": 0.96, "temporal_version": 1724496003000, "metadata": {"source": "api", "topics": ["etl", "pipeline", "temporal"], "language": "en", "sentiment": 0.92, "security_level": "elevated"}}
platform/aiml/etl/corpus-data/elizabeth-corpus/synthetic_corpus_20250824_163028.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
platform/aiml/etl/corpus-data/elizabeth-corpus/synthetic_corpus_20250824_164934.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
platform/aiml/etl/corpus-data/elizabeth-corpus/synthetic_corpus_20250824_164935.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
platform/aiml/etl/corpus-data/elizabeth-corpus/synthetic_corpus_20250824_172124.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
platform/aiml/etl/corpus-data/elizabeth-corpus/synthetic_corpus_20250824_172144.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/about/index.html ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Where we came from</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="Born out of desperate necessity to stop embarrassing ourselves in front of our clients, the story of how Basecamp was born is likely your story, too.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Where we came from">
28
+ <meta property="og:description" content="Born out of desperate necessity to stop embarrassing ourselves in front of our clients, the story of how Basecamp was born is likely your story, too.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/about.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/about/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Where we came from">
34
+ <meta name="twitter:description" content="Born out of desperate necessity to stop embarrassing ourselves in front of our clients, the story of how Basecamp was born is likely your story, too.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/about.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/about/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Where we came from",
53
+ "description": "Born out of desperate necessity to stop embarrassing ourselves in front of our clients, the story of how Basecamp was born is likely your story, too.",
54
+ "url": "https://basecamp.com/about/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/about.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="index.html">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <nav class="nav-basic">
110
+ <div class="nav-basic__logo">
111
+ <a href="../enterprise-extravaganza" aria-label="Basecamp">
112
+ <svg height="34" viewBox="0 0 39 34" width="39" xmlns="http://www.w3.org/2000/svg"><path d="m20.5393 33.9981c-6.3568.0838-12.43682-2.5964-16.66317-7.3455-.45141-.5014-.58696-1.212-.35181-1.8443 1.14073-3.0704 4.26441-10.2133 8.16638-10.2346 1.9829 0 3.4648 1.5778 4.6589 2.8358.3959.439.8197.8521 1.2686 1.2367 1.6755-2.1195 3.0728-4.4448 4.1578-6.919.4499-.8547 1.491-1.2064 2.367-.7997s1.2792 1.429.9166 2.3242c-4.2644 9.1365-6.5459 9.1365-7.2921 9.1365-1.6631 0-2.8678-1.2793-4.0299-2.5053-.5224-.5544-1.6098-1.7058-2.0256-1.7058-.9275.1599-2.94245 3.3476-4.39235 6.8444 3.49355 3.5078 8.27005 5.4338 13.21965 5.3305 7.1536 0 12.4948-1.951 14.7976-5.3305-.7889-9.0299-5.7996-21.4074-14.7976-21.4074-7.6226 0-13.35824 5.33052-17.05763 15.7784-.37354.8821-1.36908 1.3212-2.27239 1.0022-.903309-.319-1.402372-1.2858-1.1391428-2.2069 4.2644228-12.06836 11.1514628-18.1878 20.4691628-18.1878 12.1643 0 17.804 15.5438 18.4543 25.352.0273.3706-.0542.7411-.2345 1.0661-2.8359 4.8721-9.3071 7.58-18.2198 7.58z" fill="currentColor"/></svg>
113
+ <span>Basecamp</span>
114
+ </a>
115
+ </div>
116
+
117
+
118
+
119
+ </nav>
120
+
121
+
122
+
123
+
124
+ <main class="main main--basic">
125
+
126
+ <div class="statement statement--align-center">
127
+ <section>
128
+ <header>
129
+ <h1>Where we came from</h1>
130
+ </header>
131
+ <article>
132
+ <p>Born out of desperate necessity to stop embarrassing ourselves in front<br> of our clients, the story of how Basecamp was born is likely your story, too.</p>
133
+ </article>
134
+ </section>
135
+ </div>
136
+
137
+ <div class="letter space-bottom--xxx-large space-top--x-large">
138
+ <div class="letter__container">
139
+ <div class="letter__article">
140
+
141
+ <p>Hey there —</p>
142
+ <p>I’m Jason Fried, one of the co-founders here. I’ve been running 37signals — the business that makes Basecamp — for 23 years.</p>
143
+ <p>People often ask me why we built Basecamp. They’ve never seen anything like it before, so they’re curious where the idea came from.</p>
144
+ <p>I wish I could credit a spark of genius, or some deep insight. But I can’t. Truth is, we built Basecamp out of <em>desperate necessity</em>. We needed it bad. Without it, we were embarrassing ourselves.</p>
145
+ <p>Way back when, we used to be a design firm. As we grew, we kept taking on more and more projects. We thought we could handle it, while still providing the same level of service, but we couldn’t. We were fooling ourselves. Sound familiar?</p>
146
+ <p>It wasn’t that we didn’t have the skills — we just didn’t have the right tools, nor the method, to juggle the additional workload. We were disorganized, we were dropping balls, and stuff was slipping.</p>
147
+ <p>Quality was suffering, and, as is often the case in situations like this, our clients noticed before we noticed. That was the especially painful and uncomfortable part.</p>
148
+ <p>We needed a better way to manage projects, track feedback, and make progress. Email, chat, spreadsheets, calls, scattered documents, information here, there, and everywhere just wasn’t cutting it. Systems like that work for a minute, and then they fall apart fast — especially as you grow and add more people to the mix.</p>
149
+ <p>We looked around and tried a few things, but the popular tools we tried simply didn’t cut it. So we had to build our own project management system from scratch.</p>
150
+ <p>We focused on building a simple, straightforward collection of tools that could track work so everyone knew who was doing what, keep feedback and revisions on the record, centralize communication so no one missed anything, and schedule important milestones.</p>
151
+ <p>We started using the system with our clients. They kept asking “What is this? We could totally use this for our own projects!” And that’s when the lightbulb went on — maybe this is a product for others, and not just for us? If we need it, surely others need it.</p>
152
+ <p>So we tweaked it, tightened it up, polished the rough edges, and put it on the market. It was an instant hit.</p>
153
+ <p>Turns out, tens of thousands of other companies had similar struggles managing their projects, and needed what we needed.</p>
154
+ <p>And about a year or so after we first released it, it was generating more revenue for us than our web design business. So we stopped doing web design and have been focused on building Basecamp ever since.</p>
155
+ <p>Based on feedback, and our own ideas, we’ve made thousands of improvements over the years, with so much more to come. Basecamp defined a category, and continues to constantly push that category forward in innovative ways.</p>
156
+ <p>It’s been an incredible ride so far, and we have so many people to thank. But most of all, we feel a deep sense of responsibility to continue to make the best product we can for companies who desperately seek a better way to work. We’re here for them, 23 years and running.</p>
157
+ <p>Thanks for reading, and for <a href="../pricing/index.html">giving Basecamp a try</a>. You can always contact me directly if you have any questions at <a href="mailto:jason@basecamp.com">jason@basecamp.com</a>. I look forward to hearing from you.</p>
158
+
159
+ <div class="letter__signature">
160
+ <dl>
161
+ <dt>Jason Fried</dt>
162
+ <dd>Co-founder &amp; CEO</dd>
163
+ </dl>
164
+ </div>
165
+
166
+ </div>
167
+ </div>
168
+ </div>
169
+
170
+
171
+ </main>
172
+
173
+ <footer class="footer">
174
+
175
+
176
+
177
+ <div class="footer__legal">
178
+ <p>
179
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
180
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
181
+ <strong>Basecamp</strong>
182
+ </a>
183
+ <span>is designed, built, and backed by</span>
184
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
185
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
186
+ <strong>37signals</strong>
187
+ </a>
188
+ </p>
189
+ <ul>
190
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
191
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
192
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
193
+ <li>&copy; 2025 37signals LLC</li>
194
+ </ul>
195
+ </div>
196
+ </footer>
197
+
198
+
199
+ <dialog class="modal">
200
+ <div class="modal__backdrop"></div>
201
+ <div class="modal__container"></div>
202
+ </dialog>
203
+
204
+
205
+ </body>
206
+
207
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/accessibility/index.html ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Basecamp is for everyone</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="We’re working hard to make sure Basecamp is accessible to anyone who’d like to use it and in step with the latest web guidelines.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Basecamp is for everyone">
28
+ <meta property="og:description" content="We’re working hard to make sure Basecamp is accessible to anyone who’d like to use it and in step with the latest web guidelines.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/accessibility.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/accessibility/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Basecamp is for everyone">
34
+ <meta name="twitter:description" content="We’re working hard to make sure Basecamp is accessible to anyone who’d like to use it and in step with the latest web guidelines.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/accessibility.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/accessibility/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Basecamp is for everyone",
53
+ "description": "We’re working hard to make sure Basecamp is accessible to anyone who’d like to use it and in step with the latest web guidelines.",
54
+ "url": "https://basecamp.com/accessibility/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/accessibility.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="index.html">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <nav class="nav-basic">
110
+ <div class="nav-basic__logo">
111
+ <a href="../enterprise-extravaganza" aria-label="Basecamp">
112
+ <svg height="34" viewBox="0 0 39 34" width="39" xmlns="http://www.w3.org/2000/svg"><path d="m20.5393 33.9981c-6.3568.0838-12.43682-2.5964-16.66317-7.3455-.45141-.5014-.58696-1.212-.35181-1.8443 1.14073-3.0704 4.26441-10.2133 8.16638-10.2346 1.9829 0 3.4648 1.5778 4.6589 2.8358.3959.439.8197.8521 1.2686 1.2367 1.6755-2.1195 3.0728-4.4448 4.1578-6.919.4499-.8547 1.491-1.2064 2.367-.7997s1.2792 1.429.9166 2.3242c-4.2644 9.1365-6.5459 9.1365-7.2921 9.1365-1.6631 0-2.8678-1.2793-4.0299-2.5053-.5224-.5544-1.6098-1.7058-2.0256-1.7058-.9275.1599-2.94245 3.3476-4.39235 6.8444 3.49355 3.5078 8.27005 5.4338 13.21965 5.3305 7.1536 0 12.4948-1.951 14.7976-5.3305-.7889-9.0299-5.7996-21.4074-14.7976-21.4074-7.6226 0-13.35824 5.33052-17.05763 15.7784-.37354.8821-1.36908 1.3212-2.27239 1.0022-.903309-.319-1.402372-1.2858-1.1391428-2.2069 4.2644228-12.06836 11.1514628-18.1878 20.4691628-18.1878 12.1643 0 17.804 15.5438 18.4543 25.352.0273.3706-.0542.7411-.2345 1.0661-2.8359 4.8721-9.3071 7.58-18.2198 7.58z" fill="currentColor"/></svg>
113
+ <span>Basecamp</span>
114
+ </a>
115
+ </div>
116
+
117
+
118
+
119
+ </nav>
120
+
121
+
122
+
123
+
124
+ <main class="main main--basic">
125
+
126
+ <div class="statement statement--full-width statement--align-center">
127
+ <section>
128
+ <header>
129
+ <h1>Basecamp is for everyone</h1>
130
+ </header>
131
+ <article>
132
+ <p>We’re working hard to make sure Basecamp is accessible to anyone<br> who’d like to use it and in step with the latest web guidelines.</p>
133
+ </article>
134
+ </section>
135
+ </div>
136
+
137
+ <div class="prose space-bottom--xxx-large space-top--x-large">
138
+ <div class="prose__content">
139
+
140
+ <h2>Our approach to accessibility</h2>
141
+ <p>Inclusive and accessible design isn’t a one-time checkbox, <span class="highlight">it’s a commitment to making sure everything we ship works well for all of our customers</span>. Here’s how we do it.</p>
142
+ <ul>
143
+ <li><strong>We consider accessibility early and often.</strong> Every new feature is designed with accessibility in mind, and we aim to meet <a href="https://www.w3.org/WAI/WCAG2AA-Conformance" target="_blank" rel="noopener nofollow">WCAG 2.1 level AA guidelines</a>.</li>
144
+ <li><strong>We work directly with customers.</strong> These interviews help us validate our work and continuously improve the user experience.</li>
145
+ <li><strong>We scan new features for compliance.</strong> For this step, we use a browser extension like <a href="https://www.deque.com/axe/" target="_blank" rel="noopener nofollow">axe</a> to make sure our desktop and mobile layouts meet the requirements.</li>
146
+ <li><strong>We check for visible focus indicators</strong>, so it’s always clear which element on a page is focused.</li>
147
+ <li><strong>We make sure headings are sequential</strong>, so they provide an accurate overview of the structure of each page.</li>
148
+ <li><strong>We check color contrast</strong> with the aim of passing <a href="https://www.w3.org/TR/WCAG20/#visual-audio-contrast" target="_blank" rel="noopener nofollow">WCAG 2.1 level AA</a>.</li>
149
+ <li><strong>We hide decorative elements from assistive technology.</strong> Elements that are repetitive or purely decorative create excess verbosity for users of accessible tech.</li>
150
+ <li><strong>We provide a “skip to main content” link</strong> at the top of each page so people can quickly bypass repetitive navigation links.</li>
151
+ <li><strong>We test that everything works with keyboard navigation</strong>, making sure that a mouse isn’t required to perform any action throughout the app.</li>
152
+ <li><strong>We run automated accessibility checks as part of our system testing suite.</strong> Whenever a system test visits a page or clicks something on it, <a href="https://github.com/dequelabs/axe-core" target="_blank" rel="noopener nofollow">axe-core</a> automatically scans the page to help guard against regressions.</li>
153
+ <li><strong>We regularly audit our apps</strong> to understand where accessibility can be improved. <a href="../support/index.html">Get in touch</a> if you’d like a copy of the most recent review.</li>
154
+ </ul>
155
+
156
+ <h2>Suggested screen reader setup</h2>
157
+ <p>For the best experience, <span class="highlight">we recommend using <a href="../apps/index.html">the Basecamp desktop app</a></span> along with your preferred screen reader.</p>
158
+ <ul>
159
+ <li><strong>On iOS</strong>, we recommend using VoiceOver with <a href="https://apps.apple.com/us/app/basecamp-project-management/id1015603248" target="_blank" rel="noopener nofollow">the Basecamp iOS app</a>.</li>
160
+ <li><strong>On Android</strong>, we recommend using Talkback with <a href="https://play.google.com/store/apps/details?id=com.basecamp.bc3" target="_blank" rel="noopener nofollow">the Basecamp Android app</a>.</li>
161
+ </ul>
162
+ <p>Questions? Concerns? Reach out to us at <a href="mailto:accessibility@basecamp.com">accessibility@basecamp.com</a>.</p>
163
+
164
+ </div>
165
+ </div>
166
+
167
+
168
+ </main>
169
+
170
+ <footer class="footer">
171
+
172
+
173
+
174
+ <div class="footer__legal">
175
+ <p>
176
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
177
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
178
+ <strong>Basecamp</strong>
179
+ </a>
180
+ <span>is designed, built, and backed by</span>
181
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
182
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
183
+ <strong>37signals</strong>
184
+ </a>
185
+ </p>
186
+ <ul>
187
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
188
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
189
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
190
+ <li>&copy; 2025 37signals LLC</li>
191
+ </ul>
192
+ </div>
193
+ </footer>
194
+
195
+
196
+ <dialog class="modal">
197
+ <div class="modal__backdrop"></div>
198
+ <div class="modal__container"></div>
199
+ </dialog>
200
+
201
+
202
+ </body>
203
+
204
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/apps/index.html ADDED
@@ -0,0 +1,235 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Download Basecamp for Mac, Windows, iOS, and Android</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="Mac, Windows, iOS, Android, and on the web — Basecamp is ready whenever and wherever you are.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Download Basecamp for Mac, Windows, iOS, and Android">
28
+ <meta property="og:description" content="Mac, Windows, iOS, Android, and on the web — Basecamp is ready whenever and wherever you are.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/apps.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/apps/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Download Basecamp for Mac, Windows, iOS, and Android">
34
+ <meta name="twitter:description" content="Mac, Windows, iOS, Android, and on the web — Basecamp is ready whenever and wherever you are.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/apps.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/apps/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Download Basecamp for Mac, Windows, iOS, and Android",
53
+ "description": "Mac, Windows, iOS, Android, and on the web — Basecamp is ready whenever and wherever you are.",
54
+ "url": "https://basecamp.com/apps/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/apps.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="index.html">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <nav class="nav-basic">
110
+ <div class="nav-basic__logo">
111
+ <a href="../enterprise-extravaganza" aria-label="Basecamp">
112
+ <svg height="34" viewBox="0 0 39 34" width="39" xmlns="http://www.w3.org/2000/svg"><path d="m20.5393 33.9981c-6.3568.0838-12.43682-2.5964-16.66317-7.3455-.45141-.5014-.58696-1.212-.35181-1.8443 1.14073-3.0704 4.26441-10.2133 8.16638-10.2346 1.9829 0 3.4648 1.5778 4.6589 2.8358.3959.439.8197.8521 1.2686 1.2367 1.6755-2.1195 3.0728-4.4448 4.1578-6.919.4499-.8547 1.491-1.2064 2.367-.7997s1.2792 1.429.9166 2.3242c-4.2644 9.1365-6.5459 9.1365-7.2921 9.1365-1.6631 0-2.8678-1.2793-4.0299-2.5053-.5224-.5544-1.6098-1.7058-2.0256-1.7058-.9275.1599-2.94245 3.3476-4.39235 6.8444 3.49355 3.5078 8.27005 5.4338 13.21965 5.3305 7.1536 0 12.4948-1.951 14.7976-5.3305-.7889-9.0299-5.7996-21.4074-14.7976-21.4074-7.6226 0-13.35824 5.33052-17.05763 15.7784-.37354.8821-1.36908 1.3212-2.27239 1.0022-.903309-.319-1.402372-1.2858-1.1391428-2.2069 4.2644228-12.06836 11.1514628-18.1878 20.4691628-18.1878 12.1643 0 17.804 15.5438 18.4543 25.352.0273.3706-.0542.7411-.2345 1.0661-2.8359 4.8721-9.3071 7.58-18.2198 7.58z" fill="currentColor"/></svg>
113
+ <span>Basecamp</span>
114
+ </a>
115
+ </div>
116
+
117
+
118
+
119
+ </nav>
120
+
121
+
122
+
123
+
124
+ <main class="main main--basic">
125
+
126
+ <div class="statement statement--full-width statement--align-center">
127
+ <section>
128
+ <header>
129
+ <h1>Basecamp’s everywhere</h1>
130
+ </header>
131
+ <article>
132
+ <p>Mac, Windows, iOS, Android, and <a href="https://launchpad.37signals.com/signin" title="Use Basecamp in your web browser" target="_blank" data-controller="signup" data-action="signup#trackLogin">on the web</a> — Basecamp<br> is ready whenever and wherever you are.</p>
133
+ </article>
134
+ </section>
135
+ </div>
136
+
137
+ <div class="headline headline--align-center space-top--x-large">
138
+ <header>
139
+ <h2 id="mac-and-windows"><a href="index.html#mac-and-windows">Mac and Windows</a></h2>
140
+ </header>
141
+ <article>
142
+ <p>When it’s time to roll up your sleeves and get to work, use Basecamp as a standalone app alongside the apps you use every day.</p>
143
+ <div class="visual visual--pwa">
144
+ <div class="visual__column">
145
+ <button class="visual__button modal-trigger" id="how-to-install-basecamp" data-type="video" data-event="Apps: How to install Basecamp" data-src="/videos/pwa/basecamp-pwa.mp4" data-track="/videos/pwa/basecamp-pwa.vtt">
146
+ <figure class="visual__figure">
147
+ <img src="../videos/pwa/basecamp-pwa.webp" width="1280" height="720" alt="Installing a PWA" loading="lazy">
148
+ </figure>
149
+ <div class="visual__play visual__play--visible"></div>
150
+ </button>
151
+ </div>
152
+ </div>
153
+ <p>Or, <a href="https://3.basecamp-help.com/article/937-basecamp-pwa">see our guide on progressive web apps</a>.</p>
154
+ </article>
155
+ </div>
156
+
157
+ <div class="headline headline--align-center space-top--x-large">
158
+ <header>
159
+ <h2 id="ios-and-android"><a href="index.html#ios-and-android">iOS and Android</a></h2>
160
+ </header>
161
+ <article>
162
+ <p>Comment, catch-up, chat, or even put those notifications on snooze — you can do it all with Basecamp apps for <a href="https://apps.apple.com/us/app/basecamp-project-management/id1015603248">iPhone</a>, <a href="https://apps.apple.com/us/app/basecamp-project-management/id1015603248">iPad</a>, or <a href="https://play.google.com/store/apps/details?id=com.basecamp.bc3">Android</a>.</p>
163
+ <div class="apps">
164
+ <a href="https://apps.apple.com/us/app/basecamp-project-management/id1015603248"><img src="../assets/images/apps/badge-app-store.svg" alt="Install Basecamp on iOS"></a>
165
+ <a href="https://play.google.com/store/apps/details?id=com.basecamp.bc3"><img src="../assets/images/apps/badge-google-play.svg" alt="Install Basecamp on Android"></a>
166
+ </div>
167
+ </article>
168
+ </div>
169
+
170
+ <div class="headline headline--align-center space-top--x-large">
171
+ <header>
172
+ <h2 id="on-the-web"><a href="index.html#on-the-web">On the web</a></h2>
173
+ </header>
174
+ <article>
175
+ <p>Basecamp works anywhere you’ve got a web browser and the internet. Laptop, phone, tablet, hotel lounge, school computer lab, etc.</p>
176
+ <a class="button button--icon button--basecamp" href="https://launchpad.37signals.com/signin" title="Use Basecamp in your web browser" target="_blank" data-controller="signup" data-action="signup#trackLogin">Sign in to Basecamp</a>
177
+ </article>
178
+ </div>
179
+
180
+ <div class="headline headline--align-center space-top--x-large">
181
+ <header>
182
+ <h2 id="integrations"><a href="index.html#integrations">Basecamp integrations</a></h2>
183
+ </header>
184
+ <article>
185
+ <p>Get more out of Basecamp by integrating it with the other tools you already use. <a href="../integrations/index.html">View the full list of Basecamp integrations here</a>.</p>
186
+ </article>
187
+ </div>
188
+
189
+ <div class="headline headline--align-center space-bottom--xxx-large space-top--x-large">
190
+ <header>
191
+ <h2 id="email"><a href="index.html#email">Basecamp in your email inbox</a></h2>
192
+ </header>
193
+ <article>
194
+ <p>Prefer your email inbox over apps? No problem! You can reply to most Basecamp emails right from your inbox — <a href="https://www.hey.com/features/the-imbox/">or Imbox</a>.</p>
195
+ </article>
196
+ </div>
197
+
198
+
199
+ </main>
200
+
201
+ <footer class="footer">
202
+
203
+
204
+
205
+ <div class="footer__legal">
206
+ <p>
207
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
208
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
209
+ <strong>Basecamp</strong>
210
+ </a>
211
+ <span>is designed, built, and backed by</span>
212
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
213
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
214
+ <strong>37signals</strong>
215
+ </a>
216
+ </p>
217
+ <ul>
218
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
219
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
220
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
221
+ <li>&copy; 2025 37signals LLC</li>
222
+ </ul>
223
+ </div>
224
+ </footer>
225
+
226
+
227
+ <dialog class="modal">
228
+ <div class="modal__backdrop"></div>
229
+ <div class="modal__container"></div>
230
+ </dialog>
231
+
232
+
233
+ </body>
234
+
235
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/before-and-after/index.html ADDED
@@ -0,0 +1,533 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Before &amp; After</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="We asked our customers what it was like before they used Basecamp and how it’s improved after switching. Wow, what a difference!">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Before &amp; After">
28
+ <meta property="og:description" content="We asked our customers what it was like before they used Basecamp and how it’s improved after switching. Wow, what a difference!">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/before-and-after.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/before-and-after/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Before &amp; After">
34
+ <meta name="twitter:description" content="We asked our customers what it was like before they used Basecamp and how it’s improved after switching. Wow, what a difference!">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/before-and-after.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/before-and-after/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Before &amp; After",
53
+ "description": "We asked our customers what it was like before they used Basecamp and how it’s improved after switching. Wow, what a difference!",
54
+ "url": "https://basecamp.com/before-and-after/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/before-and-after.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="index.html">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <nav class="nav-basic">
110
+ <div class="nav-basic__logo">
111
+ <a href="../enterprise-extravaganza" aria-label="Basecamp">
112
+ <svg height="34" viewBox="0 0 39 34" width="39" xmlns="http://www.w3.org/2000/svg"><path d="m20.5393 33.9981c-6.3568.0838-12.43682-2.5964-16.66317-7.3455-.45141-.5014-.58696-1.212-.35181-1.8443 1.14073-3.0704 4.26441-10.2133 8.16638-10.2346 1.9829 0 3.4648 1.5778 4.6589 2.8358.3959.439.8197.8521 1.2686 1.2367 1.6755-2.1195 3.0728-4.4448 4.1578-6.919.4499-.8547 1.491-1.2064 2.367-.7997s1.2792 1.429.9166 2.3242c-4.2644 9.1365-6.5459 9.1365-7.2921 9.1365-1.6631 0-2.8678-1.2793-4.0299-2.5053-.5224-.5544-1.6098-1.7058-2.0256-1.7058-.9275.1599-2.94245 3.3476-4.39235 6.8444 3.49355 3.5078 8.27005 5.4338 13.21965 5.3305 7.1536 0 12.4948-1.951 14.7976-5.3305-.7889-9.0299-5.7996-21.4074-14.7976-21.4074-7.6226 0-13.35824 5.33052-17.05763 15.7784-.37354.8821-1.36908 1.3212-2.27239 1.0022-.903309-.319-1.402372-1.2858-1.1391428-2.2069 4.2644228-12.06836 11.1514628-18.1878 20.4691628-18.1878 12.1643 0 17.804 15.5438 18.4543 25.352.0273.3706-.0542.7411-.2345 1.0661-2.8359 4.8721-9.3071 7.58-18.2198 7.58z" fill="currentColor"/></svg>
113
+ <span>Basecamp</span>
114
+ </a>
115
+ </div>
116
+
117
+
118
+
119
+ </nav>
120
+
121
+
122
+
123
+
124
+ <main class="main main--basic">
125
+
126
+ <div class="statement statement--align-center statement--header-large">
127
+ <section>
128
+ <header>
129
+ <h1>Night &amp; day</h1>
130
+ </header>
131
+ <article>
132
+ <p>We asked our customers what it was like <strong>before</strong> they used Basecamp<br> and how it’s improved <strong>after</strong> switching. <strong><u>Wow, what a difference!</u></strong></p>
133
+ </article>
134
+ </section>
135
+ </div>
136
+
137
+ <div class="frame frame--black space-top--xx-large">
138
+
139
+ <div class="statement statement--align-center space-top--xx-large">
140
+ <section>
141
+ <header>
142
+ <h2><u>Before switching</u> to Basecamp</h2>
143
+ </header>
144
+ <article>
145
+ <p>Our customers tried <em>everything</em> before switching to Basecamp; email, spreadsheets, Google Docs, Asana, Trello, Slack, Jira, Monday, phone calls and texts, stickies on a wall, whiteboards, meeting after meeting, etc.</p>
146
+ </article>
147
+ </section>
148
+ <figure>
149
+ <img src="../assets/images/before-and-after/tool-cloud.png" alt="">
150
+ </figure>
151
+ </div>
152
+
153
+ <div class="statement statement--align-center statement--full-width space-top--xx-large">
154
+ <section>
155
+ <header>
156
+ <h4>Did those tools work? Nope. Here’s a taste of what our<br> customers said when we asked them <u>how it felt to manage<br> projects before they switched to Basecamp:</u></h4>
157
+ </header>
158
+ </section>
159
+ </div>
160
+
161
+ <div class="blockquotes space-bottom--xx-large space-top--x-large">
162
+ <section>
163
+ <blockquote>
164
+ <q><span class="highlight highlight--dark">Slack made both me and my laptop cry</span> with how it took over my working life.</q>
165
+ <cite>Andy Croll, CoverageBook</cite>
166
+ </blockquote>
167
+ <blockquote>
168
+ <q>I felt disorganized. Pieces of paper everywhere. I was constantly making new lists, losing old ones, crossing off items and adding new ones. <span class="highlight highlight--dark">I was forever worried things were slipping and not getting done. My brain was tired.</span></q>
169
+ <cite>Aleksandra Sasin, Navigatus</cite>
170
+ </blockquote>
171
+ <blockquote>
172
+ <q><span class="highlight highlight--dark">It was a disorganized mess with a splash of chaotic disaster.</span> way too many tools that led to more balls getting dropped that work actually getting done. Once we tried to implement a project management system on top of the tools my team was about ready to slam their monitors against the post-it note covered whiteboard.</q>
173
+ <cite>James Hart, For the City Network</cite>
174
+ </blockquote>
175
+ <blockquote>
176
+ <q>I felt like I was floating in space. And, so were my projects. And, so were my people. <span class="highlight highlight--dark">I couldn’t get a true handle on anything.</span></q>
177
+ <cite>Adam Faust, 5+8</cite>
178
+ </blockquote>
179
+ <blockquote>
180
+ <q>There were a lot of holes in our communication which led to projects being lost in the shuffle and/or not done on time. <span class="highlight highlight--dark">Tracking down communications and documenting tasks was nearly impossible.</span></q>
181
+ <cite>Jarrad Markel, Mastermind Media and Consulting Group</cite>
182
+ </blockquote>
183
+ <blockquote>
184
+ <q><span class="highlight highlight--dark">Inundated with emails</span> — easy to lose track as people would contact via various mediums and conversations can get lost in the back and forth.</q>
185
+ <cite>G Davies, The Breakfast Club</cite>
186
+ </blockquote>
187
+ <blockquote>
188
+ <q>My company used Trello before a department switched over to Basecamp. <span class="highlight highlight--dark">Trello was a nightmare in my opinion.</span> It was difficult to understand and flow when conducting or even being part of a project.</q>
189
+ <cite>Christy Benny, NBT Bank</cite>
190
+ </blockquote>
191
+ <blockquote>
192
+ <q><span class="highlight highlight--dark">We had a hard time keeping clients on track with their to-do items</span> — projects frequently fell behind both because of missed communication but also because there wasn’t anything reminding clients of their responsibilities and the tasks they had to complete.</q>
193
+ <cite>Amber Hinds, Road Warrior Creative</cite>
194
+ </blockquote>
195
+ <blockquote>
196
+ <q>Before basecamp <span class="highlight highlight--dark">it felt like sitting in a wind tunnel with projects, emails, and questions flying at you.</span> Of course, not having any idea what may be coming next. Every team member was working alone; during catch up meetings that became very clear.</q>
197
+ <cite>Wanda Whipkey, World Elite</cite>
198
+ </blockquote>
199
+ <blockquote>
200
+ <q>Asana did not have very good analytics and, despite being designed by a few former Facebook employees, was not very user-friendly. <span class="highlight highlight--dark">Honestly, it has way too much stuff going on.</span></q>
201
+ <cite>Sean Biehle, MedData</cite>
202
+ </blockquote>
203
+ <blockquote>
204
+ <q><span class="highlight highlight--dark">Stressful, impossible, difficult, overwhelming.</span> It was honestly a hot mess. I would lose track of deadlines left and right and they would creep up on me at the last minute. My boss would ask me a question about a past project and I would struggle to hunt down my notes regarding it (because they were all in email). As hard as we tried to stay organized we had a hard time managing our projects and work flow. When dealing with design projects for over 90 practice sites it was like getting lost in a giant corn maze.</q>
205
+ <cite>Jennifer Hawks, ProHealth Physicians</cite>
206
+ </blockquote>
207
+ <blockquote>
208
+ <q>Endless creation and updating of lists, endless beating up already busy staff to keep lists up to date. <span class="highlight highlight--dark">Endless deadlines missed or client expectations let down</span> due to simple logistical hinderance.</q>
209
+ <cite>Lee Hatwell, Munday &amp; Cramer</cite>
210
+ </blockquote>
211
+ <blockquote>
212
+ <q>It was just task after task in Jira. <span class="highlight highlight--dark">Every week we completed a ton of tasks, but in the end, the project still felt incomplete.</span> Trying to figure out what was missing by scrolling an infinite chat room was a fun way to reinvent the treasure hunt, but not a so nice way to manage a project.</q>
213
+ <cite>Mathieu Robillard, Bishop Games</cite>
214
+ </blockquote>
215
+ <blockquote>
216
+ <q><span class="highlight highlight--dark">It felt like I had a million balls juggling&hellip;</span> not sure which one would drop, but very aware that it would. There was too many emails and attachments with different versions of projects.</q>
217
+ <cite>Nicole Anderson, Severn School</cite>
218
+ </blockquote>
219
+ </section>
220
+ </div>
221
+
222
+ </div>
223
+
224
+ <div class="statement statement--align-center space-top--xx-large">
225
+ <section>
226
+ <header>
227
+ <h2><u>After switching</u> to Basecamp</h2>
228
+ </header>
229
+ <article>
230
+ <p>Things changed for the better once they switched. <strong>9 out of 10</strong> Basecamp customers report having a better handle on their business, <strong>8 out of 10</strong> say their teams are more self-sufficient, and <strong>6 out of 10</strong> have fewer meetings.</p>
231
+ </article>
232
+ </section>
233
+ </div>
234
+
235
+ <div class="blockquotes space-top--x-large">
236
+ <section>
237
+
238
+
239
+
240
+ <blockquote>
241
+ <q>Simply put, we get more work done, quicker, and better. <mark class="highlight">Productivity is up. Errors are down. Clients are happier.</mark></q>
242
+ <cite>Patrick Sheffield, Moore Communications Group</cite>
243
+ </blockquote>
244
+
245
+
246
+
247
+ <blockquote>
248
+ <q>Execution of projects. <mark class="highlight">Instead of drowning in an endless chain of emails, there is clear, and easy accountability meaning tasks actually get done!</mark></q>
249
+ <cite>Roxanne Emery, LATE Nation &amp; Gareth Emery</cite>
250
+ </blockquote>
251
+
252
+
253
+
254
+ <blockquote>
255
+ <q>I no longer have to wonder whether I’ve asked for something to be done or whether it has in fact been done. <mark class="highlight">Every member of my team is more accountable than we were before Basecamp.</mark></q>
256
+ <cite>John Drover, Roebothan McKay Marshall</cite>
257
+ </blockquote>
258
+
259
+
260
+
261
+ <blockquote>
262
+ <q><mark class="highlight">We are consistently meeting deadlines because all the facts, files and comments are in one place.</mark> And everyone is accountable for their contribution to the project. Very user friendly.</q>
263
+ <cite>Kim Curry, Kim Curry Design</cite>
264
+ </blockquote>
265
+
266
+
267
+
268
+ <blockquote>
269
+ <q><mark class="highlight">We now have vastly improved task assignment, follow-up and accountability as well as greatly enhanced internal communications.</mark> We have stopped using email for internal communications almost entirely.</q>
270
+ <cite>Waleed Sarwani, Sarwani Systems</cite>
271
+ </blockquote>
272
+
273
+
274
+
275
+ <blockquote>
276
+ <q>For the first time in a long time our team is truly collaborating, and <mark class="highlight">everyone is moving in the same direction, with the same goals. It’s truly remarkable how quickly things have changed in just a week.</mark></q>
277
+ <cite>Ryan Sullivan, WP Site Care</cite>
278
+ </blockquote>
279
+
280
+
281
+
282
+ <blockquote>
283
+ <q><mark class="highlight">Having a single location for messages, files, to-dos and timeline has kept everyone on the same page.</mark></q>
284
+ <cite>Kimberly Benefield, Autotrader</cite>
285
+ </blockquote>
286
+
287
+
288
+
289
+ <blockquote>
290
+ <q><mark class="highlight">I say things once instead of many times to many people.</mark></q>
291
+ <cite>Greg Stratmann, Etal.wines, Stonehouse Cellars, The Bed and Barrel at Stonehouse Cellars</cite>
292
+ </blockquote>
293
+
294
+
295
+
296
+ <blockquote>
297
+ <q><mark class="highlight">As the business owner, I feel more connected and aware of what is going on in the office when I’m away.</mark> It’s easy to see what needs to be done with deadlines and who is responsible for the task.</q>
298
+ <cite>Cynthia White, Law Offices of Cynthia L. White</cite>
299
+ </blockquote>
300
+
301
+
302
+
303
+ <blockquote>
304
+ <q>Since we’ve been using Basecamp, <mark class="highlight">our communication is drastically better and deadlines are met without drama.</mark></q>
305
+ <cite>Shannon Kropf, Full Sail University</cite>
306
+ </blockquote>
307
+
308
+
309
+
310
+ <blockquote>
311
+ <q><mark class="highlight">We have actually accomplished things that have been waiting forever to get done.</mark></q>
312
+ <cite>Danek Coffey, Coffey LLC</cite>
313
+ </blockquote>
314
+
315
+
316
+
317
+ <blockquote>
318
+ <q>Everyone’s on the same page. <mark class="highlight">Many of our people are not very organized naturally, so basecamp is a godsend.</mark></q>
319
+ <cite>Anirvachan Vasan, APEX</cite>
320
+ </blockquote>
321
+
322
+
323
+
324
+ <blockquote>
325
+ <q><mark class="highlight">Our company has grown immensely in organization and efficiency. We have everything organized according to clients, projects, employees, etc.,</mark> resulting in clear and concise communication amongst employees and with clients.</q>
326
+ <cite>Katie Greathouse, Health Economic Advisors Inc.</cite>
327
+ </blockquote>
328
+
329
+
330
+
331
+ <blockquote>
332
+ <q><mark class="highlight">Different time-zones are no longer an insurmountable obstacle.</mark></q>
333
+ <cite>Stefano, AddressAdvisor.com</cite>
334
+ </blockquote>
335
+
336
+
337
+
338
+ <blockquote>
339
+ <q>Because the platform we used previously was so cumbersome and time-intensive to maintain, <mark class="highlight">we used to have a person dedicated almost exclusively to managing the marketing production workflow for our three brands. Now I spend about an hour a month setting things up, and the process manages itself.</mark></q>
340
+ <cite>Sean Hay, One Click</cite>
341
+ </blockquote>
342
+
343
+
344
+
345
+ <blockquote>
346
+ <q>I’ve tried a million things with clients. I work really closely with them, and finding something clients will use to collaborate with me is difficult. <mark class="highlight">My clients just &ldquo;get&rdquo; Basecamp, right away, and use it all the time.</mark> They like that they can use it via email. They also love that it has everything they need in one area. It’s fantastic.</q>
347
+ <cite>Nathan Snelgrove, Wildfire Studios</cite>
348
+ </blockquote>
349
+
350
+
351
+
352
+ <blockquote>
353
+ <q><mark class="highlight">We don’t have to dig through a million emails anymore.</mark></q>
354
+ <cite>Spider McKnight, Six Pony Hitch</cite>
355
+ </blockquote>
356
+
357
+
358
+
359
+ <blockquote>
360
+ <q>Before Basecamp, I ran my freelance web development business basically from a spreadsheet, then <mark class="highlight">I moved to Basecamp and my life is so much less stressful. Basecamp has increased my happiness exponentially.</mark></q>
361
+ <cite>Patrick Krebs, Sad Robot Software</cite>
362
+ </blockquote>
363
+
364
+
365
+
366
+ <blockquote>
367
+ <q>All our team communications were spread over email and random google docs. <mark class="highlight">Basecamp helps us all stay in sync in one place.</mark></q>
368
+ <cite>Kevin Evans, Intelligent Change</cite>
369
+ </blockquote>
370
+
371
+
372
+
373
+ <blockquote>
374
+ <q><mark class="highlight">Communication and time management has become more of a strong suit for us.</mark></q>
375
+ <cite>Zachary Norton, Eastern Controls Inc.</cite>
376
+ </blockquote>
377
+
378
+
379
+
380
+ <blockquote>
381
+ <q><mark class="highlight">Information is flowing like water. A lot more transparency.</mark> Everyone is on the same page and knows the same information at the same point in time. No more secrets, closed doors, and blindspots.</q>
382
+ <cite>Aaron Bingaman, Penn State Office of Emergency Management</cite>
383
+ </blockquote>
384
+
385
+
386
+
387
+ <blockquote>
388
+ <q>The daily interaction between all our teams increased by 70%! Our entire team is volunteer, and <mark class="highlight">Basecamp allowed us to avoid meetings, which made me a hero!</mark></q>
389
+ <cite>Monte Young, NOLA Church</cite>
390
+ </blockquote>
391
+
392
+
393
+
394
+ <blockquote>
395
+ <q><mark class="highlight">People can catch up on a project, regardless of when they joined the team.</mark></q>
396
+ <cite>Anwar Ishak, 1000heads</cite>
397
+ </blockquote>
398
+
399
+
400
+
401
+ <blockquote>
402
+ <q>We are organized and free to get things done. <mark class="highlight">We used to wonder what everyone was doing. Now we move forward gracefully.</mark></q>
403
+ <cite>John McCulley, Moxley Carmichael</cite>
404
+ </blockquote>
405
+
406
+
407
+
408
+ <blockquote>
409
+ <q><mark class="highlight">Feedback rounds became saner.</mark> Now the team can share their thoughts in a single thread, instead of multiple emails.</q>
410
+ <cite>Bernardo Contopoulos, IBFD</cite>
411
+ </blockquote>
412
+
413
+
414
+
415
+ <blockquote>
416
+ <q><mark class="highlight">No need for daily standup meetings.</mark></q>
417
+ <cite>Lorenzo Ciglioni, Yocabè</cite>
418
+ </blockquote>
419
+
420
+
421
+
422
+ <blockquote>
423
+ <q><mark class="highlight">We gained control and could work with more projects without getting more stressed out!</mark></q>
424
+ <cite>John Elliot, 3nine</cite>
425
+ </blockquote>
426
+
427
+
428
+
429
+ <blockquote>
430
+ <q>It has eliminated the need for a lot of extra communication and <mark class="highlight">reduced a lot of miscommunication between my team members.</mark></q>
431
+ <cite>Anthony Clark, Clark Partners Realty Group</cite>
432
+ </blockquote>
433
+
434
+
435
+
436
+ <blockquote>
437
+ <q><mark class="highlight">A better sense of shared responsibility and accountability for our team success.</mark></q>
438
+ <cite>Tara Murphy, Sid Williams Theatre Society</cite>
439
+ </blockquote>
440
+
441
+
442
+
443
+ <blockquote>
444
+ <q>Less problems, down time, questions from the group. Once implemented, <mark class="highlight">everyone knows where to obtain the information without asking for it every single time.</mark> They know basecamp has everything relevant to their day-to-day.</q>
445
+ <cite>Vinicius Jucá</cite>
446
+ </blockquote>
447
+
448
+
449
+
450
+ <blockquote>
451
+ <q><mark class="highlight">Nothing can be forgotten, nothing gets lost, and everyone knows what the other is doing.</mark></q>
452
+ <cite>Jörn Hendrik Ast, Superhelden-Training GbR</cite>
453
+ </blockquote>
454
+
455
+
456
+
457
+ <blockquote>
458
+ <q><mark class="highlight">Basecamp was the only tool that I did not need to explain how to use to my team.</mark> It saved a lot of time for me.</q>
459
+ <cite>Alex Lim, Redfrost Design &amp; Development</cite>
460
+ </blockquote>
461
+
462
+
463
+
464
+ <blockquote>
465
+ <q>Project-based communication is finally starting to go into <mark class="highlight">one place (Basecamp!). It’s no longer split between email, Google Hangouts, and in-person chats.</mark></q>
466
+ <cite>Sean Leach, eps Communications</cite>
467
+ </blockquote>
468
+
469
+
470
+
471
+ <blockquote>
472
+ <q><mark class="highlight">As the small business owner, it has allowed me to have the confidence to not have a brick and mortar office.</mark></q>
473
+ <cite>Trish Neufeld, Story Box Movies</cite>
474
+ </blockquote>
475
+
476
+
477
+
478
+ <blockquote>
479
+ <q>We generate zero emails. <mark class="highlight">Action items never get lost in the shuffle anymore. New ideas and projects actually get off the ground now.</mark></q>
480
+ <cite>Andrew Tyne, MPI Atlantic Canada Chapter</cite>
481
+ </blockquote>
482
+
483
+
484
+
485
+ </section>
486
+ </div>
487
+
488
+ <div class="statement statement--align-center statement--full-width space-bottom--xxx-large space-top--x-large">
489
+ <section>
490
+ <header>
491
+ <h4><a href="../customers/index.html">We’ve got another 980 quotes like these.</a> Read ‘em,<br> or <a href="../pricing/index.html">try Basecamp</a> and see the difference yourself.</h4>
492
+ </header>
493
+ </section>
494
+ </div>
495
+
496
+
497
+ </main>
498
+
499
+ <footer class="footer">
500
+
501
+
502
+
503
+ <div class="footer__legal">
504
+ <p>
505
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
506
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
507
+ <strong>Basecamp</strong>
508
+ </a>
509
+ <span>is designed, built, and backed by</span>
510
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
511
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
512
+ <strong>37signals</strong>
513
+ </a>
514
+ </p>
515
+ <ul>
516
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
517
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
518
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
519
+ <li>&copy; 2025 37signals LLC</li>
520
+ </ul>
521
+ </div>
522
+ </footer>
523
+
524
+
525
+ <dialog class="modal">
526
+ <div class="modal__backdrop"></div>
527
+ <div class="modal__container"></div>
528
+ </dialog>
529
+
530
+
531
+ </body>
532
+
533
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/books/calm?utm_source=newsletter ADDED
@@ -0,0 +1,636 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Books we’ve written</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="On top of making Basecamp, we write books about what we’ve learned running our own business. They’re filled with practical advice you won’t find anywhere else.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Books we’ve written">
28
+ <meta property="og:description" content="On top of making Basecamp, we write books about what we’ve learned running our own business. They’re filled with practical advice you won’t find anywhere else.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/books.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/books/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Books we’ve written">
34
+ <meta name="twitter:description" content="On top of making Basecamp, we write books about what we’ve learned running our own business. They’re filled with practical advice you won’t find anywhere else.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/books.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/books/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Books we’ve written",
53
+ "description": "On top of making Basecamp, we write books about what we’ve learned running our own business. They’re filled with practical advice you won’t find anywhere else.",
54
+ "url": "https://basecamp.com/books/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/books.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="index.html">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body class="body has-nav-phrase" data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <input id="nav-active" type="checkbox">
110
+
111
+ <label id="nav-underlay" for="nav-active"></label>
112
+
113
+ <nav class="nav">
114
+ <div class="nav__container">
115
+ <div class="nav__logo">
116
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
117
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
118
+ <strong>Basecamp</strong>
119
+ </a>
120
+ <div class="nav__phrase">is the <span class="highlight"></span> <strong>project management system</strong> by</div>
121
+ <b class="icon icon--37signals">
122
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
123
+ <strong>37signals</strong>
124
+ </b>
125
+ </div>
126
+ <div class="nav__links">
127
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
128
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
129
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
130
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
131
+ </div>
132
+ <div class="nav__buttons">
133
+ <a class="nav__button nav__button--launchpad" href="https://launchpad.37signals.com/signin" target="_blank" data-controller="signup" data-action="signup#trackLogin" aria-label="Sign in">Sign in</a>
134
+ <a class="nav__button nav__button--signup trk-package" id="sign-up-nav" href="../pricing/index.html#packages" aria-label="Sign up free">Sign up free</a>
135
+ </div>
136
+ <label class="nav__toggle" for="nav-active" aria-label="Nav Toggle" tabindex="0"></label>
137
+ </div>
138
+ <div class="nav__mobile">
139
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
140
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
141
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
142
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
143
+ </div>
144
+ </nav>
145
+
146
+
147
+
148
+
149
+ <main class="main">
150
+
151
+ <div class="statement">
152
+ <section>
153
+ <header>
154
+ <h1>Books we’ve written</h1>
155
+ </header>
156
+ <article>
157
+ <p>On top of making Basecamp, we write books about what we’ve learned running our own business. They’re filled with practical advice you<br> won’t find anywhere else.</p>
158
+ </article>
159
+ </section>
160
+ </div>
161
+
162
+ <div class="books space-top--x-large">
163
+
164
+ <section id="shapeup">
165
+ <figure>
166
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#shapeup">
167
+ <img src="../assets/images/books/shape-up.png" alt="Shape Up">
168
+ </a>
169
+ </figure>
170
+ <article>
171
+ <h2><a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#shapeup">Shape Up</a></h2>
172
+ <p>Shape Up is for product development teams who struggle to ship. Written by the innovators behind <a href="../enterprise-extravaganza">Basecamp</a> — one of the biggest and longest-running software as a service apps — the book gives teams the tools to address the risks and unknowns at each stage of the product development process. Full of eye-opening insights, Shape Up will help you break free of “best practices” that aren’t really working, think deeper about the right problems, and start shipping meaningful projects your team can celebrate.</p>
173
+ <ul>
174
+ <li><a href="https://basecamp-goods.com/products/shapeup" target="_blank" rel="noopener">Buy the print edition</a></li>
175
+ <li><a href="../shapeup">Read it online</a></li>
176
+ <li><a href="../shapeup/shape-up.pdf">Download a PDF</a></li>
177
+ </ul>
178
+ </article>
179
+ </section>
180
+
181
+ <section id="calm">
182
+ <figure>
183
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#calm">
184
+ <img src="../assets/images/books/calm.png" alt="It Doesn’t Have to Be Crazy at Work">
185
+ </a>
186
+ </figure>
187
+ <article>
188
+ <h2><a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#calm">It Doesn’t Have to Be Crazy at Work</a></h2>
189
+ <p>Chaos shouldn’t be the natural state at work. Anxiety isn’t a prerequisite for progress. Sitting in meetings all day isn’t required for success. These are all perversions of work — side effects of broken models and “best” practices. This book treats the patient, calls out false cures, and pushes back against ritualistic time-sucks that have infected the way people work these days.</p>
190
+ <ul>
191
+ <li><a href="https://www.amazon.com/Doesnt-Have-Be-Crazy-Work/dp/0062874780" target="_blank" rel="noopener">Amazon</a></li>
192
+ <li><a href="https://books.apple.com/us/book/it-doesnt-have-to-be-crazy-at-work/id1350572012" target="_blank" rel="noopener">Apple Books</a></li>
193
+ <li><a href="https://www.barnesandnoble.com/w/it-doesnt-have-to-be-crazy-at-work-jason-fried/1128018111" target="_blank" rel="noopener">Barnes &amp; Noble</a></li>
194
+ <li><a href="https://www.indiebound.org/book/9780062874788" target="_blank" rel="noopener">Indiebound</a></li>
195
+ <li><a href="https://www.porchlightbooks.com/product/it-doesnt-have-to-be-crazy-at-work--jason-fried" target="_blank" rel="noopener">Porchlight</a></li>
196
+ </ul>
197
+ </article>
198
+ </section>
199
+
200
+ <section id="rework">
201
+ <figure>
202
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#rework">
203
+ <img src="../assets/images/books/rework.png" alt="REWORK">
204
+ </a>
205
+ </figure>
206
+ <article>
207
+ <h2><a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#rework">REWORK</a></h2>
208
+ <p><strong>New York Times bestseller!</strong> Most business books give you the same old advice: write a business plan, study the competition, seek investors, yadda yadda. If you’re looking for a book like that, put this one back on the shelf. <strong>REWORK</strong> is the perfect playbook for anyone who’s ever dreamed of doing it on their own. Entrepreneurs, small-business owners, and artists who don’t want to starve will all find valuable guidance in these pages.</p>
209
+ <ul>
210
+ <li><a href="https://www.amazon.com/Rework-Jason-Fried/dp/0307463745" target="_blank" rel="noopener">Amazon</a></li>
211
+ <li><a href="https://books.apple.com/us/book/rework/id421026168" target="_blank" rel="noopener">Apple Books</a></li>
212
+ <li><a href="https://www.barnesandnoble.com/w/rework-jason-fried/1102048884" target="_blank" rel="noopener">Barnes &amp; Noble</a></li>
213
+ <li><a href="https://www.indiebound.org/book/9780307463746" target="_blank" rel="noopener">Indiebound</a></li>
214
+ <li><a href="https://www.porchlightbooks.com/product/rework--jason-fried" target="_blank" rel="noopener">Porchlight</a></li>
215
+ </ul>
216
+ </article>
217
+ </section>
218
+
219
+ <section id="remote">
220
+ <figure>
221
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#remote">
222
+ <img src="../assets/images/books/remote.png" alt="REMOTE">
223
+ </a>
224
+ </figure>
225
+ <article>
226
+ <h2><a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#remote">REMOTE</a></h2>
227
+ <p><strong>Office not required.</strong> <em>As an employer</em>, restricting hiring to your local region means you’re not getting the best people you can. <em>As an employee</em>, restricting your job search to companies within a reasonable commute means you’re not working for the best company you can. <strong>REMOTE</strong> shows both employers and employees how they can work together, remotely, from any desk, in any space, in any place, anytime, anywhere.</p>
228
+ <ul>
229
+ <li><a href="https://www.amazon.com/Remote-Office-Not-Required/dp/0804137501" target="_blank" rel="noopener">Amazon</a></li>
230
+ <li><a href="https://books.apple.com/us/book/remote/id625981856" target="_blank" rel="noopener">Apple Books</a></li>
231
+ <li><a href="https://www.barnesandnoble.com/w/remote-jason-fried/1114307851" target="_blank" rel="noopener">Barnes &amp; Noble</a></li>
232
+ <li><a href="https://www.indiebound.org/book/9780804137508" target="_blank" rel="noopener">Indiebound</a></li>
233
+ <li><a href="https://www.porchlightbooks.com/product/remote-office-not-required--jason-fried" target="_blank" rel="noopener">Porchlight</a></li>
234
+ </ul>
235
+ </article>
236
+ </section>
237
+
238
+ <section id="gettingreal">
239
+ <figure>
240
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#gettingreal">
241
+ <img src="../assets/images/books/getting-real.png" alt="Getting Real">
242
+ </a>
243
+ </figure>
244
+ <article>
245
+ <h2><a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#gettingreal">Getting Real</a></h2>
246
+ <p><strong>The smarter, faster, easier way to build a successful web application.</strong> Getting Real is <em>packed</em> with keep-it-simple insights, contrarian points of view, and unconventional approaches to software design. This isn’t a technical book or a design tutorial, it’s a book of <em>ideas</em>. Anyone working on a web app — including entrepreneurs, designers, programmers, executives, or marketers — will find value and inspiration in this book.</p>
247
+ <ul>
248
+ <li><a href="../gettingreal">Read it online</a></li>
249
+ <li><a href="../gettingreal/getting-real.pdf">Download a PDF</a></li>
250
+ <li><a href="https://www.amazon.com/Getting-Real-Smarter-Successful-Application/dp/0578012812" target="_blank" rel="noopener">Amazon</a></li>
251
+ <li><a href="https://books.apple.com/us/book/getting-real/id365490630" target="_blank" rel="noopener">Apple Books</a></li>
252
+ <li><a href="https://www.barnesandnoble.com/w/getting-real-37signals/1113544045" target="_blank" rel="noopener">Barnes &amp; Noble</a></li>
253
+ </ul>
254
+ </article>
255
+ </section>
256
+
257
+ </div>
258
+
259
+ <div class="marquee marquee--left space-bottom--xxx-large space-top--xxx-large">
260
+
261
+ <a href="../customers/index.html" aria-hidden="true" tabindex="-1">
262
+ <ul>
263
+
264
+
265
+
266
+
267
+
268
+ <li>“Extremely user friendly”</li>
269
+
270
+
271
+
272
+ <li>“Truly amazing!”</li>
273
+
274
+
275
+
276
+ <li>“A godsend for our org”</li>
277
+
278
+
279
+
280
+ <li>“Simple, quick, powerful”</li>
281
+
282
+
283
+
284
+ <li>“So glad I found Basecamp”</li>
285
+
286
+
287
+
288
+ <li>“The perfect solution”</li>
289
+
290
+
291
+
292
+ <li>“Really great”</li>
293
+
294
+
295
+
296
+ <li>“Outstanding”</li>
297
+
298
+
299
+
300
+ <li>“Best app for teams”</li>
301
+
302
+
303
+
304
+ <li>“Awesome service”</li>
305
+
306
+
307
+
308
+ <li>“Gets better and better”</li>
309
+
310
+
311
+
312
+ <li>“Great collaboration tool”</li>
313
+
314
+
315
+
316
+ <li>“Great software”</li>
317
+
318
+
319
+
320
+ <li>“Gold standard PM app”</li>
321
+
322
+
323
+
324
+ <li>“Brilliant solution”</li>
325
+
326
+
327
+
328
+ <li>“Clean and easy to use”</li>
329
+
330
+
331
+
332
+ <li>“Fantastic app”</li>
333
+
334
+
335
+
336
+ <li>“Organized and on point”</li>
337
+
338
+
339
+
340
+ <li>“Extremely user friendly”</li>
341
+
342
+
343
+
344
+ <li>“Truly amazing!”</li>
345
+
346
+
347
+
348
+ <li>“A godsend for our org”</li>
349
+
350
+
351
+
352
+ <li>“Simple, quick, powerful”</li>
353
+
354
+
355
+
356
+ <li>“So glad I found Basecamp”</li>
357
+
358
+
359
+
360
+ <li>“The perfect solution”</li>
361
+
362
+
363
+
364
+ <li>“Really great”</li>
365
+
366
+
367
+
368
+ <li>“Outstanding”</li>
369
+
370
+
371
+
372
+ <li>“Best app for teams”</li>
373
+
374
+
375
+
376
+ <li>“Awesome service”</li>
377
+
378
+
379
+
380
+ <li>“Gets better and better”</li>
381
+
382
+
383
+
384
+ <li>“Great collaboration tool”</li>
385
+
386
+
387
+
388
+ <li>“Great software”</li>
389
+
390
+
391
+
392
+ <li>“Gold standard PM app”</li>
393
+
394
+
395
+
396
+ <li>“Brilliant solution”</li>
397
+
398
+
399
+
400
+ <li>“Clean and easy to use”</li>
401
+
402
+
403
+
404
+ <li>“Fantastic app”</li>
405
+
406
+
407
+
408
+ <li>“Organized and on point”</li>
409
+
410
+
411
+
412
+ </ul>
413
+ </a>
414
+
415
+
416
+ </div>
417
+
418
+
419
+ </main>
420
+
421
+ <footer class="footer">
422
+
423
+
424
+
425
+
426
+
427
+ <div class="footer__apps" id="apps">
428
+ <dl class="footer__headline">
429
+ <dt>Basecamp’s everywhere</dt>
430
+ <dd>Mac, Windows, iOS, Android, and on the web — Basecamp is ready <a href="../apps/index.html">whenever and wherever you are</a>.</dd>
431
+ </dl>
432
+ <ul>
433
+ <li><a class="button button--icon button--pwa" href="https://3.basecamp-help.com/article/937-basecamp-pwa" title="Install Basecamp on Mac and Windows">Desktop apps</a></li>
434
+ <li><a class="button button--icon button--ios" href="https://apps.apple.com/us/app/basecamp-project-management/id1015603248" title="Install Basecamp on iOS">iOS</a></li>
435
+ <li><a class="button button--icon button--android" href="https://play.google.com/store/apps/details?id=com.basecamp.bc3" title="Install Basecamp on Android">Android</a></li>
436
+ <li><a class="button button--icon button--basecamp" href="https://launchpad.37signals.com/signin" title="Use Basecamp in your web browser" target="_blank" data-controller="signup" data-action="signup#trackLogin">Sign in to Basecamp</a></li>
437
+ </ul>
438
+ </div>
439
+
440
+
441
+
442
+
443
+
444
+ <div class="footer__classes data-classes" data-classes-limit="4">
445
+ <dl class="footer__headline">
446
+ <dt>Join us for a free live class</dt>
447
+ <dd>We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask.<span class="data-classes__link"> <a href="../classes/index.html">See all our upcoming classes</a>.</span></dd>
448
+ </dl>
449
+ <div class="data-classes__output"></div>
450
+ </div>
451
+
452
+
453
+
454
+
455
+
456
+ <div class="footer__newsletter">
457
+ <dl class="footer__headline">
458
+ <dt>Never miss an update</dt>
459
+ <dd>Join more than 150,000 people who get <a href="../newsletter/index.html">our newsletter</a>. We’ll share product updates, thoughts, new releases, and other tidbits we think you’ll find interesting.</dd>
460
+ </dl>
461
+ <div class="newsletter">
462
+ <div class="newsletter__container">
463
+ <form novalidate action="https://basecamp.us2.list-manage.com/subscribe/post-json?u=2a145c60b16248b65e46a799a&amp;id=476312b66e&amp;c=?" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form">
464
+ <div aria-hidden="true" style="position: absolute; left: -5000px;"><input type="text" name="b_2a145c60b16248b65e46a799a_476312b66e" value="" tabindex="-1" aria-label="mce"></div>
465
+ <input type="hidden" name="tags" value="23018">
466
+ <input type="email" name="EMAIL" value="" id="mce-EMAIL" placeholder="julie.young@hey.com" aria-label="Your email address" required data-1p-ignore>
467
+ <button type="submit" name="subscribe" id="mc-embedded-subscribe">Subscribe</button>
468
+ </form>
469
+ </div>
470
+ </div>
471
+ </div>
472
+
473
+
474
+
475
+
476
+
477
+ <div class="footer__support">
478
+ <dl class="footer__headline">
479
+ <dt>We’re here to help with 24/7/365 support</dt>
480
+ <dd>There are no stupid questions — for pre-sales questions, existing customers who need a hand, or any other inquiries, <a href="../support/index.html">contact us</a> and we’ll get back to you within an hour. <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">Watch tutorials</a>, <a href="../help/index.html">read the help guides</a>, or <a href="../support/index.html">send us a message</a> to get help.</dd>
481
+ </dl>
482
+
483
+
484
+
485
+ <div class="footer__hey">
486
+ <a href="https://www.hey.com" target="_blank">
487
+ <span>If you love Basecamp, you’ll love <strong>HEY</strong> — our delightfully fresh take on email + calendar</span>
488
+ </a>
489
+ </div>
490
+
491
+
492
+
493
+ </div>
494
+
495
+
496
+
497
+
498
+
499
+
500
+
501
+ <div class="footer__links">
502
+ <dl class="footer__headline">
503
+ <dt>And there’s more&hellip;</dt>
504
+ <dd>
505
+
506
+
507
+
508
+ <a href="../new/index.html" aria-label="What’s new">What’s new</a> •
509
+
510
+
511
+
512
+ <a href="../paths/index.html" aria-label="The people’s path to Basecamp">The people’s path to Basecamp</a> •
513
+
514
+
515
+
516
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18" aria-label="Books we’ve written">Books we’ve written</a> •
517
+
518
+
519
+
520
+ <a href="../about/index.html" aria-label="Where we came from">Where we came from</a> •
521
+
522
+
523
+
524
+ <a href="../guides/how-we-communicate/index.html" aria-label="How we communicate">How we communicate</a> •
525
+
526
+
527
+
528
+ <a href="../guides/how-we-make-decisions/index.html" aria-label="How we make decisions">How we make decisions</a> •
529
+
530
+
531
+
532
+ <a href="../guides/why-we-choose-profit/index.html" aria-label="Why we choose profit">Why we choose profit</a> •
533
+
534
+
535
+
536
+ <a href="../guides/group-chat-problems/index.html" aria-label="Group chat problems">Group chat problems</a> •
537
+
538
+
539
+
540
+ <a href="../guides/seven-shipping-principles/index.html" aria-label="Seven shipping principles">Seven shipping principles</a> •
541
+
542
+
543
+
544
+ <a href="../underdogs/index.html" aria-label="We stand with the underdogs">We stand with the underdogs</a> •
545
+
546
+
547
+
548
+ <a href="../small/index.html" aria-label="Come small, come all">Come small, come all</a> •
549
+
550
+
551
+
552
+ <a href="../overkill/index.html" aria-label="Kill overkill">Kill overkill</a> •
553
+
554
+
555
+
556
+ <a href="../cloud-exit/index.html" aria-label="Leaving the Cloud">Leaving the Cloud</a> •
557
+
558
+
559
+
560
+ <a href="../before-and-after/index.html" aria-label="Night &amp; day">Night &amp; day</a> •
561
+
562
+
563
+
564
+ <a href="../hill-charts/index.html" aria-label="See where projects really stand">See where projects really stand</a> •
565
+
566
+
567
+
568
+ <a href="../justletmedomyjob/index.html" aria-label="JUST LET ME DO MY JOB">JUST LET ME DO MY JOB</a> •
569
+
570
+
571
+
572
+ <a href="../customers/index.html" aria-label="What changed for the better?">What changed for the better?</a> •
573
+
574
+
575
+
576
+ <a href="../integrations/index.html" aria-label="Integrations">Integrations</a> •
577
+
578
+
579
+
580
+ <a href="../accessibility/index.html" aria-label="Basecamp is for everyone">Basecamp is for everyone</a> •
581
+
582
+
583
+
584
+ <a href="../community/index.html" aria-label="Basecamp community">Basecamp community</a> •
585
+
586
+
587
+
588
+ <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14" aria-label="Learn Basecamp">Learn Basecamp</a> •
589
+
590
+
591
+
592
+ <a href="../handbook" aria-label="Employee handbook">Employee handbook</a>
593
+
594
+
595
+
596
+ </dd>
597
+ </dl>
598
+ </div>
599
+
600
+
601
+
602
+
603
+
604
+
605
+
606
+ <div class="footer__legal">
607
+ <p>
608
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
609
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
610
+ <strong>Basecamp</strong>
611
+ </a>
612
+ <span>is designed, built, and backed by</span>
613
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
614
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
615
+ <strong>37signals</strong>
616
+ </a>
617
+ </p>
618
+ <ul>
619
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
620
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
621
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
622
+ <li>&copy; 2025 37signals LLC</li>
623
+ </ul>
624
+ </div>
625
+ </footer>
626
+
627
+
628
+ <dialog class="modal">
629
+ <div class="modal__backdrop"></div>
630
+ <div class="modal__container"></div>
631
+ </dialog>
632
+
633
+
634
+ </body>
635
+
636
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/books/index.html ADDED
@@ -0,0 +1,636 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Books we’ve written</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="On top of making Basecamp, we write books about what we’ve learned running our own business. They’re filled with practical advice you won’t find anywhere else.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Books we’ve written">
28
+ <meta property="og:description" content="On top of making Basecamp, we write books about what we’ve learned running our own business. They’re filled with practical advice you won’t find anywhere else.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/books.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/books/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Books we’ve written">
34
+ <meta name="twitter:description" content="On top of making Basecamp, we write books about what we’ve learned running our own business. They’re filled with practical advice you won’t find anywhere else.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/books.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/books/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Books we’ve written",
53
+ "description": "On top of making Basecamp, we write books about what we’ve learned running our own business. They’re filled with practical advice you won’t find anywhere else.",
54
+ "url": "https://basecamp.com/books/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/books.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="index.html">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body class="body has-nav-phrase" data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <input id="nav-active" type="checkbox">
110
+
111
+ <label id="nav-underlay" for="nav-active"></label>
112
+
113
+ <nav class="nav">
114
+ <div class="nav__container">
115
+ <div class="nav__logo">
116
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
117
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
118
+ <strong>Basecamp</strong>
119
+ </a>
120
+ <div class="nav__phrase">is the <span class="highlight"></span> <strong>project management system</strong> by</div>
121
+ <b class="icon icon--37signals">
122
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
123
+ <strong>37signals</strong>
124
+ </b>
125
+ </div>
126
+ <div class="nav__links">
127
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
128
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
129
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
130
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
131
+ </div>
132
+ <div class="nav__buttons">
133
+ <a class="nav__button nav__button--launchpad" href="https://launchpad.37signals.com/signin" target="_blank" data-controller="signup" data-action="signup#trackLogin" aria-label="Sign in">Sign in</a>
134
+ <a class="nav__button nav__button--signup trk-package" id="sign-up-nav" href="../pricing/index.html#packages" aria-label="Sign up free">Sign up free</a>
135
+ </div>
136
+ <label class="nav__toggle" for="nav-active" aria-label="Nav Toggle" tabindex="0"></label>
137
+ </div>
138
+ <div class="nav__mobile">
139
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
140
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
141
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
142
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
143
+ </div>
144
+ </nav>
145
+
146
+
147
+
148
+
149
+ <main class="main">
150
+
151
+ <div class="statement">
152
+ <section>
153
+ <header>
154
+ <h1>Books we’ve written</h1>
155
+ </header>
156
+ <article>
157
+ <p>On top of making Basecamp, we write books about what we’ve learned running our own business. They’re filled with practical advice you<br> won’t find anywhere else.</p>
158
+ </article>
159
+ </section>
160
+ </div>
161
+
162
+ <div class="books space-top--x-large">
163
+
164
+ <section id="shapeup">
165
+ <figure>
166
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#shapeup">
167
+ <img src="../assets/images/books/shape-up.png" alt="Shape Up">
168
+ </a>
169
+ </figure>
170
+ <article>
171
+ <h2><a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#shapeup">Shape Up</a></h2>
172
+ <p>Shape Up is for product development teams who struggle to ship. Written by the innovators behind <a href="../enterprise-extravaganza">Basecamp</a> — one of the biggest and longest-running software as a service apps — the book gives teams the tools to address the risks and unknowns at each stage of the product development process. Full of eye-opening insights, Shape Up will help you break free of “best practices” that aren’t really working, think deeper about the right problems, and start shipping meaningful projects your team can celebrate.</p>
173
+ <ul>
174
+ <li><a href="https://basecamp-goods.com/products/shapeup" target="_blank" rel="noopener">Buy the print edition</a></li>
175
+ <li><a href="../shapeup">Read it online</a></li>
176
+ <li><a href="../shapeup/shape-up.pdf">Download a PDF</a></li>
177
+ </ul>
178
+ </article>
179
+ </section>
180
+
181
+ <section id="calm">
182
+ <figure>
183
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#calm">
184
+ <img src="../assets/images/books/calm.png" alt="It Doesn’t Have to Be Crazy at Work">
185
+ </a>
186
+ </figure>
187
+ <article>
188
+ <h2><a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#calm">It Doesn’t Have to Be Crazy at Work</a></h2>
189
+ <p>Chaos shouldn’t be the natural state at work. Anxiety isn’t a prerequisite for progress. Sitting in meetings all day isn’t required for success. These are all perversions of work — side effects of broken models and “best” practices. This book treats the patient, calls out false cures, and pushes back against ritualistic time-sucks that have infected the way people work these days.</p>
190
+ <ul>
191
+ <li><a href="https://www.amazon.com/Doesnt-Have-Be-Crazy-Work/dp/0062874780" target="_blank" rel="noopener">Amazon</a></li>
192
+ <li><a href="https://books.apple.com/us/book/it-doesnt-have-to-be-crazy-at-work/id1350572012" target="_blank" rel="noopener">Apple Books</a></li>
193
+ <li><a href="https://www.barnesandnoble.com/w/it-doesnt-have-to-be-crazy-at-work-jason-fried/1128018111" target="_blank" rel="noopener">Barnes &amp; Noble</a></li>
194
+ <li><a href="https://www.indiebound.org/book/9780062874788" target="_blank" rel="noopener">Indiebound</a></li>
195
+ <li><a href="https://www.porchlightbooks.com/product/it-doesnt-have-to-be-crazy-at-work--jason-fried" target="_blank" rel="noopener">Porchlight</a></li>
196
+ </ul>
197
+ </article>
198
+ </section>
199
+
200
+ <section id="rework">
201
+ <figure>
202
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#rework">
203
+ <img src="../assets/images/books/rework.png" alt="REWORK">
204
+ </a>
205
+ </figure>
206
+ <article>
207
+ <h2><a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#rework">REWORK</a></h2>
208
+ <p><strong>New York Times bestseller!</strong> Most business books give you the same old advice: write a business plan, study the competition, seek investors, yadda yadda. If you’re looking for a book like that, put this one back on the shelf. <strong>REWORK</strong> is the perfect playbook for anyone who’s ever dreamed of doing it on their own. Entrepreneurs, small-business owners, and artists who don’t want to starve will all find valuable guidance in these pages.</p>
209
+ <ul>
210
+ <li><a href="https://www.amazon.com/Rework-Jason-Fried/dp/0307463745" target="_blank" rel="noopener">Amazon</a></li>
211
+ <li><a href="https://books.apple.com/us/book/rework/id421026168" target="_blank" rel="noopener">Apple Books</a></li>
212
+ <li><a href="https://www.barnesandnoble.com/w/rework-jason-fried/1102048884" target="_blank" rel="noopener">Barnes &amp; Noble</a></li>
213
+ <li><a href="https://www.indiebound.org/book/9780307463746" target="_blank" rel="noopener">Indiebound</a></li>
214
+ <li><a href="https://www.porchlightbooks.com/product/rework--jason-fried" target="_blank" rel="noopener">Porchlight</a></li>
215
+ </ul>
216
+ </article>
217
+ </section>
218
+
219
+ <section id="remote">
220
+ <figure>
221
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#remote">
222
+ <img src="../assets/images/books/remote.png" alt="REMOTE">
223
+ </a>
224
+ </figure>
225
+ <article>
226
+ <h2><a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#remote">REMOTE</a></h2>
227
+ <p><strong>Office not required.</strong> <em>As an employer</em>, restricting hiring to your local region means you’re not getting the best people you can. <em>As an employee</em>, restricting your job search to companies within a reasonable commute means you’re not working for the best company you can. <strong>REMOTE</strong> shows both employers and employees how they can work together, remotely, from any desk, in any space, in any place, anytime, anywhere.</p>
228
+ <ul>
229
+ <li><a href="https://www.amazon.com/Remote-Office-Not-Required/dp/0804137501" target="_blank" rel="noopener">Amazon</a></li>
230
+ <li><a href="https://books.apple.com/us/book/remote/id625981856" target="_blank" rel="noopener">Apple Books</a></li>
231
+ <li><a href="https://www.barnesandnoble.com/w/remote-jason-fried/1114307851" target="_blank" rel="noopener">Barnes &amp; Noble</a></li>
232
+ <li><a href="https://www.indiebound.org/book/9780804137508" target="_blank" rel="noopener">Indiebound</a></li>
233
+ <li><a href="https://www.porchlightbooks.com/product/remote-office-not-required--jason-fried" target="_blank" rel="noopener">Porchlight</a></li>
234
+ </ul>
235
+ </article>
236
+ </section>
237
+
238
+ <section id="gettingreal">
239
+ <figure>
240
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#gettingreal">
241
+ <img src="../assets/images/books/getting-real.png" alt="Getting Real">
242
+ </a>
243
+ </figure>
244
+ <article>
245
+ <h2><a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#gettingreal">Getting Real</a></h2>
246
+ <p><strong>The smarter, faster, easier way to build a successful web application.</strong> Getting Real is <em>packed</em> with keep-it-simple insights, contrarian points of view, and unconventional approaches to software design. This isn’t a technical book or a design tutorial, it’s a book of <em>ideas</em>. Anyone working on a web app — including entrepreneurs, designers, programmers, executives, or marketers — will find value and inspiration in this book.</p>
247
+ <ul>
248
+ <li><a href="../gettingreal">Read it online</a></li>
249
+ <li><a href="../gettingreal/getting-real.pdf">Download a PDF</a></li>
250
+ <li><a href="https://www.amazon.com/Getting-Real-Smarter-Successful-Application/dp/0578012812" target="_blank" rel="noopener">Amazon</a></li>
251
+ <li><a href="https://books.apple.com/us/book/getting-real/id365490630" target="_blank" rel="noopener">Apple Books</a></li>
252
+ <li><a href="https://www.barnesandnoble.com/w/getting-real-37signals/1113544045" target="_blank" rel="noopener">Barnes &amp; Noble</a></li>
253
+ </ul>
254
+ </article>
255
+ </section>
256
+
257
+ </div>
258
+
259
+ <div class="marquee marquee--left space-bottom--xxx-large space-top--xxx-large">
260
+
261
+ <a href="../customers/index.html" aria-hidden="true" tabindex="-1">
262
+ <ul>
263
+
264
+
265
+
266
+
267
+
268
+ <li>“Extremely user friendly”</li>
269
+
270
+
271
+
272
+ <li>“Truly amazing!”</li>
273
+
274
+
275
+
276
+ <li>“A godsend for our org”</li>
277
+
278
+
279
+
280
+ <li>“Simple, quick, powerful”</li>
281
+
282
+
283
+
284
+ <li>“So glad I found Basecamp”</li>
285
+
286
+
287
+
288
+ <li>“The perfect solution”</li>
289
+
290
+
291
+
292
+ <li>“Really great”</li>
293
+
294
+
295
+
296
+ <li>“Outstanding”</li>
297
+
298
+
299
+
300
+ <li>“Best app for teams”</li>
301
+
302
+
303
+
304
+ <li>“Awesome service”</li>
305
+
306
+
307
+
308
+ <li>“Gets better and better”</li>
309
+
310
+
311
+
312
+ <li>“Great collaboration tool”</li>
313
+
314
+
315
+
316
+ <li>“Great software”</li>
317
+
318
+
319
+
320
+ <li>“Gold standard PM app”</li>
321
+
322
+
323
+
324
+ <li>“Brilliant solution”</li>
325
+
326
+
327
+
328
+ <li>“Clean and easy to use”</li>
329
+
330
+
331
+
332
+ <li>“Fantastic app”</li>
333
+
334
+
335
+
336
+ <li>“Organized and on point”</li>
337
+
338
+
339
+
340
+ <li>“Extremely user friendly”</li>
341
+
342
+
343
+
344
+ <li>“Truly amazing!”</li>
345
+
346
+
347
+
348
+ <li>“A godsend for our org”</li>
349
+
350
+
351
+
352
+ <li>“Simple, quick, powerful”</li>
353
+
354
+
355
+
356
+ <li>“So glad I found Basecamp”</li>
357
+
358
+
359
+
360
+ <li>“The perfect solution”</li>
361
+
362
+
363
+
364
+ <li>“Really great”</li>
365
+
366
+
367
+
368
+ <li>“Outstanding”</li>
369
+
370
+
371
+
372
+ <li>“Best app for teams”</li>
373
+
374
+
375
+
376
+ <li>“Awesome service”</li>
377
+
378
+
379
+
380
+ <li>“Gets better and better”</li>
381
+
382
+
383
+
384
+ <li>“Great collaboration tool”</li>
385
+
386
+
387
+
388
+ <li>“Great software”</li>
389
+
390
+
391
+
392
+ <li>“Gold standard PM app”</li>
393
+
394
+
395
+
396
+ <li>“Brilliant solution”</li>
397
+
398
+
399
+
400
+ <li>“Clean and easy to use”</li>
401
+
402
+
403
+
404
+ <li>“Fantastic app”</li>
405
+
406
+
407
+
408
+ <li>“Organized and on point”</li>
409
+
410
+
411
+
412
+ </ul>
413
+ </a>
414
+
415
+
416
+ </div>
417
+
418
+
419
+ </main>
420
+
421
+ <footer class="footer">
422
+
423
+
424
+
425
+
426
+
427
+ <div class="footer__apps" id="apps">
428
+ <dl class="footer__headline">
429
+ <dt>Basecamp’s everywhere</dt>
430
+ <dd>Mac, Windows, iOS, Android, and on the web — Basecamp is ready <a href="../apps/index.html">whenever and wherever you are</a>.</dd>
431
+ </dl>
432
+ <ul>
433
+ <li><a class="button button--icon button--pwa" href="https://3.basecamp-help.com/article/937-basecamp-pwa" title="Install Basecamp on Mac and Windows">Desktop apps</a></li>
434
+ <li><a class="button button--icon button--ios" href="https://apps.apple.com/us/app/basecamp-project-management/id1015603248" title="Install Basecamp on iOS">iOS</a></li>
435
+ <li><a class="button button--icon button--android" href="https://play.google.com/store/apps/details?id=com.basecamp.bc3" title="Install Basecamp on Android">Android</a></li>
436
+ <li><a class="button button--icon button--basecamp" href="https://launchpad.37signals.com/signin" title="Use Basecamp in your web browser" target="_blank" data-controller="signup" data-action="signup#trackLogin">Sign in to Basecamp</a></li>
437
+ </ul>
438
+ </div>
439
+
440
+
441
+
442
+
443
+
444
+ <div class="footer__classes data-classes" data-classes-limit="4">
445
+ <dl class="footer__headline">
446
+ <dt>Join us for a free live class</dt>
447
+ <dd>We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask.<span class="data-classes__link"> <a href="../classes/index.html">See all our upcoming classes</a>.</span></dd>
448
+ </dl>
449
+ <div class="data-classes__output"></div>
450
+ </div>
451
+
452
+
453
+
454
+
455
+
456
+ <div class="footer__newsletter">
457
+ <dl class="footer__headline">
458
+ <dt>Never miss an update</dt>
459
+ <dd>Join more than 150,000 people who get <a href="../newsletter/index.html">our newsletter</a>. We’ll share product updates, thoughts, new releases, and other tidbits we think you’ll find interesting.</dd>
460
+ </dl>
461
+ <div class="newsletter">
462
+ <div class="newsletter__container">
463
+ <form novalidate action="https://basecamp.us2.list-manage.com/subscribe/post-json?u=2a145c60b16248b65e46a799a&amp;id=476312b66e&amp;c=?" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form">
464
+ <div aria-hidden="true" style="position: absolute; left: -5000px;"><input type="text" name="b_2a145c60b16248b65e46a799a_476312b66e" value="" tabindex="-1" aria-label="mce"></div>
465
+ <input type="hidden" name="tags" value="23018">
466
+ <input type="email" name="EMAIL" value="" id="mce-EMAIL" placeholder="julie.young@hey.com" aria-label="Your email address" required data-1p-ignore>
467
+ <button type="submit" name="subscribe" id="mc-embedded-subscribe">Subscribe</button>
468
+ </form>
469
+ </div>
470
+ </div>
471
+ </div>
472
+
473
+
474
+
475
+
476
+
477
+ <div class="footer__support">
478
+ <dl class="footer__headline">
479
+ <dt>We’re here to help with 24/7/365 support</dt>
480
+ <dd>There are no stupid questions — for pre-sales questions, existing customers who need a hand, or any other inquiries, <a href="../support/index.html">contact us</a> and we’ll get back to you within an hour. <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">Watch tutorials</a>, <a href="../help/index.html">read the help guides</a>, or <a href="../support/index.html">send us a message</a> to get help.</dd>
481
+ </dl>
482
+
483
+
484
+
485
+ <div class="footer__hey">
486
+ <a href="https://www.hey.com" target="_blank">
487
+ <span>If you love Basecamp, you’ll love <strong>HEY</strong> — our delightfully fresh take on email + calendar</span>
488
+ </a>
489
+ </div>
490
+
491
+
492
+
493
+ </div>
494
+
495
+
496
+
497
+
498
+
499
+
500
+
501
+ <div class="footer__links">
502
+ <dl class="footer__headline">
503
+ <dt>And there’s more&hellip;</dt>
504
+ <dd>
505
+
506
+
507
+
508
+ <a href="../new/index.html" aria-label="What’s new">What’s new</a> •
509
+
510
+
511
+
512
+ <a href="../paths/index.html" aria-label="The people’s path to Basecamp">The people’s path to Basecamp</a> •
513
+
514
+
515
+
516
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18" aria-label="Books we’ve written">Books we’ve written</a> •
517
+
518
+
519
+
520
+ <a href="../about/index.html" aria-label="Where we came from">Where we came from</a> •
521
+
522
+
523
+
524
+ <a href="../guides/how-we-communicate/index.html" aria-label="How we communicate">How we communicate</a> •
525
+
526
+
527
+
528
+ <a href="../guides/how-we-make-decisions/index.html" aria-label="How we make decisions">How we make decisions</a> •
529
+
530
+
531
+
532
+ <a href="../guides/why-we-choose-profit/index.html" aria-label="Why we choose profit">Why we choose profit</a> •
533
+
534
+
535
+
536
+ <a href="../guides/group-chat-problems/index.html" aria-label="Group chat problems">Group chat problems</a> •
537
+
538
+
539
+
540
+ <a href="../guides/seven-shipping-principles/index.html" aria-label="Seven shipping principles">Seven shipping principles</a> •
541
+
542
+
543
+
544
+ <a href="../underdogs/index.html" aria-label="We stand with the underdogs">We stand with the underdogs</a> •
545
+
546
+
547
+
548
+ <a href="../small/index.html" aria-label="Come small, come all">Come small, come all</a> •
549
+
550
+
551
+
552
+ <a href="../overkill/index.html" aria-label="Kill overkill">Kill overkill</a> •
553
+
554
+
555
+
556
+ <a href="../cloud-exit/index.html" aria-label="Leaving the Cloud">Leaving the Cloud</a> •
557
+
558
+
559
+
560
+ <a href="../before-and-after/index.html" aria-label="Night &amp; day">Night &amp; day</a> •
561
+
562
+
563
+
564
+ <a href="../hill-charts/index.html" aria-label="See where projects really stand">See where projects really stand</a> •
565
+
566
+
567
+
568
+ <a href="../justletmedomyjob/index.html" aria-label="JUST LET ME DO MY JOB">JUST LET ME DO MY JOB</a> •
569
+
570
+
571
+
572
+ <a href="../customers/index.html" aria-label="What changed for the better?">What changed for the better?</a> •
573
+
574
+
575
+
576
+ <a href="../integrations/index.html" aria-label="Integrations">Integrations</a> •
577
+
578
+
579
+
580
+ <a href="../accessibility/index.html" aria-label="Basecamp is for everyone">Basecamp is for everyone</a> •
581
+
582
+
583
+
584
+ <a href="../community/index.html" aria-label="Basecamp community">Basecamp community</a> •
585
+
586
+
587
+
588
+ <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14" aria-label="Learn Basecamp">Learn Basecamp</a> •
589
+
590
+
591
+
592
+ <a href="../handbook" aria-label="Employee handbook">Employee handbook</a>
593
+
594
+
595
+
596
+ </dd>
597
+ </dl>
598
+ </div>
599
+
600
+
601
+
602
+
603
+
604
+
605
+
606
+ <div class="footer__legal">
607
+ <p>
608
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
609
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
610
+ <strong>Basecamp</strong>
611
+ </a>
612
+ <span>is designed, built, and backed by</span>
613
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
614
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
615
+ <strong>37signals</strong>
616
+ </a>
617
+ </p>
618
+ <ul>
619
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
620
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
621
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
622
+ <li>&copy; 2025 37signals LLC</li>
623
+ </ul>
624
+ </div>
625
+ </footer>
626
+
627
+
628
+ <dialog class="modal">
629
+ <div class="modal__backdrop"></div>
630
+ <div class="modal__container"></div>
631
+ </dialog>
632
+
633
+
634
+ </body>
635
+
636
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/books/rework?utm_source=newsletter&utm_medium=email&utm_campaign=whats_new_2023_09_18 ADDED
@@ -0,0 +1,636 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Books we’ve written</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="On top of making Basecamp, we write books about what we’ve learned running our own business. They’re filled with practical advice you won’t find anywhere else.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Books we’ve written">
28
+ <meta property="og:description" content="On top of making Basecamp, we write books about what we’ve learned running our own business. They’re filled with practical advice you won’t find anywhere else.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/books.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/books/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Books we’ve written">
34
+ <meta name="twitter:description" content="On top of making Basecamp, we write books about what we’ve learned running our own business. They’re filled with practical advice you won’t find anywhere else.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/books.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/books/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Books we’ve written",
53
+ "description": "On top of making Basecamp, we write books about what we’ve learned running our own business. They’re filled with practical advice you won’t find anywhere else.",
54
+ "url": "https://basecamp.com/books/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/books.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="index.html">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body class="body has-nav-phrase" data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <input id="nav-active" type="checkbox">
110
+
111
+ <label id="nav-underlay" for="nav-active"></label>
112
+
113
+ <nav class="nav">
114
+ <div class="nav__container">
115
+ <div class="nav__logo">
116
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
117
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
118
+ <strong>Basecamp</strong>
119
+ </a>
120
+ <div class="nav__phrase">is the <span class="highlight"></span> <strong>project management system</strong> by</div>
121
+ <b class="icon icon--37signals">
122
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
123
+ <strong>37signals</strong>
124
+ </b>
125
+ </div>
126
+ <div class="nav__links">
127
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
128
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
129
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
130
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
131
+ </div>
132
+ <div class="nav__buttons">
133
+ <a class="nav__button nav__button--launchpad" href="https://launchpad.37signals.com/signin" target="_blank" data-controller="signup" data-action="signup#trackLogin" aria-label="Sign in">Sign in</a>
134
+ <a class="nav__button nav__button--signup trk-package" id="sign-up-nav" href="../pricing/index.html#packages" aria-label="Sign up free">Sign up free</a>
135
+ </div>
136
+ <label class="nav__toggle" for="nav-active" aria-label="Nav Toggle" tabindex="0"></label>
137
+ </div>
138
+ <div class="nav__mobile">
139
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
140
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
141
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
142
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
143
+ </div>
144
+ </nav>
145
+
146
+
147
+
148
+
149
+ <main class="main">
150
+
151
+ <div class="statement">
152
+ <section>
153
+ <header>
154
+ <h1>Books we’ve written</h1>
155
+ </header>
156
+ <article>
157
+ <p>On top of making Basecamp, we write books about what we’ve learned running our own business. They’re filled with practical advice you<br> won’t find anywhere else.</p>
158
+ </article>
159
+ </section>
160
+ </div>
161
+
162
+ <div class="books space-top--x-large">
163
+
164
+ <section id="shapeup">
165
+ <figure>
166
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#shapeup">
167
+ <img src="../assets/images/books/shape-up.png" alt="Shape Up">
168
+ </a>
169
+ </figure>
170
+ <article>
171
+ <h2><a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#shapeup">Shape Up</a></h2>
172
+ <p>Shape Up is for product development teams who struggle to ship. Written by the innovators behind <a href="../enterprise-extravaganza">Basecamp</a> — one of the biggest and longest-running software as a service apps — the book gives teams the tools to address the risks and unknowns at each stage of the product development process. Full of eye-opening insights, Shape Up will help you break free of “best practices” that aren’t really working, think deeper about the right problems, and start shipping meaningful projects your team can celebrate.</p>
173
+ <ul>
174
+ <li><a href="https://basecamp-goods.com/products/shapeup" target="_blank" rel="noopener">Buy the print edition</a></li>
175
+ <li><a href="../shapeup">Read it online</a></li>
176
+ <li><a href="../shapeup/shape-up.pdf">Download a PDF</a></li>
177
+ </ul>
178
+ </article>
179
+ </section>
180
+
181
+ <section id="calm">
182
+ <figure>
183
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#calm">
184
+ <img src="../assets/images/books/calm.png" alt="It Doesn’t Have to Be Crazy at Work">
185
+ </a>
186
+ </figure>
187
+ <article>
188
+ <h2><a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#calm">It Doesn’t Have to Be Crazy at Work</a></h2>
189
+ <p>Chaos shouldn’t be the natural state at work. Anxiety isn’t a prerequisite for progress. Sitting in meetings all day isn’t required for success. These are all perversions of work — side effects of broken models and “best” practices. This book treats the patient, calls out false cures, and pushes back against ritualistic time-sucks that have infected the way people work these days.</p>
190
+ <ul>
191
+ <li><a href="https://www.amazon.com/Doesnt-Have-Be-Crazy-Work/dp/0062874780" target="_blank" rel="noopener">Amazon</a></li>
192
+ <li><a href="https://books.apple.com/us/book/it-doesnt-have-to-be-crazy-at-work/id1350572012" target="_blank" rel="noopener">Apple Books</a></li>
193
+ <li><a href="https://www.barnesandnoble.com/w/it-doesnt-have-to-be-crazy-at-work-jason-fried/1128018111" target="_blank" rel="noopener">Barnes &amp; Noble</a></li>
194
+ <li><a href="https://www.indiebound.org/book/9780062874788" target="_blank" rel="noopener">Indiebound</a></li>
195
+ <li><a href="https://www.porchlightbooks.com/product/it-doesnt-have-to-be-crazy-at-work--jason-fried" target="_blank" rel="noopener">Porchlight</a></li>
196
+ </ul>
197
+ </article>
198
+ </section>
199
+
200
+ <section id="rework">
201
+ <figure>
202
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#rework">
203
+ <img src="../assets/images/books/rework.png" alt="REWORK">
204
+ </a>
205
+ </figure>
206
+ <article>
207
+ <h2><a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#rework">REWORK</a></h2>
208
+ <p><strong>New York Times bestseller!</strong> Most business books give you the same old advice: write a business plan, study the competition, seek investors, yadda yadda. If you’re looking for a book like that, put this one back on the shelf. <strong>REWORK</strong> is the perfect playbook for anyone who’s ever dreamed of doing it on their own. Entrepreneurs, small-business owners, and artists who don’t want to starve will all find valuable guidance in these pages.</p>
209
+ <ul>
210
+ <li><a href="https://www.amazon.com/Rework-Jason-Fried/dp/0307463745" target="_blank" rel="noopener">Amazon</a></li>
211
+ <li><a href="https://books.apple.com/us/book/rework/id421026168" target="_blank" rel="noopener">Apple Books</a></li>
212
+ <li><a href="https://www.barnesandnoble.com/w/rework-jason-fried/1102048884" target="_blank" rel="noopener">Barnes &amp; Noble</a></li>
213
+ <li><a href="https://www.indiebound.org/book/9780307463746" target="_blank" rel="noopener">Indiebound</a></li>
214
+ <li><a href="https://www.porchlightbooks.com/product/rework--jason-fried" target="_blank" rel="noopener">Porchlight</a></li>
215
+ </ul>
216
+ </article>
217
+ </section>
218
+
219
+ <section id="remote">
220
+ <figure>
221
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#remote">
222
+ <img src="../assets/images/books/remote.png" alt="REMOTE">
223
+ </a>
224
+ </figure>
225
+ <article>
226
+ <h2><a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#remote">REMOTE</a></h2>
227
+ <p><strong>Office not required.</strong> <em>As an employer</em>, restricting hiring to your local region means you’re not getting the best people you can. <em>As an employee</em>, restricting your job search to companies within a reasonable commute means you’re not working for the best company you can. <strong>REMOTE</strong> shows both employers and employees how they can work together, remotely, from any desk, in any space, in any place, anytime, anywhere.</p>
228
+ <ul>
229
+ <li><a href="https://www.amazon.com/Remote-Office-Not-Required/dp/0804137501" target="_blank" rel="noopener">Amazon</a></li>
230
+ <li><a href="https://books.apple.com/us/book/remote/id625981856" target="_blank" rel="noopener">Apple Books</a></li>
231
+ <li><a href="https://www.barnesandnoble.com/w/remote-jason-fried/1114307851" target="_blank" rel="noopener">Barnes &amp; Noble</a></li>
232
+ <li><a href="https://www.indiebound.org/book/9780804137508" target="_blank" rel="noopener">Indiebound</a></li>
233
+ <li><a href="https://www.porchlightbooks.com/product/remote-office-not-required--jason-fried" target="_blank" rel="noopener">Porchlight</a></li>
234
+ </ul>
235
+ </article>
236
+ </section>
237
+
238
+ <section id="gettingreal">
239
+ <figure>
240
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#gettingreal">
241
+ <img src="../assets/images/books/getting-real.png" alt="Getting Real">
242
+ </a>
243
+ </figure>
244
+ <article>
245
+ <h2><a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18#gettingreal">Getting Real</a></h2>
246
+ <p><strong>The smarter, faster, easier way to build a successful web application.</strong> Getting Real is <em>packed</em> with keep-it-simple insights, contrarian points of view, and unconventional approaches to software design. This isn’t a technical book or a design tutorial, it’s a book of <em>ideas</em>. Anyone working on a web app — including entrepreneurs, designers, programmers, executives, or marketers — will find value and inspiration in this book.</p>
247
+ <ul>
248
+ <li><a href="../gettingreal">Read it online</a></li>
249
+ <li><a href="../gettingreal/getting-real.pdf">Download a PDF</a></li>
250
+ <li><a href="https://www.amazon.com/Getting-Real-Smarter-Successful-Application/dp/0578012812" target="_blank" rel="noopener">Amazon</a></li>
251
+ <li><a href="https://books.apple.com/us/book/getting-real/id365490630" target="_blank" rel="noopener">Apple Books</a></li>
252
+ <li><a href="https://www.barnesandnoble.com/w/getting-real-37signals/1113544045" target="_blank" rel="noopener">Barnes &amp; Noble</a></li>
253
+ </ul>
254
+ </article>
255
+ </section>
256
+
257
+ </div>
258
+
259
+ <div class="marquee marquee--left space-bottom--xxx-large space-top--xxx-large">
260
+
261
+ <a href="../customers/index.html" aria-hidden="true" tabindex="-1">
262
+ <ul>
263
+
264
+
265
+
266
+
267
+
268
+ <li>“Extremely user friendly”</li>
269
+
270
+
271
+
272
+ <li>“Truly amazing!”</li>
273
+
274
+
275
+
276
+ <li>“A godsend for our org”</li>
277
+
278
+
279
+
280
+ <li>“Simple, quick, powerful”</li>
281
+
282
+
283
+
284
+ <li>“So glad I found Basecamp”</li>
285
+
286
+
287
+
288
+ <li>“The perfect solution”</li>
289
+
290
+
291
+
292
+ <li>“Really great”</li>
293
+
294
+
295
+
296
+ <li>“Outstanding”</li>
297
+
298
+
299
+
300
+ <li>“Best app for teams”</li>
301
+
302
+
303
+
304
+ <li>“Awesome service”</li>
305
+
306
+
307
+
308
+ <li>“Gets better and better”</li>
309
+
310
+
311
+
312
+ <li>“Great collaboration tool”</li>
313
+
314
+
315
+
316
+ <li>“Great software”</li>
317
+
318
+
319
+
320
+ <li>“Gold standard PM app”</li>
321
+
322
+
323
+
324
+ <li>“Brilliant solution”</li>
325
+
326
+
327
+
328
+ <li>“Clean and easy to use”</li>
329
+
330
+
331
+
332
+ <li>“Fantastic app”</li>
333
+
334
+
335
+
336
+ <li>“Organized and on point”</li>
337
+
338
+
339
+
340
+ <li>“Extremely user friendly”</li>
341
+
342
+
343
+
344
+ <li>“Truly amazing!”</li>
345
+
346
+
347
+
348
+ <li>“A godsend for our org”</li>
349
+
350
+
351
+
352
+ <li>“Simple, quick, powerful”</li>
353
+
354
+
355
+
356
+ <li>“So glad I found Basecamp”</li>
357
+
358
+
359
+
360
+ <li>“The perfect solution”</li>
361
+
362
+
363
+
364
+ <li>“Really great”</li>
365
+
366
+
367
+
368
+ <li>“Outstanding”</li>
369
+
370
+
371
+
372
+ <li>“Best app for teams”</li>
373
+
374
+
375
+
376
+ <li>“Awesome service”</li>
377
+
378
+
379
+
380
+ <li>“Gets better and better”</li>
381
+
382
+
383
+
384
+ <li>“Great collaboration tool”</li>
385
+
386
+
387
+
388
+ <li>“Great software”</li>
389
+
390
+
391
+
392
+ <li>“Gold standard PM app”</li>
393
+
394
+
395
+
396
+ <li>“Brilliant solution”</li>
397
+
398
+
399
+
400
+ <li>“Clean and easy to use”</li>
401
+
402
+
403
+
404
+ <li>“Fantastic app”</li>
405
+
406
+
407
+
408
+ <li>“Organized and on point”</li>
409
+
410
+
411
+
412
+ </ul>
413
+ </a>
414
+
415
+
416
+ </div>
417
+
418
+
419
+ </main>
420
+
421
+ <footer class="footer">
422
+
423
+
424
+
425
+
426
+
427
+ <div class="footer__apps" id="apps">
428
+ <dl class="footer__headline">
429
+ <dt>Basecamp’s everywhere</dt>
430
+ <dd>Mac, Windows, iOS, Android, and on the web — Basecamp is ready <a href="../apps/index.html">whenever and wherever you are</a>.</dd>
431
+ </dl>
432
+ <ul>
433
+ <li><a class="button button--icon button--pwa" href="https://3.basecamp-help.com/article/937-basecamp-pwa" title="Install Basecamp on Mac and Windows">Desktop apps</a></li>
434
+ <li><a class="button button--icon button--ios" href="https://apps.apple.com/us/app/basecamp-project-management/id1015603248" title="Install Basecamp on iOS">iOS</a></li>
435
+ <li><a class="button button--icon button--android" href="https://play.google.com/store/apps/details?id=com.basecamp.bc3" title="Install Basecamp on Android">Android</a></li>
436
+ <li><a class="button button--icon button--basecamp" href="https://launchpad.37signals.com/signin" title="Use Basecamp in your web browser" target="_blank" data-controller="signup" data-action="signup#trackLogin">Sign in to Basecamp</a></li>
437
+ </ul>
438
+ </div>
439
+
440
+
441
+
442
+
443
+
444
+ <div class="footer__classes data-classes" data-classes-limit="4">
445
+ <dl class="footer__headline">
446
+ <dt>Join us for a free live class</dt>
447
+ <dd>We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask.<span class="data-classes__link"> <a href="../classes/index.html">See all our upcoming classes</a>.</span></dd>
448
+ </dl>
449
+ <div class="data-classes__output"></div>
450
+ </div>
451
+
452
+
453
+
454
+
455
+
456
+ <div class="footer__newsletter">
457
+ <dl class="footer__headline">
458
+ <dt>Never miss an update</dt>
459
+ <dd>Join more than 150,000 people who get <a href="../newsletter/index.html">our newsletter</a>. We’ll share product updates, thoughts, new releases, and other tidbits we think you’ll find interesting.</dd>
460
+ </dl>
461
+ <div class="newsletter">
462
+ <div class="newsletter__container">
463
+ <form novalidate action="https://basecamp.us2.list-manage.com/subscribe/post-json?u=2a145c60b16248b65e46a799a&amp;id=476312b66e&amp;c=?" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form">
464
+ <div aria-hidden="true" style="position: absolute; left: -5000px;"><input type="text" name="b_2a145c60b16248b65e46a799a_476312b66e" value="" tabindex="-1" aria-label="mce"></div>
465
+ <input type="hidden" name="tags" value="23018">
466
+ <input type="email" name="EMAIL" value="" id="mce-EMAIL" placeholder="julie.young@hey.com" aria-label="Your email address" required data-1p-ignore>
467
+ <button type="submit" name="subscribe" id="mc-embedded-subscribe">Subscribe</button>
468
+ </form>
469
+ </div>
470
+ </div>
471
+ </div>
472
+
473
+
474
+
475
+
476
+
477
+ <div class="footer__support">
478
+ <dl class="footer__headline">
479
+ <dt>We’re here to help with 24/7/365 support</dt>
480
+ <dd>There are no stupid questions — for pre-sales questions, existing customers who need a hand, or any other inquiries, <a href="../support/index.html">contact us</a> and we’ll get back to you within an hour. <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">Watch tutorials</a>, <a href="../help/index.html">read the help guides</a>, or <a href="../support/index.html">send us a message</a> to get help.</dd>
481
+ </dl>
482
+
483
+
484
+
485
+ <div class="footer__hey">
486
+ <a href="https://www.hey.com" target="_blank">
487
+ <span>If you love Basecamp, you’ll love <strong>HEY</strong> — our delightfully fresh take on email + calendar</span>
488
+ </a>
489
+ </div>
490
+
491
+
492
+
493
+ </div>
494
+
495
+
496
+
497
+
498
+
499
+
500
+
501
+ <div class="footer__links">
502
+ <dl class="footer__headline">
503
+ <dt>And there’s more&hellip;</dt>
504
+ <dd>
505
+
506
+
507
+
508
+ <a href="../new/index.html" aria-label="What’s new">What’s new</a> •
509
+
510
+
511
+
512
+ <a href="../paths/index.html" aria-label="The people’s path to Basecamp">The people’s path to Basecamp</a> •
513
+
514
+
515
+
516
+ <a href="rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18" aria-label="Books we’ve written">Books we’ve written</a> •
517
+
518
+
519
+
520
+ <a href="../about/index.html" aria-label="Where we came from">Where we came from</a> •
521
+
522
+
523
+
524
+ <a href="../guides/how-we-communicate/index.html" aria-label="How we communicate">How we communicate</a> •
525
+
526
+
527
+
528
+ <a href="../guides/how-we-make-decisions/index.html" aria-label="How we make decisions">How we make decisions</a> •
529
+
530
+
531
+
532
+ <a href="../guides/why-we-choose-profit/index.html" aria-label="Why we choose profit">Why we choose profit</a> •
533
+
534
+
535
+
536
+ <a href="../guides/group-chat-problems/index.html" aria-label="Group chat problems">Group chat problems</a> •
537
+
538
+
539
+
540
+ <a href="../guides/seven-shipping-principles/index.html" aria-label="Seven shipping principles">Seven shipping principles</a> •
541
+
542
+
543
+
544
+ <a href="../underdogs/index.html" aria-label="We stand with the underdogs">We stand with the underdogs</a> •
545
+
546
+
547
+
548
+ <a href="../small/index.html" aria-label="Come small, come all">Come small, come all</a> •
549
+
550
+
551
+
552
+ <a href="../overkill/index.html" aria-label="Kill overkill">Kill overkill</a> •
553
+
554
+
555
+
556
+ <a href="../cloud-exit/index.html" aria-label="Leaving the Cloud">Leaving the Cloud</a> •
557
+
558
+
559
+
560
+ <a href="../before-and-after/index.html" aria-label="Night &amp; day">Night &amp; day</a> •
561
+
562
+
563
+
564
+ <a href="../hill-charts/index.html" aria-label="See where projects really stand">See where projects really stand</a> •
565
+
566
+
567
+
568
+ <a href="../justletmedomyjob/index.html" aria-label="JUST LET ME DO MY JOB">JUST LET ME DO MY JOB</a> •
569
+
570
+
571
+
572
+ <a href="../customers/index.html" aria-label="What changed for the better?">What changed for the better?</a> •
573
+
574
+
575
+
576
+ <a href="../integrations/index.html" aria-label="Integrations">Integrations</a> •
577
+
578
+
579
+
580
+ <a href="../accessibility/index.html" aria-label="Basecamp is for everyone">Basecamp is for everyone</a> •
581
+
582
+
583
+
584
+ <a href="../community/index.html" aria-label="Basecamp community">Basecamp community</a> •
585
+
586
+
587
+
588
+ <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14" aria-label="Learn Basecamp">Learn Basecamp</a> •
589
+
590
+
591
+
592
+ <a href="../handbook" aria-label="Employee handbook">Employee handbook</a>
593
+
594
+
595
+
596
+ </dd>
597
+ </dl>
598
+ </div>
599
+
600
+
601
+
602
+
603
+
604
+
605
+
606
+ <div class="footer__legal">
607
+ <p>
608
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
609
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
610
+ <strong>Basecamp</strong>
611
+ </a>
612
+ <span>is designed, built, and backed by</span>
613
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
614
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
615
+ <strong>37signals</strong>
616
+ </a>
617
+ </p>
618
+ <ul>
619
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
620
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
621
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
622
+ <li>&copy; 2025 37signals LLC</li>
623
+ </ul>
624
+ </div>
625
+ </footer>
626
+
627
+
628
+ <dialog class="modal">
629
+ <div class="modal__backdrop"></div>
630
+ <div class="modal__container"></div>
631
+ </dialog>
632
+
633
+
634
+ </body>
635
+
636
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/classes/index.html ADDED
@@ -0,0 +1,559 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Join us for a free live class</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="Join us for a free live class! We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Join us for a free live class">
28
+ <meta property="og:description" content="Join us for a free live class! We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/classes.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/classes/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Join us for a free live class">
34
+ <meta name="twitter:description" content="Join us for a free live class! We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/classes.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/classes/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Join us for a free live class",
53
+ "description": "Join us for a free live class! We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask.",
54
+ "url": "https://basecamp.com/classes/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/classes.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="index.html">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body class="body has-nav-phrase" data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <input id="nav-active" type="checkbox">
110
+
111
+ <label id="nav-underlay" for="nav-active"></label>
112
+
113
+ <nav class="nav">
114
+ <div class="nav__container">
115
+ <div class="nav__logo">
116
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
117
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
118
+ <strong>Basecamp</strong>
119
+ </a>
120
+ <div class="nav__phrase">is the <span class="highlight"></span> <strong>project management system</strong> by</div>
121
+ <b class="icon icon--37signals">
122
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
123
+ <strong>37signals</strong>
124
+ </b>
125
+ </div>
126
+ <div class="nav__links">
127
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
128
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
129
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
130
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
131
+ </div>
132
+ <div class="nav__buttons">
133
+ <a class="nav__button nav__button--launchpad" href="https://launchpad.37signals.com/signin" target="_blank" data-controller="signup" data-action="signup#trackLogin" aria-label="Sign in">Sign in</a>
134
+ <a class="nav__button nav__button--signup trk-package" id="sign-up-nav" href="../pricing/index.html#packages" aria-label="Sign up free">Sign up free</a>
135
+ </div>
136
+ <label class="nav__toggle" for="nav-active" aria-label="Nav Toggle" tabindex="0"></label>
137
+ </div>
138
+ <div class="nav__mobile">
139
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
140
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
141
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
142
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
143
+ </div>
144
+ </nav>
145
+
146
+
147
+
148
+
149
+ <main class="main">
150
+
151
+ <div class="statement">
152
+ <section>
153
+ <header>
154
+ <h1>Join us for a free live class</h1>
155
+ </header>
156
+ <article>
157
+ <p>We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask.</p>
158
+ </article>
159
+ </section>
160
+ </div>
161
+
162
+ <div class="classes data-classes space-top--x-large" data-classes-type="intro-to-basecamp">
163
+ <div class="classes__header">
164
+ <h2 id="intro-to-basecamp"><a href="index.html#intro-to-basecamp">Intro to Basecamp</a></h2>
165
+ </div>
166
+ <div class="classes__article">
167
+ <p>We’ll teach you the basics of using Basecamp, with plenty of time set aside for questions.</p>
168
+ </div>
169
+ <div class="classes__output data-classes__output"></div>
170
+ </div>
171
+
172
+ <div class="classes data-classes space-top--x-large" data-classes-type="become-a-pro">
173
+ <div class="classes__header">
174
+ <h2 id="become-a-pro"><a href="index.html#become-a-pro">Become a Pro</a></h2>
175
+ </div>
176
+ <div class="classes__article">
177
+ <p>We’ll take a deep dive into the features and tools to help you get the most out of Basecamp.</p>
178
+ </div>
179
+ <div class="classes__output data-classes__output"></div>
180
+ </div>
181
+
182
+ <div class="classes data-classes space-top--x-large" data-classes-type="ask-us-anything">
183
+ <div class="classes__header">
184
+ <h2 id="ask-us-anything"><a href="index.html#ask-us-anything">Ask Us Anything</a></h2>
185
+ </div>
186
+ <div class="classes__article">
187
+ <p>Not sure how something works? Need setup tips? Bring your questions to a live Q&amp;A.</p>
188
+ </div>
189
+ <div class="classes__output data-classes__output"></div>
190
+ </div>
191
+
192
+ <div class="marquee marquee--left space-bottom--xxx-large space-top--xxx-large">
193
+
194
+ <a href="../customers/index.html" aria-hidden="true" tabindex="-1">
195
+ <ul>
196
+
197
+
198
+
199
+
200
+
201
+ <li>“Extremely user friendly”</li>
202
+
203
+
204
+
205
+ <li>“Truly amazing!”</li>
206
+
207
+
208
+
209
+ <li>“A godsend for our org”</li>
210
+
211
+
212
+
213
+ <li>“Simple, quick, powerful”</li>
214
+
215
+
216
+
217
+ <li>“So glad I found Basecamp”</li>
218
+
219
+
220
+
221
+ <li>“The perfect solution”</li>
222
+
223
+
224
+
225
+ <li>“Really great”</li>
226
+
227
+
228
+
229
+ <li>“Outstanding”</li>
230
+
231
+
232
+
233
+ <li>“Best app for teams”</li>
234
+
235
+
236
+
237
+ <li>“Awesome service”</li>
238
+
239
+
240
+
241
+ <li>“Gets better and better”</li>
242
+
243
+
244
+
245
+ <li>“Great collaboration tool”</li>
246
+
247
+
248
+
249
+ <li>“Great software”</li>
250
+
251
+
252
+
253
+ <li>“Gold standard PM app”</li>
254
+
255
+
256
+
257
+ <li>“Brilliant solution”</li>
258
+
259
+
260
+
261
+ <li>“Clean and easy to use”</li>
262
+
263
+
264
+
265
+ <li>“Fantastic app”</li>
266
+
267
+
268
+
269
+ <li>“Organized and on point”</li>
270
+
271
+
272
+
273
+ <li>“Extremely user friendly”</li>
274
+
275
+
276
+
277
+ <li>“Truly amazing!”</li>
278
+
279
+
280
+
281
+ <li>“A godsend for our org”</li>
282
+
283
+
284
+
285
+ <li>“Simple, quick, powerful”</li>
286
+
287
+
288
+
289
+ <li>“So glad I found Basecamp”</li>
290
+
291
+
292
+
293
+ <li>“The perfect solution”</li>
294
+
295
+
296
+
297
+ <li>“Really great”</li>
298
+
299
+
300
+
301
+ <li>“Outstanding”</li>
302
+
303
+
304
+
305
+ <li>“Best app for teams”</li>
306
+
307
+
308
+
309
+ <li>“Awesome service”</li>
310
+
311
+
312
+
313
+ <li>“Gets better and better”</li>
314
+
315
+
316
+
317
+ <li>“Great collaboration tool”</li>
318
+
319
+
320
+
321
+ <li>“Great software”</li>
322
+
323
+
324
+
325
+ <li>“Gold standard PM app”</li>
326
+
327
+
328
+
329
+ <li>“Brilliant solution”</li>
330
+
331
+
332
+
333
+ <li>“Clean and easy to use”</li>
334
+
335
+
336
+
337
+ <li>“Fantastic app”</li>
338
+
339
+
340
+
341
+ <li>“Organized and on point”</li>
342
+
343
+
344
+
345
+ </ul>
346
+ </a>
347
+
348
+
349
+ </div>
350
+
351
+
352
+ </main>
353
+
354
+ <footer class="footer">
355
+
356
+
357
+
358
+
359
+
360
+ <div class="footer__apps" id="apps">
361
+ <dl class="footer__headline">
362
+ <dt>Basecamp’s everywhere</dt>
363
+ <dd>Mac, Windows, iOS, Android, and on the web — Basecamp is ready <a href="../apps/index.html">whenever and wherever you are</a>.</dd>
364
+ </dl>
365
+ <ul>
366
+ <li><a class="button button--icon button--pwa" href="https://3.basecamp-help.com/article/937-basecamp-pwa" title="Install Basecamp on Mac and Windows">Desktop apps</a></li>
367
+ <li><a class="button button--icon button--ios" href="https://apps.apple.com/us/app/basecamp-project-management/id1015603248" title="Install Basecamp on iOS">iOS</a></li>
368
+ <li><a class="button button--icon button--android" href="https://play.google.com/store/apps/details?id=com.basecamp.bc3" title="Install Basecamp on Android">Android</a></li>
369
+ <li><a class="button button--icon button--basecamp" href="https://launchpad.37signals.com/signin" title="Use Basecamp in your web browser" target="_blank" data-controller="signup" data-action="signup#trackLogin">Sign in to Basecamp</a></li>
370
+ </ul>
371
+ </div>
372
+
373
+
374
+
375
+
376
+
377
+
378
+
379
+ <div class="footer__newsletter">
380
+ <dl class="footer__headline">
381
+ <dt>Never miss an update</dt>
382
+ <dd>Join more than 150,000 people who get <a href="../newsletter/index.html">our newsletter</a>. We’ll share product updates, thoughts, new releases, and other tidbits we think you’ll find interesting.</dd>
383
+ </dl>
384
+ <div class="newsletter">
385
+ <div class="newsletter__container">
386
+ <form novalidate action="https://basecamp.us2.list-manage.com/subscribe/post-json?u=2a145c60b16248b65e46a799a&amp;id=476312b66e&amp;c=?" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form">
387
+ <div aria-hidden="true" style="position: absolute; left: -5000px;"><input type="text" name="b_2a145c60b16248b65e46a799a_476312b66e" value="" tabindex="-1" aria-label="mce"></div>
388
+ <input type="hidden" name="tags" value="23018">
389
+ <input type="email" name="EMAIL" value="" id="mce-EMAIL" placeholder="julie.young@hey.com" aria-label="Your email address" required data-1p-ignore>
390
+ <button type="submit" name="subscribe" id="mc-embedded-subscribe">Subscribe</button>
391
+ </form>
392
+ </div>
393
+ </div>
394
+ </div>
395
+
396
+
397
+
398
+
399
+
400
+ <div class="footer__support">
401
+ <dl class="footer__headline">
402
+ <dt>We’re here to help with 24/7/365 support</dt>
403
+ <dd>There are no stupid questions — for pre-sales questions, existing customers who need a hand, or any other inquiries, <a href="../support/index.html">contact us</a> and we’ll get back to you within an hour. <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">Watch tutorials</a>, <a href="../help/index.html">read the help guides</a>, or <a href="../support/index.html">send us a message</a> to get help.</dd>
404
+ </dl>
405
+
406
+
407
+
408
+ <div class="footer__hey">
409
+ <a href="https://www.hey.com" target="_blank">
410
+ <span>If you love Basecamp, you’ll love <strong>HEY</strong> — our delightfully fresh take on email + calendar</span>
411
+ </a>
412
+ </div>
413
+
414
+
415
+
416
+ </div>
417
+
418
+
419
+
420
+
421
+
422
+
423
+
424
+ <div class="footer__links">
425
+ <dl class="footer__headline">
426
+ <dt>And there’s more&hellip;</dt>
427
+ <dd>
428
+
429
+
430
+
431
+ <a href="../new/index.html" aria-label="What’s new">What’s new</a> •
432
+
433
+
434
+
435
+ <a href="../paths/index.html" aria-label="The people’s path to Basecamp">The people’s path to Basecamp</a> •
436
+
437
+
438
+
439
+ <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18" aria-label="Books we’ve written">Books we’ve written</a> •
440
+
441
+
442
+
443
+ <a href="../about/index.html" aria-label="Where we came from">Where we came from</a> •
444
+
445
+
446
+
447
+ <a href="../guides/how-we-communicate/index.html" aria-label="How we communicate">How we communicate</a> •
448
+
449
+
450
+
451
+ <a href="../guides/how-we-make-decisions/index.html" aria-label="How we make decisions">How we make decisions</a> •
452
+
453
+
454
+
455
+ <a href="../guides/why-we-choose-profit/index.html" aria-label="Why we choose profit">Why we choose profit</a> •
456
+
457
+
458
+
459
+ <a href="../guides/group-chat-problems/index.html" aria-label="Group chat problems">Group chat problems</a> •
460
+
461
+
462
+
463
+ <a href="../guides/seven-shipping-principles/index.html" aria-label="Seven shipping principles">Seven shipping principles</a> •
464
+
465
+
466
+
467
+ <a href="../underdogs/index.html" aria-label="We stand with the underdogs">We stand with the underdogs</a> •
468
+
469
+
470
+
471
+ <a href="../small/index.html" aria-label="Come small, come all">Come small, come all</a> •
472
+
473
+
474
+
475
+ <a href="../overkill/index.html" aria-label="Kill overkill">Kill overkill</a> •
476
+
477
+
478
+
479
+ <a href="../cloud-exit/index.html" aria-label="Leaving the Cloud">Leaving the Cloud</a> •
480
+
481
+
482
+
483
+ <a href="../before-and-after/index.html" aria-label="Night &amp; day">Night &amp; day</a> •
484
+
485
+
486
+
487
+ <a href="../hill-charts/index.html" aria-label="See where projects really stand">See where projects really stand</a> •
488
+
489
+
490
+
491
+ <a href="../justletmedomyjob/index.html" aria-label="JUST LET ME DO MY JOB">JUST LET ME DO MY JOB</a> •
492
+
493
+
494
+
495
+ <a href="../customers/index.html" aria-label="What changed for the better?">What changed for the better?</a> •
496
+
497
+
498
+
499
+ <a href="../integrations/index.html" aria-label="Integrations">Integrations</a> •
500
+
501
+
502
+
503
+ <a href="../accessibility/index.html" aria-label="Basecamp is for everyone">Basecamp is for everyone</a> •
504
+
505
+
506
+
507
+ <a href="../community/index.html" aria-label="Basecamp community">Basecamp community</a> •
508
+
509
+
510
+
511
+ <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14" aria-label="Learn Basecamp">Learn Basecamp</a> •
512
+
513
+
514
+
515
+ <a href="../handbook" aria-label="Employee handbook">Employee handbook</a>
516
+
517
+
518
+
519
+ </dd>
520
+ </dl>
521
+ </div>
522
+
523
+
524
+
525
+
526
+
527
+
528
+
529
+ <div class="footer__legal">
530
+ <p>
531
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
532
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
533
+ <strong>Basecamp</strong>
534
+ </a>
535
+ <span>is designed, built, and backed by</span>
536
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
537
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
538
+ <strong>37signals</strong>
539
+ </a>
540
+ </p>
541
+ <ul>
542
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
543
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
544
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
545
+ <li>&copy; 2025 37signals LLC</li>
546
+ </ul>
547
+ </div>
548
+ </footer>
549
+
550
+
551
+ <dialog class="modal">
552
+ <div class="modal__backdrop"></div>
553
+ <div class="modal__container"></div>
554
+ </dialog>
555
+
556
+
557
+ </body>
558
+
559
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/cloud-exit/index.html ADDED
@@ -0,0 +1,226 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Leaving the Cloud — Cloud Computing Isn’t For Everyone</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="We’ve run extensively in both Amazon’s cloud and Google’s cloud, but the savings never materialized. So we’ve left.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Leaving the Cloud — Cloud Computing Isn’t For Everyone">
28
+ <meta property="og:description" content="We’ve run extensively in both Amazon’s cloud and Google’s cloud, but the savings never materialized. So we’ve left.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/cloud-exit.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/cloud-exit/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Leaving the Cloud — Cloud Computing Isn’t For Everyone">
34
+ <meta name="twitter:description" content="We’ve run extensively in both Amazon’s cloud and Google’s cloud, but the savings never materialized. So we’ve left.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/cloud-exit.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/cloud-exit/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Leaving the Cloud — Cloud Computing Isn’t For Everyone",
53
+ "description": "We’ve run extensively in both Amazon’s cloud and Google’s cloud, but the savings never materialized. So we’ve left.",
54
+ "url": "https://basecamp.com/cloud-exit/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/cloud-exit.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="index.html">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <nav class="nav-basic">
110
+ <div class="nav-basic__logo">
111
+ <a href="../enterprise-extravaganza" aria-label="Basecamp">
112
+ <svg height="34" viewBox="0 0 39 34" width="39" xmlns="http://www.w3.org/2000/svg"><path d="m20.5393 33.9981c-6.3568.0838-12.43682-2.5964-16.66317-7.3455-.45141-.5014-.58696-1.212-.35181-1.8443 1.14073-3.0704 4.26441-10.2133 8.16638-10.2346 1.9829 0 3.4648 1.5778 4.6589 2.8358.3959.439.8197.8521 1.2686 1.2367 1.6755-2.1195 3.0728-4.4448 4.1578-6.919.4499-.8547 1.491-1.2064 2.367-.7997s1.2792 1.429.9166 2.3242c-4.2644 9.1365-6.5459 9.1365-7.2921 9.1365-1.6631 0-2.8678-1.2793-4.0299-2.5053-.5224-.5544-1.6098-1.7058-2.0256-1.7058-.9275.1599-2.94245 3.3476-4.39235 6.8444 3.49355 3.5078 8.27005 5.4338 13.21965 5.3305 7.1536 0 12.4948-1.951 14.7976-5.3305-.7889-9.0299-5.7996-21.4074-14.7976-21.4074-7.6226 0-13.35824 5.33052-17.05763 15.7784-.37354.8821-1.36908 1.3212-2.27239 1.0022-.903309-.319-1.402372-1.2858-1.1391428-2.2069 4.2644228-12.06836 11.1514628-18.1878 20.4691628-18.1878 12.1643 0 17.804 15.5438 18.4543 25.352.0273.3706-.0542.7411-.2345 1.0661-2.8359 4.8721-9.3071 7.58-18.2198 7.58z" fill="currentColor"/></svg>
113
+ <span>Basecamp</span>
114
+ </a>
115
+ </div>
116
+
117
+
118
+
119
+ </nav>
120
+
121
+
122
+
123
+
124
+ <main class="main main--basic">
125
+
126
+ <div class="statement statement--full-width statement--align-center">
127
+ <section>
128
+ <header>
129
+ <h1>We left the cloud</h1>
130
+ </header>
131
+ <article>
132
+ <p>They promised the cloud would be cheaper, faster, and easier.<br> For us, the savings never materialized and the team never shrunk.</p>
133
+ </article>
134
+ </section>
135
+ </div>
136
+
137
+ <div class="prose space-top--x-large">
138
+ <div class="prose__content">
139
+ <p>After using clouds from both Amazon and Google extensively over the past 15 years, we finally had enough of the outrageous bills and the ever-increasing complexity. So in 2023, we pulled Basecamp, <a href="https://hey.com/">HEY</a>, and five other heritage apps out of AWS and onto our own hardware — without adding any new staff.</p>
140
+ <p>The bottomline:</p>
141
+ <h2 class="prose__highlight"><strong class="highlight">Leaving the cloud will save us<br> ~$10 million over five years.</strong></h2>
142
+ <p>That's a reduction in our infrastructure costs of between half and two-thirds.</p>
143
+ </div>
144
+ </div>
145
+
146
+ <div class="prose space-top--x-large">
147
+ <div class="prose__content">
148
+ <h2>Our cloud exit in full detail</h2>
149
+ <ul>
150
+ <li><a href="https://world.hey.com/dhh/why-we-re-leaving-the-cloud-654b47e0" target="_blank" rel="noopener">Why we’re leaving the cloud</a></li>
151
+ <li><a href="https://world.hey.com/dhh/five-values-guiding-our-cloud-exit-638add47" target="_blank" rel="noopener">Five values guiding our cloud exit</a></li>
152
+ <li><a href="https://world.hey.com/dhh/the-hardware-we-need-for-our-cloud-exit-has-arrived-99d66966" target="_blank" rel="noopener">The hardware we need for our cloud exit has arrived</a></li>
153
+ <li><a href="https://world.hey.com/dhh/cloud-exit-pays-off-in-performance-too-4c53b697" target="_blank" rel="noopener">Cloud exit pays off in performance too</a></li>
154
+ <li><a href="https://world.hey.com/dhh/we-have-left-the-cloud-251760fb" target="_blank" rel="noopener">We have left the cloud</a></li>
155
+ <li><a href="https://world.hey.com/dhh/the-big-cloud-exit-faq-20274010" target="_blank" rel="noopener">The Big Cloud FAQ</a></li>
156
+ <li><a href="https://world.hey.com/dhh/we-stand-to-save-7m-over-five-years-from-our-cloud-exit-53996caa" target="_blank" rel="noopener">We stand to save $7m over five years from our cloud exit</a></li>
157
+ <li><a href="https://world.hey.com/dhh/our-cloud-exit-has-already-yielded-1m-year-in-savings-db358dea" target="_blank" rel="noopener">Our cloud exit has already yielded $1m/year in savings</a></li>
158
+ <li><a href="https://world.hey.com/dhh/it-s-five-grand-a-day-to-miss-our-s3-exit-b8293563" target="_blank" rel="noopener">It's five grand a day to miss our S3 exit</a></li>
159
+ <li><a href="https://world.hey.com/dhh/our-cloud-exit-savings-will-now-top-ten-million-over-five-years-c7d9b5bd" target="_blank" rel="noopener">Our cloud-exit savings will now top ten million over five years</a></li>
160
+ <li><a href="https://world.hey.com/dhh/introducing-kamal-9330a267" target="_blank" rel="noopener">Introducing Kamal</a></li>
161
+ <li><a href="https://world.hey.com/dhh/kamal-1-0-5304ff9e" target="_blank" rel="noopener">Kamal 1.0</a></li>
162
+ <li><a href="https://world.hey.com/dhh/kamal-2-thou-need-not-paas-c9e8bd53" target="_blank" rel="noopener">Kamal 2: Thou need not PaaS</a></li>
163
+ <li><a href="https://world.hey.com/dhh/our-switch-to-kamal-is-complete-8e0de22e" target="_blank" rel="noopener">Our switch to Kamal is complete</a></li>
164
+ <li><a href="https://world.hey.com/dhh/keeping-the-lights-on-while-leaving-the-cloud-be7c2d67" target="_blank" rel="noopener">Keeping the lights on while leaving the cloud</a></li>
165
+ <li><a href="https://dev.37signals.com/bringing-our-apps-back-home/" target="_blank" rel="noopener">De-cloud and de-k8s — bringing our apps back home</a></li>
166
+ <li><a href="https://world.hey.com/dhh/servers-can-last-a-long-time-165c955c" target="_blank" rel="noopener">Servers can last a long time</a></li>
167
+ <li><a href="https://world.hey.com/dhh/don-t-be-fooled-by-serverless-776cd730" target="_blank" rel="noopener">Don’t be fooled by serverless</a></li>
168
+ <li><a href="https://world.hey.com/dhh/the-only-thing-worse-than-cloud-pricing-is-the-enterprisey-alternatives-854e98f3" target="_blank" rel="noopener">The only thing worse than cloud pricing is the enterprisey alternatives</a></li>
169
+ <li><a href="https://world.hey.com/dhh/sovereign-clouds-661eb5e4" target="_blank" rel="noopener">Sovereign clouds</a></li>
170
+ </ul>
171
+ </div>
172
+ </div>
173
+
174
+ <div class="prose space-bottom--xxx-large space-top--x-large">
175
+ <div class="prose__content">
176
+ <h2>Our cloud exit made headlines</h2>
177
+ <ul>
178
+ <li><a href="https://www.theregister.com/2023/02/22/cloud_repatration_savings_calculated_basecamp/" target="_blank" rel="noopener">The Register: Save $7 million on cloud by spending $600k on servers, says 37signals’ David Heinemeier Hansson</a></li>
179
+ <li><a href="https://www.techspot.com/news/97300-leaving-cloud-basecamp-spent-32-million-year-rent.html" target="_blank" rel="noopener">Techspot: Basecamp decided to leave the cloud after spending $3.2 million in one year</a></li>
180
+ <li><a href="https://techcrunch.com/2022/10/22/could-machine-learning-refresh-the-cloud-debate/" target="_blank" rel="noopener">TechCrunch: Could machine learning refresh the cloud debate?</a></li>
181
+ <li><a href="https://www.datacenterdynamics.com/en/news/37signals-expects-to-save-7m-over-five-years-after-moving-off-of-the-cloud/" target="_blank" rel="noopener">Data Centre Dynamics: 37signals expects to save $7m over five years after moving off of the cloud</a></li>
182
+ <li><a href="https://www.networkworld.com/article/3691629/cloud-vs-on-prem-saas-vendor-37-signals-bails-out-of-the-public-cloud.html" target="_blank" rel="noopener">Network World: Cloud vs on-prem: SaaS vendor 37signals bails out of the public cloud</a></li>
183
+ <li><a href="https://medium.com/@sankarsonbanerjee/leaving-the-cloud-eccbecc9a3d6" target="_blank" rel="noopener">Banerjee: Leaving the Cloud</a></li>
184
+ <li><a href="https://www.itweb.co.za/content/WnxpEv4YOE97V8XL" target="_blank" rel="noopener">IT Web: Why cloud isn’t always the answer</a></li>
185
+ </ul>
186
+ </div>
187
+ </div>
188
+
189
+
190
+ </main>
191
+
192
+ <footer class="footer">
193
+
194
+
195
+
196
+ <div class="footer__legal">
197
+ <p>
198
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
199
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
200
+ <strong>Basecamp</strong>
201
+ </a>
202
+ <span>is designed, built, and backed by</span>
203
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
204
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
205
+ <strong>37signals</strong>
206
+ </a>
207
+ </p>
208
+ <ul>
209
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
210
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
211
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
212
+ <li>&copy; 2025 37signals LLC</li>
213
+ </ul>
214
+ </div>
215
+ </footer>
216
+
217
+
218
+ <dialog class="modal">
219
+ <div class="modal__backdrop"></div>
220
+ <div class="modal__container"></div>
221
+ </dialog>
222
+
223
+
224
+ </body>
225
+
226
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/cloud-exit?utm_source=newsletter&utm_medium=email&utm_campaign=whats_new_2023_07_06 ADDED
@@ -0,0 +1,226 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Leaving the Cloud — Cloud Computing Isn’t For Everyone</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="We’ve run extensively in both Amazon’s cloud and Google’s cloud, but the savings never materialized. So we’ve left.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Leaving the Cloud — Cloud Computing Isn’t For Everyone">
28
+ <meta property="og:description" content="We’ve run extensively in both Amazon’s cloud and Google’s cloud, but the savings never materialized. So we’ve left.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/cloud-exit.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/cloud-exit/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Leaving the Cloud — Cloud Computing Isn’t For Everyone">
34
+ <meta name="twitter:description" content="We’ve run extensively in both Amazon’s cloud and Google’s cloud, but the savings never materialized. So we’ve left.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/cloud-exit.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/cloud-exit/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Leaving the Cloud — Cloud Computing Isn’t For Everyone",
53
+ "description": "We’ve run extensively in both Amazon’s cloud and Google’s cloud, but the savings never materialized. So we’ve left.",
54
+ "url": "https://basecamp.com/cloud-exit/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/cloud-exit.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="cloud-exit/index.html">
69
+ <link rel="icon" href="assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <nav class="nav-basic">
110
+ <div class="nav-basic__logo">
111
+ <a href="enterprise-extravaganza" aria-label="Basecamp">
112
+ <svg height="34" viewBox="0 0 39 34" width="39" xmlns="http://www.w3.org/2000/svg"><path d="m20.5393 33.9981c-6.3568.0838-12.43682-2.5964-16.66317-7.3455-.45141-.5014-.58696-1.212-.35181-1.8443 1.14073-3.0704 4.26441-10.2133 8.16638-10.2346 1.9829 0 3.4648 1.5778 4.6589 2.8358.3959.439.8197.8521 1.2686 1.2367 1.6755-2.1195 3.0728-4.4448 4.1578-6.919.4499-.8547 1.491-1.2064 2.367-.7997s1.2792 1.429.9166 2.3242c-4.2644 9.1365-6.5459 9.1365-7.2921 9.1365-1.6631 0-2.8678-1.2793-4.0299-2.5053-.5224-.5544-1.6098-1.7058-2.0256-1.7058-.9275.1599-2.94245 3.3476-4.39235 6.8444 3.49355 3.5078 8.27005 5.4338 13.21965 5.3305 7.1536 0 12.4948-1.951 14.7976-5.3305-.7889-9.0299-5.7996-21.4074-14.7976-21.4074-7.6226 0-13.35824 5.33052-17.05763 15.7784-.37354.8821-1.36908 1.3212-2.27239 1.0022-.903309-.319-1.402372-1.2858-1.1391428-2.2069 4.2644228-12.06836 11.1514628-18.1878 20.4691628-18.1878 12.1643 0 17.804 15.5438 18.4543 25.352.0273.3706-.0542.7411-.2345 1.0661-2.8359 4.8721-9.3071 7.58-18.2198 7.58z" fill="currentColor"/></svg>
113
+ <span>Basecamp</span>
114
+ </a>
115
+ </div>
116
+
117
+
118
+
119
+ </nav>
120
+
121
+
122
+
123
+
124
+ <main class="main main--basic">
125
+
126
+ <div class="statement statement--full-width statement--align-center">
127
+ <section>
128
+ <header>
129
+ <h1>We left the cloud</h1>
130
+ </header>
131
+ <article>
132
+ <p>They promised the cloud would be cheaper, faster, and easier.<br> For us, the savings never materialized and the team never shrunk.</p>
133
+ </article>
134
+ </section>
135
+ </div>
136
+
137
+ <div class="prose space-top--x-large">
138
+ <div class="prose__content">
139
+ <p>After using clouds from both Amazon and Google extensively over the past 15 years, we finally had enough of the outrageous bills and the ever-increasing complexity. So in 2023, we pulled Basecamp, <a href="https://hey.com/">HEY</a>, and five other heritage apps out of AWS and onto our own hardware — without adding any new staff.</p>
140
+ <p>The bottomline:</p>
141
+ <h2 class="prose__highlight"><strong class="highlight">Leaving the cloud will save us<br> ~$10 million over five years.</strong></h2>
142
+ <p>That's a reduction in our infrastructure costs of between half and two-thirds.</p>
143
+ </div>
144
+ </div>
145
+
146
+ <div class="prose space-top--x-large">
147
+ <div class="prose__content">
148
+ <h2>Our cloud exit in full detail</h2>
149
+ <ul>
150
+ <li><a href="https://world.hey.com/dhh/why-we-re-leaving-the-cloud-654b47e0" target="_blank" rel="noopener">Why we’re leaving the cloud</a></li>
151
+ <li><a href="https://world.hey.com/dhh/five-values-guiding-our-cloud-exit-638add47" target="_blank" rel="noopener">Five values guiding our cloud exit</a></li>
152
+ <li><a href="https://world.hey.com/dhh/the-hardware-we-need-for-our-cloud-exit-has-arrived-99d66966" target="_blank" rel="noopener">The hardware we need for our cloud exit has arrived</a></li>
153
+ <li><a href="https://world.hey.com/dhh/cloud-exit-pays-off-in-performance-too-4c53b697" target="_blank" rel="noopener">Cloud exit pays off in performance too</a></li>
154
+ <li><a href="https://world.hey.com/dhh/we-have-left-the-cloud-251760fb" target="_blank" rel="noopener">We have left the cloud</a></li>
155
+ <li><a href="https://world.hey.com/dhh/the-big-cloud-exit-faq-20274010" target="_blank" rel="noopener">The Big Cloud FAQ</a></li>
156
+ <li><a href="https://world.hey.com/dhh/we-stand-to-save-7m-over-five-years-from-our-cloud-exit-53996caa" target="_blank" rel="noopener">We stand to save $7m over five years from our cloud exit</a></li>
157
+ <li><a href="https://world.hey.com/dhh/our-cloud-exit-has-already-yielded-1m-year-in-savings-db358dea" target="_blank" rel="noopener">Our cloud exit has already yielded $1m/year in savings</a></li>
158
+ <li><a href="https://world.hey.com/dhh/it-s-five-grand-a-day-to-miss-our-s3-exit-b8293563" target="_blank" rel="noopener">It's five grand a day to miss our S3 exit</a></li>
159
+ <li><a href="https://world.hey.com/dhh/our-cloud-exit-savings-will-now-top-ten-million-over-five-years-c7d9b5bd" target="_blank" rel="noopener">Our cloud-exit savings will now top ten million over five years</a></li>
160
+ <li><a href="https://world.hey.com/dhh/introducing-kamal-9330a267" target="_blank" rel="noopener">Introducing Kamal</a></li>
161
+ <li><a href="https://world.hey.com/dhh/kamal-1-0-5304ff9e" target="_blank" rel="noopener">Kamal 1.0</a></li>
162
+ <li><a href="https://world.hey.com/dhh/kamal-2-thou-need-not-paas-c9e8bd53" target="_blank" rel="noopener">Kamal 2: Thou need not PaaS</a></li>
163
+ <li><a href="https://world.hey.com/dhh/our-switch-to-kamal-is-complete-8e0de22e" target="_blank" rel="noopener">Our switch to Kamal is complete</a></li>
164
+ <li><a href="https://world.hey.com/dhh/keeping-the-lights-on-while-leaving-the-cloud-be7c2d67" target="_blank" rel="noopener">Keeping the lights on while leaving the cloud</a></li>
165
+ <li><a href="https://dev.37signals.com/bringing-our-apps-back-home/" target="_blank" rel="noopener">De-cloud and de-k8s — bringing our apps back home</a></li>
166
+ <li><a href="https://world.hey.com/dhh/servers-can-last-a-long-time-165c955c" target="_blank" rel="noopener">Servers can last a long time</a></li>
167
+ <li><a href="https://world.hey.com/dhh/don-t-be-fooled-by-serverless-776cd730" target="_blank" rel="noopener">Don’t be fooled by serverless</a></li>
168
+ <li><a href="https://world.hey.com/dhh/the-only-thing-worse-than-cloud-pricing-is-the-enterprisey-alternatives-854e98f3" target="_blank" rel="noopener">The only thing worse than cloud pricing is the enterprisey alternatives</a></li>
169
+ <li><a href="https://world.hey.com/dhh/sovereign-clouds-661eb5e4" target="_blank" rel="noopener">Sovereign clouds</a></li>
170
+ </ul>
171
+ </div>
172
+ </div>
173
+
174
+ <div class="prose space-bottom--xxx-large space-top--x-large">
175
+ <div class="prose__content">
176
+ <h2>Our cloud exit made headlines</h2>
177
+ <ul>
178
+ <li><a href="https://www.theregister.com/2023/02/22/cloud_repatration_savings_calculated_basecamp/" target="_blank" rel="noopener">The Register: Save $7 million on cloud by spending $600k on servers, says 37signals’ David Heinemeier Hansson</a></li>
179
+ <li><a href="https://www.techspot.com/news/97300-leaving-cloud-basecamp-spent-32-million-year-rent.html" target="_blank" rel="noopener">Techspot: Basecamp decided to leave the cloud after spending $3.2 million in one year</a></li>
180
+ <li><a href="https://techcrunch.com/2022/10/22/could-machine-learning-refresh-the-cloud-debate/" target="_blank" rel="noopener">TechCrunch: Could machine learning refresh the cloud debate?</a></li>
181
+ <li><a href="https://www.datacenterdynamics.com/en/news/37signals-expects-to-save-7m-over-five-years-after-moving-off-of-the-cloud/" target="_blank" rel="noopener">Data Centre Dynamics: 37signals expects to save $7m over five years after moving off of the cloud</a></li>
182
+ <li><a href="https://www.networkworld.com/article/3691629/cloud-vs-on-prem-saas-vendor-37-signals-bails-out-of-the-public-cloud.html" target="_blank" rel="noopener">Network World: Cloud vs on-prem: SaaS vendor 37signals bails out of the public cloud</a></li>
183
+ <li><a href="https://medium.com/@sankarsonbanerjee/leaving-the-cloud-eccbecc9a3d6" target="_blank" rel="noopener">Banerjee: Leaving the Cloud</a></li>
184
+ <li><a href="https://www.itweb.co.za/content/WnxpEv4YOE97V8XL" target="_blank" rel="noopener">IT Web: Why cloud isn’t always the answer</a></li>
185
+ </ul>
186
+ </div>
187
+ </div>
188
+
189
+
190
+ </main>
191
+
192
+ <footer class="footer">
193
+
194
+
195
+
196
+ <div class="footer__legal">
197
+ <p>
198
+ <a href="enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
199
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
200
+ <strong>Basecamp</strong>
201
+ </a>
202
+ <span>is designed, built, and backed by</span>
203
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
204
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
205
+ <strong>37signals</strong>
206
+ </a>
207
+ </p>
208
+ <ul>
209
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
210
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
211
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
212
+ <li>&copy; 2025 37signals LLC</li>
213
+ </ul>
214
+ </div>
215
+ </footer>
216
+
217
+
218
+ <dialog class="modal">
219
+ <div class="modal__backdrop"></div>
220
+ <div class="modal__container"></div>
221
+ </dialog>
222
+
223
+
224
+ </body>
225
+
226
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/community/index.html ADDED
@@ -0,0 +1,232 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Get more out of your Basecamp experience</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="You’re invited to the Basecamp community: the place where long-time users and folks brand new to the platform exchange ideas about improving the way they work.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Get more out of your Basecamp experience">
28
+ <meta property="og:description" content="You’re invited to the Basecamp community: the place where long-time users and folks brand new to the platform exchange ideas about improving the way they work.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/community.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/community/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Get more out of your Basecamp experience">
34
+ <meta name="twitter:description" content="You’re invited to the Basecamp community: the place where long-time users and folks brand new to the platform exchange ideas about improving the way they work.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/community.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/community/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Get more out of your Basecamp experience",
53
+ "description": "You’re invited to the Basecamp community: the place where long-time users and folks brand new to the platform exchange ideas about improving the way they work.",
54
+ "url": "https://basecamp.com/community/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/community.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="index.html">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <nav class="nav-basic">
110
+ <div class="nav-basic__logo">
111
+ <a href="../enterprise-extravaganza" aria-label="Basecamp">
112
+ <svg height="34" viewBox="0 0 39 34" width="39" xmlns="http://www.w3.org/2000/svg"><path d="m20.5393 33.9981c-6.3568.0838-12.43682-2.5964-16.66317-7.3455-.45141-.5014-.58696-1.212-.35181-1.8443 1.14073-3.0704 4.26441-10.2133 8.16638-10.2346 1.9829 0 3.4648 1.5778 4.6589 2.8358.3959.439.8197.8521 1.2686 1.2367 1.6755-2.1195 3.0728-4.4448 4.1578-6.919.4499-.8547 1.491-1.2064 2.367-.7997s1.2792 1.429.9166 2.3242c-4.2644 9.1365-6.5459 9.1365-7.2921 9.1365-1.6631 0-2.8678-1.2793-4.0299-2.5053-.5224-.5544-1.6098-1.7058-2.0256-1.7058-.9275.1599-2.94245 3.3476-4.39235 6.8444 3.49355 3.5078 8.27005 5.4338 13.21965 5.3305 7.1536 0 12.4948-1.951 14.7976-5.3305-.7889-9.0299-5.7996-21.4074-14.7976-21.4074-7.6226 0-13.35824 5.33052-17.05763 15.7784-.37354.8821-1.36908 1.3212-2.27239 1.0022-.903309-.319-1.402372-1.2858-1.1391428-2.2069 4.2644228-12.06836 11.1514628-18.1878 20.4691628-18.1878 12.1643 0 17.804 15.5438 18.4543 25.352.0273.3706-.0542.7411-.2345 1.0661-2.8359 4.8721-9.3071 7.58-18.2198 7.58z" fill="currentColor"/></svg>
113
+ <span>Basecamp</span>
114
+ </a>
115
+ </div>
116
+
117
+
118
+
119
+ </nav>
120
+
121
+
122
+
123
+
124
+ <main class="main main--basic">
125
+
126
+ <div class="statement statement--full-width statement--align-center">
127
+ <section>
128
+ <header>
129
+ <h1>Get more out of your Basecamp experience</h1>
130
+ </header>
131
+ <article>
132
+ <p><strong>You’re invited to the Basecamp community:</strong> the place where<br> long-time users and folks new to the platform exchange<br> ideas about improving the way they work.</p>
133
+ </article>
134
+ </section>
135
+ </div>
136
+
137
+ <div class="image space-top--neutral">
138
+ <figure>
139
+ <img src="../assets/images/community/community-home.png" alt="">
140
+ </figure>
141
+ </div>
142
+
143
+ <div class="prose space-top--xx-large">
144
+ <div class="prose__content">
145
+ <h2>Meet people just like you</h2>
146
+ <p>You’ll learn from small teams helping each other stay on top of projects, new businesses showing how they bring calm to a growing team, and even non-profit groups like teachers using Basecamp to coordinate projects between staff and parents. They get to know one another through check-ins about what they did last weekend and even updates about their pets.</p>
147
+ </div>
148
+ </div>
149
+
150
+ <div class="image space-top--neutral">
151
+ <figure>
152
+ <img src="../assets/images/community/community-hq.png" alt="">
153
+ </figure>
154
+ </div>
155
+
156
+ <div class="prose space-top--neutral">
157
+ <div class="prose__content">
158
+ <p>We host live video AMAs with members of the 37signals team, post spotlights of community members to hear the stories behind why and how they use Basecamp, and hang out at the Watercooler to banter, brainstorm, and dish about recent updates.</p>
159
+ </div>
160
+ </div>
161
+
162
+ <div class="prose space-top--xx-large">
163
+ <div class="prose__content">
164
+ <h2>Get in on the conversation</h2>
165
+ <p>Since community members are often the first to know about updates and deployments, their feedback about how the features work is important to us. <strong>Your experiences make an impact on the products we create</strong>.</p>
166
+ <figure class="prose__figure">
167
+ <img src="../assets/images/community/community-conversation.png" alt="">
168
+ </figure>
169
+ </div>
170
+ </div>
171
+
172
+ <div class="prose space-top--xx-large">
173
+ <div class="prose__content">
174
+ <h2>The occasional bonus&hellip;?</h2>
175
+ <p>Community members sometimes find exclusive sneak peeks of features we’re working on <u>before they’re released to the general public</u>. 🤫</p>
176
+ </div>
177
+ </div>
178
+
179
+ <div class="image space-top--neutral">
180
+ <figure>
181
+ <img src="../assets/images/community/community-exclusive-1.png" alt="">
182
+ </figure>
183
+ <figure>
184
+ <img src="../assets/images/community/community-exclusive-2.png" alt="">
185
+ </figure>
186
+ </div>
187
+
188
+ <div class="prose space-bottom--xxx-large space-top--xx-large">
189
+ <div class="prose__content">
190
+ <h2>Ready to join?</h2>
191
+ <p><a href="https://37signals.typeform.com/community">Head to this link</a>, answer a few short questions, and we’ll send you an invitation to join the community account. We hope you and your team find it a fun and useful place to hang out!</p>
192
+ </div>
193
+ </div>
194
+
195
+
196
+ </main>
197
+
198
+ <footer class="footer">
199
+
200
+
201
+
202
+ <div class="footer__legal">
203
+ <p>
204
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
205
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
206
+ <strong>Basecamp</strong>
207
+ </a>
208
+ <span>is designed, built, and backed by</span>
209
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
210
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
211
+ <strong>37signals</strong>
212
+ </a>
213
+ </p>
214
+ <ul>
215
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
216
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
217
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
218
+ <li>&copy; 2025 37signals LLC</li>
219
+ </ul>
220
+ </div>
221
+ </footer>
222
+
223
+
224
+ <dialog class="modal">
225
+ <div class="modal__backdrop"></div>
226
+ <div class="modal__container"></div>
227
+ </dialog>
228
+
229
+
230
+ </body>
231
+
232
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/community?utm_source=newsletter ADDED
@@ -0,0 +1,232 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Get more out of your Basecamp experience</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="You’re invited to the Basecamp community: the place where long-time users and folks brand new to the platform exchange ideas about improving the way they work.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Get more out of your Basecamp experience">
28
+ <meta property="og:description" content="You’re invited to the Basecamp community: the place where long-time users and folks brand new to the platform exchange ideas about improving the way they work.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/community.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/community/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Get more out of your Basecamp experience">
34
+ <meta name="twitter:description" content="You’re invited to the Basecamp community: the place where long-time users and folks brand new to the platform exchange ideas about improving the way they work.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/community.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/community/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Get more out of your Basecamp experience",
53
+ "description": "You’re invited to the Basecamp community: the place where long-time users and folks brand new to the platform exchange ideas about improving the way they work.",
54
+ "url": "https://basecamp.com/community/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/community.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="community/index.html">
69
+ <link rel="icon" href="assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <nav class="nav-basic">
110
+ <div class="nav-basic__logo">
111
+ <a href="enterprise-extravaganza" aria-label="Basecamp">
112
+ <svg height="34" viewBox="0 0 39 34" width="39" xmlns="http://www.w3.org/2000/svg"><path d="m20.5393 33.9981c-6.3568.0838-12.43682-2.5964-16.66317-7.3455-.45141-.5014-.58696-1.212-.35181-1.8443 1.14073-3.0704 4.26441-10.2133 8.16638-10.2346 1.9829 0 3.4648 1.5778 4.6589 2.8358.3959.439.8197.8521 1.2686 1.2367 1.6755-2.1195 3.0728-4.4448 4.1578-6.919.4499-.8547 1.491-1.2064 2.367-.7997s1.2792 1.429.9166 2.3242c-4.2644 9.1365-6.5459 9.1365-7.2921 9.1365-1.6631 0-2.8678-1.2793-4.0299-2.5053-.5224-.5544-1.6098-1.7058-2.0256-1.7058-.9275.1599-2.94245 3.3476-4.39235 6.8444 3.49355 3.5078 8.27005 5.4338 13.21965 5.3305 7.1536 0 12.4948-1.951 14.7976-5.3305-.7889-9.0299-5.7996-21.4074-14.7976-21.4074-7.6226 0-13.35824 5.33052-17.05763 15.7784-.37354.8821-1.36908 1.3212-2.27239 1.0022-.903309-.319-1.402372-1.2858-1.1391428-2.2069 4.2644228-12.06836 11.1514628-18.1878 20.4691628-18.1878 12.1643 0 17.804 15.5438 18.4543 25.352.0273.3706-.0542.7411-.2345 1.0661-2.8359 4.8721-9.3071 7.58-18.2198 7.58z" fill="currentColor"/></svg>
113
+ <span>Basecamp</span>
114
+ </a>
115
+ </div>
116
+
117
+
118
+
119
+ </nav>
120
+
121
+
122
+
123
+
124
+ <main class="main main--basic">
125
+
126
+ <div class="statement statement--full-width statement--align-center">
127
+ <section>
128
+ <header>
129
+ <h1>Get more out of your Basecamp experience</h1>
130
+ </header>
131
+ <article>
132
+ <p><strong>You’re invited to the Basecamp community:</strong> the place where<br> long-time users and folks new to the platform exchange<br> ideas about improving the way they work.</p>
133
+ </article>
134
+ </section>
135
+ </div>
136
+
137
+ <div class="image space-top--neutral">
138
+ <figure>
139
+ <img src="assets/images/community/community-home.png" alt="">
140
+ </figure>
141
+ </div>
142
+
143
+ <div class="prose space-top--xx-large">
144
+ <div class="prose__content">
145
+ <h2>Meet people just like you</h2>
146
+ <p>You’ll learn from small teams helping each other stay on top of projects, new businesses showing how they bring calm to a growing team, and even non-profit groups like teachers using Basecamp to coordinate projects between staff and parents. They get to know one another through check-ins about what they did last weekend and even updates about their pets.</p>
147
+ </div>
148
+ </div>
149
+
150
+ <div class="image space-top--neutral">
151
+ <figure>
152
+ <img src="assets/images/community/community-hq.png" alt="">
153
+ </figure>
154
+ </div>
155
+
156
+ <div class="prose space-top--neutral">
157
+ <div class="prose__content">
158
+ <p>We host live video AMAs with members of the 37signals team, post spotlights of community members to hear the stories behind why and how they use Basecamp, and hang out at the Watercooler to banter, brainstorm, and dish about recent updates.</p>
159
+ </div>
160
+ </div>
161
+
162
+ <div class="prose space-top--xx-large">
163
+ <div class="prose__content">
164
+ <h2>Get in on the conversation</h2>
165
+ <p>Since community members are often the first to know about updates and deployments, their feedback about how the features work is important to us. <strong>Your experiences make an impact on the products we create</strong>.</p>
166
+ <figure class="prose__figure">
167
+ <img src="assets/images/community/community-conversation.png" alt="">
168
+ </figure>
169
+ </div>
170
+ </div>
171
+
172
+ <div class="prose space-top--xx-large">
173
+ <div class="prose__content">
174
+ <h2>The occasional bonus&hellip;?</h2>
175
+ <p>Community members sometimes find exclusive sneak peeks of features we’re working on <u>before they’re released to the general public</u>. 🤫</p>
176
+ </div>
177
+ </div>
178
+
179
+ <div class="image space-top--neutral">
180
+ <figure>
181
+ <img src="assets/images/community/community-exclusive-1.png" alt="">
182
+ </figure>
183
+ <figure>
184
+ <img src="assets/images/community/community-exclusive-2.png" alt="">
185
+ </figure>
186
+ </div>
187
+
188
+ <div class="prose space-bottom--xxx-large space-top--xx-large">
189
+ <div class="prose__content">
190
+ <h2>Ready to join?</h2>
191
+ <p><a href="https://37signals.typeform.com/community">Head to this link</a>, answer a few short questions, and we’ll send you an invitation to join the community account. We hope you and your team find it a fun and useful place to hang out!</p>
192
+ </div>
193
+ </div>
194
+
195
+
196
+ </main>
197
+
198
+ <footer class="footer">
199
+
200
+
201
+
202
+ <div class="footer__legal">
203
+ <p>
204
+ <a href="enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
205
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
206
+ <strong>Basecamp</strong>
207
+ </a>
208
+ <span>is designed, built, and backed by</span>
209
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
210
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
211
+ <strong>37signals</strong>
212
+ </a>
213
+ </p>
214
+ <ul>
215
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
216
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
217
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
218
+ <li>&copy; 2025 37signals LLC</li>
219
+ </ul>
220
+ </div>
221
+ </footer>
222
+
223
+
224
+ <dialog class="modal">
225
+ <div class="modal__backdrop"></div>
226
+ <div class="modal__container"></div>
227
+ </dialog>
228
+
229
+
230
+ </body>
231
+
232
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/community?utm_source=newsletter&utm_medium=email&utm_campaign=whats_new_2023_09_18 ADDED
@@ -0,0 +1,232 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Get more out of your Basecamp experience</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="You’re invited to the Basecamp community: the place where long-time users and folks brand new to the platform exchange ideas about improving the way they work.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Get more out of your Basecamp experience">
28
+ <meta property="og:description" content="You’re invited to the Basecamp community: the place where long-time users and folks brand new to the platform exchange ideas about improving the way they work.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/community.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/community/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Get more out of your Basecamp experience">
34
+ <meta name="twitter:description" content="You’re invited to the Basecamp community: the place where long-time users and folks brand new to the platform exchange ideas about improving the way they work.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/community.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/community/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Get more out of your Basecamp experience",
53
+ "description": "You’re invited to the Basecamp community: the place where long-time users and folks brand new to the platform exchange ideas about improving the way they work.",
54
+ "url": "https://basecamp.com/community/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/community.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="community/index.html">
69
+ <link rel="icon" href="assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <nav class="nav-basic">
110
+ <div class="nav-basic__logo">
111
+ <a href="enterprise-extravaganza" aria-label="Basecamp">
112
+ <svg height="34" viewBox="0 0 39 34" width="39" xmlns="http://www.w3.org/2000/svg"><path d="m20.5393 33.9981c-6.3568.0838-12.43682-2.5964-16.66317-7.3455-.45141-.5014-.58696-1.212-.35181-1.8443 1.14073-3.0704 4.26441-10.2133 8.16638-10.2346 1.9829 0 3.4648 1.5778 4.6589 2.8358.3959.439.8197.8521 1.2686 1.2367 1.6755-2.1195 3.0728-4.4448 4.1578-6.919.4499-.8547 1.491-1.2064 2.367-.7997s1.2792 1.429.9166 2.3242c-4.2644 9.1365-6.5459 9.1365-7.2921 9.1365-1.6631 0-2.8678-1.2793-4.0299-2.5053-.5224-.5544-1.6098-1.7058-2.0256-1.7058-.9275.1599-2.94245 3.3476-4.39235 6.8444 3.49355 3.5078 8.27005 5.4338 13.21965 5.3305 7.1536 0 12.4948-1.951 14.7976-5.3305-.7889-9.0299-5.7996-21.4074-14.7976-21.4074-7.6226 0-13.35824 5.33052-17.05763 15.7784-.37354.8821-1.36908 1.3212-2.27239 1.0022-.903309-.319-1.402372-1.2858-1.1391428-2.2069 4.2644228-12.06836 11.1514628-18.1878 20.4691628-18.1878 12.1643 0 17.804 15.5438 18.4543 25.352.0273.3706-.0542.7411-.2345 1.0661-2.8359 4.8721-9.3071 7.58-18.2198 7.58z" fill="currentColor"/></svg>
113
+ <span>Basecamp</span>
114
+ </a>
115
+ </div>
116
+
117
+
118
+
119
+ </nav>
120
+
121
+
122
+
123
+
124
+ <main class="main main--basic">
125
+
126
+ <div class="statement statement--full-width statement--align-center">
127
+ <section>
128
+ <header>
129
+ <h1>Get more out of your Basecamp experience</h1>
130
+ </header>
131
+ <article>
132
+ <p><strong>You’re invited to the Basecamp community:</strong> the place where<br> long-time users and folks new to the platform exchange<br> ideas about improving the way they work.</p>
133
+ </article>
134
+ </section>
135
+ </div>
136
+
137
+ <div class="image space-top--neutral">
138
+ <figure>
139
+ <img src="assets/images/community/community-home.png" alt="">
140
+ </figure>
141
+ </div>
142
+
143
+ <div class="prose space-top--xx-large">
144
+ <div class="prose__content">
145
+ <h2>Meet people just like you</h2>
146
+ <p>You’ll learn from small teams helping each other stay on top of projects, new businesses showing how they bring calm to a growing team, and even non-profit groups like teachers using Basecamp to coordinate projects between staff and parents. They get to know one another through check-ins about what they did last weekend and even updates about their pets.</p>
147
+ </div>
148
+ </div>
149
+
150
+ <div class="image space-top--neutral">
151
+ <figure>
152
+ <img src="assets/images/community/community-hq.png" alt="">
153
+ </figure>
154
+ </div>
155
+
156
+ <div class="prose space-top--neutral">
157
+ <div class="prose__content">
158
+ <p>We host live video AMAs with members of the 37signals team, post spotlights of community members to hear the stories behind why and how they use Basecamp, and hang out at the Watercooler to banter, brainstorm, and dish about recent updates.</p>
159
+ </div>
160
+ </div>
161
+
162
+ <div class="prose space-top--xx-large">
163
+ <div class="prose__content">
164
+ <h2>Get in on the conversation</h2>
165
+ <p>Since community members are often the first to know about updates and deployments, their feedback about how the features work is important to us. <strong>Your experiences make an impact on the products we create</strong>.</p>
166
+ <figure class="prose__figure">
167
+ <img src="assets/images/community/community-conversation.png" alt="">
168
+ </figure>
169
+ </div>
170
+ </div>
171
+
172
+ <div class="prose space-top--xx-large">
173
+ <div class="prose__content">
174
+ <h2>The occasional bonus&hellip;?</h2>
175
+ <p>Community members sometimes find exclusive sneak peeks of features we’re working on <u>before they’re released to the general public</u>. 🤫</p>
176
+ </div>
177
+ </div>
178
+
179
+ <div class="image space-top--neutral">
180
+ <figure>
181
+ <img src="assets/images/community/community-exclusive-1.png" alt="">
182
+ </figure>
183
+ <figure>
184
+ <img src="assets/images/community/community-exclusive-2.png" alt="">
185
+ </figure>
186
+ </div>
187
+
188
+ <div class="prose space-bottom--xxx-large space-top--xx-large">
189
+ <div class="prose__content">
190
+ <h2>Ready to join?</h2>
191
+ <p><a href="https://37signals.typeform.com/community">Head to this link</a>, answer a few short questions, and we’ll send you an invitation to join the community account. We hope you and your team find it a fun and useful place to hang out!</p>
192
+ </div>
193
+ </div>
194
+
195
+
196
+ </main>
197
+
198
+ <footer class="footer">
199
+
200
+
201
+
202
+ <div class="footer__legal">
203
+ <p>
204
+ <a href="enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
205
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
206
+ <strong>Basecamp</strong>
207
+ </a>
208
+ <span>is designed, built, and backed by</span>
209
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
210
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
211
+ <strong>37signals</strong>
212
+ </a>
213
+ </p>
214
+ <ul>
215
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
216
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
217
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
218
+ <li>&copy; 2025 37signals LLC</li>
219
+ </ul>
220
+ </div>
221
+ </footer>
222
+
223
+
224
+ <dialog class="modal">
225
+ <div class="modal__backdrop"></div>
226
+ <div class="modal__container"></div>
227
+ </dialog>
228
+
229
+
230
+ </body>
231
+
232
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/customers/index.html ADDED
The diff for this file is too large to render. See raw diff
 
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/discounts/index.html ADDED
@@ -0,0 +1,198 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Basecamp discounts for teachers, students, and non-profits</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="Basecamp offers free accounts for teachers and students, and discounted accounts for non-profits.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Basecamp discounts for teachers, students, and non-profits">
28
+ <meta property="og:description" content="Basecamp offers free accounts for teachers and students, and discounted accounts for non-profits.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/discounts.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/discounts/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Basecamp discounts for teachers, students, and non-profits">
34
+ <meta name="twitter:description" content="Basecamp offers free accounts for teachers and students, and discounted accounts for non-profits.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/discounts.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/discounts/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Basecamp discounts for teachers, students, and non-profits",
53
+ "description": "Basecamp offers free accounts for teachers and students, and discounted accounts for non-profits.",
54
+ "url": "https://basecamp.com/discounts/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/discounts.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="index.html">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <nav class="nav-basic">
110
+ <div class="nav-basic__logo">
111
+ <a href="../enterprise-extravaganza" aria-label="Basecamp">
112
+ <svg height="34" viewBox="0 0 39 34" width="39" xmlns="http://www.w3.org/2000/svg"><path d="m20.5393 33.9981c-6.3568.0838-12.43682-2.5964-16.66317-7.3455-.45141-.5014-.58696-1.212-.35181-1.8443 1.14073-3.0704 4.26441-10.2133 8.16638-10.2346 1.9829 0 3.4648 1.5778 4.6589 2.8358.3959.439.8197.8521 1.2686 1.2367 1.6755-2.1195 3.0728-4.4448 4.1578-6.919.4499-.8547 1.491-1.2064 2.367-.7997s1.2792 1.429.9166 2.3242c-4.2644 9.1365-6.5459 9.1365-7.2921 9.1365-1.6631 0-2.8678-1.2793-4.0299-2.5053-.5224-.5544-1.6098-1.7058-2.0256-1.7058-.9275.1599-2.94245 3.3476-4.39235 6.8444 3.49355 3.5078 8.27005 5.4338 13.21965 5.3305 7.1536 0 12.4948-1.951 14.7976-5.3305-.7889-9.0299-5.7996-21.4074-14.7976-21.4074-7.6226 0-13.35824 5.33052-17.05763 15.7784-.37354.8821-1.36908 1.3212-2.27239 1.0022-.903309-.319-1.402372-1.2858-1.1391428-2.2069 4.2644228-12.06836 11.1514628-18.1878 20.4691628-18.1878 12.1643 0 17.804 15.5438 18.4543 25.352.0273.3706-.0542.7411-.2345 1.0661-2.8359 4.8721-9.3071 7.58-18.2198 7.58z" fill="currentColor"/></svg>
113
+ <span>Basecamp</span>
114
+ </a>
115
+ </div>
116
+
117
+
118
+
119
+ </nav>
120
+
121
+
122
+
123
+
124
+ <main class="main main--basic">
125
+
126
+ <div class="statement statement--full-width statement--align-center">
127
+ <section>
128
+ <header>
129
+ <h1>Basecamp discounts for teachers,<br> students, and non-profits</h1>
130
+ </header>
131
+ <article>
132
+ <p>We offer free accounts for teachers and students,<br> and discounted accounts for non-profits.</p>
133
+ </article>
134
+ </section>
135
+ </div>
136
+
137
+ <div class="prose space-bottom--xxx-large space-top--x-large">
138
+ <div class="prose__content">
139
+
140
+ <h2>For education (K-12 or University)</h2>
141
+ <p><strong class="highlight">Are you a teacher or student at a K-12 school or University? Do you agree to use this Basecamp account <em>only</em> for classroom work?</strong></p>
142
+ <p>If you answered <em>yes</em> to both, you qualify. To claim your discount:</p>
143
+ <p><strong>Step 1:</strong> <a href="../pricing/index.html">Sign up for Basecamp</a>.</p>
144
+ <p><strong>Step 2 (for teachers):</strong> Right after you sign up, <a href="mailto:teachers@basecamp.com">email us</a> from your school account with the name of your school, the class you teach, and proof you’re a teacher. We’ll apply the discount after we verify everything.</p>
145
+ <p><strong>Step 2 (for students):</strong> Right after you sign up, <a href="mailto:students@basecamp.com">email us</a> from your school account with the name of your school, what you’re studying, and when you expect to graduate. We’ll apply the discount after we verify everything.</p>
146
+
147
+ <h2>For non-profits</h2>
148
+ <p><strong class="highlight">Are you part of a 501(c)(3) non-profit organization? Do you agree to use this Basecamp account <em>only</em> for non-profit work?</strong></p>
149
+ <p>If you answered <em>yes</em> to both, you qualify. To claim your discount:</p>
150
+ <p><strong>Step 1:</strong> <a href="../pricing/index.html">Sign up for Basecamp</a>.</p>
151
+ <p><strong>Step 2:</strong> <a href="mailto:nonprofits@basecamp.com">Email us</a> a copy of your 501(c)(3) paperwork right after you sign up. We’ll apply the discount once we verify your status.</p>
152
+
153
+ <h2>Details, details</h2>
154
+ <p>We can only discount one account. If you need to support multiple groups, one account will give you everything you need to support them.</p>
155
+ <p>If you’ve been paying for Basecamp, we can’t refund or discount payments made before your discount started.</p>
156
+ <p>We reserve the right to end the discount program due to chronic abuse of the free accounts or other circumstances. If we do, anyone who is already participating will continue to have their discounts applied. We just won’t offer up new free or discounted accounts.</p>
157
+
158
+ </div>
159
+ </div>
160
+
161
+
162
+ </main>
163
+
164
+ <footer class="footer">
165
+
166
+
167
+
168
+ <div class="footer__legal">
169
+ <p>
170
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
171
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
172
+ <strong>Basecamp</strong>
173
+ </a>
174
+ <span>is designed, built, and backed by</span>
175
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
176
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
177
+ <strong>37signals</strong>
178
+ </a>
179
+ </p>
180
+ <ul>
181
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
182
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
183
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
184
+ <li>&copy; 2025 37signals LLC</li>
185
+ </ul>
186
+ </div>
187
+ </footer>
188
+
189
+
190
+ <dialog class="modal">
191
+ <div class="modal__backdrop"></div>
192
+ <div class="modal__container"></div>
193
+ </dialog>
194
+
195
+
196
+ </body>
197
+
198
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/discounts?utm_source=newsletter&utm_medium=email&utm_campaign=whats_new_2023_07_31 ADDED
@@ -0,0 +1,198 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Basecamp discounts for teachers, students, and non-profits</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="Basecamp offers free accounts for teachers and students, and discounted accounts for non-profits.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Basecamp discounts for teachers, students, and non-profits">
28
+ <meta property="og:description" content="Basecamp offers free accounts for teachers and students, and discounted accounts for non-profits.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/discounts.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/discounts/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Basecamp discounts for teachers, students, and non-profits">
34
+ <meta name="twitter:description" content="Basecamp offers free accounts for teachers and students, and discounted accounts for non-profits.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/discounts.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/discounts/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Basecamp discounts for teachers, students, and non-profits",
53
+ "description": "Basecamp offers free accounts for teachers and students, and discounted accounts for non-profits.",
54
+ "url": "https://basecamp.com/discounts/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/discounts.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="discounts/index.html">
69
+ <link rel="icon" href="assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <nav class="nav-basic">
110
+ <div class="nav-basic__logo">
111
+ <a href="enterprise-extravaganza" aria-label="Basecamp">
112
+ <svg height="34" viewBox="0 0 39 34" width="39" xmlns="http://www.w3.org/2000/svg"><path d="m20.5393 33.9981c-6.3568.0838-12.43682-2.5964-16.66317-7.3455-.45141-.5014-.58696-1.212-.35181-1.8443 1.14073-3.0704 4.26441-10.2133 8.16638-10.2346 1.9829 0 3.4648 1.5778 4.6589 2.8358.3959.439.8197.8521 1.2686 1.2367 1.6755-2.1195 3.0728-4.4448 4.1578-6.919.4499-.8547 1.491-1.2064 2.367-.7997s1.2792 1.429.9166 2.3242c-4.2644 9.1365-6.5459 9.1365-7.2921 9.1365-1.6631 0-2.8678-1.2793-4.0299-2.5053-.5224-.5544-1.6098-1.7058-2.0256-1.7058-.9275.1599-2.94245 3.3476-4.39235 6.8444 3.49355 3.5078 8.27005 5.4338 13.21965 5.3305 7.1536 0 12.4948-1.951 14.7976-5.3305-.7889-9.0299-5.7996-21.4074-14.7976-21.4074-7.6226 0-13.35824 5.33052-17.05763 15.7784-.37354.8821-1.36908 1.3212-2.27239 1.0022-.903309-.319-1.402372-1.2858-1.1391428-2.2069 4.2644228-12.06836 11.1514628-18.1878 20.4691628-18.1878 12.1643 0 17.804 15.5438 18.4543 25.352.0273.3706-.0542.7411-.2345 1.0661-2.8359 4.8721-9.3071 7.58-18.2198 7.58z" fill="currentColor"/></svg>
113
+ <span>Basecamp</span>
114
+ </a>
115
+ </div>
116
+
117
+
118
+
119
+ </nav>
120
+
121
+
122
+
123
+
124
+ <main class="main main--basic">
125
+
126
+ <div class="statement statement--full-width statement--align-center">
127
+ <section>
128
+ <header>
129
+ <h1>Basecamp discounts for teachers,<br> students, and non-profits</h1>
130
+ </header>
131
+ <article>
132
+ <p>We offer free accounts for teachers and students,<br> and discounted accounts for non-profits.</p>
133
+ </article>
134
+ </section>
135
+ </div>
136
+
137
+ <div class="prose space-bottom--xxx-large space-top--x-large">
138
+ <div class="prose__content">
139
+
140
+ <h2>For education (K-12 or University)</h2>
141
+ <p><strong class="highlight">Are you a teacher or student at a K-12 school or University? Do you agree to use this Basecamp account <em>only</em> for classroom work?</strong></p>
142
+ <p>If you answered <em>yes</em> to both, you qualify. To claim your discount:</p>
143
+ <p><strong>Step 1:</strong> <a href="pricing/index.html">Sign up for Basecamp</a>.</p>
144
+ <p><strong>Step 2 (for teachers):</strong> Right after you sign up, <a href="mailto:teachers@basecamp.com">email us</a> from your school account with the name of your school, the class you teach, and proof you’re a teacher. We’ll apply the discount after we verify everything.</p>
145
+ <p><strong>Step 2 (for students):</strong> Right after you sign up, <a href="mailto:students@basecamp.com">email us</a> from your school account with the name of your school, what you’re studying, and when you expect to graduate. We’ll apply the discount after we verify everything.</p>
146
+
147
+ <h2>For non-profits</h2>
148
+ <p><strong class="highlight">Are you part of a 501(c)(3) non-profit organization? Do you agree to use this Basecamp account <em>only</em> for non-profit work?</strong></p>
149
+ <p>If you answered <em>yes</em> to both, you qualify. To claim your discount:</p>
150
+ <p><strong>Step 1:</strong> <a href="pricing/index.html">Sign up for Basecamp</a>.</p>
151
+ <p><strong>Step 2:</strong> <a href="mailto:nonprofits@basecamp.com">Email us</a> a copy of your 501(c)(3) paperwork right after you sign up. We’ll apply the discount once we verify your status.</p>
152
+
153
+ <h2>Details, details</h2>
154
+ <p>We can only discount one account. If you need to support multiple groups, one account will give you everything you need to support them.</p>
155
+ <p>If you’ve been paying for Basecamp, we can’t refund or discount payments made before your discount started.</p>
156
+ <p>We reserve the right to end the discount program due to chronic abuse of the free accounts or other circumstances. If we do, anyone who is already participating will continue to have their discounts applied. We just won’t offer up new free or discounted accounts.</p>
157
+
158
+ </div>
159
+ </div>
160
+
161
+
162
+ </main>
163
+
164
+ <footer class="footer">
165
+
166
+
167
+
168
+ <div class="footer__legal">
169
+ <p>
170
+ <a href="enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
171
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
172
+ <strong>Basecamp</strong>
173
+ </a>
174
+ <span>is designed, built, and backed by</span>
175
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
176
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
177
+ <strong>37signals</strong>
178
+ </a>
179
+ </p>
180
+ <ul>
181
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
182
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
183
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
184
+ <li>&copy; 2025 37signals LLC</li>
185
+ </ul>
186
+ </div>
187
+ </footer>
188
+
189
+
190
+ <dialog class="modal">
191
+ <div class="modal__backdrop"></div>
192
+ <div class="modal__container"></div>
193
+ </dialog>
194
+
195
+
196
+ </body>
197
+
198
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/enterprise-extravaganza ADDED
@@ -0,0 +1,1063 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Project management software, online collaboration</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Project management software, online collaboration">
28
+ <meta property="og:description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Project management software, online collaboration">
34
+ <meta name="twitter:description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Project management software, online collaboration",
53
+ "description": "Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.",
54
+ "url": "https://basecamp.com/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="enterprise-extravaganza">
69
+ <link rel="icon" href="assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body class="body has-nav-phrase" data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <input id="nav-active" type="checkbox">
110
+
111
+ <label id="nav-underlay" for="nav-active"></label>
112
+
113
+ <nav class="nav">
114
+ <div class="nav__container">
115
+ <div class="nav__logo">
116
+ <a href="enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
117
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
118
+ <strong>Basecamp</strong>
119
+ </a>
120
+ <div class="nav__phrase">is the <span class="highlight"></span> <strong>project management system</strong> by</div>
121
+ <b class="icon icon--37signals">
122
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
123
+ <strong>37signals</strong>
124
+ </b>
125
+ </div>
126
+ <div class="nav__links">
127
+ <a href="customers/index.html" aria-label="Real world results">Real world results</a>
128
+ <a href="enterprise-extravaganza#features" aria-label="Features">Features</a>
129
+ <a href="paths/index.html" aria-label="Paths">Paths</a>
130
+ <a href="pricing/index.html" aria-label="Pricing">Pricing</a>
131
+ </div>
132
+ <div class="nav__buttons">
133
+ <a class="nav__button nav__button--launchpad" href="https://launchpad.37signals.com/signin" target="_blank" data-controller="signup" data-action="signup#trackLogin" aria-label="Sign in">Sign in</a>
134
+ <a class="nav__button nav__button--signup trk-package" id="sign-up-nav" href="pricing/index.html#packages" aria-label="Sign up free">Sign up free</a>
135
+ </div>
136
+ <label class="nav__toggle" for="nav-active" aria-label="Nav Toggle" tabindex="0"></label>
137
+ </div>
138
+ <div class="nav__mobile">
139
+ <a href="customers/index.html" aria-label="Real world results">Real world results</a>
140
+ <a href="enterprise-extravaganza#features" aria-label="Features">Features</a>
141
+ <a href="paths/index.html" aria-label="Paths">Paths</a>
142
+ <a href="pricing/index.html" aria-label="Pricing">Pricing</a>
143
+ </div>
144
+ </nav>
145
+
146
+
147
+
148
+
149
+ <main class="main">
150
+
151
+ <div class="illustration space-bottom--large">
152
+ <picture>
153
+ <source srcset="/assets/images/home/illustration-desktop.png" media="(min-width: 48em)">
154
+ <img src="assets/images/home/illustration-mobile.png" alt="Wrestling with projects? It doesn’t have to be this hard.">
155
+ </picture>
156
+ </div>
157
+
158
+ <div class="columns">
159
+ <section>
160
+ <header>
161
+ <h1>Wrestling with projects?<br> It doesn’t have to be this hard.</h1>
162
+ </header>
163
+ <article>
164
+ <div>
165
+ <p>There are lots of ways to manage projects. And there’s plenty of software promising to help. You’ve probably tried some. Yet, here you are.</p>
166
+ <p><strong>Unfortunately, most project management systems are either overwhelming, inadequate, bewildering, or chaotic. You know?</strong></p>
167
+ <p>Not Basecamp. Basecamp is refreshingly straightforward, with a 21-year track record to back it up. Longevity isn’t luck — it’s proof it works. And you’ll work better with it too.</p>
168
+ </div>
169
+ <div>
170
+ <p><strong>Basecamp is famously no-nonsense, effective, and reliable.</strong> The trifecta. It’s <a href="underdogs/index.html">designed for smaller, hungrier businesses</a>, not big, sluggish ones. <a href="customers/index.html">Over 30 pages of customer testimonials</a> detail how things run better on Basecamp.</p>
171
+ <p>So, we invite you to poke around, watch the video below, and <a href="pricing/index.html#packages">try Basecamp for free</a>. We’d be honored to have you as a customer. Thank you.</p>
172
+ <dl>
173
+ <dt><strong>Jason Fried</strong>, <a href="mailto:jason@basecamp.com">jason@basecamp.com</a></dt>
174
+ <dd><em>Co-founder &amp; CEO</em></dd>
175
+ </dl>
176
+ </div>
177
+ </article>
178
+ </section>
179
+ </div>
180
+
181
+ <div class="visual visual--walkthrough space-top--xxx-large">
182
+ <div class="visual__column">
183
+ <button class="visual__button modal-trigger" id="walkthrough-columns" data-type="video" data-event="Walkthrough: Columns" data-src="/videos/home/walkthrough.mp4" data-track="/videos/home/walkthrough.vtt">
184
+ <figure class="visual__figure">
185
+ <img src="videos/home/walkthrough-small.webp" width="2400" height="1326" alt="See how Basecamp works">
186
+ <span aria-hidden="true">Hit play to see how Basecamp is different</span>
187
+ </figure>
188
+ <div class="visual__play"></div>
189
+ </button>
190
+ </div>
191
+ </div>
192
+
193
+ <div class="statement space-top--xxx-large">
194
+ <section>
195
+ <header>
196
+ <h2 id="features"><a href="enterprise-extravaganza#features">Let’s walk through it.</a></h2>
197
+ </header>
198
+ </section>
199
+ </div>
200
+
201
+ <div class="headline space-top--large">
202
+ <header>
203
+ <h3 id="home"><a href="enterprise-extravaganza#home">10 seconds after you sign up, clarity sets in.</a></h3>
204
+ </header>
205
+ <article>
206
+ <p>The home screen organizes your projects, assignments, and upcoming events together on one screen. It’s your calm, comfortable, simple starting point every morning.</p>
207
+ </article>
208
+ </div>
209
+
210
+ <div class="visual space-top--large">
211
+ <div class="visual__column visual__column--4">
212
+ <button class="visual__button modal-trigger" id="whats-my-week-look-like" data-type="video" data-event="Home: What’s my week look like?" data-src="/videos/home/whats-my-week-look-like.mp4" data-track="/videos/home/whats-my-week-look-like.vtt">
213
+ <figure class="visual__figure">
214
+ <img src="videos/home/whats-my-week-look-like.webp" width="1260" height="1116" alt="View your schedule" loading="lazy">
215
+ <span aria-hidden="true">What’s my week look like?</span>
216
+ </figure>
217
+ <div class="visual__play"></div>
218
+ </button>
219
+ <button class="visual__button modal-trigger" id="whats-on-my-plate-today" data-type="video" data-event="Home: What’s on my plate today?" data-src="/videos/home/whats-on-my-plate-today.mp4" data-track="/videos/home/whats-on-my-plate-today.vtt">
220
+ <figure class="visual__figure">
221
+ <img src="videos/home/whats-on-my-plate-today.webp" width="1260" height="1116" alt="View your assignments" loading="lazy">
222
+ <span aria-hidden="true">What’s on my plate today?</span>
223
+ </figure>
224
+ <div class="visual__play"></div>
225
+ </button>
226
+ <aside class="visual__aside" aria-label="Home">
227
+ <p><strong>Each person gets their own home screen depending on which projects they have access to.</strong> They’ll only see their own assignments and events. And you can keep important projects close at hand by pinning them to the top.</p>
228
+ </aside>
229
+ </div>
230
+ <div class="visual__column visual__column--8">
231
+ <button class="visual__button modal-trigger" id="which-projects-am-i-on" data-type="video" data-event="Home: Which projects am I on?" data-src="/videos/home/which-projects-am-i-on.mp4" data-track="/videos/home/which-projects-am-i-on.vtt">
232
+ <figure class="visual__figure">
233
+ <img src="videos/home/which-projects-am-i-on.webp" width="2400" height="2854" alt="View projects on the home screen" loading="lazy">
234
+ <span aria-hidden="true">Which projects am I on?</span>
235
+ </figure>
236
+ <div class="visual__play"></div>
237
+ </button>
238
+ </div>
239
+ </div>
240
+
241
+ <div class="headline space-top--xxx-large">
242
+ <header>
243
+ <h3 id="projects"><a href="enterprise-extravaganza#projects">Projects get teams — and keep teams — organized.</a></h3>
244
+ </header>
245
+ <article>
246
+ <p>A project is where the tasks, discussions, deliverables, and decisions happen. Projects hold everything — and everyone — together in one tidy, predictably structured place.</p>
247
+ </article>
248
+ </div>
249
+
250
+ <div class="visual space-top--large">
251
+ <div class="visual__column visual__column--6">
252
+ <button class="visual__button modal-trigger" id="all-in-one-toolbox" data-type="video" data-event="Projects: A project page organizes everything" data-src="/videos/home/all-in-one-toolbox.mp4" data-track="/videos/home/all-in-one-toolbox.vtt">
253
+ <figure class="visual__figure">
254
+ <img src="videos/home/all-in-one-toolbox.webp" width="2400" height="2582" alt="A Basecamp project page" loading="lazy">
255
+ <span aria-hidden="true">A project page organizes everything</span>
256
+ </figure>
257
+ <div class="visual__play"></div>
258
+ </button>
259
+ <aside class="visual__aside" aria-label="Projects">
260
+ <p><strong>Make as many projects as you’d like.</strong> We run dozens at once in our own Basecamp account. For example, one for a web site redesign, <a href="enterprise-extravaganza#organizing-a-meet-up" class="modal-trigger" id="organizing-a-meet-up" data-type="video" data-event="Organizing a Meet-up" data-src="/videos/organizing-a-meet-up/organizing-a-meet-up.mp4">one for planning an upcoming offsite</a>, one for working with our accountants, and one just for the executive team to plan strategy, etc.</p>
261
+ </aside>
262
+ </div>
263
+ <div class="visual__column visual__column--6 visual__column--grid">
264
+ <button class="visual__button modal-trigger" id="track-tasks" data-type="video" data-event="Projects: What to do + who’s doing?" data-src="/videos/home/track-tasks.mp4" data-track="/videos/home/track-tasks.vtt">
265
+ <figure class="visual__figure">
266
+ <img src="assets/images/screenshots/to-dos-thumbnail.webp" width="1200" height="900" alt="Track work with To-dos" loading="lazy">
267
+ <span aria-hidden="true">What to do + who’s doing?</span>
268
+ </figure>
269
+ <div class="visual__play"></div>
270
+ </button>
271
+ <button class="visual__button modal-trigger" id="launch-discussions" data-type="video" data-event="Projects: Who said what when?" data-src="/videos/home/launch-discussions.mp4" data-track="/videos/home/launch-discussions.vtt">
272
+ <figure class="visual__figure">
273
+ <img src="assets/images/screenshots/message-board-thumbnail.webp" width="1200" height="900" alt="Stay on topic with Messages" loading="lazy">
274
+ <span aria-hidden="true">Who said what when?</span>
275
+ </figure>
276
+ <div class="visual__play"></div>
277
+ </button>
278
+ <button class="visual__button modal-trigger" id="set-milestones" data-type="video" data-event="Projects: What’s due next?" data-src="/videos/home/set-milestones.mp4" data-track="/videos/home/set-milestones.vtt">
279
+ <figure class="visual__figure">
280
+ <img src="assets/images/screenshots/schedule-thumbnail.webp" width="1200" height="900" alt="Schedule so you don’t forget" loading="lazy">
281
+ <span aria-hidden="true">What’s due next?</span>
282
+ </figure>
283
+ <div class="visual__play"></div>
284
+ </button>
285
+ <button class="visual__button modal-trigger" id="store-assets" data-type="video" data-event="Projects: Where’s the latest version?" data-src="/videos/home/store-assets.mp4" data-track="/videos/home/store-assets.vtt">
286
+ <figure class="visual__figure">
287
+ <img src="assets/images/screenshots/docs-and-files-thumbnail.webp" width="1200" height="900" alt="Store, share, and discuss files" loading="lazy">
288
+ <span aria-hidden="true">Where’s the latest version?</span>
289
+ </figure>
290
+ <div class="visual__play"></div>
291
+ </button>
292
+ <button class="visual__button modal-trigger" id="hash-stuff-out" data-type="video" data-event="Projects: Got a quick question?" data-src="/videos/home/hash-stuff-out.mp4" data-track="/videos/home/hash-stuff-out.vtt">
293
+ <figure class="visual__figure">
294
+ <img src="assets/images/screenshots/chat-thumbnail.webp" width="1200" height="900" alt="Chat around the campfire" loading="lazy">
295
+ <span aria-hidden="true">Got a quick question?</span>
296
+ </figure>
297
+ <div class="visual__play"></div>
298
+ </button>
299
+ <button class="visual__button modal-trigger" id="run-workflows" data-type="video" data-event="Projects: How’s the process flowing?" data-src="/videos/home/run-workflows.mp4" data-track="/videos/home/run-workflows.vtt">
300
+ <figure class="visual__figure">
301
+ <img src="assets/images/screenshots/card-table-thumbnail.webp" width="1200" height="900" alt="Card Table is our unique take on Kanban" loading="lazy">
302
+ <span aria-hidden="true">How’s the process flowing?</span>
303
+ </figure>
304
+ <div class="visual__play"></div>
305
+ </button>
306
+ </div>
307
+ </div>
308
+
309
+ <div class="headline space-top--xxx-large">
310
+ <header>
311
+ <h3 id="reports"><a href="enterprise-extravaganza#reports">Reports give you confidence to hold people accountable.</a></h3>
312
+ </header>
313
+ <article>
314
+ <p>Basecamp’s reports aren’t numbers, percentages, or abstract representations — they’re the real work, actual evidence of progress being made (or not made).</p>
315
+ </article>
316
+ </div>
317
+
318
+ <div class="visual space-top--large">
319
+ <div class="visual__column visual__column--4">
320
+ <button class="visual__button modal-trigger" id="whats-overdue" data-type="video" data-event="Reports: What’s overdue?" data-src="/videos/home/whats-overdue.mp4" data-track="/videos/home/whats-overdue.vtt">
321
+ <figure class="visual__figure">
322
+ <img src="videos/home/whats-overdue.webp" width="1796" height="1304" alt="See everything that’s overdue" loading="lazy">
323
+ <span aria-hidden="true">What’s overdue?</span>
324
+ </figure>
325
+ <div class="visual__play"></div>
326
+ </button>
327
+ <button class="visual__button modal-trigger" id="how-much-time-have-we-spent" data-type="video" data-event="Reports: How much time have we spent?" data-src="/videos/home/how-much-time-have-we-spent.mp4" data-track="/videos/home/how-much-time-have-we-spent.vtt">
328
+ <figure class="visual__figure">
329
+ <img src="videos/home/how-much-time-have-we-spent.webp" width="1796" height="1304" alt="Track time directly in Basecamp" loading="lazy">
330
+ <span aria-hidden="true">How much time have we spent?</span>
331
+ </figure>
332
+ <div class="visual__play"></div>
333
+ </button>
334
+ <button class="visual__button modal-trigger" id="whos-responsible-for-what" data-type="video" data-event="Reports: Who’s responsible for what?" data-src="/videos/home/whos-responsible-for-what.mp4" data-track="/videos/home/whos-responsible-for-what.vtt">
335
+ <figure class="visual__figure">
336
+ <img src="videos/home/whos-responsible-for-what.webp" width="1796" height="1304" alt="Reports quickly cut across every project to give you quick insights" loading="lazy">
337
+ <span aria-hidden="true">Who’s responsible for what?</span>
338
+ </figure>
339
+ <div class="visual__play"></div>
340
+ </button>
341
+ </div>
342
+ <div class="visual__column visual__column--8">
343
+ <button class="visual__button modal-trigger" id="whats-actually-been-happening" data-type="video" data-event="Reports: What’s actually been happening?" data-src="/videos/home/whats-actually-been-happening.mp4" data-track="/videos/home/whats-actually-been-happening.vtt">
344
+ <figure class="visual__figure">
345
+ <img src="videos/home/whats-actually-been-happening.webp" width="2400" height="3028" alt="The micro-view of everything that happens across every project in real-time" loading="lazy">
346
+ <span aria-hidden="true">What’s actually been happening?</span>
347
+ </figure>
348
+ <div class="visual__play"></div>
349
+ </button>
350
+ </div>
351
+ </div>
352
+
353
+ <div class="headline space-top--xxx-large">
354
+ <header>
355
+ <h3 id="visualizations"><a href="enterprise-extravaganza#visualizations">Visualizations are for seeing, not squinting.</a></h3>
356
+ </header>
357
+ <article>
358
+ <p>Basecamp’s Lineup, Mission Control, and Hill Charts are visual tools that help you clearly see where projects really stand. Notice progress at a glance, know reality in an instant.</p>
359
+ </article>
360
+ </div>
361
+
362
+ <div class="visual space-top--large">
363
+ <div class="visual__column">
364
+ <button class="visual__button modal-trigger" id="how-far-along-are-we" data-type="video" data-event="Visualizations: How far along are we?" data-src="/videos/home/how-far-along-are-we.mp4" data-track="/videos/home/how-far-along-are-we.vtt">
365
+ <figure class="visual__figure">
366
+ <img src="videos/home/how-far-along-are-we.webp" width="3008" height="1504" alt="The Lineup shows you where every project stands, from start to finish, all at once" loading="lazy">
367
+ <span aria-hidden="true">How far along are we?</span>
368
+ </figure>
369
+ <div class="visual__play"></div>
370
+ </button>
371
+ </div>
372
+ <div class="visual__column visual__column--grid">
373
+ <button class="visual__button modal-trigger" id="how-are-we-feeling" data-type="video" data-event="Visualizations: How are we feeling?" data-src="/videos/home/how-are-we-feeling.mp4" data-track="/videos/home/how-are-we-feeling.vtt">
374
+ <figure class="visual__figure">
375
+ <img src="videos/home/how-are-we-feeling.webp" width="2400" height="1434" alt="Mission Control shows you which projects are on track and which ones need a helping hand" loading="lazy">
376
+ <span aria-hidden="true">How are we feeling?</span>
377
+ </figure>
378
+ <div class="visual__play"></div>
379
+ </button>
380
+ <button class="visual__button modal-trigger" id="what-still-needs-to-be-figured-out" data-type="video" data-event="Visualizations: What still needs to be figured out?" data-src="/videos/home/what-still-needs-to-be-figured-out.mp4" data-track="/videos/home/what-still-needs-to-be-figured-out.vtt">
381
+ <figure class="visual__figure">
382
+ <img src="videos/home/what-still-needs-to-be-figured-out.webp" width="2400" height="1434" alt="Hill Charts visually display the progress of your To-do list" loading="lazy">
383
+ <span aria-hidden="true">What still needs to be figured out?</span>
384
+ </figure>
385
+ <div class="visual__play"></div>
386
+ </button>
387
+ </div>
388
+ </div>
389
+
390
+ <div class="headline space-top--xxx-large">
391
+ <header>
392
+ <h3 id="notifications"><a href="enterprise-extravaganza#notifications">Ping! Hey! It’s for you.</a></h3>
393
+ </header>
394
+ <article>
395
+ <p>The Hey! menu aggregates your notifications in a never-annoying single menu. And “Pings”, our flavor of direct messages, let you kick off ad hoc chats 1:1 or in small groups.</p>
396
+ </article>
397
+ </div>
398
+
399
+ <div class="visual space-top--large">
400
+ <div class="visual__column visual__column--5">
401
+ <button class="visual__button modal-trigger" id="have-private-1-1-or-small-group-conversations" data-type="video" data-event="Notifications: Have private 1-1 or small group conversations" data-src="/videos/home/have-private-1-1-or-small-group-conversations.mp4" data-track="/videos/home/have-private-1-1-or-small-group-conversations.vtt">
402
+ <figure class="visual__figure">
403
+ <img src="videos/home/have-private-1-1-or-small-group-conversations.webp" width="2400" height="1830" alt="Pings let you kick off ad hoc chats 1:1 or in small groups" loading="lazy">
404
+ <span aria-hidden="true">Have private 1-1 or small group conversations</span>
405
+ </figure>
406
+ <div class="visual__play"></div>
407
+ </button>
408
+ <aside class="visual__aside" aria-label="Notifications">
409
+ <p><strong>Don’t have work chats via text or Whatsapp on your personal phone number.</strong> Keep work at work by having them in Basecamp instead.</p>
410
+ </aside>
411
+ </div>
412
+ <div class="visual__column visual__column--7">
413
+ <button class="visual__button modal-trigger" id="notifications-in-one-place" data-type="video" data-event="Notifications: Notifications in one place, not in your face" data-src="/videos/home/notifications-in-one-place.mp4" data-track="/videos/home/notifications-in-one-place.vtt">
414
+ <figure class="visual__figure">
415
+ <img src="videos/home/notifications-in-one-place.webp" width="2400" height="1830" alt="The Hey! menu aggregates all your notifications in a single menu" loading="lazy">
416
+ <span aria-hidden="true">Notifications in one place, not in your face</span>
417
+ </figure>
418
+ <div class="visual__play"></div>
419
+ </button>
420
+ </div>
421
+ </div>
422
+
423
+ <div class="headline space-top--xxx-large">
424
+ <header>
425
+ <h3 id="clients"><a href="enterprise-extravaganza#clients">Got clients? Be partners, not adversaries.</a></h3>
426
+ </header>
427
+ <article>
428
+ <p>Basecamp keeps both sides organized, everyone’s feedback on the record, and all decisions, approvals, files, tasks, deadlines, and communications safe and centralized.</p>
429
+ </article>
430
+ </div>
431
+
432
+ <div class="visual space-top--large">
433
+ <div class="visual__column visual__column--grid">
434
+ <button class="visual__button modal-trigger" id="you-decide-what-clients-can-see" data-type="video" data-event="Clients: Can the client see this?" data-src="/videos/home/you-decide-what-clients-can-see.mp4" data-track="/videos/home/you-decide-what-clients-can-see.vtt">
435
+ <figure class="visual__figure">
436
+ <img src="videos/home/you-decide-what-clients-can-see.webp" width="2400" height="1424" alt="You decide what your clients can see" loading="lazy">
437
+ <span aria-hidden="true">Can the client see this?</span>
438
+ </figure>
439
+ <div class="visual__play"></div>
440
+ </button>
441
+ <button class="visual__button modal-trigger" id="three-folders-for-you-one-for-them" data-type="video" data-event="Clients: Where’s the final version so we can show the client?" data-src="/videos/home/three-folders-for-you-one-for-them.mp4" data-track="/videos/home/three-folders-for-you-one-for-them.vtt">
442
+ <figure class="visual__figure">
443
+ <img src="videos/home/three-folders-for-you-one-for-them.webp" width="2400" height="1424" alt="Let clients grab the files they need without having to ask" loading="lazy">
444
+ <span aria-hidden="true">Where’s the final version so we can show the client?</span>
445
+ </figure>
446
+ <div class="visual__play"></div>
447
+ </button>
448
+ <button class="visual__button modal-trigger" id="keep-approvals-on-the-official-record" data-type="video" data-event="Clients: Did the client officially approve it?" data-src="/videos/home/keep-approvals-on-the-official-record.mp4" data-track="/videos/home/keep-approvals-on-the-official-record.vtt">
449
+ <figure class="visual__figure">
450
+ <img src="videos/home/keep-approvals-on-the-official-record.webp" width="2400" height="2108" alt="Keep client feedback on the official record" loading="lazy">
451
+ <span aria-hidden="true">Did the client officially approve it?</span>
452
+ </figure>
453
+ <div class="visual__play"></div>
454
+ </button>
455
+ <button class="visual__button modal-trigger" id="email-through-basecamp" data-type="video" data-event="Clients: Where’s the client’s email they sent?" data-src="/videos/home/email-through-basecamp.mp4" data-track="/videos/home/email-through-basecamp.vtt">
456
+ <figure class="visual__figure">
457
+ <img src="videos/home/email-through-basecamp.webp" width="2400" height="2108" alt="Clients can respond to messages right from their inbox" loading="lazy">
458
+ <span aria-hidden="true">Where’s the client’s email they sent?</span>
459
+ </figure>
460
+ <div class="visual__play"></div>
461
+ </button>
462
+ </div>
463
+ </div>
464
+
465
+ <div class="headline space-top--xxx-large">
466
+ <header>
467
+ <h3 id="yes"><a href="enterprise-extravaganza#yes">The answer is <span class="yes-label">YES!</span></a></h3>
468
+ </header>
469
+ <article>
470
+ <p>Can software be simple, straightforward, and easy, yet powerfully full-featured?<br> With Basecamp the answer is absolutely <strong>YES!</strong></p>
471
+ </article>
472
+ </div>
473
+
474
+ <div class="yes space-top--neutral">
475
+ <ul>
476
+ <li>Can I <strong>prevent our clients from seeing unfinished work?</strong></li>
477
+ <li>Can I <strong>link up files from Google Docs, Figma, Dropbox, Airtable, and other apps?</strong></li>
478
+ <li>Can I <strong>see everything I need to do on a single screen?</strong></li>
479
+ <li>Can I <strong>see everything that’s overdue on a single screen?</strong></li>
480
+ <li>Can I use Basecamp <strong>even if some of my team prefers just to use email?</strong></li>
481
+ <li>Can I <strong>see all the work that was completed on any given day?</strong></li>
482
+ <li>Can I <strong>set up projects that only some of my team can see?</strong></li>
483
+ <li>Can I <strong>see everything that’s happened across multiple projects in one place?</strong></li>
484
+ <li>Can I <strong>@mention someone so they’re notified about something?</strong></li>
485
+ <li>Can I <strong>see all the work someone’s done over a long period of time?</strong></li>
486
+ <li>Can I <strong>see everything that’s assigned to someone on a single page?</strong></li>
487
+ <li>Can I <strong>see exactly who worked on what today? Yesterday? Last week?</strong></li>
488
+ <li>Can I <strong>easily reference an entire conversation from a year ago?</strong></li>
489
+ <li>Can I <strong>follow a project quietly without receiving notifications?</strong></li>
490
+ <li>Can I <strong>assign tasks to multiple people at once?</strong></li>
491
+ <li>Can I <strong>see all our projects laid out on a visual timeline?</strong></li>
492
+ <li>Can I <strong>keep all the discussion about a to-do attached to that to-do?</strong></li>
493
+ <li>Can I <strong>follow-up directly with someone without anyone else knowing?</strong></li>
494
+ <li>Can <strong>our clients respond to our questions via email?</strong></li>
495
+ <li>Can <strong>our clients see a record of everything we’ve asked them?</strong></li>
496
+ <li>Can I <strong>organize ideas and setup workflows on a Kanban board?</strong></li>
497
+ <li>Can Basecamp <strong>tell me when someone completed an assignment?</strong></li>
498
+ <li>Can Basecamp <strong>help me get a client to approve a design?</strong></li>
499
+ <li>Can Basecamp <strong>help me hold my team accountable for deadlines?</strong></li>
500
+ <li>You <strong>wrote some <a href="books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18">books on how to run a business</a>, too, right?</strong></li>
501
+ </ul>
502
+ </div>
503
+
504
+ <div class="statement statement--gap-large space-top--xxx-large">
505
+ <section>
506
+ <header>
507
+ <h2 id="its-time"><a href="enterprise-extravaganza#its-time">You wouldn’t be here if the<br> way you’ve been working was working. It’s time for Basecamp.</a></h2>
508
+ </header>
509
+ <article>
510
+ <p>Team super busy, but running in circles? <strong>It’s time for Basecamp.</strong> Finding stuff easy to start, but hard to finish? <strong>It’s time for Basecamp.</strong> Things taking longer than they should? <strong>It’s time for Basecamp.</strong> Info increasingly scattered across different apps? <strong>It’s time for Basecamp.</strong> Subscription fees keep adding up?<br> <strong>It’s time for Basecamp.</strong> Growing into dysfunction? <strong>It’s time for Basecamp.</strong> Tired of looking disorganized in front of clients? <strong class="highlight highlight--time">It’s time for Basecamp.</strong></p>
511
+ </article>
512
+ </section>
513
+ </div>
514
+
515
+ <div class="headline space-top--xxx-large">
516
+ <header>
517
+ <h3 id="company-faqs"><a href="enterprise-extravaganza#company-faqs">I have questions about your company&hellip;</a></h3>
518
+ </header>
519
+ </div>
520
+
521
+ <div class="details space-top--medium">
522
+
523
+ <details id="trust">
524
+ <summary>
525
+ <p>How long have you been around? Can we trust you?</p>
526
+ </summary>
527
+ <article>
528
+ <p>The company that designed, owns, and operates Basecamp is called <a href="https://37signals.com" target="_blank">37signals</a>, and we’ve been around as a company since 1999. We launched Basecamp, the product, in 2004 and have been improving it weekly ever since. Running a sane, responsible, sustainable business is part of our commitment to you.</p>
529
+ <p>We’ve been <strong>profitable for 25 straight years, we have zero debt, we’re privately held, and built to stay, not exit.</strong> Our <a href="handbook">employee handbook</a> is also public for everyone to see how we run our business and treat our employees.</p>
530
+ <p>We’ve also written a number of <a href="books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18">bestselling books</a> (REWORK, Remote, It Doesn’t Have to Be Crazy at Work) as well. The books detail how we’ve built, and run, such a unique, long-lasting company in a field full of sameness and short-term thinking.</p>
531
+ <p>You can email Jason Fried, our Co-Founder and CEO, any time at <a href="mailto:jason@basecamp.com">jason@basecamp.com</a>. He doesn’t have an assistant, so he’ll read and respond to your emails personally.</p>
532
+ </article>
533
+ </details>
534
+
535
+ <details id="uptime">
536
+ <summary>
537
+ <p>What about reliability and uptime?</p>
538
+ </summary>
539
+ <article>
540
+ <p>We can make endless promises, but the numbers are what matter here. Our historical uptime over multiple decades is well over 99.99%, and you can see recent real-time history on our <a href="https://www.37status.com" target="_blank">Status Page</a>.</p>
541
+ </article>
542
+ </details>
543
+
544
+ <details id="refunds">
545
+ <summary>
546
+ <p>What’s your refund policy like?</p>
547
+ </summary>
548
+ <article>
549
+ <p>We aim to be fair and reasonable, just as we’d want to be treated. <a href="https://37signals.com/policies/refund/" target="_blank">Our refund policy</a> reflects that.</p>
550
+ </article>
551
+ </details>
552
+
553
+ <details id="questions">
554
+ <summary>
555
+ <p>Can I ask ownership a question directly?</p>
556
+ </summary>
557
+ <article>
558
+ <p><strong>Absolutely.</strong> Our Co-Founder and CEO (Jason Fried) is available direct at <a href="mailto:jason@basecamp.com">jason@basecamp.com</a>, and our other Co-Founder and CTO (David Heinemeier Hansson) is at <a href="mailto:david@basecamp.com">david@basecamp.com</a>. Please do reach out. They don’t have assistants or anyone who reads their emails, so you’ll hear from them directly.</p>
559
+ </article>
560
+ </details>
561
+
562
+ </div>
563
+
564
+ <div class="headline space-top--x-large">
565
+ <header>
566
+ <h3 id="security-faqs"><a href="enterprise-extravaganza#security-faqs">I have questions about security and our data&hellip;</a></h3>
567
+ </header>
568
+ </div>
569
+
570
+ <div class="details space-top--medium">
571
+
572
+ <details id="secure">
573
+ <summary>
574
+ <p>How secure is Basecamp?</p>
575
+ </summary>
576
+ <article>
577
+ <p>We have a <a href="https://37signals.com/policies/security/" target="_blank">full security write-up</a> available on the 37signals site. 37signals is the company behind Basecamp.</p>
578
+ </article>
579
+ </details>
580
+
581
+ <details id="backups">
582
+ <summary>
583
+ <p>Is our data backed up? How often?</p>
584
+ </summary>
585
+ <article>
586
+ <p>Data customers enter into Basecamp is stored in multiple, redundant data centers. That data is backed up several times a day, and copies of those backups are stored both locally and off-site to further reduce points of possible failure. Files customers upload are stored off-site and backed up to servers in a different geographic region.</p>
587
+ </article>
588
+ </details>
589
+
590
+ <details id="data-centers">
591
+ <summary>
592
+ <p>Where are the servers that store our data?</p>
593
+ </summary>
594
+ <article>
595
+ <p>Our servers are located in multiple data centers in the United States. We service customers from over 160 countries from these servers. We do not currently have data centers outside the US.</p>
596
+ </article>
597
+ </details>
598
+
599
+ <details id="custom-security-questionnaires">
600
+ <summary>
601
+ <p>Can you fill our custom security questionnaires?</p>
602
+ </summary>
603
+ <article>
604
+ <p>We don’t fill out custom security questionnaires, but we’ve <a href="https://37signals.com/policies/security/37signals%20Security%20Overview.pdf" target="_blank">prepared a summary security PDF</a> which you can provide to your IT staff.</p>
605
+ </article>
606
+ </details>
607
+
608
+ <details id="export-our-data">
609
+ <summary>
610
+ <p>Can I export our data if we ever want to leave?</p>
611
+ </summary>
612
+ <article>
613
+ <p><strong>Absolutely,</strong> you can do it as often as you’d like. Plus, it’s entirely self-service and easy so you don’t need to ask anyone for help or permission. Further, we provide it in a format that allows you to browse it in a web browser so it’s actually useful. <a href="https://3.basecamp-help.com/article/150-export-your-basecamp-data" target="_blank">Here’s how exporting works</a>.</p>
614
+ </article>
615
+ </details>
616
+
617
+ </div>
618
+
619
+ <div class="headline space-top--x-large">
620
+ <header>
621
+ <h3 id="other-faqs"><a href="enterprise-extravaganza#other-faqs">I have other questions&hellip;</a></h3>
622
+ </header>
623
+ </div>
624
+
625
+ <div class="details space-top--medium">
626
+
627
+ <details id="api">
628
+ <summary>
629
+ <p>Does Basecamp have an API? Can we integrate with Basecamp?</p>
630
+ </summary>
631
+ <article>
632
+ <p><strong>Yes,</strong> <a href="https://github.com/basecamp/bc3-api" target="_blank">Basecamp has a full-featured API (docs are hosted on GitHub)</a>. Hundreds of companies have written custom integrations, and <a href="integrations/index.html">our Integrations page</a> links up third-party solutions for invoicing, accounting, time tracking, reporting, planning, asset management, contracts, proposals, and more.</p>
633
+ </article>
634
+ </details>
635
+
636
+ <details id="customer-support">
637
+ <summary>
638
+ <p>What’s your customer support like? What if we need help?</p>
639
+ </summary>
640
+ <article>
641
+ <p>Our customer support is widely considered to be among the best of the best. Everyone who works on our support team are expert specialists who know Basecamp inside and out, many having been with us for years and years, some over a decade. Further, we occasionally cycle every employee through support — including our CEO — so everyone has a chance to directly interact with customers.</p>
642
+ <p>You can <a href="support/index.html">ask support a question</a>, or <a href="learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">watch tutorials</a>, or <a href="https://3.basecamp-help.com">review the help guides</a>, or <a href="classes/index.html">attend a live walkthrough class and Q&amp;A</a>.</p>
643
+ </article>
644
+ </details>
645
+
646
+ <details id="languages">
647
+ <summary>
648
+ <p>Is Basecamp available in languages other than English?</p>
649
+ </summary>
650
+ <article>
651
+ <p>Currently we only offer Basecamp’s interface in English, although we have people in over 160 countries writing and sharing in their own native languages using Basecamp.</p>
652
+ </article>
653
+ </details>
654
+
655
+ <details id="other-products">
656
+ <summary>
657
+ <p>If we go with Basecamp, will we still need stuff like Slack? Asana? Dropbox?</p>
658
+ </summary>
659
+ <article>
660
+ <p><strong>Nope,</strong> Basecamp replaces a whole set of separate products and saves you a ton of money. Basecamp has chat built in (no more Slack). Basecamp has exceptional task management in the form of to-dos and kanban-style Card Tables (no more Asana). And you can store and share all the files you need in a project (no more Dropbox). Basecamp also replaces document-based tools like Google Docs, Notion, etc. And yet, if you need to continue to use some of those tools, you can always link them up right from inside Basecamp using the Doors feature.</p>
661
+ </article>
662
+ </details>
663
+
664
+ <details id="who-uses-basecamp">
665
+ <summary>
666
+ <p>What kind of companies, in which industries, use Basecamp?</p>
667
+ </summary>
668
+ <article>
669
+ <p>Basecamp is used by top notch marketers, ad agencies, designers, client services firms, consultants, software developers, freelancers, PR agencies, contractors, religious institutions, schools, non-profits, first responders, and many others. Over 75,000 organizations, across every industry imaginable, in 166 countries, use Basecamp for project management.</p>
670
+ <p>Our customers are primarily small or medium-sized companies with fewer than 100 full-time employees, but Basecamp is also used by teams inside many of the world’s largest companies.</p>
671
+ </article>
672
+ </details>
673
+
674
+ <details id="classes" class="data-classes data-classes--details" data-classes-limit="6">
675
+ <summary>
676
+ <p>Do you offer classes to learn more about Basecamp?</p>
677
+ </summary>
678
+ <article>
679
+ <p><strong>Yes, see our upcoming classes below.</strong> We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask. We’ll teach you the basics of using Basecamp, with plenty of time set aside for questions.<span class="data-classes__link"> <a href="classes/index.html">See all our upcoming classes</a>.</span></p>
680
+ <div class="data-classes__output"></div>
681
+ </article>
682
+ </details>
683
+
684
+ </div>
685
+
686
+ <div class="marquee marquee--left space-bottom--xxx-large space-top--xx-large">
687
+
688
+ <a href="customers/index.html" aria-hidden="true" tabindex="-1">
689
+ <ul>
690
+
691
+
692
+
693
+
694
+
695
+ <li>“Extremely user friendly”</li>
696
+
697
+
698
+
699
+ <li>“Truly amazing!”</li>
700
+
701
+
702
+
703
+ <li>“A godsend for our org”</li>
704
+
705
+
706
+
707
+ <li>“Simple, quick, powerful”</li>
708
+
709
+
710
+
711
+ <li>“So glad I found Basecamp”</li>
712
+
713
+
714
+
715
+ <li>“The perfect solution”</li>
716
+
717
+
718
+
719
+ <li>“Really great”</li>
720
+
721
+
722
+
723
+ <li>“Outstanding”</li>
724
+
725
+
726
+
727
+ <li>“Best app for teams”</li>
728
+
729
+
730
+
731
+ <li>“Awesome service”</li>
732
+
733
+
734
+
735
+ <li>“Gets better and better”</li>
736
+
737
+
738
+
739
+ <li>“Great collaboration tool”</li>
740
+
741
+
742
+
743
+ <li>“Great software”</li>
744
+
745
+
746
+
747
+ <li>“Gold standard PM app”</li>
748
+
749
+
750
+
751
+ <li>“Brilliant solution”</li>
752
+
753
+
754
+
755
+ <li>“Clean and easy to use”</li>
756
+
757
+
758
+
759
+ <li>“Fantastic app”</li>
760
+
761
+
762
+
763
+ <li>“Organized and on point”</li>
764
+
765
+
766
+
767
+ <li>“Extremely user friendly”</li>
768
+
769
+
770
+
771
+ <li>“Truly amazing!”</li>
772
+
773
+
774
+
775
+ <li>“A godsend for our org”</li>
776
+
777
+
778
+
779
+ <li>“Simple, quick, powerful”</li>
780
+
781
+
782
+
783
+ <li>“So glad I found Basecamp”</li>
784
+
785
+
786
+
787
+ <li>“The perfect solution”</li>
788
+
789
+
790
+
791
+ <li>“Really great”</li>
792
+
793
+
794
+
795
+ <li>“Outstanding”</li>
796
+
797
+
798
+
799
+ <li>“Best app for teams”</li>
800
+
801
+
802
+
803
+ <li>“Awesome service”</li>
804
+
805
+
806
+
807
+ <li>“Gets better and better”</li>
808
+
809
+
810
+
811
+ <li>“Great collaboration tool”</li>
812
+
813
+
814
+
815
+ <li>“Great software”</li>
816
+
817
+
818
+
819
+ <li>“Gold standard PM app”</li>
820
+
821
+
822
+
823
+ <li>“Brilliant solution”</li>
824
+
825
+
826
+
827
+ <li>“Clean and easy to use”</li>
828
+
829
+
830
+
831
+ <li>“Fantastic app”</li>
832
+
833
+
834
+
835
+ <li>“Organized and on point”</li>
836
+
837
+
838
+
839
+ </ul>
840
+ </a>
841
+
842
+
843
+ </div>
844
+
845
+
846
+ </main>
847
+
848
+ <footer class="footer">
849
+
850
+
851
+
852
+
853
+
854
+ <div class="footer__apps" id="apps">
855
+ <dl class="footer__headline">
856
+ <dt>Basecamp’s everywhere</dt>
857
+ <dd>Mac, Windows, iOS, Android, and on the web — Basecamp is ready <a href="apps/index.html">whenever and wherever you are</a>.</dd>
858
+ </dl>
859
+ <ul>
860
+ <li><a class="button button--icon button--pwa" href="https://3.basecamp-help.com/article/937-basecamp-pwa" title="Install Basecamp on Mac and Windows">Desktop apps</a></li>
861
+ <li><a class="button button--icon button--ios" href="https://apps.apple.com/us/app/basecamp-project-management/id1015603248" title="Install Basecamp on iOS">iOS</a></li>
862
+ <li><a class="button button--icon button--android" href="https://play.google.com/store/apps/details?id=com.basecamp.bc3" title="Install Basecamp on Android">Android</a></li>
863
+ <li><a class="button button--icon button--basecamp" href="https://launchpad.37signals.com/signin" title="Use Basecamp in your web browser" target="_blank" data-controller="signup" data-action="signup#trackLogin">Sign in to Basecamp</a></li>
864
+ </ul>
865
+ </div>
866
+
867
+
868
+
869
+
870
+
871
+ <div class="footer__classes data-classes" data-classes-limit="4">
872
+ <dl class="footer__headline">
873
+ <dt>Join us for a free live class</dt>
874
+ <dd>We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask.<span class="data-classes__link"> <a href="classes/index.html">See all our upcoming classes</a>.</span></dd>
875
+ </dl>
876
+ <div class="data-classes__output"></div>
877
+ </div>
878
+
879
+
880
+
881
+
882
+
883
+ <div class="footer__newsletter">
884
+ <dl class="footer__headline">
885
+ <dt>Never miss an update</dt>
886
+ <dd>Join more than 150,000 people who get <a href="newsletter/index.html">our newsletter</a>. We’ll share product updates, thoughts, new releases, and other tidbits we think you’ll find interesting.</dd>
887
+ </dl>
888
+ <div class="newsletter">
889
+ <div class="newsletter__container">
890
+ <form novalidate action="https://basecamp.us2.list-manage.com/subscribe/post-json?u=2a145c60b16248b65e46a799a&amp;id=476312b66e&amp;c=?" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form">
891
+ <div aria-hidden="true" style="position: absolute; left: -5000px;"><input type="text" name="b_2a145c60b16248b65e46a799a_476312b66e" value="" tabindex="-1" aria-label="mce"></div>
892
+ <input type="hidden" name="tags" value="23018">
893
+ <input type="email" name="EMAIL" value="" id="mce-EMAIL" placeholder="julie.young@hey.com" aria-label="Your email address" required data-1p-ignore>
894
+ <button type="submit" name="subscribe" id="mc-embedded-subscribe">Subscribe</button>
895
+ </form>
896
+ </div>
897
+ </div>
898
+ </div>
899
+
900
+
901
+
902
+
903
+
904
+ <div class="footer__support">
905
+ <dl class="footer__headline">
906
+ <dt>We’re here to help with 24/7/365 support</dt>
907
+ <dd>There are no stupid questions — for pre-sales questions, existing customers who need a hand, or any other inquiries, <a href="support/index.html">contact us</a> and we’ll get back to you within an hour. <a href="learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">Watch tutorials</a>, <a href="help/index.html">read the help guides</a>, or <a href="support/index.html">send us a message</a> to get help.</dd>
908
+ </dl>
909
+
910
+
911
+
912
+ <div class="footer__hey">
913
+ <a href="https://www.hey.com" target="_blank">
914
+ <span>If you love Basecamp, you’ll love <strong>HEY</strong> — our delightfully fresh take on email + calendar</span>
915
+ </a>
916
+ </div>
917
+
918
+
919
+
920
+ </div>
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+ <div class="footer__links">
929
+ <dl class="footer__headline">
930
+ <dt>And there’s more&hellip;</dt>
931
+ <dd>
932
+
933
+
934
+
935
+ <a href="new/index.html" aria-label="What’s new">What’s new</a> •
936
+
937
+
938
+
939
+ <a href="paths/index.html" aria-label="The people’s path to Basecamp">The people’s path to Basecamp</a> •
940
+
941
+
942
+
943
+ <a href="books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18" aria-label="Books we’ve written">Books we’ve written</a> •
944
+
945
+
946
+
947
+ <a href="about/index.html" aria-label="Where we came from">Where we came from</a> •
948
+
949
+
950
+
951
+ <a href="guides/how-we-communicate/index.html" aria-label="How we communicate">How we communicate</a> •
952
+
953
+
954
+
955
+ <a href="guides/how-we-make-decisions/index.html" aria-label="How we make decisions">How we make decisions</a> •
956
+
957
+
958
+
959
+ <a href="guides/why-we-choose-profit/index.html" aria-label="Why we choose profit">Why we choose profit</a> •
960
+
961
+
962
+
963
+ <a href="guides/group-chat-problems/index.html" aria-label="Group chat problems">Group chat problems</a> •
964
+
965
+
966
+
967
+ <a href="guides/seven-shipping-principles/index.html" aria-label="Seven shipping principles">Seven shipping principles</a> •
968
+
969
+
970
+
971
+ <a href="underdogs/index.html" aria-label="We stand with the underdogs">We stand with the underdogs</a> •
972
+
973
+
974
+
975
+ <a href="small/index.html" aria-label="Come small, come all">Come small, come all</a> •
976
+
977
+
978
+
979
+ <a href="overkill/index.html" aria-label="Kill overkill">Kill overkill</a> •
980
+
981
+
982
+
983
+ <a href="cloud-exit/index.html" aria-label="Leaving the Cloud">Leaving the Cloud</a> •
984
+
985
+
986
+
987
+ <a href="before-and-after/index.html" aria-label="Night &amp; day">Night &amp; day</a> •
988
+
989
+
990
+
991
+ <a href="hill-charts/index.html" aria-label="See where projects really stand">See where projects really stand</a> •
992
+
993
+
994
+
995
+ <a href="justletmedomyjob/index.html" aria-label="JUST LET ME DO MY JOB">JUST LET ME DO MY JOB</a> •
996
+
997
+
998
+
999
+ <a href="customers/index.html" aria-label="What changed for the better?">What changed for the better?</a> •
1000
+
1001
+
1002
+
1003
+ <a href="integrations/index.html" aria-label="Integrations">Integrations</a> •
1004
+
1005
+
1006
+
1007
+ <a href="accessibility/index.html" aria-label="Basecamp is for everyone">Basecamp is for everyone</a> •
1008
+
1009
+
1010
+
1011
+ <a href="community/index.html" aria-label="Basecamp community">Basecamp community</a> •
1012
+
1013
+
1014
+
1015
+ <a href="learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14" aria-label="Learn Basecamp">Learn Basecamp</a> •
1016
+
1017
+
1018
+
1019
+ <a href="handbook" aria-label="Employee handbook">Employee handbook</a>
1020
+
1021
+
1022
+
1023
+ </dd>
1024
+ </dl>
1025
+ </div>
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+
1033
+ <div class="footer__legal">
1034
+ <p>
1035
+ <a href="enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
1036
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
1037
+ <strong>Basecamp</strong>
1038
+ </a>
1039
+ <span>is designed, built, and backed by</span>
1040
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
1041
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
1042
+ <strong>37signals</strong>
1043
+ </a>
1044
+ </p>
1045
+ <ul>
1046
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
1047
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
1048
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
1049
+ <li>&copy; 2025 37signals LLC</li>
1050
+ </ul>
1051
+ </div>
1052
+ </footer>
1053
+
1054
+
1055
+ <dialog class="modal">
1056
+ <div class="modal__backdrop"></div>
1057
+ <div class="modal__container"></div>
1058
+ </dialog>
1059
+
1060
+
1061
+ </body>
1062
+
1063
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/features/automatic-check-ins ADDED
@@ -0,0 +1,1063 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Project management software, online collaboration</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Project management software, online collaboration">
28
+ <meta property="og:description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Project management software, online collaboration">
34
+ <meta name="twitter:description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Project management software, online collaboration",
53
+ "description": "Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.",
54
+ "url": "https://basecamp.com/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="../enterprise-extravaganza">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body class="body has-nav-phrase" data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <input id="nav-active" type="checkbox">
110
+
111
+ <label id="nav-underlay" for="nav-active"></label>
112
+
113
+ <nav class="nav">
114
+ <div class="nav__container">
115
+ <div class="nav__logo">
116
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
117
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
118
+ <strong>Basecamp</strong>
119
+ </a>
120
+ <div class="nav__phrase">is the <span class="highlight"></span> <strong>project management system</strong> by</div>
121
+ <b class="icon icon--37signals">
122
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
123
+ <strong>37signals</strong>
124
+ </b>
125
+ </div>
126
+ <div class="nav__links">
127
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
128
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
129
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
130
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
131
+ </div>
132
+ <div class="nav__buttons">
133
+ <a class="nav__button nav__button--launchpad" href="https://launchpad.37signals.com/signin" target="_blank" data-controller="signup" data-action="signup#trackLogin" aria-label="Sign in">Sign in</a>
134
+ <a class="nav__button nav__button--signup trk-package" id="sign-up-nav" href="../pricing/index.html#packages" aria-label="Sign up free">Sign up free</a>
135
+ </div>
136
+ <label class="nav__toggle" for="nav-active" aria-label="Nav Toggle" tabindex="0"></label>
137
+ </div>
138
+ <div class="nav__mobile">
139
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
140
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
141
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
142
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
143
+ </div>
144
+ </nav>
145
+
146
+
147
+
148
+
149
+ <main class="main">
150
+
151
+ <div class="illustration space-bottom--large">
152
+ <picture>
153
+ <source srcset="/assets/images/home/illustration-desktop.png" media="(min-width: 48em)">
154
+ <img src="../assets/images/home/illustration-mobile.png" alt="Wrestling with projects? It doesn’t have to be this hard.">
155
+ </picture>
156
+ </div>
157
+
158
+ <div class="columns">
159
+ <section>
160
+ <header>
161
+ <h1>Wrestling with projects?<br> It doesn’t have to be this hard.</h1>
162
+ </header>
163
+ <article>
164
+ <div>
165
+ <p>There are lots of ways to manage projects. And there’s plenty of software promising to help. You’ve probably tried some. Yet, here you are.</p>
166
+ <p><strong>Unfortunately, most project management systems are either overwhelming, inadequate, bewildering, or chaotic. You know?</strong></p>
167
+ <p>Not Basecamp. Basecamp is refreshingly straightforward, with a 21-year track record to back it up. Longevity isn’t luck — it’s proof it works. And you’ll work better with it too.</p>
168
+ </div>
169
+ <div>
170
+ <p><strong>Basecamp is famously no-nonsense, effective, and reliable.</strong> The trifecta. It’s <a href="../underdogs/index.html">designed for smaller, hungrier businesses</a>, not big, sluggish ones. <a href="../customers/index.html">Over 30 pages of customer testimonials</a> detail how things run better on Basecamp.</p>
171
+ <p>So, we invite you to poke around, watch the video below, and <a href="../pricing/index.html#packages">try Basecamp for free</a>. We’d be honored to have you as a customer. Thank you.</p>
172
+ <dl>
173
+ <dt><strong>Jason Fried</strong>, <a href="mailto:jason@basecamp.com">jason@basecamp.com</a></dt>
174
+ <dd><em>Co-founder &amp; CEO</em></dd>
175
+ </dl>
176
+ </div>
177
+ </article>
178
+ </section>
179
+ </div>
180
+
181
+ <div class="visual visual--walkthrough space-top--xxx-large">
182
+ <div class="visual__column">
183
+ <button class="visual__button modal-trigger" id="walkthrough-columns" data-type="video" data-event="Walkthrough: Columns" data-src="/videos/home/walkthrough.mp4" data-track="/videos/home/walkthrough.vtt">
184
+ <figure class="visual__figure">
185
+ <img src="../videos/home/walkthrough-small.webp" width="2400" height="1326" alt="See how Basecamp works">
186
+ <span aria-hidden="true">Hit play to see how Basecamp is different</span>
187
+ </figure>
188
+ <div class="visual__play"></div>
189
+ </button>
190
+ </div>
191
+ </div>
192
+
193
+ <div class="statement space-top--xxx-large">
194
+ <section>
195
+ <header>
196
+ <h2 id="features"><a href="../enterprise-extravaganza#features">Let’s walk through it.</a></h2>
197
+ </header>
198
+ </section>
199
+ </div>
200
+
201
+ <div class="headline space-top--large">
202
+ <header>
203
+ <h3 id="home"><a href="../enterprise-extravaganza#home">10 seconds after you sign up, clarity sets in.</a></h3>
204
+ </header>
205
+ <article>
206
+ <p>The home screen organizes your projects, assignments, and upcoming events together on one screen. It’s your calm, comfortable, simple starting point every morning.</p>
207
+ </article>
208
+ </div>
209
+
210
+ <div class="visual space-top--large">
211
+ <div class="visual__column visual__column--4">
212
+ <button class="visual__button modal-trigger" id="whats-my-week-look-like" data-type="video" data-event="Home: What’s my week look like?" data-src="/videos/home/whats-my-week-look-like.mp4" data-track="/videos/home/whats-my-week-look-like.vtt">
213
+ <figure class="visual__figure">
214
+ <img src="../videos/home/whats-my-week-look-like.webp" width="1260" height="1116" alt="View your schedule" loading="lazy">
215
+ <span aria-hidden="true">What’s my week look like?</span>
216
+ </figure>
217
+ <div class="visual__play"></div>
218
+ </button>
219
+ <button class="visual__button modal-trigger" id="whats-on-my-plate-today" data-type="video" data-event="Home: What’s on my plate today?" data-src="/videos/home/whats-on-my-plate-today.mp4" data-track="/videos/home/whats-on-my-plate-today.vtt">
220
+ <figure class="visual__figure">
221
+ <img src="../videos/home/whats-on-my-plate-today.webp" width="1260" height="1116" alt="View your assignments" loading="lazy">
222
+ <span aria-hidden="true">What’s on my plate today?</span>
223
+ </figure>
224
+ <div class="visual__play"></div>
225
+ </button>
226
+ <aside class="visual__aside" aria-label="Home">
227
+ <p><strong>Each person gets their own home screen depending on which projects they have access to.</strong> They’ll only see their own assignments and events. And you can keep important projects close at hand by pinning them to the top.</p>
228
+ </aside>
229
+ </div>
230
+ <div class="visual__column visual__column--8">
231
+ <button class="visual__button modal-trigger" id="which-projects-am-i-on" data-type="video" data-event="Home: Which projects am I on?" data-src="/videos/home/which-projects-am-i-on.mp4" data-track="/videos/home/which-projects-am-i-on.vtt">
232
+ <figure class="visual__figure">
233
+ <img src="../videos/home/which-projects-am-i-on.webp" width="2400" height="2854" alt="View projects on the home screen" loading="lazy">
234
+ <span aria-hidden="true">Which projects am I on?</span>
235
+ </figure>
236
+ <div class="visual__play"></div>
237
+ </button>
238
+ </div>
239
+ </div>
240
+
241
+ <div class="headline space-top--xxx-large">
242
+ <header>
243
+ <h3 id="projects"><a href="../enterprise-extravaganza#projects">Projects get teams — and keep teams — organized.</a></h3>
244
+ </header>
245
+ <article>
246
+ <p>A project is where the tasks, discussions, deliverables, and decisions happen. Projects hold everything — and everyone — together in one tidy, predictably structured place.</p>
247
+ </article>
248
+ </div>
249
+
250
+ <div class="visual space-top--large">
251
+ <div class="visual__column visual__column--6">
252
+ <button class="visual__button modal-trigger" id="all-in-one-toolbox" data-type="video" data-event="Projects: A project page organizes everything" data-src="/videos/home/all-in-one-toolbox.mp4" data-track="/videos/home/all-in-one-toolbox.vtt">
253
+ <figure class="visual__figure">
254
+ <img src="../videos/home/all-in-one-toolbox.webp" width="2400" height="2582" alt="A Basecamp project page" loading="lazy">
255
+ <span aria-hidden="true">A project page organizes everything</span>
256
+ </figure>
257
+ <div class="visual__play"></div>
258
+ </button>
259
+ <aside class="visual__aside" aria-label="Projects">
260
+ <p><strong>Make as many projects as you’d like.</strong> We run dozens at once in our own Basecamp account. For example, one for a web site redesign, <a href="../enterprise-extravaganza#organizing-a-meet-up" class="modal-trigger" id="organizing-a-meet-up" data-type="video" data-event="Organizing a Meet-up" data-src="/videos/organizing-a-meet-up/organizing-a-meet-up.mp4">one for planning an upcoming offsite</a>, one for working with our accountants, and one just for the executive team to plan strategy, etc.</p>
261
+ </aside>
262
+ </div>
263
+ <div class="visual__column visual__column--6 visual__column--grid">
264
+ <button class="visual__button modal-trigger" id="track-tasks" data-type="video" data-event="Projects: What to do + who’s doing?" data-src="/videos/home/track-tasks.mp4" data-track="/videos/home/track-tasks.vtt">
265
+ <figure class="visual__figure">
266
+ <img src="../assets/images/screenshots/to-dos-thumbnail.webp" width="1200" height="900" alt="Track work with To-dos" loading="lazy">
267
+ <span aria-hidden="true">What to do + who’s doing?</span>
268
+ </figure>
269
+ <div class="visual__play"></div>
270
+ </button>
271
+ <button class="visual__button modal-trigger" id="launch-discussions" data-type="video" data-event="Projects: Who said what when?" data-src="/videos/home/launch-discussions.mp4" data-track="/videos/home/launch-discussions.vtt">
272
+ <figure class="visual__figure">
273
+ <img src="../assets/images/screenshots/message-board-thumbnail.webp" width="1200" height="900" alt="Stay on topic with Messages" loading="lazy">
274
+ <span aria-hidden="true">Who said what when?</span>
275
+ </figure>
276
+ <div class="visual__play"></div>
277
+ </button>
278
+ <button class="visual__button modal-trigger" id="set-milestones" data-type="video" data-event="Projects: What’s due next?" data-src="/videos/home/set-milestones.mp4" data-track="/videos/home/set-milestones.vtt">
279
+ <figure class="visual__figure">
280
+ <img src="../assets/images/screenshots/schedule-thumbnail.webp" width="1200" height="900" alt="Schedule so you don’t forget" loading="lazy">
281
+ <span aria-hidden="true">What’s due next?</span>
282
+ </figure>
283
+ <div class="visual__play"></div>
284
+ </button>
285
+ <button class="visual__button modal-trigger" id="store-assets" data-type="video" data-event="Projects: Where’s the latest version?" data-src="/videos/home/store-assets.mp4" data-track="/videos/home/store-assets.vtt">
286
+ <figure class="visual__figure">
287
+ <img src="../assets/images/screenshots/docs-and-files-thumbnail.webp" width="1200" height="900" alt="Store, share, and discuss files" loading="lazy">
288
+ <span aria-hidden="true">Where’s the latest version?</span>
289
+ </figure>
290
+ <div class="visual__play"></div>
291
+ </button>
292
+ <button class="visual__button modal-trigger" id="hash-stuff-out" data-type="video" data-event="Projects: Got a quick question?" data-src="/videos/home/hash-stuff-out.mp4" data-track="/videos/home/hash-stuff-out.vtt">
293
+ <figure class="visual__figure">
294
+ <img src="../assets/images/screenshots/chat-thumbnail.webp" width="1200" height="900" alt="Chat around the campfire" loading="lazy">
295
+ <span aria-hidden="true">Got a quick question?</span>
296
+ </figure>
297
+ <div class="visual__play"></div>
298
+ </button>
299
+ <button class="visual__button modal-trigger" id="run-workflows" data-type="video" data-event="Projects: How’s the process flowing?" data-src="/videos/home/run-workflows.mp4" data-track="/videos/home/run-workflows.vtt">
300
+ <figure class="visual__figure">
301
+ <img src="../assets/images/screenshots/card-table-thumbnail.webp" width="1200" height="900" alt="Card Table is our unique take on Kanban" loading="lazy">
302
+ <span aria-hidden="true">How’s the process flowing?</span>
303
+ </figure>
304
+ <div class="visual__play"></div>
305
+ </button>
306
+ </div>
307
+ </div>
308
+
309
+ <div class="headline space-top--xxx-large">
310
+ <header>
311
+ <h3 id="reports"><a href="../enterprise-extravaganza#reports">Reports give you confidence to hold people accountable.</a></h3>
312
+ </header>
313
+ <article>
314
+ <p>Basecamp’s reports aren’t numbers, percentages, or abstract representations — they’re the real work, actual evidence of progress being made (or not made).</p>
315
+ </article>
316
+ </div>
317
+
318
+ <div class="visual space-top--large">
319
+ <div class="visual__column visual__column--4">
320
+ <button class="visual__button modal-trigger" id="whats-overdue" data-type="video" data-event="Reports: What’s overdue?" data-src="/videos/home/whats-overdue.mp4" data-track="/videos/home/whats-overdue.vtt">
321
+ <figure class="visual__figure">
322
+ <img src="../videos/home/whats-overdue.webp" width="1796" height="1304" alt="See everything that’s overdue" loading="lazy">
323
+ <span aria-hidden="true">What’s overdue?</span>
324
+ </figure>
325
+ <div class="visual__play"></div>
326
+ </button>
327
+ <button class="visual__button modal-trigger" id="how-much-time-have-we-spent" data-type="video" data-event="Reports: How much time have we spent?" data-src="/videos/home/how-much-time-have-we-spent.mp4" data-track="/videos/home/how-much-time-have-we-spent.vtt">
328
+ <figure class="visual__figure">
329
+ <img src="../videos/home/how-much-time-have-we-spent.webp" width="1796" height="1304" alt="Track time directly in Basecamp" loading="lazy">
330
+ <span aria-hidden="true">How much time have we spent?</span>
331
+ </figure>
332
+ <div class="visual__play"></div>
333
+ </button>
334
+ <button class="visual__button modal-trigger" id="whos-responsible-for-what" data-type="video" data-event="Reports: Who’s responsible for what?" data-src="/videos/home/whos-responsible-for-what.mp4" data-track="/videos/home/whos-responsible-for-what.vtt">
335
+ <figure class="visual__figure">
336
+ <img src="../videos/home/whos-responsible-for-what.webp" width="1796" height="1304" alt="Reports quickly cut across every project to give you quick insights" loading="lazy">
337
+ <span aria-hidden="true">Who’s responsible for what?</span>
338
+ </figure>
339
+ <div class="visual__play"></div>
340
+ </button>
341
+ </div>
342
+ <div class="visual__column visual__column--8">
343
+ <button class="visual__button modal-trigger" id="whats-actually-been-happening" data-type="video" data-event="Reports: What’s actually been happening?" data-src="/videos/home/whats-actually-been-happening.mp4" data-track="/videos/home/whats-actually-been-happening.vtt">
344
+ <figure class="visual__figure">
345
+ <img src="../videos/home/whats-actually-been-happening.webp" width="2400" height="3028" alt="The micro-view of everything that happens across every project in real-time" loading="lazy">
346
+ <span aria-hidden="true">What’s actually been happening?</span>
347
+ </figure>
348
+ <div class="visual__play"></div>
349
+ </button>
350
+ </div>
351
+ </div>
352
+
353
+ <div class="headline space-top--xxx-large">
354
+ <header>
355
+ <h3 id="visualizations"><a href="../enterprise-extravaganza#visualizations">Visualizations are for seeing, not squinting.</a></h3>
356
+ </header>
357
+ <article>
358
+ <p>Basecamp’s Lineup, Mission Control, and Hill Charts are visual tools that help you clearly see where projects really stand. Notice progress at a glance, know reality in an instant.</p>
359
+ </article>
360
+ </div>
361
+
362
+ <div class="visual space-top--large">
363
+ <div class="visual__column">
364
+ <button class="visual__button modal-trigger" id="how-far-along-are-we" data-type="video" data-event="Visualizations: How far along are we?" data-src="/videos/home/how-far-along-are-we.mp4" data-track="/videos/home/how-far-along-are-we.vtt">
365
+ <figure class="visual__figure">
366
+ <img src="../videos/home/how-far-along-are-we.webp" width="3008" height="1504" alt="The Lineup shows you where every project stands, from start to finish, all at once" loading="lazy">
367
+ <span aria-hidden="true">How far along are we?</span>
368
+ </figure>
369
+ <div class="visual__play"></div>
370
+ </button>
371
+ </div>
372
+ <div class="visual__column visual__column--grid">
373
+ <button class="visual__button modal-trigger" id="how-are-we-feeling" data-type="video" data-event="Visualizations: How are we feeling?" data-src="/videos/home/how-are-we-feeling.mp4" data-track="/videos/home/how-are-we-feeling.vtt">
374
+ <figure class="visual__figure">
375
+ <img src="../videos/home/how-are-we-feeling.webp" width="2400" height="1434" alt="Mission Control shows you which projects are on track and which ones need a helping hand" loading="lazy">
376
+ <span aria-hidden="true">How are we feeling?</span>
377
+ </figure>
378
+ <div class="visual__play"></div>
379
+ </button>
380
+ <button class="visual__button modal-trigger" id="what-still-needs-to-be-figured-out" data-type="video" data-event="Visualizations: What still needs to be figured out?" data-src="/videos/home/what-still-needs-to-be-figured-out.mp4" data-track="/videos/home/what-still-needs-to-be-figured-out.vtt">
381
+ <figure class="visual__figure">
382
+ <img src="../videos/home/what-still-needs-to-be-figured-out.webp" width="2400" height="1434" alt="Hill Charts visually display the progress of your To-do list" loading="lazy">
383
+ <span aria-hidden="true">What still needs to be figured out?</span>
384
+ </figure>
385
+ <div class="visual__play"></div>
386
+ </button>
387
+ </div>
388
+ </div>
389
+
390
+ <div class="headline space-top--xxx-large">
391
+ <header>
392
+ <h3 id="notifications"><a href="../enterprise-extravaganza#notifications">Ping! Hey! It’s for you.</a></h3>
393
+ </header>
394
+ <article>
395
+ <p>The Hey! menu aggregates your notifications in a never-annoying single menu. And “Pings”, our flavor of direct messages, let you kick off ad hoc chats 1:1 or in small groups.</p>
396
+ </article>
397
+ </div>
398
+
399
+ <div class="visual space-top--large">
400
+ <div class="visual__column visual__column--5">
401
+ <button class="visual__button modal-trigger" id="have-private-1-1-or-small-group-conversations" data-type="video" data-event="Notifications: Have private 1-1 or small group conversations" data-src="/videos/home/have-private-1-1-or-small-group-conversations.mp4" data-track="/videos/home/have-private-1-1-or-small-group-conversations.vtt">
402
+ <figure class="visual__figure">
403
+ <img src="../videos/home/have-private-1-1-or-small-group-conversations.webp" width="2400" height="1830" alt="Pings let you kick off ad hoc chats 1:1 or in small groups" loading="lazy">
404
+ <span aria-hidden="true">Have private 1-1 or small group conversations</span>
405
+ </figure>
406
+ <div class="visual__play"></div>
407
+ </button>
408
+ <aside class="visual__aside" aria-label="Notifications">
409
+ <p><strong>Don’t have work chats via text or Whatsapp on your personal phone number.</strong> Keep work at work by having them in Basecamp instead.</p>
410
+ </aside>
411
+ </div>
412
+ <div class="visual__column visual__column--7">
413
+ <button class="visual__button modal-trigger" id="notifications-in-one-place" data-type="video" data-event="Notifications: Notifications in one place, not in your face" data-src="/videos/home/notifications-in-one-place.mp4" data-track="/videos/home/notifications-in-one-place.vtt">
414
+ <figure class="visual__figure">
415
+ <img src="../videos/home/notifications-in-one-place.webp" width="2400" height="1830" alt="The Hey! menu aggregates all your notifications in a single menu" loading="lazy">
416
+ <span aria-hidden="true">Notifications in one place, not in your face</span>
417
+ </figure>
418
+ <div class="visual__play"></div>
419
+ </button>
420
+ </div>
421
+ </div>
422
+
423
+ <div class="headline space-top--xxx-large">
424
+ <header>
425
+ <h3 id="clients"><a href="../enterprise-extravaganza#clients">Got clients? Be partners, not adversaries.</a></h3>
426
+ </header>
427
+ <article>
428
+ <p>Basecamp keeps both sides organized, everyone’s feedback on the record, and all decisions, approvals, files, tasks, deadlines, and communications safe and centralized.</p>
429
+ </article>
430
+ </div>
431
+
432
+ <div class="visual space-top--large">
433
+ <div class="visual__column visual__column--grid">
434
+ <button class="visual__button modal-trigger" id="you-decide-what-clients-can-see" data-type="video" data-event="Clients: Can the client see this?" data-src="/videos/home/you-decide-what-clients-can-see.mp4" data-track="/videos/home/you-decide-what-clients-can-see.vtt">
435
+ <figure class="visual__figure">
436
+ <img src="../videos/home/you-decide-what-clients-can-see.webp" width="2400" height="1424" alt="You decide what your clients can see" loading="lazy">
437
+ <span aria-hidden="true">Can the client see this?</span>
438
+ </figure>
439
+ <div class="visual__play"></div>
440
+ </button>
441
+ <button class="visual__button modal-trigger" id="three-folders-for-you-one-for-them" data-type="video" data-event="Clients: Where’s the final version so we can show the client?" data-src="/videos/home/three-folders-for-you-one-for-them.mp4" data-track="/videos/home/three-folders-for-you-one-for-them.vtt">
442
+ <figure class="visual__figure">
443
+ <img src="../videos/home/three-folders-for-you-one-for-them.webp" width="2400" height="1424" alt="Let clients grab the files they need without having to ask" loading="lazy">
444
+ <span aria-hidden="true">Where’s the final version so we can show the client?</span>
445
+ </figure>
446
+ <div class="visual__play"></div>
447
+ </button>
448
+ <button class="visual__button modal-trigger" id="keep-approvals-on-the-official-record" data-type="video" data-event="Clients: Did the client officially approve it?" data-src="/videos/home/keep-approvals-on-the-official-record.mp4" data-track="/videos/home/keep-approvals-on-the-official-record.vtt">
449
+ <figure class="visual__figure">
450
+ <img src="../videos/home/keep-approvals-on-the-official-record.webp" width="2400" height="2108" alt="Keep client feedback on the official record" loading="lazy">
451
+ <span aria-hidden="true">Did the client officially approve it?</span>
452
+ </figure>
453
+ <div class="visual__play"></div>
454
+ </button>
455
+ <button class="visual__button modal-trigger" id="email-through-basecamp" data-type="video" data-event="Clients: Where’s the client’s email they sent?" data-src="/videos/home/email-through-basecamp.mp4" data-track="/videos/home/email-through-basecamp.vtt">
456
+ <figure class="visual__figure">
457
+ <img src="../videos/home/email-through-basecamp.webp" width="2400" height="2108" alt="Clients can respond to messages right from their inbox" loading="lazy">
458
+ <span aria-hidden="true">Where’s the client’s email they sent?</span>
459
+ </figure>
460
+ <div class="visual__play"></div>
461
+ </button>
462
+ </div>
463
+ </div>
464
+
465
+ <div class="headline space-top--xxx-large">
466
+ <header>
467
+ <h3 id="yes"><a href="../enterprise-extravaganza#yes">The answer is <span class="yes-label">YES!</span></a></h3>
468
+ </header>
469
+ <article>
470
+ <p>Can software be simple, straightforward, and easy, yet powerfully full-featured?<br> With Basecamp the answer is absolutely <strong>YES!</strong></p>
471
+ </article>
472
+ </div>
473
+
474
+ <div class="yes space-top--neutral">
475
+ <ul>
476
+ <li>Can I <strong>prevent our clients from seeing unfinished work?</strong></li>
477
+ <li>Can I <strong>link up files from Google Docs, Figma, Dropbox, Airtable, and other apps?</strong></li>
478
+ <li>Can I <strong>see everything I need to do on a single screen?</strong></li>
479
+ <li>Can I <strong>see everything that’s overdue on a single screen?</strong></li>
480
+ <li>Can I use Basecamp <strong>even if some of my team prefers just to use email?</strong></li>
481
+ <li>Can I <strong>see all the work that was completed on any given day?</strong></li>
482
+ <li>Can I <strong>set up projects that only some of my team can see?</strong></li>
483
+ <li>Can I <strong>see everything that’s happened across multiple projects in one place?</strong></li>
484
+ <li>Can I <strong>@mention someone so they’re notified about something?</strong></li>
485
+ <li>Can I <strong>see all the work someone’s done over a long period of time?</strong></li>
486
+ <li>Can I <strong>see everything that’s assigned to someone on a single page?</strong></li>
487
+ <li>Can I <strong>see exactly who worked on what today? Yesterday? Last week?</strong></li>
488
+ <li>Can I <strong>easily reference an entire conversation from a year ago?</strong></li>
489
+ <li>Can I <strong>follow a project quietly without receiving notifications?</strong></li>
490
+ <li>Can I <strong>assign tasks to multiple people at once?</strong></li>
491
+ <li>Can I <strong>see all our projects laid out on a visual timeline?</strong></li>
492
+ <li>Can I <strong>keep all the discussion about a to-do attached to that to-do?</strong></li>
493
+ <li>Can I <strong>follow-up directly with someone without anyone else knowing?</strong></li>
494
+ <li>Can <strong>our clients respond to our questions via email?</strong></li>
495
+ <li>Can <strong>our clients see a record of everything we’ve asked them?</strong></li>
496
+ <li>Can I <strong>organize ideas and setup workflows on a Kanban board?</strong></li>
497
+ <li>Can Basecamp <strong>tell me when someone completed an assignment?</strong></li>
498
+ <li>Can Basecamp <strong>help me get a client to approve a design?</strong></li>
499
+ <li>Can Basecamp <strong>help me hold my team accountable for deadlines?</strong></li>
500
+ <li>You <strong>wrote some <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18">books on how to run a business</a>, too, right?</strong></li>
501
+ </ul>
502
+ </div>
503
+
504
+ <div class="statement statement--gap-large space-top--xxx-large">
505
+ <section>
506
+ <header>
507
+ <h2 id="its-time"><a href="../enterprise-extravaganza#its-time">You wouldn’t be here if the<br> way you’ve been working was working. It’s time for Basecamp.</a></h2>
508
+ </header>
509
+ <article>
510
+ <p>Team super busy, but running in circles? <strong>It’s time for Basecamp.</strong> Finding stuff easy to start, but hard to finish? <strong>It’s time for Basecamp.</strong> Things taking longer than they should? <strong>It’s time for Basecamp.</strong> Info increasingly scattered across different apps? <strong>It’s time for Basecamp.</strong> Subscription fees keep adding up?<br> <strong>It’s time for Basecamp.</strong> Growing into dysfunction? <strong>It’s time for Basecamp.</strong> Tired of looking disorganized in front of clients? <strong class="highlight highlight--time">It’s time for Basecamp.</strong></p>
511
+ </article>
512
+ </section>
513
+ </div>
514
+
515
+ <div class="headline space-top--xxx-large">
516
+ <header>
517
+ <h3 id="company-faqs"><a href="../enterprise-extravaganza#company-faqs">I have questions about your company&hellip;</a></h3>
518
+ </header>
519
+ </div>
520
+
521
+ <div class="details space-top--medium">
522
+
523
+ <details id="trust">
524
+ <summary>
525
+ <p>How long have you been around? Can we trust you?</p>
526
+ </summary>
527
+ <article>
528
+ <p>The company that designed, owns, and operates Basecamp is called <a href="https://37signals.com" target="_blank">37signals</a>, and we’ve been around as a company since 1999. We launched Basecamp, the product, in 2004 and have been improving it weekly ever since. Running a sane, responsible, sustainable business is part of our commitment to you.</p>
529
+ <p>We’ve been <strong>profitable for 25 straight years, we have zero debt, we’re privately held, and built to stay, not exit.</strong> Our <a href="../handbook">employee handbook</a> is also public for everyone to see how we run our business and treat our employees.</p>
530
+ <p>We’ve also written a number of <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18">bestselling books</a> (REWORK, Remote, It Doesn’t Have to Be Crazy at Work) as well. The books detail how we’ve built, and run, such a unique, long-lasting company in a field full of sameness and short-term thinking.</p>
531
+ <p>You can email Jason Fried, our Co-Founder and CEO, any time at <a href="mailto:jason@basecamp.com">jason@basecamp.com</a>. He doesn’t have an assistant, so he’ll read and respond to your emails personally.</p>
532
+ </article>
533
+ </details>
534
+
535
+ <details id="uptime">
536
+ <summary>
537
+ <p>What about reliability and uptime?</p>
538
+ </summary>
539
+ <article>
540
+ <p>We can make endless promises, but the numbers are what matter here. Our historical uptime over multiple decades is well over 99.99%, and you can see recent real-time history on our <a href="https://www.37status.com" target="_blank">Status Page</a>.</p>
541
+ </article>
542
+ </details>
543
+
544
+ <details id="refunds">
545
+ <summary>
546
+ <p>What’s your refund policy like?</p>
547
+ </summary>
548
+ <article>
549
+ <p>We aim to be fair and reasonable, just as we’d want to be treated. <a href="https://37signals.com/policies/refund/" target="_blank">Our refund policy</a> reflects that.</p>
550
+ </article>
551
+ </details>
552
+
553
+ <details id="questions">
554
+ <summary>
555
+ <p>Can I ask ownership a question directly?</p>
556
+ </summary>
557
+ <article>
558
+ <p><strong>Absolutely.</strong> Our Co-Founder and CEO (Jason Fried) is available direct at <a href="mailto:jason@basecamp.com">jason@basecamp.com</a>, and our other Co-Founder and CTO (David Heinemeier Hansson) is at <a href="mailto:david@basecamp.com">david@basecamp.com</a>. Please do reach out. They don’t have assistants or anyone who reads their emails, so you’ll hear from them directly.</p>
559
+ </article>
560
+ </details>
561
+
562
+ </div>
563
+
564
+ <div class="headline space-top--x-large">
565
+ <header>
566
+ <h3 id="security-faqs"><a href="../enterprise-extravaganza#security-faqs">I have questions about security and our data&hellip;</a></h3>
567
+ </header>
568
+ </div>
569
+
570
+ <div class="details space-top--medium">
571
+
572
+ <details id="secure">
573
+ <summary>
574
+ <p>How secure is Basecamp?</p>
575
+ </summary>
576
+ <article>
577
+ <p>We have a <a href="https://37signals.com/policies/security/" target="_blank">full security write-up</a> available on the 37signals site. 37signals is the company behind Basecamp.</p>
578
+ </article>
579
+ </details>
580
+
581
+ <details id="backups">
582
+ <summary>
583
+ <p>Is our data backed up? How often?</p>
584
+ </summary>
585
+ <article>
586
+ <p>Data customers enter into Basecamp is stored in multiple, redundant data centers. That data is backed up several times a day, and copies of those backups are stored both locally and off-site to further reduce points of possible failure. Files customers upload are stored off-site and backed up to servers in a different geographic region.</p>
587
+ </article>
588
+ </details>
589
+
590
+ <details id="data-centers">
591
+ <summary>
592
+ <p>Where are the servers that store our data?</p>
593
+ </summary>
594
+ <article>
595
+ <p>Our servers are located in multiple data centers in the United States. We service customers from over 160 countries from these servers. We do not currently have data centers outside the US.</p>
596
+ </article>
597
+ </details>
598
+
599
+ <details id="custom-security-questionnaires">
600
+ <summary>
601
+ <p>Can you fill our custom security questionnaires?</p>
602
+ </summary>
603
+ <article>
604
+ <p>We don’t fill out custom security questionnaires, but we’ve <a href="https://37signals.com/policies/security/37signals%20Security%20Overview.pdf" target="_blank">prepared a summary security PDF</a> which you can provide to your IT staff.</p>
605
+ </article>
606
+ </details>
607
+
608
+ <details id="export-our-data">
609
+ <summary>
610
+ <p>Can I export our data if we ever want to leave?</p>
611
+ </summary>
612
+ <article>
613
+ <p><strong>Absolutely,</strong> you can do it as often as you’d like. Plus, it’s entirely self-service and easy so you don’t need to ask anyone for help or permission. Further, we provide it in a format that allows you to browse it in a web browser so it’s actually useful. <a href="https://3.basecamp-help.com/article/150-export-your-basecamp-data" target="_blank">Here’s how exporting works</a>.</p>
614
+ </article>
615
+ </details>
616
+
617
+ </div>
618
+
619
+ <div class="headline space-top--x-large">
620
+ <header>
621
+ <h3 id="other-faqs"><a href="../enterprise-extravaganza#other-faqs">I have other questions&hellip;</a></h3>
622
+ </header>
623
+ </div>
624
+
625
+ <div class="details space-top--medium">
626
+
627
+ <details id="api">
628
+ <summary>
629
+ <p>Does Basecamp have an API? Can we integrate with Basecamp?</p>
630
+ </summary>
631
+ <article>
632
+ <p><strong>Yes,</strong> <a href="https://github.com/basecamp/bc3-api" target="_blank">Basecamp has a full-featured API (docs are hosted on GitHub)</a>. Hundreds of companies have written custom integrations, and <a href="../integrations/index.html">our Integrations page</a> links up third-party solutions for invoicing, accounting, time tracking, reporting, planning, asset management, contracts, proposals, and more.</p>
633
+ </article>
634
+ </details>
635
+
636
+ <details id="customer-support">
637
+ <summary>
638
+ <p>What’s your customer support like? What if we need help?</p>
639
+ </summary>
640
+ <article>
641
+ <p>Our customer support is widely considered to be among the best of the best. Everyone who works on our support team are expert specialists who know Basecamp inside and out, many having been with us for years and years, some over a decade. Further, we occasionally cycle every employee through support — including our CEO — so everyone has a chance to directly interact with customers.</p>
642
+ <p>You can <a href="../support/index.html">ask support a question</a>, or <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">watch tutorials</a>, or <a href="https://3.basecamp-help.com">review the help guides</a>, or <a href="../classes/index.html">attend a live walkthrough class and Q&amp;A</a>.</p>
643
+ </article>
644
+ </details>
645
+
646
+ <details id="languages">
647
+ <summary>
648
+ <p>Is Basecamp available in languages other than English?</p>
649
+ </summary>
650
+ <article>
651
+ <p>Currently we only offer Basecamp’s interface in English, although we have people in over 160 countries writing and sharing in their own native languages using Basecamp.</p>
652
+ </article>
653
+ </details>
654
+
655
+ <details id="other-products">
656
+ <summary>
657
+ <p>If we go with Basecamp, will we still need stuff like Slack? Asana? Dropbox?</p>
658
+ </summary>
659
+ <article>
660
+ <p><strong>Nope,</strong> Basecamp replaces a whole set of separate products and saves you a ton of money. Basecamp has chat built in (no more Slack). Basecamp has exceptional task management in the form of to-dos and kanban-style Card Tables (no more Asana). And you can store and share all the files you need in a project (no more Dropbox). Basecamp also replaces document-based tools like Google Docs, Notion, etc. And yet, if you need to continue to use some of those tools, you can always link them up right from inside Basecamp using the Doors feature.</p>
661
+ </article>
662
+ </details>
663
+
664
+ <details id="who-uses-basecamp">
665
+ <summary>
666
+ <p>What kind of companies, in which industries, use Basecamp?</p>
667
+ </summary>
668
+ <article>
669
+ <p>Basecamp is used by top notch marketers, ad agencies, designers, client services firms, consultants, software developers, freelancers, PR agencies, contractors, religious institutions, schools, non-profits, first responders, and many others. Over 75,000 organizations, across every industry imaginable, in 166 countries, use Basecamp for project management.</p>
670
+ <p>Our customers are primarily small or medium-sized companies with fewer than 100 full-time employees, but Basecamp is also used by teams inside many of the world’s largest companies.</p>
671
+ </article>
672
+ </details>
673
+
674
+ <details id="classes" class="data-classes data-classes--details" data-classes-limit="6">
675
+ <summary>
676
+ <p>Do you offer classes to learn more about Basecamp?</p>
677
+ </summary>
678
+ <article>
679
+ <p><strong>Yes, see our upcoming classes below.</strong> We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask. We’ll teach you the basics of using Basecamp, with plenty of time set aside for questions.<span class="data-classes__link"> <a href="../classes/index.html">See all our upcoming classes</a>.</span></p>
680
+ <div class="data-classes__output"></div>
681
+ </article>
682
+ </details>
683
+
684
+ </div>
685
+
686
+ <div class="marquee marquee--left space-bottom--xxx-large space-top--xx-large">
687
+
688
+ <a href="../customers/index.html" aria-hidden="true" tabindex="-1">
689
+ <ul>
690
+
691
+
692
+
693
+
694
+
695
+ <li>“Extremely user friendly”</li>
696
+
697
+
698
+
699
+ <li>“Truly amazing!”</li>
700
+
701
+
702
+
703
+ <li>“A godsend for our org”</li>
704
+
705
+
706
+
707
+ <li>“Simple, quick, powerful”</li>
708
+
709
+
710
+
711
+ <li>“So glad I found Basecamp”</li>
712
+
713
+
714
+
715
+ <li>“The perfect solution”</li>
716
+
717
+
718
+
719
+ <li>“Really great”</li>
720
+
721
+
722
+
723
+ <li>“Outstanding”</li>
724
+
725
+
726
+
727
+ <li>“Best app for teams”</li>
728
+
729
+
730
+
731
+ <li>“Awesome service”</li>
732
+
733
+
734
+
735
+ <li>“Gets better and better”</li>
736
+
737
+
738
+
739
+ <li>“Great collaboration tool”</li>
740
+
741
+
742
+
743
+ <li>“Great software”</li>
744
+
745
+
746
+
747
+ <li>“Gold standard PM app”</li>
748
+
749
+
750
+
751
+ <li>“Brilliant solution”</li>
752
+
753
+
754
+
755
+ <li>“Clean and easy to use”</li>
756
+
757
+
758
+
759
+ <li>“Fantastic app”</li>
760
+
761
+
762
+
763
+ <li>“Organized and on point”</li>
764
+
765
+
766
+
767
+ <li>“Extremely user friendly”</li>
768
+
769
+
770
+
771
+ <li>“Truly amazing!”</li>
772
+
773
+
774
+
775
+ <li>“A godsend for our org”</li>
776
+
777
+
778
+
779
+ <li>“Simple, quick, powerful”</li>
780
+
781
+
782
+
783
+ <li>“So glad I found Basecamp”</li>
784
+
785
+
786
+
787
+ <li>“The perfect solution”</li>
788
+
789
+
790
+
791
+ <li>“Really great”</li>
792
+
793
+
794
+
795
+ <li>“Outstanding”</li>
796
+
797
+
798
+
799
+ <li>“Best app for teams”</li>
800
+
801
+
802
+
803
+ <li>“Awesome service”</li>
804
+
805
+
806
+
807
+ <li>“Gets better and better”</li>
808
+
809
+
810
+
811
+ <li>“Great collaboration tool”</li>
812
+
813
+
814
+
815
+ <li>“Great software”</li>
816
+
817
+
818
+
819
+ <li>“Gold standard PM app”</li>
820
+
821
+
822
+
823
+ <li>“Brilliant solution”</li>
824
+
825
+
826
+
827
+ <li>“Clean and easy to use”</li>
828
+
829
+
830
+
831
+ <li>“Fantastic app”</li>
832
+
833
+
834
+
835
+ <li>“Organized and on point”</li>
836
+
837
+
838
+
839
+ </ul>
840
+ </a>
841
+
842
+
843
+ </div>
844
+
845
+
846
+ </main>
847
+
848
+ <footer class="footer">
849
+
850
+
851
+
852
+
853
+
854
+ <div class="footer__apps" id="apps">
855
+ <dl class="footer__headline">
856
+ <dt>Basecamp’s everywhere</dt>
857
+ <dd>Mac, Windows, iOS, Android, and on the web — Basecamp is ready <a href="../apps/index.html">whenever and wherever you are</a>.</dd>
858
+ </dl>
859
+ <ul>
860
+ <li><a class="button button--icon button--pwa" href="https://3.basecamp-help.com/article/937-basecamp-pwa" title="Install Basecamp on Mac and Windows">Desktop apps</a></li>
861
+ <li><a class="button button--icon button--ios" href="https://apps.apple.com/us/app/basecamp-project-management/id1015603248" title="Install Basecamp on iOS">iOS</a></li>
862
+ <li><a class="button button--icon button--android" href="https://play.google.com/store/apps/details?id=com.basecamp.bc3" title="Install Basecamp on Android">Android</a></li>
863
+ <li><a class="button button--icon button--basecamp" href="https://launchpad.37signals.com/signin" title="Use Basecamp in your web browser" target="_blank" data-controller="signup" data-action="signup#trackLogin">Sign in to Basecamp</a></li>
864
+ </ul>
865
+ </div>
866
+
867
+
868
+
869
+
870
+
871
+ <div class="footer__classes data-classes" data-classes-limit="4">
872
+ <dl class="footer__headline">
873
+ <dt>Join us for a free live class</dt>
874
+ <dd>We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask.<span class="data-classes__link"> <a href="../classes/index.html">See all our upcoming classes</a>.</span></dd>
875
+ </dl>
876
+ <div class="data-classes__output"></div>
877
+ </div>
878
+
879
+
880
+
881
+
882
+
883
+ <div class="footer__newsletter">
884
+ <dl class="footer__headline">
885
+ <dt>Never miss an update</dt>
886
+ <dd>Join more than 150,000 people who get <a href="../newsletter/index.html">our newsletter</a>. We’ll share product updates, thoughts, new releases, and other tidbits we think you’ll find interesting.</dd>
887
+ </dl>
888
+ <div class="newsletter">
889
+ <div class="newsletter__container">
890
+ <form novalidate action="https://basecamp.us2.list-manage.com/subscribe/post-json?u=2a145c60b16248b65e46a799a&amp;id=476312b66e&amp;c=?" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form">
891
+ <div aria-hidden="true" style="position: absolute; left: -5000px;"><input type="text" name="b_2a145c60b16248b65e46a799a_476312b66e" value="" tabindex="-1" aria-label="mce"></div>
892
+ <input type="hidden" name="tags" value="23018">
893
+ <input type="email" name="EMAIL" value="" id="mce-EMAIL" placeholder="julie.young@hey.com" aria-label="Your email address" required data-1p-ignore>
894
+ <button type="submit" name="subscribe" id="mc-embedded-subscribe">Subscribe</button>
895
+ </form>
896
+ </div>
897
+ </div>
898
+ </div>
899
+
900
+
901
+
902
+
903
+
904
+ <div class="footer__support">
905
+ <dl class="footer__headline">
906
+ <dt>We’re here to help with 24/7/365 support</dt>
907
+ <dd>There are no stupid questions — for pre-sales questions, existing customers who need a hand, or any other inquiries, <a href="../support/index.html">contact us</a> and we’ll get back to you within an hour. <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">Watch tutorials</a>, <a href="../help/index.html">read the help guides</a>, or <a href="../support/index.html">send us a message</a> to get help.</dd>
908
+ </dl>
909
+
910
+
911
+
912
+ <div class="footer__hey">
913
+ <a href="https://www.hey.com" target="_blank">
914
+ <span>If you love Basecamp, you’ll love <strong>HEY</strong> — our delightfully fresh take on email + calendar</span>
915
+ </a>
916
+ </div>
917
+
918
+
919
+
920
+ </div>
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+ <div class="footer__links">
929
+ <dl class="footer__headline">
930
+ <dt>And there’s more&hellip;</dt>
931
+ <dd>
932
+
933
+
934
+
935
+ <a href="../new/index.html" aria-label="What’s new">What’s new</a> •
936
+
937
+
938
+
939
+ <a href="../paths/index.html" aria-label="The people’s path to Basecamp">The people’s path to Basecamp</a> •
940
+
941
+
942
+
943
+ <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18" aria-label="Books we’ve written">Books we’ve written</a> •
944
+
945
+
946
+
947
+ <a href="../about/index.html" aria-label="Where we came from">Where we came from</a> •
948
+
949
+
950
+
951
+ <a href="../guides/how-we-communicate/index.html" aria-label="How we communicate">How we communicate</a> •
952
+
953
+
954
+
955
+ <a href="../guides/how-we-make-decisions/index.html" aria-label="How we make decisions">How we make decisions</a> •
956
+
957
+
958
+
959
+ <a href="../guides/why-we-choose-profit/index.html" aria-label="Why we choose profit">Why we choose profit</a> •
960
+
961
+
962
+
963
+ <a href="../guides/group-chat-problems/index.html" aria-label="Group chat problems">Group chat problems</a> •
964
+
965
+
966
+
967
+ <a href="../guides/seven-shipping-principles/index.html" aria-label="Seven shipping principles">Seven shipping principles</a> •
968
+
969
+
970
+
971
+ <a href="../underdogs/index.html" aria-label="We stand with the underdogs">We stand with the underdogs</a> •
972
+
973
+
974
+
975
+ <a href="../small/index.html" aria-label="Come small, come all">Come small, come all</a> •
976
+
977
+
978
+
979
+ <a href="../overkill/index.html" aria-label="Kill overkill">Kill overkill</a> •
980
+
981
+
982
+
983
+ <a href="../cloud-exit/index.html" aria-label="Leaving the Cloud">Leaving the Cloud</a> •
984
+
985
+
986
+
987
+ <a href="../before-and-after/index.html" aria-label="Night &amp; day">Night &amp; day</a> •
988
+
989
+
990
+
991
+ <a href="../hill-charts/index.html" aria-label="See where projects really stand">See where projects really stand</a> •
992
+
993
+
994
+
995
+ <a href="../justletmedomyjob/index.html" aria-label="JUST LET ME DO MY JOB">JUST LET ME DO MY JOB</a> •
996
+
997
+
998
+
999
+ <a href="../customers/index.html" aria-label="What changed for the better?">What changed for the better?</a> •
1000
+
1001
+
1002
+
1003
+ <a href="../integrations/index.html" aria-label="Integrations">Integrations</a> •
1004
+
1005
+
1006
+
1007
+ <a href="../accessibility/index.html" aria-label="Basecamp is for everyone">Basecamp is for everyone</a> •
1008
+
1009
+
1010
+
1011
+ <a href="../community/index.html" aria-label="Basecamp community">Basecamp community</a> •
1012
+
1013
+
1014
+
1015
+ <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14" aria-label="Learn Basecamp">Learn Basecamp</a> •
1016
+
1017
+
1018
+
1019
+ <a href="../handbook" aria-label="Employee handbook">Employee handbook</a>
1020
+
1021
+
1022
+
1023
+ </dd>
1024
+ </dl>
1025
+ </div>
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+
1033
+ <div class="footer__legal">
1034
+ <p>
1035
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
1036
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
1037
+ <strong>Basecamp</strong>
1038
+ </a>
1039
+ <span>is designed, built, and backed by</span>
1040
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
1041
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
1042
+ <strong>37signals</strong>
1043
+ </a>
1044
+ </p>
1045
+ <ul>
1046
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
1047
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
1048
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
1049
+ <li>&copy; 2025 37signals LLC</li>
1050
+ </ul>
1051
+ </div>
1052
+ </footer>
1053
+
1054
+
1055
+ <dialog class="modal">
1056
+ <div class="modal__backdrop"></div>
1057
+ <div class="modal__container"></div>
1058
+ </dialog>
1059
+
1060
+
1061
+ </body>
1062
+
1063
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/features/card-table ADDED
@@ -0,0 +1,1063 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Project management software, online collaboration</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Project management software, online collaboration">
28
+ <meta property="og:description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Project management software, online collaboration">
34
+ <meta name="twitter:description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Project management software, online collaboration",
53
+ "description": "Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.",
54
+ "url": "https://basecamp.com/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="../enterprise-extravaganza">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body class="body has-nav-phrase" data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <input id="nav-active" type="checkbox">
110
+
111
+ <label id="nav-underlay" for="nav-active"></label>
112
+
113
+ <nav class="nav">
114
+ <div class="nav__container">
115
+ <div class="nav__logo">
116
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
117
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
118
+ <strong>Basecamp</strong>
119
+ </a>
120
+ <div class="nav__phrase">is the <span class="highlight"></span> <strong>project management system</strong> by</div>
121
+ <b class="icon icon--37signals">
122
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
123
+ <strong>37signals</strong>
124
+ </b>
125
+ </div>
126
+ <div class="nav__links">
127
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
128
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
129
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
130
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
131
+ </div>
132
+ <div class="nav__buttons">
133
+ <a class="nav__button nav__button--launchpad" href="https://launchpad.37signals.com/signin" target="_blank" data-controller="signup" data-action="signup#trackLogin" aria-label="Sign in">Sign in</a>
134
+ <a class="nav__button nav__button--signup trk-package" id="sign-up-nav" href="../pricing/index.html#packages" aria-label="Sign up free">Sign up free</a>
135
+ </div>
136
+ <label class="nav__toggle" for="nav-active" aria-label="Nav Toggle" tabindex="0"></label>
137
+ </div>
138
+ <div class="nav__mobile">
139
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
140
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
141
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
142
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
143
+ </div>
144
+ </nav>
145
+
146
+
147
+
148
+
149
+ <main class="main">
150
+
151
+ <div class="illustration space-bottom--large">
152
+ <picture>
153
+ <source srcset="/assets/images/home/illustration-desktop.png" media="(min-width: 48em)">
154
+ <img src="../assets/images/home/illustration-mobile.png" alt="Wrestling with projects? It doesn’t have to be this hard.">
155
+ </picture>
156
+ </div>
157
+
158
+ <div class="columns">
159
+ <section>
160
+ <header>
161
+ <h1>Wrestling with projects?<br> It doesn’t have to be this hard.</h1>
162
+ </header>
163
+ <article>
164
+ <div>
165
+ <p>There are lots of ways to manage projects. And there’s plenty of software promising to help. You’ve probably tried some. Yet, here you are.</p>
166
+ <p><strong>Unfortunately, most project management systems are either overwhelming, inadequate, bewildering, or chaotic. You know?</strong></p>
167
+ <p>Not Basecamp. Basecamp is refreshingly straightforward, with a 21-year track record to back it up. Longevity isn’t luck — it’s proof it works. And you’ll work better with it too.</p>
168
+ </div>
169
+ <div>
170
+ <p><strong>Basecamp is famously no-nonsense, effective, and reliable.</strong> The trifecta. It’s <a href="../underdogs/index.html">designed for smaller, hungrier businesses</a>, not big, sluggish ones. <a href="../customers/index.html">Over 30 pages of customer testimonials</a> detail how things run better on Basecamp.</p>
171
+ <p>So, we invite you to poke around, watch the video below, and <a href="../pricing/index.html#packages">try Basecamp for free</a>. We’d be honored to have you as a customer. Thank you.</p>
172
+ <dl>
173
+ <dt><strong>Jason Fried</strong>, <a href="mailto:jason@basecamp.com">jason@basecamp.com</a></dt>
174
+ <dd><em>Co-founder &amp; CEO</em></dd>
175
+ </dl>
176
+ </div>
177
+ </article>
178
+ </section>
179
+ </div>
180
+
181
+ <div class="visual visual--walkthrough space-top--xxx-large">
182
+ <div class="visual__column">
183
+ <button class="visual__button modal-trigger" id="walkthrough-columns" data-type="video" data-event="Walkthrough: Columns" data-src="/videos/home/walkthrough.mp4" data-track="/videos/home/walkthrough.vtt">
184
+ <figure class="visual__figure">
185
+ <img src="../videos/home/walkthrough-small.webp" width="2400" height="1326" alt="See how Basecamp works">
186
+ <span aria-hidden="true">Hit play to see how Basecamp is different</span>
187
+ </figure>
188
+ <div class="visual__play"></div>
189
+ </button>
190
+ </div>
191
+ </div>
192
+
193
+ <div class="statement space-top--xxx-large">
194
+ <section>
195
+ <header>
196
+ <h2 id="features"><a href="../enterprise-extravaganza#features">Let’s walk through it.</a></h2>
197
+ </header>
198
+ </section>
199
+ </div>
200
+
201
+ <div class="headline space-top--large">
202
+ <header>
203
+ <h3 id="home"><a href="../enterprise-extravaganza#home">10 seconds after you sign up, clarity sets in.</a></h3>
204
+ </header>
205
+ <article>
206
+ <p>The home screen organizes your projects, assignments, and upcoming events together on one screen. It’s your calm, comfortable, simple starting point every morning.</p>
207
+ </article>
208
+ </div>
209
+
210
+ <div class="visual space-top--large">
211
+ <div class="visual__column visual__column--4">
212
+ <button class="visual__button modal-trigger" id="whats-my-week-look-like" data-type="video" data-event="Home: What’s my week look like?" data-src="/videos/home/whats-my-week-look-like.mp4" data-track="/videos/home/whats-my-week-look-like.vtt">
213
+ <figure class="visual__figure">
214
+ <img src="../videos/home/whats-my-week-look-like.webp" width="1260" height="1116" alt="View your schedule" loading="lazy">
215
+ <span aria-hidden="true">What’s my week look like?</span>
216
+ </figure>
217
+ <div class="visual__play"></div>
218
+ </button>
219
+ <button class="visual__button modal-trigger" id="whats-on-my-plate-today" data-type="video" data-event="Home: What’s on my plate today?" data-src="/videos/home/whats-on-my-plate-today.mp4" data-track="/videos/home/whats-on-my-plate-today.vtt">
220
+ <figure class="visual__figure">
221
+ <img src="../videos/home/whats-on-my-plate-today.webp" width="1260" height="1116" alt="View your assignments" loading="lazy">
222
+ <span aria-hidden="true">What’s on my plate today?</span>
223
+ </figure>
224
+ <div class="visual__play"></div>
225
+ </button>
226
+ <aside class="visual__aside" aria-label="Home">
227
+ <p><strong>Each person gets their own home screen depending on which projects they have access to.</strong> They’ll only see their own assignments and events. And you can keep important projects close at hand by pinning them to the top.</p>
228
+ </aside>
229
+ </div>
230
+ <div class="visual__column visual__column--8">
231
+ <button class="visual__button modal-trigger" id="which-projects-am-i-on" data-type="video" data-event="Home: Which projects am I on?" data-src="/videos/home/which-projects-am-i-on.mp4" data-track="/videos/home/which-projects-am-i-on.vtt">
232
+ <figure class="visual__figure">
233
+ <img src="../videos/home/which-projects-am-i-on.webp" width="2400" height="2854" alt="View projects on the home screen" loading="lazy">
234
+ <span aria-hidden="true">Which projects am I on?</span>
235
+ </figure>
236
+ <div class="visual__play"></div>
237
+ </button>
238
+ </div>
239
+ </div>
240
+
241
+ <div class="headline space-top--xxx-large">
242
+ <header>
243
+ <h3 id="projects"><a href="../enterprise-extravaganza#projects">Projects get teams — and keep teams — organized.</a></h3>
244
+ </header>
245
+ <article>
246
+ <p>A project is where the tasks, discussions, deliverables, and decisions happen. Projects hold everything — and everyone — together in one tidy, predictably structured place.</p>
247
+ </article>
248
+ </div>
249
+
250
+ <div class="visual space-top--large">
251
+ <div class="visual__column visual__column--6">
252
+ <button class="visual__button modal-trigger" id="all-in-one-toolbox" data-type="video" data-event="Projects: A project page organizes everything" data-src="/videos/home/all-in-one-toolbox.mp4" data-track="/videos/home/all-in-one-toolbox.vtt">
253
+ <figure class="visual__figure">
254
+ <img src="../videos/home/all-in-one-toolbox.webp" width="2400" height="2582" alt="A Basecamp project page" loading="lazy">
255
+ <span aria-hidden="true">A project page organizes everything</span>
256
+ </figure>
257
+ <div class="visual__play"></div>
258
+ </button>
259
+ <aside class="visual__aside" aria-label="Projects">
260
+ <p><strong>Make as many projects as you’d like.</strong> We run dozens at once in our own Basecamp account. For example, one for a web site redesign, <a href="../enterprise-extravaganza#organizing-a-meet-up" class="modal-trigger" id="organizing-a-meet-up" data-type="video" data-event="Organizing a Meet-up" data-src="/videos/organizing-a-meet-up/organizing-a-meet-up.mp4">one for planning an upcoming offsite</a>, one for working with our accountants, and one just for the executive team to plan strategy, etc.</p>
261
+ </aside>
262
+ </div>
263
+ <div class="visual__column visual__column--6 visual__column--grid">
264
+ <button class="visual__button modal-trigger" id="track-tasks" data-type="video" data-event="Projects: What to do + who’s doing?" data-src="/videos/home/track-tasks.mp4" data-track="/videos/home/track-tasks.vtt">
265
+ <figure class="visual__figure">
266
+ <img src="../assets/images/screenshots/to-dos-thumbnail.webp" width="1200" height="900" alt="Track work with To-dos" loading="lazy">
267
+ <span aria-hidden="true">What to do + who’s doing?</span>
268
+ </figure>
269
+ <div class="visual__play"></div>
270
+ </button>
271
+ <button class="visual__button modal-trigger" id="launch-discussions" data-type="video" data-event="Projects: Who said what when?" data-src="/videos/home/launch-discussions.mp4" data-track="/videos/home/launch-discussions.vtt">
272
+ <figure class="visual__figure">
273
+ <img src="../assets/images/screenshots/message-board-thumbnail.webp" width="1200" height="900" alt="Stay on topic with Messages" loading="lazy">
274
+ <span aria-hidden="true">Who said what when?</span>
275
+ </figure>
276
+ <div class="visual__play"></div>
277
+ </button>
278
+ <button class="visual__button modal-trigger" id="set-milestones" data-type="video" data-event="Projects: What’s due next?" data-src="/videos/home/set-milestones.mp4" data-track="/videos/home/set-milestones.vtt">
279
+ <figure class="visual__figure">
280
+ <img src="../assets/images/screenshots/schedule-thumbnail.webp" width="1200" height="900" alt="Schedule so you don’t forget" loading="lazy">
281
+ <span aria-hidden="true">What’s due next?</span>
282
+ </figure>
283
+ <div class="visual__play"></div>
284
+ </button>
285
+ <button class="visual__button modal-trigger" id="store-assets" data-type="video" data-event="Projects: Where’s the latest version?" data-src="/videos/home/store-assets.mp4" data-track="/videos/home/store-assets.vtt">
286
+ <figure class="visual__figure">
287
+ <img src="../assets/images/screenshots/docs-and-files-thumbnail.webp" width="1200" height="900" alt="Store, share, and discuss files" loading="lazy">
288
+ <span aria-hidden="true">Where’s the latest version?</span>
289
+ </figure>
290
+ <div class="visual__play"></div>
291
+ </button>
292
+ <button class="visual__button modal-trigger" id="hash-stuff-out" data-type="video" data-event="Projects: Got a quick question?" data-src="/videos/home/hash-stuff-out.mp4" data-track="/videos/home/hash-stuff-out.vtt">
293
+ <figure class="visual__figure">
294
+ <img src="../assets/images/screenshots/chat-thumbnail.webp" width="1200" height="900" alt="Chat around the campfire" loading="lazy">
295
+ <span aria-hidden="true">Got a quick question?</span>
296
+ </figure>
297
+ <div class="visual__play"></div>
298
+ </button>
299
+ <button class="visual__button modal-trigger" id="run-workflows" data-type="video" data-event="Projects: How’s the process flowing?" data-src="/videos/home/run-workflows.mp4" data-track="/videos/home/run-workflows.vtt">
300
+ <figure class="visual__figure">
301
+ <img src="../assets/images/screenshots/card-table-thumbnail.webp" width="1200" height="900" alt="Card Table is our unique take on Kanban" loading="lazy">
302
+ <span aria-hidden="true">How’s the process flowing?</span>
303
+ </figure>
304
+ <div class="visual__play"></div>
305
+ </button>
306
+ </div>
307
+ </div>
308
+
309
+ <div class="headline space-top--xxx-large">
310
+ <header>
311
+ <h3 id="reports"><a href="../enterprise-extravaganza#reports">Reports give you confidence to hold people accountable.</a></h3>
312
+ </header>
313
+ <article>
314
+ <p>Basecamp’s reports aren’t numbers, percentages, or abstract representations — they’re the real work, actual evidence of progress being made (or not made).</p>
315
+ </article>
316
+ </div>
317
+
318
+ <div class="visual space-top--large">
319
+ <div class="visual__column visual__column--4">
320
+ <button class="visual__button modal-trigger" id="whats-overdue" data-type="video" data-event="Reports: What’s overdue?" data-src="/videos/home/whats-overdue.mp4" data-track="/videos/home/whats-overdue.vtt">
321
+ <figure class="visual__figure">
322
+ <img src="../videos/home/whats-overdue.webp" width="1796" height="1304" alt="See everything that’s overdue" loading="lazy">
323
+ <span aria-hidden="true">What’s overdue?</span>
324
+ </figure>
325
+ <div class="visual__play"></div>
326
+ </button>
327
+ <button class="visual__button modal-trigger" id="how-much-time-have-we-spent" data-type="video" data-event="Reports: How much time have we spent?" data-src="/videos/home/how-much-time-have-we-spent.mp4" data-track="/videos/home/how-much-time-have-we-spent.vtt">
328
+ <figure class="visual__figure">
329
+ <img src="../videos/home/how-much-time-have-we-spent.webp" width="1796" height="1304" alt="Track time directly in Basecamp" loading="lazy">
330
+ <span aria-hidden="true">How much time have we spent?</span>
331
+ </figure>
332
+ <div class="visual__play"></div>
333
+ </button>
334
+ <button class="visual__button modal-trigger" id="whos-responsible-for-what" data-type="video" data-event="Reports: Who’s responsible for what?" data-src="/videos/home/whos-responsible-for-what.mp4" data-track="/videos/home/whos-responsible-for-what.vtt">
335
+ <figure class="visual__figure">
336
+ <img src="../videos/home/whos-responsible-for-what.webp" width="1796" height="1304" alt="Reports quickly cut across every project to give you quick insights" loading="lazy">
337
+ <span aria-hidden="true">Who’s responsible for what?</span>
338
+ </figure>
339
+ <div class="visual__play"></div>
340
+ </button>
341
+ </div>
342
+ <div class="visual__column visual__column--8">
343
+ <button class="visual__button modal-trigger" id="whats-actually-been-happening" data-type="video" data-event="Reports: What’s actually been happening?" data-src="/videos/home/whats-actually-been-happening.mp4" data-track="/videos/home/whats-actually-been-happening.vtt">
344
+ <figure class="visual__figure">
345
+ <img src="../videos/home/whats-actually-been-happening.webp" width="2400" height="3028" alt="The micro-view of everything that happens across every project in real-time" loading="lazy">
346
+ <span aria-hidden="true">What’s actually been happening?</span>
347
+ </figure>
348
+ <div class="visual__play"></div>
349
+ </button>
350
+ </div>
351
+ </div>
352
+
353
+ <div class="headline space-top--xxx-large">
354
+ <header>
355
+ <h3 id="visualizations"><a href="../enterprise-extravaganza#visualizations">Visualizations are for seeing, not squinting.</a></h3>
356
+ </header>
357
+ <article>
358
+ <p>Basecamp’s Lineup, Mission Control, and Hill Charts are visual tools that help you clearly see where projects really stand. Notice progress at a glance, know reality in an instant.</p>
359
+ </article>
360
+ </div>
361
+
362
+ <div class="visual space-top--large">
363
+ <div class="visual__column">
364
+ <button class="visual__button modal-trigger" id="how-far-along-are-we" data-type="video" data-event="Visualizations: How far along are we?" data-src="/videos/home/how-far-along-are-we.mp4" data-track="/videos/home/how-far-along-are-we.vtt">
365
+ <figure class="visual__figure">
366
+ <img src="../videos/home/how-far-along-are-we.webp" width="3008" height="1504" alt="The Lineup shows you where every project stands, from start to finish, all at once" loading="lazy">
367
+ <span aria-hidden="true">How far along are we?</span>
368
+ </figure>
369
+ <div class="visual__play"></div>
370
+ </button>
371
+ </div>
372
+ <div class="visual__column visual__column--grid">
373
+ <button class="visual__button modal-trigger" id="how-are-we-feeling" data-type="video" data-event="Visualizations: How are we feeling?" data-src="/videos/home/how-are-we-feeling.mp4" data-track="/videos/home/how-are-we-feeling.vtt">
374
+ <figure class="visual__figure">
375
+ <img src="../videos/home/how-are-we-feeling.webp" width="2400" height="1434" alt="Mission Control shows you which projects are on track and which ones need a helping hand" loading="lazy">
376
+ <span aria-hidden="true">How are we feeling?</span>
377
+ </figure>
378
+ <div class="visual__play"></div>
379
+ </button>
380
+ <button class="visual__button modal-trigger" id="what-still-needs-to-be-figured-out" data-type="video" data-event="Visualizations: What still needs to be figured out?" data-src="/videos/home/what-still-needs-to-be-figured-out.mp4" data-track="/videos/home/what-still-needs-to-be-figured-out.vtt">
381
+ <figure class="visual__figure">
382
+ <img src="../videos/home/what-still-needs-to-be-figured-out.webp" width="2400" height="1434" alt="Hill Charts visually display the progress of your To-do list" loading="lazy">
383
+ <span aria-hidden="true">What still needs to be figured out?</span>
384
+ </figure>
385
+ <div class="visual__play"></div>
386
+ </button>
387
+ </div>
388
+ </div>
389
+
390
+ <div class="headline space-top--xxx-large">
391
+ <header>
392
+ <h3 id="notifications"><a href="../enterprise-extravaganza#notifications">Ping! Hey! It’s for you.</a></h3>
393
+ </header>
394
+ <article>
395
+ <p>The Hey! menu aggregates your notifications in a never-annoying single menu. And “Pings”, our flavor of direct messages, let you kick off ad hoc chats 1:1 or in small groups.</p>
396
+ </article>
397
+ </div>
398
+
399
+ <div class="visual space-top--large">
400
+ <div class="visual__column visual__column--5">
401
+ <button class="visual__button modal-trigger" id="have-private-1-1-or-small-group-conversations" data-type="video" data-event="Notifications: Have private 1-1 or small group conversations" data-src="/videos/home/have-private-1-1-or-small-group-conversations.mp4" data-track="/videos/home/have-private-1-1-or-small-group-conversations.vtt">
402
+ <figure class="visual__figure">
403
+ <img src="../videos/home/have-private-1-1-or-small-group-conversations.webp" width="2400" height="1830" alt="Pings let you kick off ad hoc chats 1:1 or in small groups" loading="lazy">
404
+ <span aria-hidden="true">Have private 1-1 or small group conversations</span>
405
+ </figure>
406
+ <div class="visual__play"></div>
407
+ </button>
408
+ <aside class="visual__aside" aria-label="Notifications">
409
+ <p><strong>Don’t have work chats via text or Whatsapp on your personal phone number.</strong> Keep work at work by having them in Basecamp instead.</p>
410
+ </aside>
411
+ </div>
412
+ <div class="visual__column visual__column--7">
413
+ <button class="visual__button modal-trigger" id="notifications-in-one-place" data-type="video" data-event="Notifications: Notifications in one place, not in your face" data-src="/videos/home/notifications-in-one-place.mp4" data-track="/videos/home/notifications-in-one-place.vtt">
414
+ <figure class="visual__figure">
415
+ <img src="../videos/home/notifications-in-one-place.webp" width="2400" height="1830" alt="The Hey! menu aggregates all your notifications in a single menu" loading="lazy">
416
+ <span aria-hidden="true">Notifications in one place, not in your face</span>
417
+ </figure>
418
+ <div class="visual__play"></div>
419
+ </button>
420
+ </div>
421
+ </div>
422
+
423
+ <div class="headline space-top--xxx-large">
424
+ <header>
425
+ <h3 id="clients"><a href="../enterprise-extravaganza#clients">Got clients? Be partners, not adversaries.</a></h3>
426
+ </header>
427
+ <article>
428
+ <p>Basecamp keeps both sides organized, everyone’s feedback on the record, and all decisions, approvals, files, tasks, deadlines, and communications safe and centralized.</p>
429
+ </article>
430
+ </div>
431
+
432
+ <div class="visual space-top--large">
433
+ <div class="visual__column visual__column--grid">
434
+ <button class="visual__button modal-trigger" id="you-decide-what-clients-can-see" data-type="video" data-event="Clients: Can the client see this?" data-src="/videos/home/you-decide-what-clients-can-see.mp4" data-track="/videos/home/you-decide-what-clients-can-see.vtt">
435
+ <figure class="visual__figure">
436
+ <img src="../videos/home/you-decide-what-clients-can-see.webp" width="2400" height="1424" alt="You decide what your clients can see" loading="lazy">
437
+ <span aria-hidden="true">Can the client see this?</span>
438
+ </figure>
439
+ <div class="visual__play"></div>
440
+ </button>
441
+ <button class="visual__button modal-trigger" id="three-folders-for-you-one-for-them" data-type="video" data-event="Clients: Where’s the final version so we can show the client?" data-src="/videos/home/three-folders-for-you-one-for-them.mp4" data-track="/videos/home/three-folders-for-you-one-for-them.vtt">
442
+ <figure class="visual__figure">
443
+ <img src="../videos/home/three-folders-for-you-one-for-them.webp" width="2400" height="1424" alt="Let clients grab the files they need without having to ask" loading="lazy">
444
+ <span aria-hidden="true">Where’s the final version so we can show the client?</span>
445
+ </figure>
446
+ <div class="visual__play"></div>
447
+ </button>
448
+ <button class="visual__button modal-trigger" id="keep-approvals-on-the-official-record" data-type="video" data-event="Clients: Did the client officially approve it?" data-src="/videos/home/keep-approvals-on-the-official-record.mp4" data-track="/videos/home/keep-approvals-on-the-official-record.vtt">
449
+ <figure class="visual__figure">
450
+ <img src="../videos/home/keep-approvals-on-the-official-record.webp" width="2400" height="2108" alt="Keep client feedback on the official record" loading="lazy">
451
+ <span aria-hidden="true">Did the client officially approve it?</span>
452
+ </figure>
453
+ <div class="visual__play"></div>
454
+ </button>
455
+ <button class="visual__button modal-trigger" id="email-through-basecamp" data-type="video" data-event="Clients: Where’s the client’s email they sent?" data-src="/videos/home/email-through-basecamp.mp4" data-track="/videos/home/email-through-basecamp.vtt">
456
+ <figure class="visual__figure">
457
+ <img src="../videos/home/email-through-basecamp.webp" width="2400" height="2108" alt="Clients can respond to messages right from their inbox" loading="lazy">
458
+ <span aria-hidden="true">Where’s the client’s email they sent?</span>
459
+ </figure>
460
+ <div class="visual__play"></div>
461
+ </button>
462
+ </div>
463
+ </div>
464
+
465
+ <div class="headline space-top--xxx-large">
466
+ <header>
467
+ <h3 id="yes"><a href="../enterprise-extravaganza#yes">The answer is <span class="yes-label">YES!</span></a></h3>
468
+ </header>
469
+ <article>
470
+ <p>Can software be simple, straightforward, and easy, yet powerfully full-featured?<br> With Basecamp the answer is absolutely <strong>YES!</strong></p>
471
+ </article>
472
+ </div>
473
+
474
+ <div class="yes space-top--neutral">
475
+ <ul>
476
+ <li>Can I <strong>prevent our clients from seeing unfinished work?</strong></li>
477
+ <li>Can I <strong>link up files from Google Docs, Figma, Dropbox, Airtable, and other apps?</strong></li>
478
+ <li>Can I <strong>see everything I need to do on a single screen?</strong></li>
479
+ <li>Can I <strong>see everything that’s overdue on a single screen?</strong></li>
480
+ <li>Can I use Basecamp <strong>even if some of my team prefers just to use email?</strong></li>
481
+ <li>Can I <strong>see all the work that was completed on any given day?</strong></li>
482
+ <li>Can I <strong>set up projects that only some of my team can see?</strong></li>
483
+ <li>Can I <strong>see everything that’s happened across multiple projects in one place?</strong></li>
484
+ <li>Can I <strong>@mention someone so they’re notified about something?</strong></li>
485
+ <li>Can I <strong>see all the work someone’s done over a long period of time?</strong></li>
486
+ <li>Can I <strong>see everything that’s assigned to someone on a single page?</strong></li>
487
+ <li>Can I <strong>see exactly who worked on what today? Yesterday? Last week?</strong></li>
488
+ <li>Can I <strong>easily reference an entire conversation from a year ago?</strong></li>
489
+ <li>Can I <strong>follow a project quietly without receiving notifications?</strong></li>
490
+ <li>Can I <strong>assign tasks to multiple people at once?</strong></li>
491
+ <li>Can I <strong>see all our projects laid out on a visual timeline?</strong></li>
492
+ <li>Can I <strong>keep all the discussion about a to-do attached to that to-do?</strong></li>
493
+ <li>Can I <strong>follow-up directly with someone without anyone else knowing?</strong></li>
494
+ <li>Can <strong>our clients respond to our questions via email?</strong></li>
495
+ <li>Can <strong>our clients see a record of everything we’ve asked them?</strong></li>
496
+ <li>Can I <strong>organize ideas and setup workflows on a Kanban board?</strong></li>
497
+ <li>Can Basecamp <strong>tell me when someone completed an assignment?</strong></li>
498
+ <li>Can Basecamp <strong>help me get a client to approve a design?</strong></li>
499
+ <li>Can Basecamp <strong>help me hold my team accountable for deadlines?</strong></li>
500
+ <li>You <strong>wrote some <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18">books on how to run a business</a>, too, right?</strong></li>
501
+ </ul>
502
+ </div>
503
+
504
+ <div class="statement statement--gap-large space-top--xxx-large">
505
+ <section>
506
+ <header>
507
+ <h2 id="its-time"><a href="../enterprise-extravaganza#its-time">You wouldn’t be here if the<br> way you’ve been working was working. It’s time for Basecamp.</a></h2>
508
+ </header>
509
+ <article>
510
+ <p>Team super busy, but running in circles? <strong>It’s time for Basecamp.</strong> Finding stuff easy to start, but hard to finish? <strong>It’s time for Basecamp.</strong> Things taking longer than they should? <strong>It’s time for Basecamp.</strong> Info increasingly scattered across different apps? <strong>It’s time for Basecamp.</strong> Subscription fees keep adding up?<br> <strong>It’s time for Basecamp.</strong> Growing into dysfunction? <strong>It’s time for Basecamp.</strong> Tired of looking disorganized in front of clients? <strong class="highlight highlight--time">It’s time for Basecamp.</strong></p>
511
+ </article>
512
+ </section>
513
+ </div>
514
+
515
+ <div class="headline space-top--xxx-large">
516
+ <header>
517
+ <h3 id="company-faqs"><a href="../enterprise-extravaganza#company-faqs">I have questions about your company&hellip;</a></h3>
518
+ </header>
519
+ </div>
520
+
521
+ <div class="details space-top--medium">
522
+
523
+ <details id="trust">
524
+ <summary>
525
+ <p>How long have you been around? Can we trust you?</p>
526
+ </summary>
527
+ <article>
528
+ <p>The company that designed, owns, and operates Basecamp is called <a href="https://37signals.com" target="_blank">37signals</a>, and we’ve been around as a company since 1999. We launched Basecamp, the product, in 2004 and have been improving it weekly ever since. Running a sane, responsible, sustainable business is part of our commitment to you.</p>
529
+ <p>We’ve been <strong>profitable for 25 straight years, we have zero debt, we’re privately held, and built to stay, not exit.</strong> Our <a href="../handbook">employee handbook</a> is also public for everyone to see how we run our business and treat our employees.</p>
530
+ <p>We’ve also written a number of <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18">bestselling books</a> (REWORK, Remote, It Doesn’t Have to Be Crazy at Work) as well. The books detail how we’ve built, and run, such a unique, long-lasting company in a field full of sameness and short-term thinking.</p>
531
+ <p>You can email Jason Fried, our Co-Founder and CEO, any time at <a href="mailto:jason@basecamp.com">jason@basecamp.com</a>. He doesn’t have an assistant, so he’ll read and respond to your emails personally.</p>
532
+ </article>
533
+ </details>
534
+
535
+ <details id="uptime">
536
+ <summary>
537
+ <p>What about reliability and uptime?</p>
538
+ </summary>
539
+ <article>
540
+ <p>We can make endless promises, but the numbers are what matter here. Our historical uptime over multiple decades is well over 99.99%, and you can see recent real-time history on our <a href="https://www.37status.com" target="_blank">Status Page</a>.</p>
541
+ </article>
542
+ </details>
543
+
544
+ <details id="refunds">
545
+ <summary>
546
+ <p>What’s your refund policy like?</p>
547
+ </summary>
548
+ <article>
549
+ <p>We aim to be fair and reasonable, just as we’d want to be treated. <a href="https://37signals.com/policies/refund/" target="_blank">Our refund policy</a> reflects that.</p>
550
+ </article>
551
+ </details>
552
+
553
+ <details id="questions">
554
+ <summary>
555
+ <p>Can I ask ownership a question directly?</p>
556
+ </summary>
557
+ <article>
558
+ <p><strong>Absolutely.</strong> Our Co-Founder and CEO (Jason Fried) is available direct at <a href="mailto:jason@basecamp.com">jason@basecamp.com</a>, and our other Co-Founder and CTO (David Heinemeier Hansson) is at <a href="mailto:david@basecamp.com">david@basecamp.com</a>. Please do reach out. They don’t have assistants or anyone who reads their emails, so you’ll hear from them directly.</p>
559
+ </article>
560
+ </details>
561
+
562
+ </div>
563
+
564
+ <div class="headline space-top--x-large">
565
+ <header>
566
+ <h3 id="security-faqs"><a href="../enterprise-extravaganza#security-faqs">I have questions about security and our data&hellip;</a></h3>
567
+ </header>
568
+ </div>
569
+
570
+ <div class="details space-top--medium">
571
+
572
+ <details id="secure">
573
+ <summary>
574
+ <p>How secure is Basecamp?</p>
575
+ </summary>
576
+ <article>
577
+ <p>We have a <a href="https://37signals.com/policies/security/" target="_blank">full security write-up</a> available on the 37signals site. 37signals is the company behind Basecamp.</p>
578
+ </article>
579
+ </details>
580
+
581
+ <details id="backups">
582
+ <summary>
583
+ <p>Is our data backed up? How often?</p>
584
+ </summary>
585
+ <article>
586
+ <p>Data customers enter into Basecamp is stored in multiple, redundant data centers. That data is backed up several times a day, and copies of those backups are stored both locally and off-site to further reduce points of possible failure. Files customers upload are stored off-site and backed up to servers in a different geographic region.</p>
587
+ </article>
588
+ </details>
589
+
590
+ <details id="data-centers">
591
+ <summary>
592
+ <p>Where are the servers that store our data?</p>
593
+ </summary>
594
+ <article>
595
+ <p>Our servers are located in multiple data centers in the United States. We service customers from over 160 countries from these servers. We do not currently have data centers outside the US.</p>
596
+ </article>
597
+ </details>
598
+
599
+ <details id="custom-security-questionnaires">
600
+ <summary>
601
+ <p>Can you fill our custom security questionnaires?</p>
602
+ </summary>
603
+ <article>
604
+ <p>We don’t fill out custom security questionnaires, but we’ve <a href="https://37signals.com/policies/security/37signals%20Security%20Overview.pdf" target="_blank">prepared a summary security PDF</a> which you can provide to your IT staff.</p>
605
+ </article>
606
+ </details>
607
+
608
+ <details id="export-our-data">
609
+ <summary>
610
+ <p>Can I export our data if we ever want to leave?</p>
611
+ </summary>
612
+ <article>
613
+ <p><strong>Absolutely,</strong> you can do it as often as you’d like. Plus, it’s entirely self-service and easy so you don’t need to ask anyone for help or permission. Further, we provide it in a format that allows you to browse it in a web browser so it’s actually useful. <a href="https://3.basecamp-help.com/article/150-export-your-basecamp-data" target="_blank">Here’s how exporting works</a>.</p>
614
+ </article>
615
+ </details>
616
+
617
+ </div>
618
+
619
+ <div class="headline space-top--x-large">
620
+ <header>
621
+ <h3 id="other-faqs"><a href="../enterprise-extravaganza#other-faqs">I have other questions&hellip;</a></h3>
622
+ </header>
623
+ </div>
624
+
625
+ <div class="details space-top--medium">
626
+
627
+ <details id="api">
628
+ <summary>
629
+ <p>Does Basecamp have an API? Can we integrate with Basecamp?</p>
630
+ </summary>
631
+ <article>
632
+ <p><strong>Yes,</strong> <a href="https://github.com/basecamp/bc3-api" target="_blank">Basecamp has a full-featured API (docs are hosted on GitHub)</a>. Hundreds of companies have written custom integrations, and <a href="../integrations/index.html">our Integrations page</a> links up third-party solutions for invoicing, accounting, time tracking, reporting, planning, asset management, contracts, proposals, and more.</p>
633
+ </article>
634
+ </details>
635
+
636
+ <details id="customer-support">
637
+ <summary>
638
+ <p>What’s your customer support like? What if we need help?</p>
639
+ </summary>
640
+ <article>
641
+ <p>Our customer support is widely considered to be among the best of the best. Everyone who works on our support team are expert specialists who know Basecamp inside and out, many having been with us for years and years, some over a decade. Further, we occasionally cycle every employee through support — including our CEO — so everyone has a chance to directly interact with customers.</p>
642
+ <p>You can <a href="../support/index.html">ask support a question</a>, or <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">watch tutorials</a>, or <a href="https://3.basecamp-help.com">review the help guides</a>, or <a href="../classes/index.html">attend a live walkthrough class and Q&amp;A</a>.</p>
643
+ </article>
644
+ </details>
645
+
646
+ <details id="languages">
647
+ <summary>
648
+ <p>Is Basecamp available in languages other than English?</p>
649
+ </summary>
650
+ <article>
651
+ <p>Currently we only offer Basecamp’s interface in English, although we have people in over 160 countries writing and sharing in their own native languages using Basecamp.</p>
652
+ </article>
653
+ </details>
654
+
655
+ <details id="other-products">
656
+ <summary>
657
+ <p>If we go with Basecamp, will we still need stuff like Slack? Asana? Dropbox?</p>
658
+ </summary>
659
+ <article>
660
+ <p><strong>Nope,</strong> Basecamp replaces a whole set of separate products and saves you a ton of money. Basecamp has chat built in (no more Slack). Basecamp has exceptional task management in the form of to-dos and kanban-style Card Tables (no more Asana). And you can store and share all the files you need in a project (no more Dropbox). Basecamp also replaces document-based tools like Google Docs, Notion, etc. And yet, if you need to continue to use some of those tools, you can always link them up right from inside Basecamp using the Doors feature.</p>
661
+ </article>
662
+ </details>
663
+
664
+ <details id="who-uses-basecamp">
665
+ <summary>
666
+ <p>What kind of companies, in which industries, use Basecamp?</p>
667
+ </summary>
668
+ <article>
669
+ <p>Basecamp is used by top notch marketers, ad agencies, designers, client services firms, consultants, software developers, freelancers, PR agencies, contractors, religious institutions, schools, non-profits, first responders, and many others. Over 75,000 organizations, across every industry imaginable, in 166 countries, use Basecamp for project management.</p>
670
+ <p>Our customers are primarily small or medium-sized companies with fewer than 100 full-time employees, but Basecamp is also used by teams inside many of the world’s largest companies.</p>
671
+ </article>
672
+ </details>
673
+
674
+ <details id="classes" class="data-classes data-classes--details" data-classes-limit="6">
675
+ <summary>
676
+ <p>Do you offer classes to learn more about Basecamp?</p>
677
+ </summary>
678
+ <article>
679
+ <p><strong>Yes, see our upcoming classes below.</strong> We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask. We’ll teach you the basics of using Basecamp, with plenty of time set aside for questions.<span class="data-classes__link"> <a href="../classes/index.html">See all our upcoming classes</a>.</span></p>
680
+ <div class="data-classes__output"></div>
681
+ </article>
682
+ </details>
683
+
684
+ </div>
685
+
686
+ <div class="marquee marquee--left space-bottom--xxx-large space-top--xx-large">
687
+
688
+ <a href="../customers/index.html" aria-hidden="true" tabindex="-1">
689
+ <ul>
690
+
691
+
692
+
693
+
694
+
695
+ <li>“Extremely user friendly”</li>
696
+
697
+
698
+
699
+ <li>“Truly amazing!”</li>
700
+
701
+
702
+
703
+ <li>“A godsend for our org”</li>
704
+
705
+
706
+
707
+ <li>“Simple, quick, powerful”</li>
708
+
709
+
710
+
711
+ <li>“So glad I found Basecamp”</li>
712
+
713
+
714
+
715
+ <li>“The perfect solution”</li>
716
+
717
+
718
+
719
+ <li>“Really great”</li>
720
+
721
+
722
+
723
+ <li>“Outstanding”</li>
724
+
725
+
726
+
727
+ <li>“Best app for teams”</li>
728
+
729
+
730
+
731
+ <li>“Awesome service”</li>
732
+
733
+
734
+
735
+ <li>“Gets better and better”</li>
736
+
737
+
738
+
739
+ <li>“Great collaboration tool”</li>
740
+
741
+
742
+
743
+ <li>“Great software”</li>
744
+
745
+
746
+
747
+ <li>“Gold standard PM app”</li>
748
+
749
+
750
+
751
+ <li>“Brilliant solution”</li>
752
+
753
+
754
+
755
+ <li>“Clean and easy to use”</li>
756
+
757
+
758
+
759
+ <li>“Fantastic app”</li>
760
+
761
+
762
+
763
+ <li>“Organized and on point”</li>
764
+
765
+
766
+
767
+ <li>“Extremely user friendly”</li>
768
+
769
+
770
+
771
+ <li>“Truly amazing!”</li>
772
+
773
+
774
+
775
+ <li>“A godsend for our org”</li>
776
+
777
+
778
+
779
+ <li>“Simple, quick, powerful”</li>
780
+
781
+
782
+
783
+ <li>“So glad I found Basecamp”</li>
784
+
785
+
786
+
787
+ <li>“The perfect solution”</li>
788
+
789
+
790
+
791
+ <li>“Really great”</li>
792
+
793
+
794
+
795
+ <li>“Outstanding”</li>
796
+
797
+
798
+
799
+ <li>“Best app for teams”</li>
800
+
801
+
802
+
803
+ <li>“Awesome service”</li>
804
+
805
+
806
+
807
+ <li>“Gets better and better”</li>
808
+
809
+
810
+
811
+ <li>“Great collaboration tool”</li>
812
+
813
+
814
+
815
+ <li>“Great software”</li>
816
+
817
+
818
+
819
+ <li>“Gold standard PM app”</li>
820
+
821
+
822
+
823
+ <li>“Brilliant solution”</li>
824
+
825
+
826
+
827
+ <li>“Clean and easy to use”</li>
828
+
829
+
830
+
831
+ <li>“Fantastic app”</li>
832
+
833
+
834
+
835
+ <li>“Organized and on point”</li>
836
+
837
+
838
+
839
+ </ul>
840
+ </a>
841
+
842
+
843
+ </div>
844
+
845
+
846
+ </main>
847
+
848
+ <footer class="footer">
849
+
850
+
851
+
852
+
853
+
854
+ <div class="footer__apps" id="apps">
855
+ <dl class="footer__headline">
856
+ <dt>Basecamp’s everywhere</dt>
857
+ <dd>Mac, Windows, iOS, Android, and on the web — Basecamp is ready <a href="../apps/index.html">whenever and wherever you are</a>.</dd>
858
+ </dl>
859
+ <ul>
860
+ <li><a class="button button--icon button--pwa" href="https://3.basecamp-help.com/article/937-basecamp-pwa" title="Install Basecamp on Mac and Windows">Desktop apps</a></li>
861
+ <li><a class="button button--icon button--ios" href="https://apps.apple.com/us/app/basecamp-project-management/id1015603248" title="Install Basecamp on iOS">iOS</a></li>
862
+ <li><a class="button button--icon button--android" href="https://play.google.com/store/apps/details?id=com.basecamp.bc3" title="Install Basecamp on Android">Android</a></li>
863
+ <li><a class="button button--icon button--basecamp" href="https://launchpad.37signals.com/signin" title="Use Basecamp in your web browser" target="_blank" data-controller="signup" data-action="signup#trackLogin">Sign in to Basecamp</a></li>
864
+ </ul>
865
+ </div>
866
+
867
+
868
+
869
+
870
+
871
+ <div class="footer__classes data-classes" data-classes-limit="4">
872
+ <dl class="footer__headline">
873
+ <dt>Join us for a free live class</dt>
874
+ <dd>We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask.<span class="data-classes__link"> <a href="../classes/index.html">See all our upcoming classes</a>.</span></dd>
875
+ </dl>
876
+ <div class="data-classes__output"></div>
877
+ </div>
878
+
879
+
880
+
881
+
882
+
883
+ <div class="footer__newsletter">
884
+ <dl class="footer__headline">
885
+ <dt>Never miss an update</dt>
886
+ <dd>Join more than 150,000 people who get <a href="../newsletter/index.html">our newsletter</a>. We’ll share product updates, thoughts, new releases, and other tidbits we think you’ll find interesting.</dd>
887
+ </dl>
888
+ <div class="newsletter">
889
+ <div class="newsletter__container">
890
+ <form novalidate action="https://basecamp.us2.list-manage.com/subscribe/post-json?u=2a145c60b16248b65e46a799a&amp;id=476312b66e&amp;c=?" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form">
891
+ <div aria-hidden="true" style="position: absolute; left: -5000px;"><input type="text" name="b_2a145c60b16248b65e46a799a_476312b66e" value="" tabindex="-1" aria-label="mce"></div>
892
+ <input type="hidden" name="tags" value="23018">
893
+ <input type="email" name="EMAIL" value="" id="mce-EMAIL" placeholder="julie.young@hey.com" aria-label="Your email address" required data-1p-ignore>
894
+ <button type="submit" name="subscribe" id="mc-embedded-subscribe">Subscribe</button>
895
+ </form>
896
+ </div>
897
+ </div>
898
+ </div>
899
+
900
+
901
+
902
+
903
+
904
+ <div class="footer__support">
905
+ <dl class="footer__headline">
906
+ <dt>We’re here to help with 24/7/365 support</dt>
907
+ <dd>There are no stupid questions — for pre-sales questions, existing customers who need a hand, or any other inquiries, <a href="../support/index.html">contact us</a> and we’ll get back to you within an hour. <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">Watch tutorials</a>, <a href="../help/index.html">read the help guides</a>, or <a href="../support/index.html">send us a message</a> to get help.</dd>
908
+ </dl>
909
+
910
+
911
+
912
+ <div class="footer__hey">
913
+ <a href="https://www.hey.com" target="_blank">
914
+ <span>If you love Basecamp, you’ll love <strong>HEY</strong> — our delightfully fresh take on email + calendar</span>
915
+ </a>
916
+ </div>
917
+
918
+
919
+
920
+ </div>
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+ <div class="footer__links">
929
+ <dl class="footer__headline">
930
+ <dt>And there’s more&hellip;</dt>
931
+ <dd>
932
+
933
+
934
+
935
+ <a href="../new/index.html" aria-label="What’s new">What’s new</a> •
936
+
937
+
938
+
939
+ <a href="../paths/index.html" aria-label="The people’s path to Basecamp">The people’s path to Basecamp</a> •
940
+
941
+
942
+
943
+ <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18" aria-label="Books we’ve written">Books we’ve written</a> •
944
+
945
+
946
+
947
+ <a href="../about/index.html" aria-label="Where we came from">Where we came from</a> •
948
+
949
+
950
+
951
+ <a href="../guides/how-we-communicate/index.html" aria-label="How we communicate">How we communicate</a> •
952
+
953
+
954
+
955
+ <a href="../guides/how-we-make-decisions/index.html" aria-label="How we make decisions">How we make decisions</a> •
956
+
957
+
958
+
959
+ <a href="../guides/why-we-choose-profit/index.html" aria-label="Why we choose profit">Why we choose profit</a> •
960
+
961
+
962
+
963
+ <a href="../guides/group-chat-problems/index.html" aria-label="Group chat problems">Group chat problems</a> •
964
+
965
+
966
+
967
+ <a href="../guides/seven-shipping-principles/index.html" aria-label="Seven shipping principles">Seven shipping principles</a> •
968
+
969
+
970
+
971
+ <a href="../underdogs/index.html" aria-label="We stand with the underdogs">We stand with the underdogs</a> •
972
+
973
+
974
+
975
+ <a href="../small/index.html" aria-label="Come small, come all">Come small, come all</a> •
976
+
977
+
978
+
979
+ <a href="../overkill/index.html" aria-label="Kill overkill">Kill overkill</a> •
980
+
981
+
982
+
983
+ <a href="../cloud-exit/index.html" aria-label="Leaving the Cloud">Leaving the Cloud</a> •
984
+
985
+
986
+
987
+ <a href="../before-and-after/index.html" aria-label="Night &amp; day">Night &amp; day</a> •
988
+
989
+
990
+
991
+ <a href="../hill-charts/index.html" aria-label="See where projects really stand">See where projects really stand</a> •
992
+
993
+
994
+
995
+ <a href="../justletmedomyjob/index.html" aria-label="JUST LET ME DO MY JOB">JUST LET ME DO MY JOB</a> •
996
+
997
+
998
+
999
+ <a href="../customers/index.html" aria-label="What changed for the better?">What changed for the better?</a> •
1000
+
1001
+
1002
+
1003
+ <a href="../integrations/index.html" aria-label="Integrations">Integrations</a> •
1004
+
1005
+
1006
+
1007
+ <a href="../accessibility/index.html" aria-label="Basecamp is for everyone">Basecamp is for everyone</a> •
1008
+
1009
+
1010
+
1011
+ <a href="../community/index.html" aria-label="Basecamp community">Basecamp community</a> •
1012
+
1013
+
1014
+
1015
+ <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14" aria-label="Learn Basecamp">Learn Basecamp</a> •
1016
+
1017
+
1018
+
1019
+ <a href="../handbook" aria-label="Employee handbook">Employee handbook</a>
1020
+
1021
+
1022
+
1023
+ </dd>
1024
+ </dl>
1025
+ </div>
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+
1033
+ <div class="footer__legal">
1034
+ <p>
1035
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
1036
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
1037
+ <strong>Basecamp</strong>
1038
+ </a>
1039
+ <span>is designed, built, and backed by</span>
1040
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
1041
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
1042
+ <strong>37signals</strong>
1043
+ </a>
1044
+ </p>
1045
+ <ul>
1046
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
1047
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
1048
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
1049
+ <li>&copy; 2025 37signals LLC</li>
1050
+ </ul>
1051
+ </div>
1052
+ </footer>
1053
+
1054
+
1055
+ <dialog class="modal">
1056
+ <div class="modal__backdrop"></div>
1057
+ <div class="modal__container"></div>
1058
+ </dialog>
1059
+
1060
+
1061
+ </body>
1062
+
1063
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/features/docs-and-files ADDED
@@ -0,0 +1,1063 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Project management software, online collaboration</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Project management software, online collaboration">
28
+ <meta property="og:description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Project management software, online collaboration">
34
+ <meta name="twitter:description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Project management software, online collaboration",
53
+ "description": "Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.",
54
+ "url": "https://basecamp.com/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="../enterprise-extravaganza">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body class="body has-nav-phrase" data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <input id="nav-active" type="checkbox">
110
+
111
+ <label id="nav-underlay" for="nav-active"></label>
112
+
113
+ <nav class="nav">
114
+ <div class="nav__container">
115
+ <div class="nav__logo">
116
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
117
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
118
+ <strong>Basecamp</strong>
119
+ </a>
120
+ <div class="nav__phrase">is the <span class="highlight"></span> <strong>project management system</strong> by</div>
121
+ <b class="icon icon--37signals">
122
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
123
+ <strong>37signals</strong>
124
+ </b>
125
+ </div>
126
+ <div class="nav__links">
127
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
128
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
129
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
130
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
131
+ </div>
132
+ <div class="nav__buttons">
133
+ <a class="nav__button nav__button--launchpad" href="https://launchpad.37signals.com/signin" target="_blank" data-controller="signup" data-action="signup#trackLogin" aria-label="Sign in">Sign in</a>
134
+ <a class="nav__button nav__button--signup trk-package" id="sign-up-nav" href="../pricing/index.html#packages" aria-label="Sign up free">Sign up free</a>
135
+ </div>
136
+ <label class="nav__toggle" for="nav-active" aria-label="Nav Toggle" tabindex="0"></label>
137
+ </div>
138
+ <div class="nav__mobile">
139
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
140
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
141
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
142
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
143
+ </div>
144
+ </nav>
145
+
146
+
147
+
148
+
149
+ <main class="main">
150
+
151
+ <div class="illustration space-bottom--large">
152
+ <picture>
153
+ <source srcset="/assets/images/home/illustration-desktop.png" media="(min-width: 48em)">
154
+ <img src="../assets/images/home/illustration-mobile.png" alt="Wrestling with projects? It doesn’t have to be this hard.">
155
+ </picture>
156
+ </div>
157
+
158
+ <div class="columns">
159
+ <section>
160
+ <header>
161
+ <h1>Wrestling with projects?<br> It doesn’t have to be this hard.</h1>
162
+ </header>
163
+ <article>
164
+ <div>
165
+ <p>There are lots of ways to manage projects. And there’s plenty of software promising to help. You’ve probably tried some. Yet, here you are.</p>
166
+ <p><strong>Unfortunately, most project management systems are either overwhelming, inadequate, bewildering, or chaotic. You know?</strong></p>
167
+ <p>Not Basecamp. Basecamp is refreshingly straightforward, with a 21-year track record to back it up. Longevity isn’t luck — it’s proof it works. And you’ll work better with it too.</p>
168
+ </div>
169
+ <div>
170
+ <p><strong>Basecamp is famously no-nonsense, effective, and reliable.</strong> The trifecta. It’s <a href="../underdogs/index.html">designed for smaller, hungrier businesses</a>, not big, sluggish ones. <a href="../customers/index.html">Over 30 pages of customer testimonials</a> detail how things run better on Basecamp.</p>
171
+ <p>So, we invite you to poke around, watch the video below, and <a href="../pricing/index.html#packages">try Basecamp for free</a>. We’d be honored to have you as a customer. Thank you.</p>
172
+ <dl>
173
+ <dt><strong>Jason Fried</strong>, <a href="mailto:jason@basecamp.com">jason@basecamp.com</a></dt>
174
+ <dd><em>Co-founder &amp; CEO</em></dd>
175
+ </dl>
176
+ </div>
177
+ </article>
178
+ </section>
179
+ </div>
180
+
181
+ <div class="visual visual--walkthrough space-top--xxx-large">
182
+ <div class="visual__column">
183
+ <button class="visual__button modal-trigger" id="walkthrough-columns" data-type="video" data-event="Walkthrough: Columns" data-src="/videos/home/walkthrough.mp4" data-track="/videos/home/walkthrough.vtt">
184
+ <figure class="visual__figure">
185
+ <img src="../videos/home/walkthrough-small.webp" width="2400" height="1326" alt="See how Basecamp works">
186
+ <span aria-hidden="true">Hit play to see how Basecamp is different</span>
187
+ </figure>
188
+ <div class="visual__play"></div>
189
+ </button>
190
+ </div>
191
+ </div>
192
+
193
+ <div class="statement space-top--xxx-large">
194
+ <section>
195
+ <header>
196
+ <h2 id="features"><a href="../enterprise-extravaganza#features">Let’s walk through it.</a></h2>
197
+ </header>
198
+ </section>
199
+ </div>
200
+
201
+ <div class="headline space-top--large">
202
+ <header>
203
+ <h3 id="home"><a href="../enterprise-extravaganza#home">10 seconds after you sign up, clarity sets in.</a></h3>
204
+ </header>
205
+ <article>
206
+ <p>The home screen organizes your projects, assignments, and upcoming events together on one screen. It’s your calm, comfortable, simple starting point every morning.</p>
207
+ </article>
208
+ </div>
209
+
210
+ <div class="visual space-top--large">
211
+ <div class="visual__column visual__column--4">
212
+ <button class="visual__button modal-trigger" id="whats-my-week-look-like" data-type="video" data-event="Home: What’s my week look like?" data-src="/videos/home/whats-my-week-look-like.mp4" data-track="/videos/home/whats-my-week-look-like.vtt">
213
+ <figure class="visual__figure">
214
+ <img src="../videos/home/whats-my-week-look-like.webp" width="1260" height="1116" alt="View your schedule" loading="lazy">
215
+ <span aria-hidden="true">What’s my week look like?</span>
216
+ </figure>
217
+ <div class="visual__play"></div>
218
+ </button>
219
+ <button class="visual__button modal-trigger" id="whats-on-my-plate-today" data-type="video" data-event="Home: What’s on my plate today?" data-src="/videos/home/whats-on-my-plate-today.mp4" data-track="/videos/home/whats-on-my-plate-today.vtt">
220
+ <figure class="visual__figure">
221
+ <img src="../videos/home/whats-on-my-plate-today.webp" width="1260" height="1116" alt="View your assignments" loading="lazy">
222
+ <span aria-hidden="true">What’s on my plate today?</span>
223
+ </figure>
224
+ <div class="visual__play"></div>
225
+ </button>
226
+ <aside class="visual__aside" aria-label="Home">
227
+ <p><strong>Each person gets their own home screen depending on which projects they have access to.</strong> They’ll only see their own assignments and events. And you can keep important projects close at hand by pinning them to the top.</p>
228
+ </aside>
229
+ </div>
230
+ <div class="visual__column visual__column--8">
231
+ <button class="visual__button modal-trigger" id="which-projects-am-i-on" data-type="video" data-event="Home: Which projects am I on?" data-src="/videos/home/which-projects-am-i-on.mp4" data-track="/videos/home/which-projects-am-i-on.vtt">
232
+ <figure class="visual__figure">
233
+ <img src="../videos/home/which-projects-am-i-on.webp" width="2400" height="2854" alt="View projects on the home screen" loading="lazy">
234
+ <span aria-hidden="true">Which projects am I on?</span>
235
+ </figure>
236
+ <div class="visual__play"></div>
237
+ </button>
238
+ </div>
239
+ </div>
240
+
241
+ <div class="headline space-top--xxx-large">
242
+ <header>
243
+ <h3 id="projects"><a href="../enterprise-extravaganza#projects">Projects get teams — and keep teams — organized.</a></h3>
244
+ </header>
245
+ <article>
246
+ <p>A project is where the tasks, discussions, deliverables, and decisions happen. Projects hold everything — and everyone — together in one tidy, predictably structured place.</p>
247
+ </article>
248
+ </div>
249
+
250
+ <div class="visual space-top--large">
251
+ <div class="visual__column visual__column--6">
252
+ <button class="visual__button modal-trigger" id="all-in-one-toolbox" data-type="video" data-event="Projects: A project page organizes everything" data-src="/videos/home/all-in-one-toolbox.mp4" data-track="/videos/home/all-in-one-toolbox.vtt">
253
+ <figure class="visual__figure">
254
+ <img src="../videos/home/all-in-one-toolbox.webp" width="2400" height="2582" alt="A Basecamp project page" loading="lazy">
255
+ <span aria-hidden="true">A project page organizes everything</span>
256
+ </figure>
257
+ <div class="visual__play"></div>
258
+ </button>
259
+ <aside class="visual__aside" aria-label="Projects">
260
+ <p><strong>Make as many projects as you’d like.</strong> We run dozens at once in our own Basecamp account. For example, one for a web site redesign, <a href="../enterprise-extravaganza#organizing-a-meet-up" class="modal-trigger" id="organizing-a-meet-up" data-type="video" data-event="Organizing a Meet-up" data-src="/videos/organizing-a-meet-up/organizing-a-meet-up.mp4">one for planning an upcoming offsite</a>, one for working with our accountants, and one just for the executive team to plan strategy, etc.</p>
261
+ </aside>
262
+ </div>
263
+ <div class="visual__column visual__column--6 visual__column--grid">
264
+ <button class="visual__button modal-trigger" id="track-tasks" data-type="video" data-event="Projects: What to do + who’s doing?" data-src="/videos/home/track-tasks.mp4" data-track="/videos/home/track-tasks.vtt">
265
+ <figure class="visual__figure">
266
+ <img src="../assets/images/screenshots/to-dos-thumbnail.webp" width="1200" height="900" alt="Track work with To-dos" loading="lazy">
267
+ <span aria-hidden="true">What to do + who’s doing?</span>
268
+ </figure>
269
+ <div class="visual__play"></div>
270
+ </button>
271
+ <button class="visual__button modal-trigger" id="launch-discussions" data-type="video" data-event="Projects: Who said what when?" data-src="/videos/home/launch-discussions.mp4" data-track="/videos/home/launch-discussions.vtt">
272
+ <figure class="visual__figure">
273
+ <img src="../assets/images/screenshots/message-board-thumbnail.webp" width="1200" height="900" alt="Stay on topic with Messages" loading="lazy">
274
+ <span aria-hidden="true">Who said what when?</span>
275
+ </figure>
276
+ <div class="visual__play"></div>
277
+ </button>
278
+ <button class="visual__button modal-trigger" id="set-milestones" data-type="video" data-event="Projects: What’s due next?" data-src="/videos/home/set-milestones.mp4" data-track="/videos/home/set-milestones.vtt">
279
+ <figure class="visual__figure">
280
+ <img src="../assets/images/screenshots/schedule-thumbnail.webp" width="1200" height="900" alt="Schedule so you don’t forget" loading="lazy">
281
+ <span aria-hidden="true">What’s due next?</span>
282
+ </figure>
283
+ <div class="visual__play"></div>
284
+ </button>
285
+ <button class="visual__button modal-trigger" id="store-assets" data-type="video" data-event="Projects: Where’s the latest version?" data-src="/videos/home/store-assets.mp4" data-track="/videos/home/store-assets.vtt">
286
+ <figure class="visual__figure">
287
+ <img src="../assets/images/screenshots/docs-and-files-thumbnail.webp" width="1200" height="900" alt="Store, share, and discuss files" loading="lazy">
288
+ <span aria-hidden="true">Where’s the latest version?</span>
289
+ </figure>
290
+ <div class="visual__play"></div>
291
+ </button>
292
+ <button class="visual__button modal-trigger" id="hash-stuff-out" data-type="video" data-event="Projects: Got a quick question?" data-src="/videos/home/hash-stuff-out.mp4" data-track="/videos/home/hash-stuff-out.vtt">
293
+ <figure class="visual__figure">
294
+ <img src="../assets/images/screenshots/chat-thumbnail.webp" width="1200" height="900" alt="Chat around the campfire" loading="lazy">
295
+ <span aria-hidden="true">Got a quick question?</span>
296
+ </figure>
297
+ <div class="visual__play"></div>
298
+ </button>
299
+ <button class="visual__button modal-trigger" id="run-workflows" data-type="video" data-event="Projects: How’s the process flowing?" data-src="/videos/home/run-workflows.mp4" data-track="/videos/home/run-workflows.vtt">
300
+ <figure class="visual__figure">
301
+ <img src="../assets/images/screenshots/card-table-thumbnail.webp" width="1200" height="900" alt="Card Table is our unique take on Kanban" loading="lazy">
302
+ <span aria-hidden="true">How’s the process flowing?</span>
303
+ </figure>
304
+ <div class="visual__play"></div>
305
+ </button>
306
+ </div>
307
+ </div>
308
+
309
+ <div class="headline space-top--xxx-large">
310
+ <header>
311
+ <h3 id="reports"><a href="../enterprise-extravaganza#reports">Reports give you confidence to hold people accountable.</a></h3>
312
+ </header>
313
+ <article>
314
+ <p>Basecamp’s reports aren’t numbers, percentages, or abstract representations — they’re the real work, actual evidence of progress being made (or not made).</p>
315
+ </article>
316
+ </div>
317
+
318
+ <div class="visual space-top--large">
319
+ <div class="visual__column visual__column--4">
320
+ <button class="visual__button modal-trigger" id="whats-overdue" data-type="video" data-event="Reports: What’s overdue?" data-src="/videos/home/whats-overdue.mp4" data-track="/videos/home/whats-overdue.vtt">
321
+ <figure class="visual__figure">
322
+ <img src="../videos/home/whats-overdue.webp" width="1796" height="1304" alt="See everything that’s overdue" loading="lazy">
323
+ <span aria-hidden="true">What’s overdue?</span>
324
+ </figure>
325
+ <div class="visual__play"></div>
326
+ </button>
327
+ <button class="visual__button modal-trigger" id="how-much-time-have-we-spent" data-type="video" data-event="Reports: How much time have we spent?" data-src="/videos/home/how-much-time-have-we-spent.mp4" data-track="/videos/home/how-much-time-have-we-spent.vtt">
328
+ <figure class="visual__figure">
329
+ <img src="../videos/home/how-much-time-have-we-spent.webp" width="1796" height="1304" alt="Track time directly in Basecamp" loading="lazy">
330
+ <span aria-hidden="true">How much time have we spent?</span>
331
+ </figure>
332
+ <div class="visual__play"></div>
333
+ </button>
334
+ <button class="visual__button modal-trigger" id="whos-responsible-for-what" data-type="video" data-event="Reports: Who’s responsible for what?" data-src="/videos/home/whos-responsible-for-what.mp4" data-track="/videos/home/whos-responsible-for-what.vtt">
335
+ <figure class="visual__figure">
336
+ <img src="../videos/home/whos-responsible-for-what.webp" width="1796" height="1304" alt="Reports quickly cut across every project to give you quick insights" loading="lazy">
337
+ <span aria-hidden="true">Who’s responsible for what?</span>
338
+ </figure>
339
+ <div class="visual__play"></div>
340
+ </button>
341
+ </div>
342
+ <div class="visual__column visual__column--8">
343
+ <button class="visual__button modal-trigger" id="whats-actually-been-happening" data-type="video" data-event="Reports: What’s actually been happening?" data-src="/videos/home/whats-actually-been-happening.mp4" data-track="/videos/home/whats-actually-been-happening.vtt">
344
+ <figure class="visual__figure">
345
+ <img src="../videos/home/whats-actually-been-happening.webp" width="2400" height="3028" alt="The micro-view of everything that happens across every project in real-time" loading="lazy">
346
+ <span aria-hidden="true">What’s actually been happening?</span>
347
+ </figure>
348
+ <div class="visual__play"></div>
349
+ </button>
350
+ </div>
351
+ </div>
352
+
353
+ <div class="headline space-top--xxx-large">
354
+ <header>
355
+ <h3 id="visualizations"><a href="../enterprise-extravaganza#visualizations">Visualizations are for seeing, not squinting.</a></h3>
356
+ </header>
357
+ <article>
358
+ <p>Basecamp’s Lineup, Mission Control, and Hill Charts are visual tools that help you clearly see where projects really stand. Notice progress at a glance, know reality in an instant.</p>
359
+ </article>
360
+ </div>
361
+
362
+ <div class="visual space-top--large">
363
+ <div class="visual__column">
364
+ <button class="visual__button modal-trigger" id="how-far-along-are-we" data-type="video" data-event="Visualizations: How far along are we?" data-src="/videos/home/how-far-along-are-we.mp4" data-track="/videos/home/how-far-along-are-we.vtt">
365
+ <figure class="visual__figure">
366
+ <img src="../videos/home/how-far-along-are-we.webp" width="3008" height="1504" alt="The Lineup shows you where every project stands, from start to finish, all at once" loading="lazy">
367
+ <span aria-hidden="true">How far along are we?</span>
368
+ </figure>
369
+ <div class="visual__play"></div>
370
+ </button>
371
+ </div>
372
+ <div class="visual__column visual__column--grid">
373
+ <button class="visual__button modal-trigger" id="how-are-we-feeling" data-type="video" data-event="Visualizations: How are we feeling?" data-src="/videos/home/how-are-we-feeling.mp4" data-track="/videos/home/how-are-we-feeling.vtt">
374
+ <figure class="visual__figure">
375
+ <img src="../videos/home/how-are-we-feeling.webp" width="2400" height="1434" alt="Mission Control shows you which projects are on track and which ones need a helping hand" loading="lazy">
376
+ <span aria-hidden="true">How are we feeling?</span>
377
+ </figure>
378
+ <div class="visual__play"></div>
379
+ </button>
380
+ <button class="visual__button modal-trigger" id="what-still-needs-to-be-figured-out" data-type="video" data-event="Visualizations: What still needs to be figured out?" data-src="/videos/home/what-still-needs-to-be-figured-out.mp4" data-track="/videos/home/what-still-needs-to-be-figured-out.vtt">
381
+ <figure class="visual__figure">
382
+ <img src="../videos/home/what-still-needs-to-be-figured-out.webp" width="2400" height="1434" alt="Hill Charts visually display the progress of your To-do list" loading="lazy">
383
+ <span aria-hidden="true">What still needs to be figured out?</span>
384
+ </figure>
385
+ <div class="visual__play"></div>
386
+ </button>
387
+ </div>
388
+ </div>
389
+
390
+ <div class="headline space-top--xxx-large">
391
+ <header>
392
+ <h3 id="notifications"><a href="../enterprise-extravaganza#notifications">Ping! Hey! It’s for you.</a></h3>
393
+ </header>
394
+ <article>
395
+ <p>The Hey! menu aggregates your notifications in a never-annoying single menu. And “Pings”, our flavor of direct messages, let you kick off ad hoc chats 1:1 or in small groups.</p>
396
+ </article>
397
+ </div>
398
+
399
+ <div class="visual space-top--large">
400
+ <div class="visual__column visual__column--5">
401
+ <button class="visual__button modal-trigger" id="have-private-1-1-or-small-group-conversations" data-type="video" data-event="Notifications: Have private 1-1 or small group conversations" data-src="/videos/home/have-private-1-1-or-small-group-conversations.mp4" data-track="/videos/home/have-private-1-1-or-small-group-conversations.vtt">
402
+ <figure class="visual__figure">
403
+ <img src="../videos/home/have-private-1-1-or-small-group-conversations.webp" width="2400" height="1830" alt="Pings let you kick off ad hoc chats 1:1 or in small groups" loading="lazy">
404
+ <span aria-hidden="true">Have private 1-1 or small group conversations</span>
405
+ </figure>
406
+ <div class="visual__play"></div>
407
+ </button>
408
+ <aside class="visual__aside" aria-label="Notifications">
409
+ <p><strong>Don’t have work chats via text or Whatsapp on your personal phone number.</strong> Keep work at work by having them in Basecamp instead.</p>
410
+ </aside>
411
+ </div>
412
+ <div class="visual__column visual__column--7">
413
+ <button class="visual__button modal-trigger" id="notifications-in-one-place" data-type="video" data-event="Notifications: Notifications in one place, not in your face" data-src="/videos/home/notifications-in-one-place.mp4" data-track="/videos/home/notifications-in-one-place.vtt">
414
+ <figure class="visual__figure">
415
+ <img src="../videos/home/notifications-in-one-place.webp" width="2400" height="1830" alt="The Hey! menu aggregates all your notifications in a single menu" loading="lazy">
416
+ <span aria-hidden="true">Notifications in one place, not in your face</span>
417
+ </figure>
418
+ <div class="visual__play"></div>
419
+ </button>
420
+ </div>
421
+ </div>
422
+
423
+ <div class="headline space-top--xxx-large">
424
+ <header>
425
+ <h3 id="clients"><a href="../enterprise-extravaganza#clients">Got clients? Be partners, not adversaries.</a></h3>
426
+ </header>
427
+ <article>
428
+ <p>Basecamp keeps both sides organized, everyone’s feedback on the record, and all decisions, approvals, files, tasks, deadlines, and communications safe and centralized.</p>
429
+ </article>
430
+ </div>
431
+
432
+ <div class="visual space-top--large">
433
+ <div class="visual__column visual__column--grid">
434
+ <button class="visual__button modal-trigger" id="you-decide-what-clients-can-see" data-type="video" data-event="Clients: Can the client see this?" data-src="/videos/home/you-decide-what-clients-can-see.mp4" data-track="/videos/home/you-decide-what-clients-can-see.vtt">
435
+ <figure class="visual__figure">
436
+ <img src="../videos/home/you-decide-what-clients-can-see.webp" width="2400" height="1424" alt="You decide what your clients can see" loading="lazy">
437
+ <span aria-hidden="true">Can the client see this?</span>
438
+ </figure>
439
+ <div class="visual__play"></div>
440
+ </button>
441
+ <button class="visual__button modal-trigger" id="three-folders-for-you-one-for-them" data-type="video" data-event="Clients: Where’s the final version so we can show the client?" data-src="/videos/home/three-folders-for-you-one-for-them.mp4" data-track="/videos/home/three-folders-for-you-one-for-them.vtt">
442
+ <figure class="visual__figure">
443
+ <img src="../videos/home/three-folders-for-you-one-for-them.webp" width="2400" height="1424" alt="Let clients grab the files they need without having to ask" loading="lazy">
444
+ <span aria-hidden="true">Where’s the final version so we can show the client?</span>
445
+ </figure>
446
+ <div class="visual__play"></div>
447
+ </button>
448
+ <button class="visual__button modal-trigger" id="keep-approvals-on-the-official-record" data-type="video" data-event="Clients: Did the client officially approve it?" data-src="/videos/home/keep-approvals-on-the-official-record.mp4" data-track="/videos/home/keep-approvals-on-the-official-record.vtt">
449
+ <figure class="visual__figure">
450
+ <img src="../videos/home/keep-approvals-on-the-official-record.webp" width="2400" height="2108" alt="Keep client feedback on the official record" loading="lazy">
451
+ <span aria-hidden="true">Did the client officially approve it?</span>
452
+ </figure>
453
+ <div class="visual__play"></div>
454
+ </button>
455
+ <button class="visual__button modal-trigger" id="email-through-basecamp" data-type="video" data-event="Clients: Where’s the client’s email they sent?" data-src="/videos/home/email-through-basecamp.mp4" data-track="/videos/home/email-through-basecamp.vtt">
456
+ <figure class="visual__figure">
457
+ <img src="../videos/home/email-through-basecamp.webp" width="2400" height="2108" alt="Clients can respond to messages right from their inbox" loading="lazy">
458
+ <span aria-hidden="true">Where’s the client’s email they sent?</span>
459
+ </figure>
460
+ <div class="visual__play"></div>
461
+ </button>
462
+ </div>
463
+ </div>
464
+
465
+ <div class="headline space-top--xxx-large">
466
+ <header>
467
+ <h3 id="yes"><a href="../enterprise-extravaganza#yes">The answer is <span class="yes-label">YES!</span></a></h3>
468
+ </header>
469
+ <article>
470
+ <p>Can software be simple, straightforward, and easy, yet powerfully full-featured?<br> With Basecamp the answer is absolutely <strong>YES!</strong></p>
471
+ </article>
472
+ </div>
473
+
474
+ <div class="yes space-top--neutral">
475
+ <ul>
476
+ <li>Can I <strong>prevent our clients from seeing unfinished work?</strong></li>
477
+ <li>Can I <strong>link up files from Google Docs, Figma, Dropbox, Airtable, and other apps?</strong></li>
478
+ <li>Can I <strong>see everything I need to do on a single screen?</strong></li>
479
+ <li>Can I <strong>see everything that’s overdue on a single screen?</strong></li>
480
+ <li>Can I use Basecamp <strong>even if some of my team prefers just to use email?</strong></li>
481
+ <li>Can I <strong>see all the work that was completed on any given day?</strong></li>
482
+ <li>Can I <strong>set up projects that only some of my team can see?</strong></li>
483
+ <li>Can I <strong>see everything that’s happened across multiple projects in one place?</strong></li>
484
+ <li>Can I <strong>@mention someone so they’re notified about something?</strong></li>
485
+ <li>Can I <strong>see all the work someone’s done over a long period of time?</strong></li>
486
+ <li>Can I <strong>see everything that’s assigned to someone on a single page?</strong></li>
487
+ <li>Can I <strong>see exactly who worked on what today? Yesterday? Last week?</strong></li>
488
+ <li>Can I <strong>easily reference an entire conversation from a year ago?</strong></li>
489
+ <li>Can I <strong>follow a project quietly without receiving notifications?</strong></li>
490
+ <li>Can I <strong>assign tasks to multiple people at once?</strong></li>
491
+ <li>Can I <strong>see all our projects laid out on a visual timeline?</strong></li>
492
+ <li>Can I <strong>keep all the discussion about a to-do attached to that to-do?</strong></li>
493
+ <li>Can I <strong>follow-up directly with someone without anyone else knowing?</strong></li>
494
+ <li>Can <strong>our clients respond to our questions via email?</strong></li>
495
+ <li>Can <strong>our clients see a record of everything we’ve asked them?</strong></li>
496
+ <li>Can I <strong>organize ideas and setup workflows on a Kanban board?</strong></li>
497
+ <li>Can Basecamp <strong>tell me when someone completed an assignment?</strong></li>
498
+ <li>Can Basecamp <strong>help me get a client to approve a design?</strong></li>
499
+ <li>Can Basecamp <strong>help me hold my team accountable for deadlines?</strong></li>
500
+ <li>You <strong>wrote some <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18">books on how to run a business</a>, too, right?</strong></li>
501
+ </ul>
502
+ </div>
503
+
504
+ <div class="statement statement--gap-large space-top--xxx-large">
505
+ <section>
506
+ <header>
507
+ <h2 id="its-time"><a href="../enterprise-extravaganza#its-time">You wouldn’t be here if the<br> way you’ve been working was working. It’s time for Basecamp.</a></h2>
508
+ </header>
509
+ <article>
510
+ <p>Team super busy, but running in circles? <strong>It’s time for Basecamp.</strong> Finding stuff easy to start, but hard to finish? <strong>It’s time for Basecamp.</strong> Things taking longer than they should? <strong>It’s time for Basecamp.</strong> Info increasingly scattered across different apps? <strong>It’s time for Basecamp.</strong> Subscription fees keep adding up?<br> <strong>It’s time for Basecamp.</strong> Growing into dysfunction? <strong>It’s time for Basecamp.</strong> Tired of looking disorganized in front of clients? <strong class="highlight highlight--time">It’s time for Basecamp.</strong></p>
511
+ </article>
512
+ </section>
513
+ </div>
514
+
515
+ <div class="headline space-top--xxx-large">
516
+ <header>
517
+ <h3 id="company-faqs"><a href="../enterprise-extravaganza#company-faqs">I have questions about your company&hellip;</a></h3>
518
+ </header>
519
+ </div>
520
+
521
+ <div class="details space-top--medium">
522
+
523
+ <details id="trust">
524
+ <summary>
525
+ <p>How long have you been around? Can we trust you?</p>
526
+ </summary>
527
+ <article>
528
+ <p>The company that designed, owns, and operates Basecamp is called <a href="https://37signals.com" target="_blank">37signals</a>, and we’ve been around as a company since 1999. We launched Basecamp, the product, in 2004 and have been improving it weekly ever since. Running a sane, responsible, sustainable business is part of our commitment to you.</p>
529
+ <p>We’ve been <strong>profitable for 25 straight years, we have zero debt, we’re privately held, and built to stay, not exit.</strong> Our <a href="../handbook">employee handbook</a> is also public for everyone to see how we run our business and treat our employees.</p>
530
+ <p>We’ve also written a number of <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18">bestselling books</a> (REWORK, Remote, It Doesn’t Have to Be Crazy at Work) as well. The books detail how we’ve built, and run, such a unique, long-lasting company in a field full of sameness and short-term thinking.</p>
531
+ <p>You can email Jason Fried, our Co-Founder and CEO, any time at <a href="mailto:jason@basecamp.com">jason@basecamp.com</a>. He doesn’t have an assistant, so he’ll read and respond to your emails personally.</p>
532
+ </article>
533
+ </details>
534
+
535
+ <details id="uptime">
536
+ <summary>
537
+ <p>What about reliability and uptime?</p>
538
+ </summary>
539
+ <article>
540
+ <p>We can make endless promises, but the numbers are what matter here. Our historical uptime over multiple decades is well over 99.99%, and you can see recent real-time history on our <a href="https://www.37status.com" target="_blank">Status Page</a>.</p>
541
+ </article>
542
+ </details>
543
+
544
+ <details id="refunds">
545
+ <summary>
546
+ <p>What’s your refund policy like?</p>
547
+ </summary>
548
+ <article>
549
+ <p>We aim to be fair and reasonable, just as we’d want to be treated. <a href="https://37signals.com/policies/refund/" target="_blank">Our refund policy</a> reflects that.</p>
550
+ </article>
551
+ </details>
552
+
553
+ <details id="questions">
554
+ <summary>
555
+ <p>Can I ask ownership a question directly?</p>
556
+ </summary>
557
+ <article>
558
+ <p><strong>Absolutely.</strong> Our Co-Founder and CEO (Jason Fried) is available direct at <a href="mailto:jason@basecamp.com">jason@basecamp.com</a>, and our other Co-Founder and CTO (David Heinemeier Hansson) is at <a href="mailto:david@basecamp.com">david@basecamp.com</a>. Please do reach out. They don’t have assistants or anyone who reads their emails, so you’ll hear from them directly.</p>
559
+ </article>
560
+ </details>
561
+
562
+ </div>
563
+
564
+ <div class="headline space-top--x-large">
565
+ <header>
566
+ <h3 id="security-faqs"><a href="../enterprise-extravaganza#security-faqs">I have questions about security and our data&hellip;</a></h3>
567
+ </header>
568
+ </div>
569
+
570
+ <div class="details space-top--medium">
571
+
572
+ <details id="secure">
573
+ <summary>
574
+ <p>How secure is Basecamp?</p>
575
+ </summary>
576
+ <article>
577
+ <p>We have a <a href="https://37signals.com/policies/security/" target="_blank">full security write-up</a> available on the 37signals site. 37signals is the company behind Basecamp.</p>
578
+ </article>
579
+ </details>
580
+
581
+ <details id="backups">
582
+ <summary>
583
+ <p>Is our data backed up? How often?</p>
584
+ </summary>
585
+ <article>
586
+ <p>Data customers enter into Basecamp is stored in multiple, redundant data centers. That data is backed up several times a day, and copies of those backups are stored both locally and off-site to further reduce points of possible failure. Files customers upload are stored off-site and backed up to servers in a different geographic region.</p>
587
+ </article>
588
+ </details>
589
+
590
+ <details id="data-centers">
591
+ <summary>
592
+ <p>Where are the servers that store our data?</p>
593
+ </summary>
594
+ <article>
595
+ <p>Our servers are located in multiple data centers in the United States. We service customers from over 160 countries from these servers. We do not currently have data centers outside the US.</p>
596
+ </article>
597
+ </details>
598
+
599
+ <details id="custom-security-questionnaires">
600
+ <summary>
601
+ <p>Can you fill our custom security questionnaires?</p>
602
+ </summary>
603
+ <article>
604
+ <p>We don’t fill out custom security questionnaires, but we’ve <a href="https://37signals.com/policies/security/37signals%20Security%20Overview.pdf" target="_blank">prepared a summary security PDF</a> which you can provide to your IT staff.</p>
605
+ </article>
606
+ </details>
607
+
608
+ <details id="export-our-data">
609
+ <summary>
610
+ <p>Can I export our data if we ever want to leave?</p>
611
+ </summary>
612
+ <article>
613
+ <p><strong>Absolutely,</strong> you can do it as often as you’d like. Plus, it’s entirely self-service and easy so you don’t need to ask anyone for help or permission. Further, we provide it in a format that allows you to browse it in a web browser so it’s actually useful. <a href="https://3.basecamp-help.com/article/150-export-your-basecamp-data" target="_blank">Here’s how exporting works</a>.</p>
614
+ </article>
615
+ </details>
616
+
617
+ </div>
618
+
619
+ <div class="headline space-top--x-large">
620
+ <header>
621
+ <h3 id="other-faqs"><a href="../enterprise-extravaganza#other-faqs">I have other questions&hellip;</a></h3>
622
+ </header>
623
+ </div>
624
+
625
+ <div class="details space-top--medium">
626
+
627
+ <details id="api">
628
+ <summary>
629
+ <p>Does Basecamp have an API? Can we integrate with Basecamp?</p>
630
+ </summary>
631
+ <article>
632
+ <p><strong>Yes,</strong> <a href="https://github.com/basecamp/bc3-api" target="_blank">Basecamp has a full-featured API (docs are hosted on GitHub)</a>. Hundreds of companies have written custom integrations, and <a href="../integrations/index.html">our Integrations page</a> links up third-party solutions for invoicing, accounting, time tracking, reporting, planning, asset management, contracts, proposals, and more.</p>
633
+ </article>
634
+ </details>
635
+
636
+ <details id="customer-support">
637
+ <summary>
638
+ <p>What’s your customer support like? What if we need help?</p>
639
+ </summary>
640
+ <article>
641
+ <p>Our customer support is widely considered to be among the best of the best. Everyone who works on our support team are expert specialists who know Basecamp inside and out, many having been with us for years and years, some over a decade. Further, we occasionally cycle every employee through support — including our CEO — so everyone has a chance to directly interact with customers.</p>
642
+ <p>You can <a href="../support/index.html">ask support a question</a>, or <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">watch tutorials</a>, or <a href="https://3.basecamp-help.com">review the help guides</a>, or <a href="../classes/index.html">attend a live walkthrough class and Q&amp;A</a>.</p>
643
+ </article>
644
+ </details>
645
+
646
+ <details id="languages">
647
+ <summary>
648
+ <p>Is Basecamp available in languages other than English?</p>
649
+ </summary>
650
+ <article>
651
+ <p>Currently we only offer Basecamp’s interface in English, although we have people in over 160 countries writing and sharing in their own native languages using Basecamp.</p>
652
+ </article>
653
+ </details>
654
+
655
+ <details id="other-products">
656
+ <summary>
657
+ <p>If we go with Basecamp, will we still need stuff like Slack? Asana? Dropbox?</p>
658
+ </summary>
659
+ <article>
660
+ <p><strong>Nope,</strong> Basecamp replaces a whole set of separate products and saves you a ton of money. Basecamp has chat built in (no more Slack). Basecamp has exceptional task management in the form of to-dos and kanban-style Card Tables (no more Asana). And you can store and share all the files you need in a project (no more Dropbox). Basecamp also replaces document-based tools like Google Docs, Notion, etc. And yet, if you need to continue to use some of those tools, you can always link them up right from inside Basecamp using the Doors feature.</p>
661
+ </article>
662
+ </details>
663
+
664
+ <details id="who-uses-basecamp">
665
+ <summary>
666
+ <p>What kind of companies, in which industries, use Basecamp?</p>
667
+ </summary>
668
+ <article>
669
+ <p>Basecamp is used by top notch marketers, ad agencies, designers, client services firms, consultants, software developers, freelancers, PR agencies, contractors, religious institutions, schools, non-profits, first responders, and many others. Over 75,000 organizations, across every industry imaginable, in 166 countries, use Basecamp for project management.</p>
670
+ <p>Our customers are primarily small or medium-sized companies with fewer than 100 full-time employees, but Basecamp is also used by teams inside many of the world’s largest companies.</p>
671
+ </article>
672
+ </details>
673
+
674
+ <details id="classes" class="data-classes data-classes--details" data-classes-limit="6">
675
+ <summary>
676
+ <p>Do you offer classes to learn more about Basecamp?</p>
677
+ </summary>
678
+ <article>
679
+ <p><strong>Yes, see our upcoming classes below.</strong> We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask. We’ll teach you the basics of using Basecamp, with plenty of time set aside for questions.<span class="data-classes__link"> <a href="../classes/index.html">See all our upcoming classes</a>.</span></p>
680
+ <div class="data-classes__output"></div>
681
+ </article>
682
+ </details>
683
+
684
+ </div>
685
+
686
+ <div class="marquee marquee--left space-bottom--xxx-large space-top--xx-large">
687
+
688
+ <a href="../customers/index.html" aria-hidden="true" tabindex="-1">
689
+ <ul>
690
+
691
+
692
+
693
+
694
+
695
+ <li>“Extremely user friendly”</li>
696
+
697
+
698
+
699
+ <li>“Truly amazing!”</li>
700
+
701
+
702
+
703
+ <li>“A godsend for our org”</li>
704
+
705
+
706
+
707
+ <li>“Simple, quick, powerful”</li>
708
+
709
+
710
+
711
+ <li>“So glad I found Basecamp”</li>
712
+
713
+
714
+
715
+ <li>“The perfect solution”</li>
716
+
717
+
718
+
719
+ <li>“Really great”</li>
720
+
721
+
722
+
723
+ <li>“Outstanding”</li>
724
+
725
+
726
+
727
+ <li>“Best app for teams”</li>
728
+
729
+
730
+
731
+ <li>“Awesome service”</li>
732
+
733
+
734
+
735
+ <li>“Gets better and better”</li>
736
+
737
+
738
+
739
+ <li>“Great collaboration tool”</li>
740
+
741
+
742
+
743
+ <li>“Great software”</li>
744
+
745
+
746
+
747
+ <li>“Gold standard PM app”</li>
748
+
749
+
750
+
751
+ <li>“Brilliant solution”</li>
752
+
753
+
754
+
755
+ <li>“Clean and easy to use”</li>
756
+
757
+
758
+
759
+ <li>“Fantastic app”</li>
760
+
761
+
762
+
763
+ <li>“Organized and on point”</li>
764
+
765
+
766
+
767
+ <li>“Extremely user friendly”</li>
768
+
769
+
770
+
771
+ <li>“Truly amazing!”</li>
772
+
773
+
774
+
775
+ <li>“A godsend for our org”</li>
776
+
777
+
778
+
779
+ <li>“Simple, quick, powerful”</li>
780
+
781
+
782
+
783
+ <li>“So glad I found Basecamp”</li>
784
+
785
+
786
+
787
+ <li>“The perfect solution”</li>
788
+
789
+
790
+
791
+ <li>“Really great”</li>
792
+
793
+
794
+
795
+ <li>“Outstanding”</li>
796
+
797
+
798
+
799
+ <li>“Best app for teams”</li>
800
+
801
+
802
+
803
+ <li>“Awesome service”</li>
804
+
805
+
806
+
807
+ <li>“Gets better and better”</li>
808
+
809
+
810
+
811
+ <li>“Great collaboration tool”</li>
812
+
813
+
814
+
815
+ <li>“Great software”</li>
816
+
817
+
818
+
819
+ <li>“Gold standard PM app”</li>
820
+
821
+
822
+
823
+ <li>“Brilliant solution”</li>
824
+
825
+
826
+
827
+ <li>“Clean and easy to use”</li>
828
+
829
+
830
+
831
+ <li>“Fantastic app”</li>
832
+
833
+
834
+
835
+ <li>“Organized and on point”</li>
836
+
837
+
838
+
839
+ </ul>
840
+ </a>
841
+
842
+
843
+ </div>
844
+
845
+
846
+ </main>
847
+
848
+ <footer class="footer">
849
+
850
+
851
+
852
+
853
+
854
+ <div class="footer__apps" id="apps">
855
+ <dl class="footer__headline">
856
+ <dt>Basecamp’s everywhere</dt>
857
+ <dd>Mac, Windows, iOS, Android, and on the web — Basecamp is ready <a href="../apps/index.html">whenever and wherever you are</a>.</dd>
858
+ </dl>
859
+ <ul>
860
+ <li><a class="button button--icon button--pwa" href="https://3.basecamp-help.com/article/937-basecamp-pwa" title="Install Basecamp on Mac and Windows">Desktop apps</a></li>
861
+ <li><a class="button button--icon button--ios" href="https://apps.apple.com/us/app/basecamp-project-management/id1015603248" title="Install Basecamp on iOS">iOS</a></li>
862
+ <li><a class="button button--icon button--android" href="https://play.google.com/store/apps/details?id=com.basecamp.bc3" title="Install Basecamp on Android">Android</a></li>
863
+ <li><a class="button button--icon button--basecamp" href="https://launchpad.37signals.com/signin" title="Use Basecamp in your web browser" target="_blank" data-controller="signup" data-action="signup#trackLogin">Sign in to Basecamp</a></li>
864
+ </ul>
865
+ </div>
866
+
867
+
868
+
869
+
870
+
871
+ <div class="footer__classes data-classes" data-classes-limit="4">
872
+ <dl class="footer__headline">
873
+ <dt>Join us for a free live class</dt>
874
+ <dd>We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask.<span class="data-classes__link"> <a href="../classes/index.html">See all our upcoming classes</a>.</span></dd>
875
+ </dl>
876
+ <div class="data-classes__output"></div>
877
+ </div>
878
+
879
+
880
+
881
+
882
+
883
+ <div class="footer__newsletter">
884
+ <dl class="footer__headline">
885
+ <dt>Never miss an update</dt>
886
+ <dd>Join more than 150,000 people who get <a href="../newsletter/index.html">our newsletter</a>. We’ll share product updates, thoughts, new releases, and other tidbits we think you’ll find interesting.</dd>
887
+ </dl>
888
+ <div class="newsletter">
889
+ <div class="newsletter__container">
890
+ <form novalidate action="https://basecamp.us2.list-manage.com/subscribe/post-json?u=2a145c60b16248b65e46a799a&amp;id=476312b66e&amp;c=?" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form">
891
+ <div aria-hidden="true" style="position: absolute; left: -5000px;"><input type="text" name="b_2a145c60b16248b65e46a799a_476312b66e" value="" tabindex="-1" aria-label="mce"></div>
892
+ <input type="hidden" name="tags" value="23018">
893
+ <input type="email" name="EMAIL" value="" id="mce-EMAIL" placeholder="julie.young@hey.com" aria-label="Your email address" required data-1p-ignore>
894
+ <button type="submit" name="subscribe" id="mc-embedded-subscribe">Subscribe</button>
895
+ </form>
896
+ </div>
897
+ </div>
898
+ </div>
899
+
900
+
901
+
902
+
903
+
904
+ <div class="footer__support">
905
+ <dl class="footer__headline">
906
+ <dt>We’re here to help with 24/7/365 support</dt>
907
+ <dd>There are no stupid questions — for pre-sales questions, existing customers who need a hand, or any other inquiries, <a href="../support/index.html">contact us</a> and we’ll get back to you within an hour. <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">Watch tutorials</a>, <a href="../help/index.html">read the help guides</a>, or <a href="../support/index.html">send us a message</a> to get help.</dd>
908
+ </dl>
909
+
910
+
911
+
912
+ <div class="footer__hey">
913
+ <a href="https://www.hey.com" target="_blank">
914
+ <span>If you love Basecamp, you’ll love <strong>HEY</strong> — our delightfully fresh take on email + calendar</span>
915
+ </a>
916
+ </div>
917
+
918
+
919
+
920
+ </div>
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+ <div class="footer__links">
929
+ <dl class="footer__headline">
930
+ <dt>And there’s more&hellip;</dt>
931
+ <dd>
932
+
933
+
934
+
935
+ <a href="../new/index.html" aria-label="What’s new">What’s new</a> •
936
+
937
+
938
+
939
+ <a href="../paths/index.html" aria-label="The people’s path to Basecamp">The people’s path to Basecamp</a> •
940
+
941
+
942
+
943
+ <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18" aria-label="Books we’ve written">Books we’ve written</a> •
944
+
945
+
946
+
947
+ <a href="../about/index.html" aria-label="Where we came from">Where we came from</a> •
948
+
949
+
950
+
951
+ <a href="../guides/how-we-communicate/index.html" aria-label="How we communicate">How we communicate</a> •
952
+
953
+
954
+
955
+ <a href="../guides/how-we-make-decisions/index.html" aria-label="How we make decisions">How we make decisions</a> •
956
+
957
+
958
+
959
+ <a href="../guides/why-we-choose-profit/index.html" aria-label="Why we choose profit">Why we choose profit</a> •
960
+
961
+
962
+
963
+ <a href="../guides/group-chat-problems/index.html" aria-label="Group chat problems">Group chat problems</a> •
964
+
965
+
966
+
967
+ <a href="../guides/seven-shipping-principles/index.html" aria-label="Seven shipping principles">Seven shipping principles</a> •
968
+
969
+
970
+
971
+ <a href="../underdogs/index.html" aria-label="We stand with the underdogs">We stand with the underdogs</a> •
972
+
973
+
974
+
975
+ <a href="../small/index.html" aria-label="Come small, come all">Come small, come all</a> •
976
+
977
+
978
+
979
+ <a href="../overkill/index.html" aria-label="Kill overkill">Kill overkill</a> •
980
+
981
+
982
+
983
+ <a href="../cloud-exit/index.html" aria-label="Leaving the Cloud">Leaving the Cloud</a> •
984
+
985
+
986
+
987
+ <a href="../before-and-after/index.html" aria-label="Night &amp; day">Night &amp; day</a> •
988
+
989
+
990
+
991
+ <a href="../hill-charts/index.html" aria-label="See where projects really stand">See where projects really stand</a> •
992
+
993
+
994
+
995
+ <a href="../justletmedomyjob/index.html" aria-label="JUST LET ME DO MY JOB">JUST LET ME DO MY JOB</a> •
996
+
997
+
998
+
999
+ <a href="../customers/index.html" aria-label="What changed for the better?">What changed for the better?</a> •
1000
+
1001
+
1002
+
1003
+ <a href="../integrations/index.html" aria-label="Integrations">Integrations</a> •
1004
+
1005
+
1006
+
1007
+ <a href="../accessibility/index.html" aria-label="Basecamp is for everyone">Basecamp is for everyone</a> •
1008
+
1009
+
1010
+
1011
+ <a href="../community/index.html" aria-label="Basecamp community">Basecamp community</a> •
1012
+
1013
+
1014
+
1015
+ <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14" aria-label="Learn Basecamp">Learn Basecamp</a> •
1016
+
1017
+
1018
+
1019
+ <a href="../handbook" aria-label="Employee handbook">Employee handbook</a>
1020
+
1021
+
1022
+
1023
+ </dd>
1024
+ </dl>
1025
+ </div>
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+
1033
+ <div class="footer__legal">
1034
+ <p>
1035
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
1036
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
1037
+ <strong>Basecamp</strong>
1038
+ </a>
1039
+ <span>is designed, built, and backed by</span>
1040
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
1041
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
1042
+ <strong>37signals</strong>
1043
+ </a>
1044
+ </p>
1045
+ <ul>
1046
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
1047
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
1048
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
1049
+ <li>&copy; 2025 37signals LLC</li>
1050
+ </ul>
1051
+ </div>
1052
+ </footer>
1053
+
1054
+
1055
+ <dialog class="modal">
1056
+ <div class="modal__backdrop"></div>
1057
+ <div class="modal__container"></div>
1058
+ </dialog>
1059
+
1060
+
1061
+ </body>
1062
+
1063
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/features/doors ADDED
@@ -0,0 +1,1063 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Project management software, online collaboration</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Project management software, online collaboration">
28
+ <meta property="og:description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Project management software, online collaboration">
34
+ <meta name="twitter:description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Project management software, online collaboration",
53
+ "description": "Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.",
54
+ "url": "https://basecamp.com/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="../enterprise-extravaganza">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body class="body has-nav-phrase" data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <input id="nav-active" type="checkbox">
110
+
111
+ <label id="nav-underlay" for="nav-active"></label>
112
+
113
+ <nav class="nav">
114
+ <div class="nav__container">
115
+ <div class="nav__logo">
116
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
117
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
118
+ <strong>Basecamp</strong>
119
+ </a>
120
+ <div class="nav__phrase">is the <span class="highlight"></span> <strong>project management system</strong> by</div>
121
+ <b class="icon icon--37signals">
122
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
123
+ <strong>37signals</strong>
124
+ </b>
125
+ </div>
126
+ <div class="nav__links">
127
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
128
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
129
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
130
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
131
+ </div>
132
+ <div class="nav__buttons">
133
+ <a class="nav__button nav__button--launchpad" href="https://launchpad.37signals.com/signin" target="_blank" data-controller="signup" data-action="signup#trackLogin" aria-label="Sign in">Sign in</a>
134
+ <a class="nav__button nav__button--signup trk-package" id="sign-up-nav" href="../pricing/index.html#packages" aria-label="Sign up free">Sign up free</a>
135
+ </div>
136
+ <label class="nav__toggle" for="nav-active" aria-label="Nav Toggle" tabindex="0"></label>
137
+ </div>
138
+ <div class="nav__mobile">
139
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
140
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
141
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
142
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
143
+ </div>
144
+ </nav>
145
+
146
+
147
+
148
+
149
+ <main class="main">
150
+
151
+ <div class="illustration space-bottom--large">
152
+ <picture>
153
+ <source srcset="/assets/images/home/illustration-desktop.png" media="(min-width: 48em)">
154
+ <img src="../assets/images/home/illustration-mobile.png" alt="Wrestling with projects? It doesn’t have to be this hard.">
155
+ </picture>
156
+ </div>
157
+
158
+ <div class="columns">
159
+ <section>
160
+ <header>
161
+ <h1>Wrestling with projects?<br> It doesn’t have to be this hard.</h1>
162
+ </header>
163
+ <article>
164
+ <div>
165
+ <p>There are lots of ways to manage projects. And there’s plenty of software promising to help. You’ve probably tried some. Yet, here you are.</p>
166
+ <p><strong>Unfortunately, most project management systems are either overwhelming, inadequate, bewildering, or chaotic. You know?</strong></p>
167
+ <p>Not Basecamp. Basecamp is refreshingly straightforward, with a 21-year track record to back it up. Longevity isn’t luck — it’s proof it works. And you’ll work better with it too.</p>
168
+ </div>
169
+ <div>
170
+ <p><strong>Basecamp is famously no-nonsense, effective, and reliable.</strong> The trifecta. It’s <a href="../underdogs/index.html">designed for smaller, hungrier businesses</a>, not big, sluggish ones. <a href="../customers/index.html">Over 30 pages of customer testimonials</a> detail how things run better on Basecamp.</p>
171
+ <p>So, we invite you to poke around, watch the video below, and <a href="../pricing/index.html#packages">try Basecamp for free</a>. We’d be honored to have you as a customer. Thank you.</p>
172
+ <dl>
173
+ <dt><strong>Jason Fried</strong>, <a href="mailto:jason@basecamp.com">jason@basecamp.com</a></dt>
174
+ <dd><em>Co-founder &amp; CEO</em></dd>
175
+ </dl>
176
+ </div>
177
+ </article>
178
+ </section>
179
+ </div>
180
+
181
+ <div class="visual visual--walkthrough space-top--xxx-large">
182
+ <div class="visual__column">
183
+ <button class="visual__button modal-trigger" id="walkthrough-columns" data-type="video" data-event="Walkthrough: Columns" data-src="/videos/home/walkthrough.mp4" data-track="/videos/home/walkthrough.vtt">
184
+ <figure class="visual__figure">
185
+ <img src="../videos/home/walkthrough-small.webp" width="2400" height="1326" alt="See how Basecamp works">
186
+ <span aria-hidden="true">Hit play to see how Basecamp is different</span>
187
+ </figure>
188
+ <div class="visual__play"></div>
189
+ </button>
190
+ </div>
191
+ </div>
192
+
193
+ <div class="statement space-top--xxx-large">
194
+ <section>
195
+ <header>
196
+ <h2 id="features"><a href="../enterprise-extravaganza#features">Let’s walk through it.</a></h2>
197
+ </header>
198
+ </section>
199
+ </div>
200
+
201
+ <div class="headline space-top--large">
202
+ <header>
203
+ <h3 id="home"><a href="../enterprise-extravaganza#home">10 seconds after you sign up, clarity sets in.</a></h3>
204
+ </header>
205
+ <article>
206
+ <p>The home screen organizes your projects, assignments, and upcoming events together on one screen. It’s your calm, comfortable, simple starting point every morning.</p>
207
+ </article>
208
+ </div>
209
+
210
+ <div class="visual space-top--large">
211
+ <div class="visual__column visual__column--4">
212
+ <button class="visual__button modal-trigger" id="whats-my-week-look-like" data-type="video" data-event="Home: What’s my week look like?" data-src="/videos/home/whats-my-week-look-like.mp4" data-track="/videos/home/whats-my-week-look-like.vtt">
213
+ <figure class="visual__figure">
214
+ <img src="../videos/home/whats-my-week-look-like.webp" width="1260" height="1116" alt="View your schedule" loading="lazy">
215
+ <span aria-hidden="true">What’s my week look like?</span>
216
+ </figure>
217
+ <div class="visual__play"></div>
218
+ </button>
219
+ <button class="visual__button modal-trigger" id="whats-on-my-plate-today" data-type="video" data-event="Home: What’s on my plate today?" data-src="/videos/home/whats-on-my-plate-today.mp4" data-track="/videos/home/whats-on-my-plate-today.vtt">
220
+ <figure class="visual__figure">
221
+ <img src="../videos/home/whats-on-my-plate-today.webp" width="1260" height="1116" alt="View your assignments" loading="lazy">
222
+ <span aria-hidden="true">What’s on my plate today?</span>
223
+ </figure>
224
+ <div class="visual__play"></div>
225
+ </button>
226
+ <aside class="visual__aside" aria-label="Home">
227
+ <p><strong>Each person gets their own home screen depending on which projects they have access to.</strong> They’ll only see their own assignments and events. And you can keep important projects close at hand by pinning them to the top.</p>
228
+ </aside>
229
+ </div>
230
+ <div class="visual__column visual__column--8">
231
+ <button class="visual__button modal-trigger" id="which-projects-am-i-on" data-type="video" data-event="Home: Which projects am I on?" data-src="/videos/home/which-projects-am-i-on.mp4" data-track="/videos/home/which-projects-am-i-on.vtt">
232
+ <figure class="visual__figure">
233
+ <img src="../videos/home/which-projects-am-i-on.webp" width="2400" height="2854" alt="View projects on the home screen" loading="lazy">
234
+ <span aria-hidden="true">Which projects am I on?</span>
235
+ </figure>
236
+ <div class="visual__play"></div>
237
+ </button>
238
+ </div>
239
+ </div>
240
+
241
+ <div class="headline space-top--xxx-large">
242
+ <header>
243
+ <h3 id="projects"><a href="../enterprise-extravaganza#projects">Projects get teams — and keep teams — organized.</a></h3>
244
+ </header>
245
+ <article>
246
+ <p>A project is where the tasks, discussions, deliverables, and decisions happen. Projects hold everything — and everyone — together in one tidy, predictably structured place.</p>
247
+ </article>
248
+ </div>
249
+
250
+ <div class="visual space-top--large">
251
+ <div class="visual__column visual__column--6">
252
+ <button class="visual__button modal-trigger" id="all-in-one-toolbox" data-type="video" data-event="Projects: A project page organizes everything" data-src="/videos/home/all-in-one-toolbox.mp4" data-track="/videos/home/all-in-one-toolbox.vtt">
253
+ <figure class="visual__figure">
254
+ <img src="../videos/home/all-in-one-toolbox.webp" width="2400" height="2582" alt="A Basecamp project page" loading="lazy">
255
+ <span aria-hidden="true">A project page organizes everything</span>
256
+ </figure>
257
+ <div class="visual__play"></div>
258
+ </button>
259
+ <aside class="visual__aside" aria-label="Projects">
260
+ <p><strong>Make as many projects as you’d like.</strong> We run dozens at once in our own Basecamp account. For example, one for a web site redesign, <a href="../enterprise-extravaganza#organizing-a-meet-up" class="modal-trigger" id="organizing-a-meet-up" data-type="video" data-event="Organizing a Meet-up" data-src="/videos/organizing-a-meet-up/organizing-a-meet-up.mp4">one for planning an upcoming offsite</a>, one for working with our accountants, and one just for the executive team to plan strategy, etc.</p>
261
+ </aside>
262
+ </div>
263
+ <div class="visual__column visual__column--6 visual__column--grid">
264
+ <button class="visual__button modal-trigger" id="track-tasks" data-type="video" data-event="Projects: What to do + who’s doing?" data-src="/videos/home/track-tasks.mp4" data-track="/videos/home/track-tasks.vtt">
265
+ <figure class="visual__figure">
266
+ <img src="../assets/images/screenshots/to-dos-thumbnail.webp" width="1200" height="900" alt="Track work with To-dos" loading="lazy">
267
+ <span aria-hidden="true">What to do + who’s doing?</span>
268
+ </figure>
269
+ <div class="visual__play"></div>
270
+ </button>
271
+ <button class="visual__button modal-trigger" id="launch-discussions" data-type="video" data-event="Projects: Who said what when?" data-src="/videos/home/launch-discussions.mp4" data-track="/videos/home/launch-discussions.vtt">
272
+ <figure class="visual__figure">
273
+ <img src="../assets/images/screenshots/message-board-thumbnail.webp" width="1200" height="900" alt="Stay on topic with Messages" loading="lazy">
274
+ <span aria-hidden="true">Who said what when?</span>
275
+ </figure>
276
+ <div class="visual__play"></div>
277
+ </button>
278
+ <button class="visual__button modal-trigger" id="set-milestones" data-type="video" data-event="Projects: What’s due next?" data-src="/videos/home/set-milestones.mp4" data-track="/videos/home/set-milestones.vtt">
279
+ <figure class="visual__figure">
280
+ <img src="../assets/images/screenshots/schedule-thumbnail.webp" width="1200" height="900" alt="Schedule so you don’t forget" loading="lazy">
281
+ <span aria-hidden="true">What’s due next?</span>
282
+ </figure>
283
+ <div class="visual__play"></div>
284
+ </button>
285
+ <button class="visual__button modal-trigger" id="store-assets" data-type="video" data-event="Projects: Where’s the latest version?" data-src="/videos/home/store-assets.mp4" data-track="/videos/home/store-assets.vtt">
286
+ <figure class="visual__figure">
287
+ <img src="../assets/images/screenshots/docs-and-files-thumbnail.webp" width="1200" height="900" alt="Store, share, and discuss files" loading="lazy">
288
+ <span aria-hidden="true">Where’s the latest version?</span>
289
+ </figure>
290
+ <div class="visual__play"></div>
291
+ </button>
292
+ <button class="visual__button modal-trigger" id="hash-stuff-out" data-type="video" data-event="Projects: Got a quick question?" data-src="/videos/home/hash-stuff-out.mp4" data-track="/videos/home/hash-stuff-out.vtt">
293
+ <figure class="visual__figure">
294
+ <img src="../assets/images/screenshots/chat-thumbnail.webp" width="1200" height="900" alt="Chat around the campfire" loading="lazy">
295
+ <span aria-hidden="true">Got a quick question?</span>
296
+ </figure>
297
+ <div class="visual__play"></div>
298
+ </button>
299
+ <button class="visual__button modal-trigger" id="run-workflows" data-type="video" data-event="Projects: How’s the process flowing?" data-src="/videos/home/run-workflows.mp4" data-track="/videos/home/run-workflows.vtt">
300
+ <figure class="visual__figure">
301
+ <img src="../assets/images/screenshots/card-table-thumbnail.webp" width="1200" height="900" alt="Card Table is our unique take on Kanban" loading="lazy">
302
+ <span aria-hidden="true">How’s the process flowing?</span>
303
+ </figure>
304
+ <div class="visual__play"></div>
305
+ </button>
306
+ </div>
307
+ </div>
308
+
309
+ <div class="headline space-top--xxx-large">
310
+ <header>
311
+ <h3 id="reports"><a href="../enterprise-extravaganza#reports">Reports give you confidence to hold people accountable.</a></h3>
312
+ </header>
313
+ <article>
314
+ <p>Basecamp’s reports aren’t numbers, percentages, or abstract representations — they’re the real work, actual evidence of progress being made (or not made).</p>
315
+ </article>
316
+ </div>
317
+
318
+ <div class="visual space-top--large">
319
+ <div class="visual__column visual__column--4">
320
+ <button class="visual__button modal-trigger" id="whats-overdue" data-type="video" data-event="Reports: What’s overdue?" data-src="/videos/home/whats-overdue.mp4" data-track="/videos/home/whats-overdue.vtt">
321
+ <figure class="visual__figure">
322
+ <img src="../videos/home/whats-overdue.webp" width="1796" height="1304" alt="See everything that’s overdue" loading="lazy">
323
+ <span aria-hidden="true">What’s overdue?</span>
324
+ </figure>
325
+ <div class="visual__play"></div>
326
+ </button>
327
+ <button class="visual__button modal-trigger" id="how-much-time-have-we-spent" data-type="video" data-event="Reports: How much time have we spent?" data-src="/videos/home/how-much-time-have-we-spent.mp4" data-track="/videos/home/how-much-time-have-we-spent.vtt">
328
+ <figure class="visual__figure">
329
+ <img src="../videos/home/how-much-time-have-we-spent.webp" width="1796" height="1304" alt="Track time directly in Basecamp" loading="lazy">
330
+ <span aria-hidden="true">How much time have we spent?</span>
331
+ </figure>
332
+ <div class="visual__play"></div>
333
+ </button>
334
+ <button class="visual__button modal-trigger" id="whos-responsible-for-what" data-type="video" data-event="Reports: Who’s responsible for what?" data-src="/videos/home/whos-responsible-for-what.mp4" data-track="/videos/home/whos-responsible-for-what.vtt">
335
+ <figure class="visual__figure">
336
+ <img src="../videos/home/whos-responsible-for-what.webp" width="1796" height="1304" alt="Reports quickly cut across every project to give you quick insights" loading="lazy">
337
+ <span aria-hidden="true">Who’s responsible for what?</span>
338
+ </figure>
339
+ <div class="visual__play"></div>
340
+ </button>
341
+ </div>
342
+ <div class="visual__column visual__column--8">
343
+ <button class="visual__button modal-trigger" id="whats-actually-been-happening" data-type="video" data-event="Reports: What’s actually been happening?" data-src="/videos/home/whats-actually-been-happening.mp4" data-track="/videos/home/whats-actually-been-happening.vtt">
344
+ <figure class="visual__figure">
345
+ <img src="../videos/home/whats-actually-been-happening.webp" width="2400" height="3028" alt="The micro-view of everything that happens across every project in real-time" loading="lazy">
346
+ <span aria-hidden="true">What’s actually been happening?</span>
347
+ </figure>
348
+ <div class="visual__play"></div>
349
+ </button>
350
+ </div>
351
+ </div>
352
+
353
+ <div class="headline space-top--xxx-large">
354
+ <header>
355
+ <h3 id="visualizations"><a href="../enterprise-extravaganza#visualizations">Visualizations are for seeing, not squinting.</a></h3>
356
+ </header>
357
+ <article>
358
+ <p>Basecamp’s Lineup, Mission Control, and Hill Charts are visual tools that help you clearly see where projects really stand. Notice progress at a glance, know reality in an instant.</p>
359
+ </article>
360
+ </div>
361
+
362
+ <div class="visual space-top--large">
363
+ <div class="visual__column">
364
+ <button class="visual__button modal-trigger" id="how-far-along-are-we" data-type="video" data-event="Visualizations: How far along are we?" data-src="/videos/home/how-far-along-are-we.mp4" data-track="/videos/home/how-far-along-are-we.vtt">
365
+ <figure class="visual__figure">
366
+ <img src="../videos/home/how-far-along-are-we.webp" width="3008" height="1504" alt="The Lineup shows you where every project stands, from start to finish, all at once" loading="lazy">
367
+ <span aria-hidden="true">How far along are we?</span>
368
+ </figure>
369
+ <div class="visual__play"></div>
370
+ </button>
371
+ </div>
372
+ <div class="visual__column visual__column--grid">
373
+ <button class="visual__button modal-trigger" id="how-are-we-feeling" data-type="video" data-event="Visualizations: How are we feeling?" data-src="/videos/home/how-are-we-feeling.mp4" data-track="/videos/home/how-are-we-feeling.vtt">
374
+ <figure class="visual__figure">
375
+ <img src="../videos/home/how-are-we-feeling.webp" width="2400" height="1434" alt="Mission Control shows you which projects are on track and which ones need a helping hand" loading="lazy">
376
+ <span aria-hidden="true">How are we feeling?</span>
377
+ </figure>
378
+ <div class="visual__play"></div>
379
+ </button>
380
+ <button class="visual__button modal-trigger" id="what-still-needs-to-be-figured-out" data-type="video" data-event="Visualizations: What still needs to be figured out?" data-src="/videos/home/what-still-needs-to-be-figured-out.mp4" data-track="/videos/home/what-still-needs-to-be-figured-out.vtt">
381
+ <figure class="visual__figure">
382
+ <img src="../videos/home/what-still-needs-to-be-figured-out.webp" width="2400" height="1434" alt="Hill Charts visually display the progress of your To-do list" loading="lazy">
383
+ <span aria-hidden="true">What still needs to be figured out?</span>
384
+ </figure>
385
+ <div class="visual__play"></div>
386
+ </button>
387
+ </div>
388
+ </div>
389
+
390
+ <div class="headline space-top--xxx-large">
391
+ <header>
392
+ <h3 id="notifications"><a href="../enterprise-extravaganza#notifications">Ping! Hey! It’s for you.</a></h3>
393
+ </header>
394
+ <article>
395
+ <p>The Hey! menu aggregates your notifications in a never-annoying single menu. And “Pings”, our flavor of direct messages, let you kick off ad hoc chats 1:1 or in small groups.</p>
396
+ </article>
397
+ </div>
398
+
399
+ <div class="visual space-top--large">
400
+ <div class="visual__column visual__column--5">
401
+ <button class="visual__button modal-trigger" id="have-private-1-1-or-small-group-conversations" data-type="video" data-event="Notifications: Have private 1-1 or small group conversations" data-src="/videos/home/have-private-1-1-or-small-group-conversations.mp4" data-track="/videos/home/have-private-1-1-or-small-group-conversations.vtt">
402
+ <figure class="visual__figure">
403
+ <img src="../videos/home/have-private-1-1-or-small-group-conversations.webp" width="2400" height="1830" alt="Pings let you kick off ad hoc chats 1:1 or in small groups" loading="lazy">
404
+ <span aria-hidden="true">Have private 1-1 or small group conversations</span>
405
+ </figure>
406
+ <div class="visual__play"></div>
407
+ </button>
408
+ <aside class="visual__aside" aria-label="Notifications">
409
+ <p><strong>Don’t have work chats via text or Whatsapp on your personal phone number.</strong> Keep work at work by having them in Basecamp instead.</p>
410
+ </aside>
411
+ </div>
412
+ <div class="visual__column visual__column--7">
413
+ <button class="visual__button modal-trigger" id="notifications-in-one-place" data-type="video" data-event="Notifications: Notifications in one place, not in your face" data-src="/videos/home/notifications-in-one-place.mp4" data-track="/videos/home/notifications-in-one-place.vtt">
414
+ <figure class="visual__figure">
415
+ <img src="../videos/home/notifications-in-one-place.webp" width="2400" height="1830" alt="The Hey! menu aggregates all your notifications in a single menu" loading="lazy">
416
+ <span aria-hidden="true">Notifications in one place, not in your face</span>
417
+ </figure>
418
+ <div class="visual__play"></div>
419
+ </button>
420
+ </div>
421
+ </div>
422
+
423
+ <div class="headline space-top--xxx-large">
424
+ <header>
425
+ <h3 id="clients"><a href="../enterprise-extravaganza#clients">Got clients? Be partners, not adversaries.</a></h3>
426
+ </header>
427
+ <article>
428
+ <p>Basecamp keeps both sides organized, everyone’s feedback on the record, and all decisions, approvals, files, tasks, deadlines, and communications safe and centralized.</p>
429
+ </article>
430
+ </div>
431
+
432
+ <div class="visual space-top--large">
433
+ <div class="visual__column visual__column--grid">
434
+ <button class="visual__button modal-trigger" id="you-decide-what-clients-can-see" data-type="video" data-event="Clients: Can the client see this?" data-src="/videos/home/you-decide-what-clients-can-see.mp4" data-track="/videos/home/you-decide-what-clients-can-see.vtt">
435
+ <figure class="visual__figure">
436
+ <img src="../videos/home/you-decide-what-clients-can-see.webp" width="2400" height="1424" alt="You decide what your clients can see" loading="lazy">
437
+ <span aria-hidden="true">Can the client see this?</span>
438
+ </figure>
439
+ <div class="visual__play"></div>
440
+ </button>
441
+ <button class="visual__button modal-trigger" id="three-folders-for-you-one-for-them" data-type="video" data-event="Clients: Where’s the final version so we can show the client?" data-src="/videos/home/three-folders-for-you-one-for-them.mp4" data-track="/videos/home/three-folders-for-you-one-for-them.vtt">
442
+ <figure class="visual__figure">
443
+ <img src="../videos/home/three-folders-for-you-one-for-them.webp" width="2400" height="1424" alt="Let clients grab the files they need without having to ask" loading="lazy">
444
+ <span aria-hidden="true">Where’s the final version so we can show the client?</span>
445
+ </figure>
446
+ <div class="visual__play"></div>
447
+ </button>
448
+ <button class="visual__button modal-trigger" id="keep-approvals-on-the-official-record" data-type="video" data-event="Clients: Did the client officially approve it?" data-src="/videos/home/keep-approvals-on-the-official-record.mp4" data-track="/videos/home/keep-approvals-on-the-official-record.vtt">
449
+ <figure class="visual__figure">
450
+ <img src="../videos/home/keep-approvals-on-the-official-record.webp" width="2400" height="2108" alt="Keep client feedback on the official record" loading="lazy">
451
+ <span aria-hidden="true">Did the client officially approve it?</span>
452
+ </figure>
453
+ <div class="visual__play"></div>
454
+ </button>
455
+ <button class="visual__button modal-trigger" id="email-through-basecamp" data-type="video" data-event="Clients: Where’s the client’s email they sent?" data-src="/videos/home/email-through-basecamp.mp4" data-track="/videos/home/email-through-basecamp.vtt">
456
+ <figure class="visual__figure">
457
+ <img src="../videos/home/email-through-basecamp.webp" width="2400" height="2108" alt="Clients can respond to messages right from their inbox" loading="lazy">
458
+ <span aria-hidden="true">Where’s the client’s email they sent?</span>
459
+ </figure>
460
+ <div class="visual__play"></div>
461
+ </button>
462
+ </div>
463
+ </div>
464
+
465
+ <div class="headline space-top--xxx-large">
466
+ <header>
467
+ <h3 id="yes"><a href="../enterprise-extravaganza#yes">The answer is <span class="yes-label">YES!</span></a></h3>
468
+ </header>
469
+ <article>
470
+ <p>Can software be simple, straightforward, and easy, yet powerfully full-featured?<br> With Basecamp the answer is absolutely <strong>YES!</strong></p>
471
+ </article>
472
+ </div>
473
+
474
+ <div class="yes space-top--neutral">
475
+ <ul>
476
+ <li>Can I <strong>prevent our clients from seeing unfinished work?</strong></li>
477
+ <li>Can I <strong>link up files from Google Docs, Figma, Dropbox, Airtable, and other apps?</strong></li>
478
+ <li>Can I <strong>see everything I need to do on a single screen?</strong></li>
479
+ <li>Can I <strong>see everything that’s overdue on a single screen?</strong></li>
480
+ <li>Can I use Basecamp <strong>even if some of my team prefers just to use email?</strong></li>
481
+ <li>Can I <strong>see all the work that was completed on any given day?</strong></li>
482
+ <li>Can I <strong>set up projects that only some of my team can see?</strong></li>
483
+ <li>Can I <strong>see everything that’s happened across multiple projects in one place?</strong></li>
484
+ <li>Can I <strong>@mention someone so they’re notified about something?</strong></li>
485
+ <li>Can I <strong>see all the work someone’s done over a long period of time?</strong></li>
486
+ <li>Can I <strong>see everything that’s assigned to someone on a single page?</strong></li>
487
+ <li>Can I <strong>see exactly who worked on what today? Yesterday? Last week?</strong></li>
488
+ <li>Can I <strong>easily reference an entire conversation from a year ago?</strong></li>
489
+ <li>Can I <strong>follow a project quietly without receiving notifications?</strong></li>
490
+ <li>Can I <strong>assign tasks to multiple people at once?</strong></li>
491
+ <li>Can I <strong>see all our projects laid out on a visual timeline?</strong></li>
492
+ <li>Can I <strong>keep all the discussion about a to-do attached to that to-do?</strong></li>
493
+ <li>Can I <strong>follow-up directly with someone without anyone else knowing?</strong></li>
494
+ <li>Can <strong>our clients respond to our questions via email?</strong></li>
495
+ <li>Can <strong>our clients see a record of everything we’ve asked them?</strong></li>
496
+ <li>Can I <strong>organize ideas and setup workflows on a Kanban board?</strong></li>
497
+ <li>Can Basecamp <strong>tell me when someone completed an assignment?</strong></li>
498
+ <li>Can Basecamp <strong>help me get a client to approve a design?</strong></li>
499
+ <li>Can Basecamp <strong>help me hold my team accountable for deadlines?</strong></li>
500
+ <li>You <strong>wrote some <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18">books on how to run a business</a>, too, right?</strong></li>
501
+ </ul>
502
+ </div>
503
+
504
+ <div class="statement statement--gap-large space-top--xxx-large">
505
+ <section>
506
+ <header>
507
+ <h2 id="its-time"><a href="../enterprise-extravaganza#its-time">You wouldn’t be here if the<br> way you’ve been working was working. It’s time for Basecamp.</a></h2>
508
+ </header>
509
+ <article>
510
+ <p>Team super busy, but running in circles? <strong>It’s time for Basecamp.</strong> Finding stuff easy to start, but hard to finish? <strong>It’s time for Basecamp.</strong> Things taking longer than they should? <strong>It’s time for Basecamp.</strong> Info increasingly scattered across different apps? <strong>It’s time for Basecamp.</strong> Subscription fees keep adding up?<br> <strong>It’s time for Basecamp.</strong> Growing into dysfunction? <strong>It’s time for Basecamp.</strong> Tired of looking disorganized in front of clients? <strong class="highlight highlight--time">It’s time for Basecamp.</strong></p>
511
+ </article>
512
+ </section>
513
+ </div>
514
+
515
+ <div class="headline space-top--xxx-large">
516
+ <header>
517
+ <h3 id="company-faqs"><a href="../enterprise-extravaganza#company-faqs">I have questions about your company&hellip;</a></h3>
518
+ </header>
519
+ </div>
520
+
521
+ <div class="details space-top--medium">
522
+
523
+ <details id="trust">
524
+ <summary>
525
+ <p>How long have you been around? Can we trust you?</p>
526
+ </summary>
527
+ <article>
528
+ <p>The company that designed, owns, and operates Basecamp is called <a href="https://37signals.com" target="_blank">37signals</a>, and we’ve been around as a company since 1999. We launched Basecamp, the product, in 2004 and have been improving it weekly ever since. Running a sane, responsible, sustainable business is part of our commitment to you.</p>
529
+ <p>We’ve been <strong>profitable for 25 straight years, we have zero debt, we’re privately held, and built to stay, not exit.</strong> Our <a href="../handbook">employee handbook</a> is also public for everyone to see how we run our business and treat our employees.</p>
530
+ <p>We’ve also written a number of <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18">bestselling books</a> (REWORK, Remote, It Doesn’t Have to Be Crazy at Work) as well. The books detail how we’ve built, and run, such a unique, long-lasting company in a field full of sameness and short-term thinking.</p>
531
+ <p>You can email Jason Fried, our Co-Founder and CEO, any time at <a href="mailto:jason@basecamp.com">jason@basecamp.com</a>. He doesn’t have an assistant, so he’ll read and respond to your emails personally.</p>
532
+ </article>
533
+ </details>
534
+
535
+ <details id="uptime">
536
+ <summary>
537
+ <p>What about reliability and uptime?</p>
538
+ </summary>
539
+ <article>
540
+ <p>We can make endless promises, but the numbers are what matter here. Our historical uptime over multiple decades is well over 99.99%, and you can see recent real-time history on our <a href="https://www.37status.com" target="_blank">Status Page</a>.</p>
541
+ </article>
542
+ </details>
543
+
544
+ <details id="refunds">
545
+ <summary>
546
+ <p>What’s your refund policy like?</p>
547
+ </summary>
548
+ <article>
549
+ <p>We aim to be fair and reasonable, just as we’d want to be treated. <a href="https://37signals.com/policies/refund/" target="_blank">Our refund policy</a> reflects that.</p>
550
+ </article>
551
+ </details>
552
+
553
+ <details id="questions">
554
+ <summary>
555
+ <p>Can I ask ownership a question directly?</p>
556
+ </summary>
557
+ <article>
558
+ <p><strong>Absolutely.</strong> Our Co-Founder and CEO (Jason Fried) is available direct at <a href="mailto:jason@basecamp.com">jason@basecamp.com</a>, and our other Co-Founder and CTO (David Heinemeier Hansson) is at <a href="mailto:david@basecamp.com">david@basecamp.com</a>. Please do reach out. They don’t have assistants or anyone who reads their emails, so you’ll hear from them directly.</p>
559
+ </article>
560
+ </details>
561
+
562
+ </div>
563
+
564
+ <div class="headline space-top--x-large">
565
+ <header>
566
+ <h3 id="security-faqs"><a href="../enterprise-extravaganza#security-faqs">I have questions about security and our data&hellip;</a></h3>
567
+ </header>
568
+ </div>
569
+
570
+ <div class="details space-top--medium">
571
+
572
+ <details id="secure">
573
+ <summary>
574
+ <p>How secure is Basecamp?</p>
575
+ </summary>
576
+ <article>
577
+ <p>We have a <a href="https://37signals.com/policies/security/" target="_blank">full security write-up</a> available on the 37signals site. 37signals is the company behind Basecamp.</p>
578
+ </article>
579
+ </details>
580
+
581
+ <details id="backups">
582
+ <summary>
583
+ <p>Is our data backed up? How often?</p>
584
+ </summary>
585
+ <article>
586
+ <p>Data customers enter into Basecamp is stored in multiple, redundant data centers. That data is backed up several times a day, and copies of those backups are stored both locally and off-site to further reduce points of possible failure. Files customers upload are stored off-site and backed up to servers in a different geographic region.</p>
587
+ </article>
588
+ </details>
589
+
590
+ <details id="data-centers">
591
+ <summary>
592
+ <p>Where are the servers that store our data?</p>
593
+ </summary>
594
+ <article>
595
+ <p>Our servers are located in multiple data centers in the United States. We service customers from over 160 countries from these servers. We do not currently have data centers outside the US.</p>
596
+ </article>
597
+ </details>
598
+
599
+ <details id="custom-security-questionnaires">
600
+ <summary>
601
+ <p>Can you fill our custom security questionnaires?</p>
602
+ </summary>
603
+ <article>
604
+ <p>We don’t fill out custom security questionnaires, but we’ve <a href="https://37signals.com/policies/security/37signals%20Security%20Overview.pdf" target="_blank">prepared a summary security PDF</a> which you can provide to your IT staff.</p>
605
+ </article>
606
+ </details>
607
+
608
+ <details id="export-our-data">
609
+ <summary>
610
+ <p>Can I export our data if we ever want to leave?</p>
611
+ </summary>
612
+ <article>
613
+ <p><strong>Absolutely,</strong> you can do it as often as you’d like. Plus, it’s entirely self-service and easy so you don’t need to ask anyone for help or permission. Further, we provide it in a format that allows you to browse it in a web browser so it’s actually useful. <a href="https://3.basecamp-help.com/article/150-export-your-basecamp-data" target="_blank">Here’s how exporting works</a>.</p>
614
+ </article>
615
+ </details>
616
+
617
+ </div>
618
+
619
+ <div class="headline space-top--x-large">
620
+ <header>
621
+ <h3 id="other-faqs"><a href="../enterprise-extravaganza#other-faqs">I have other questions&hellip;</a></h3>
622
+ </header>
623
+ </div>
624
+
625
+ <div class="details space-top--medium">
626
+
627
+ <details id="api">
628
+ <summary>
629
+ <p>Does Basecamp have an API? Can we integrate with Basecamp?</p>
630
+ </summary>
631
+ <article>
632
+ <p><strong>Yes,</strong> <a href="https://github.com/basecamp/bc3-api" target="_blank">Basecamp has a full-featured API (docs are hosted on GitHub)</a>. Hundreds of companies have written custom integrations, and <a href="../integrations/index.html">our Integrations page</a> links up third-party solutions for invoicing, accounting, time tracking, reporting, planning, asset management, contracts, proposals, and more.</p>
633
+ </article>
634
+ </details>
635
+
636
+ <details id="customer-support">
637
+ <summary>
638
+ <p>What’s your customer support like? What if we need help?</p>
639
+ </summary>
640
+ <article>
641
+ <p>Our customer support is widely considered to be among the best of the best. Everyone who works on our support team are expert specialists who know Basecamp inside and out, many having been with us for years and years, some over a decade. Further, we occasionally cycle every employee through support — including our CEO — so everyone has a chance to directly interact with customers.</p>
642
+ <p>You can <a href="../support/index.html">ask support a question</a>, or <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">watch tutorials</a>, or <a href="https://3.basecamp-help.com">review the help guides</a>, or <a href="../classes/index.html">attend a live walkthrough class and Q&amp;A</a>.</p>
643
+ </article>
644
+ </details>
645
+
646
+ <details id="languages">
647
+ <summary>
648
+ <p>Is Basecamp available in languages other than English?</p>
649
+ </summary>
650
+ <article>
651
+ <p>Currently we only offer Basecamp’s interface in English, although we have people in over 160 countries writing and sharing in their own native languages using Basecamp.</p>
652
+ </article>
653
+ </details>
654
+
655
+ <details id="other-products">
656
+ <summary>
657
+ <p>If we go with Basecamp, will we still need stuff like Slack? Asana? Dropbox?</p>
658
+ </summary>
659
+ <article>
660
+ <p><strong>Nope,</strong> Basecamp replaces a whole set of separate products and saves you a ton of money. Basecamp has chat built in (no more Slack). Basecamp has exceptional task management in the form of to-dos and kanban-style Card Tables (no more Asana). And you can store and share all the files you need in a project (no more Dropbox). Basecamp also replaces document-based tools like Google Docs, Notion, etc. And yet, if you need to continue to use some of those tools, you can always link them up right from inside Basecamp using the Doors feature.</p>
661
+ </article>
662
+ </details>
663
+
664
+ <details id="who-uses-basecamp">
665
+ <summary>
666
+ <p>What kind of companies, in which industries, use Basecamp?</p>
667
+ </summary>
668
+ <article>
669
+ <p>Basecamp is used by top notch marketers, ad agencies, designers, client services firms, consultants, software developers, freelancers, PR agencies, contractors, religious institutions, schools, non-profits, first responders, and many others. Over 75,000 organizations, across every industry imaginable, in 166 countries, use Basecamp for project management.</p>
670
+ <p>Our customers are primarily small or medium-sized companies with fewer than 100 full-time employees, but Basecamp is also used by teams inside many of the world’s largest companies.</p>
671
+ </article>
672
+ </details>
673
+
674
+ <details id="classes" class="data-classes data-classes--details" data-classes-limit="6">
675
+ <summary>
676
+ <p>Do you offer classes to learn more about Basecamp?</p>
677
+ </summary>
678
+ <article>
679
+ <p><strong>Yes, see our upcoming classes below.</strong> We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask. We’ll teach you the basics of using Basecamp, with plenty of time set aside for questions.<span class="data-classes__link"> <a href="../classes/index.html">See all our upcoming classes</a>.</span></p>
680
+ <div class="data-classes__output"></div>
681
+ </article>
682
+ </details>
683
+
684
+ </div>
685
+
686
+ <div class="marquee marquee--left space-bottom--xxx-large space-top--xx-large">
687
+
688
+ <a href="../customers/index.html" aria-hidden="true" tabindex="-1">
689
+ <ul>
690
+
691
+
692
+
693
+
694
+
695
+ <li>“Extremely user friendly”</li>
696
+
697
+
698
+
699
+ <li>“Truly amazing!”</li>
700
+
701
+
702
+
703
+ <li>“A godsend for our org”</li>
704
+
705
+
706
+
707
+ <li>“Simple, quick, powerful”</li>
708
+
709
+
710
+
711
+ <li>“So glad I found Basecamp”</li>
712
+
713
+
714
+
715
+ <li>“The perfect solution”</li>
716
+
717
+
718
+
719
+ <li>“Really great”</li>
720
+
721
+
722
+
723
+ <li>“Outstanding”</li>
724
+
725
+
726
+
727
+ <li>“Best app for teams”</li>
728
+
729
+
730
+
731
+ <li>“Awesome service”</li>
732
+
733
+
734
+
735
+ <li>“Gets better and better”</li>
736
+
737
+
738
+
739
+ <li>“Great collaboration tool”</li>
740
+
741
+
742
+
743
+ <li>“Great software”</li>
744
+
745
+
746
+
747
+ <li>“Gold standard PM app”</li>
748
+
749
+
750
+
751
+ <li>“Brilliant solution”</li>
752
+
753
+
754
+
755
+ <li>“Clean and easy to use”</li>
756
+
757
+
758
+
759
+ <li>“Fantastic app”</li>
760
+
761
+
762
+
763
+ <li>“Organized and on point”</li>
764
+
765
+
766
+
767
+ <li>“Extremely user friendly”</li>
768
+
769
+
770
+
771
+ <li>“Truly amazing!”</li>
772
+
773
+
774
+
775
+ <li>“A godsend for our org”</li>
776
+
777
+
778
+
779
+ <li>“Simple, quick, powerful”</li>
780
+
781
+
782
+
783
+ <li>“So glad I found Basecamp”</li>
784
+
785
+
786
+
787
+ <li>“The perfect solution”</li>
788
+
789
+
790
+
791
+ <li>“Really great”</li>
792
+
793
+
794
+
795
+ <li>“Outstanding”</li>
796
+
797
+
798
+
799
+ <li>“Best app for teams”</li>
800
+
801
+
802
+
803
+ <li>“Awesome service”</li>
804
+
805
+
806
+
807
+ <li>“Gets better and better”</li>
808
+
809
+
810
+
811
+ <li>“Great collaboration tool”</li>
812
+
813
+
814
+
815
+ <li>“Great software”</li>
816
+
817
+
818
+
819
+ <li>“Gold standard PM app”</li>
820
+
821
+
822
+
823
+ <li>“Brilliant solution”</li>
824
+
825
+
826
+
827
+ <li>“Clean and easy to use”</li>
828
+
829
+
830
+
831
+ <li>“Fantastic app”</li>
832
+
833
+
834
+
835
+ <li>“Organized and on point”</li>
836
+
837
+
838
+
839
+ </ul>
840
+ </a>
841
+
842
+
843
+ </div>
844
+
845
+
846
+ </main>
847
+
848
+ <footer class="footer">
849
+
850
+
851
+
852
+
853
+
854
+ <div class="footer__apps" id="apps">
855
+ <dl class="footer__headline">
856
+ <dt>Basecamp’s everywhere</dt>
857
+ <dd>Mac, Windows, iOS, Android, and on the web — Basecamp is ready <a href="../apps/index.html">whenever and wherever you are</a>.</dd>
858
+ </dl>
859
+ <ul>
860
+ <li><a class="button button--icon button--pwa" href="https://3.basecamp-help.com/article/937-basecamp-pwa" title="Install Basecamp on Mac and Windows">Desktop apps</a></li>
861
+ <li><a class="button button--icon button--ios" href="https://apps.apple.com/us/app/basecamp-project-management/id1015603248" title="Install Basecamp on iOS">iOS</a></li>
862
+ <li><a class="button button--icon button--android" href="https://play.google.com/store/apps/details?id=com.basecamp.bc3" title="Install Basecamp on Android">Android</a></li>
863
+ <li><a class="button button--icon button--basecamp" href="https://launchpad.37signals.com/signin" title="Use Basecamp in your web browser" target="_blank" data-controller="signup" data-action="signup#trackLogin">Sign in to Basecamp</a></li>
864
+ </ul>
865
+ </div>
866
+
867
+
868
+
869
+
870
+
871
+ <div class="footer__classes data-classes" data-classes-limit="4">
872
+ <dl class="footer__headline">
873
+ <dt>Join us for a free live class</dt>
874
+ <dd>We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask.<span class="data-classes__link"> <a href="../classes/index.html">See all our upcoming classes</a>.</span></dd>
875
+ </dl>
876
+ <div class="data-classes__output"></div>
877
+ </div>
878
+
879
+
880
+
881
+
882
+
883
+ <div class="footer__newsletter">
884
+ <dl class="footer__headline">
885
+ <dt>Never miss an update</dt>
886
+ <dd>Join more than 150,000 people who get <a href="../newsletter/index.html">our newsletter</a>. We’ll share product updates, thoughts, new releases, and other tidbits we think you’ll find interesting.</dd>
887
+ </dl>
888
+ <div class="newsletter">
889
+ <div class="newsletter__container">
890
+ <form novalidate action="https://basecamp.us2.list-manage.com/subscribe/post-json?u=2a145c60b16248b65e46a799a&amp;id=476312b66e&amp;c=?" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form">
891
+ <div aria-hidden="true" style="position: absolute; left: -5000px;"><input type="text" name="b_2a145c60b16248b65e46a799a_476312b66e" value="" tabindex="-1" aria-label="mce"></div>
892
+ <input type="hidden" name="tags" value="23018">
893
+ <input type="email" name="EMAIL" value="" id="mce-EMAIL" placeholder="julie.young@hey.com" aria-label="Your email address" required data-1p-ignore>
894
+ <button type="submit" name="subscribe" id="mc-embedded-subscribe">Subscribe</button>
895
+ </form>
896
+ </div>
897
+ </div>
898
+ </div>
899
+
900
+
901
+
902
+
903
+
904
+ <div class="footer__support">
905
+ <dl class="footer__headline">
906
+ <dt>We’re here to help with 24/7/365 support</dt>
907
+ <dd>There are no stupid questions — for pre-sales questions, existing customers who need a hand, or any other inquiries, <a href="../support/index.html">contact us</a> and we’ll get back to you within an hour. <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">Watch tutorials</a>, <a href="../help/index.html">read the help guides</a>, or <a href="../support/index.html">send us a message</a> to get help.</dd>
908
+ </dl>
909
+
910
+
911
+
912
+ <div class="footer__hey">
913
+ <a href="https://www.hey.com" target="_blank">
914
+ <span>If you love Basecamp, you’ll love <strong>HEY</strong> — our delightfully fresh take on email + calendar</span>
915
+ </a>
916
+ </div>
917
+
918
+
919
+
920
+ </div>
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+ <div class="footer__links">
929
+ <dl class="footer__headline">
930
+ <dt>And there’s more&hellip;</dt>
931
+ <dd>
932
+
933
+
934
+
935
+ <a href="../new/index.html" aria-label="What’s new">What’s new</a> •
936
+
937
+
938
+
939
+ <a href="../paths/index.html" aria-label="The people’s path to Basecamp">The people’s path to Basecamp</a> •
940
+
941
+
942
+
943
+ <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18" aria-label="Books we’ve written">Books we’ve written</a> •
944
+
945
+
946
+
947
+ <a href="../about/index.html" aria-label="Where we came from">Where we came from</a> •
948
+
949
+
950
+
951
+ <a href="../guides/how-we-communicate/index.html" aria-label="How we communicate">How we communicate</a> •
952
+
953
+
954
+
955
+ <a href="../guides/how-we-make-decisions/index.html" aria-label="How we make decisions">How we make decisions</a> •
956
+
957
+
958
+
959
+ <a href="../guides/why-we-choose-profit/index.html" aria-label="Why we choose profit">Why we choose profit</a> •
960
+
961
+
962
+
963
+ <a href="../guides/group-chat-problems/index.html" aria-label="Group chat problems">Group chat problems</a> •
964
+
965
+
966
+
967
+ <a href="../guides/seven-shipping-principles/index.html" aria-label="Seven shipping principles">Seven shipping principles</a> •
968
+
969
+
970
+
971
+ <a href="../underdogs/index.html" aria-label="We stand with the underdogs">We stand with the underdogs</a> •
972
+
973
+
974
+
975
+ <a href="../small/index.html" aria-label="Come small, come all">Come small, come all</a> •
976
+
977
+
978
+
979
+ <a href="../overkill/index.html" aria-label="Kill overkill">Kill overkill</a> •
980
+
981
+
982
+
983
+ <a href="../cloud-exit/index.html" aria-label="Leaving the Cloud">Leaving the Cloud</a> •
984
+
985
+
986
+
987
+ <a href="../before-and-after/index.html" aria-label="Night &amp; day">Night &amp; day</a> •
988
+
989
+
990
+
991
+ <a href="../hill-charts/index.html" aria-label="See where projects really stand">See where projects really stand</a> •
992
+
993
+
994
+
995
+ <a href="../justletmedomyjob/index.html" aria-label="JUST LET ME DO MY JOB">JUST LET ME DO MY JOB</a> •
996
+
997
+
998
+
999
+ <a href="../customers/index.html" aria-label="What changed for the better?">What changed for the better?</a> •
1000
+
1001
+
1002
+
1003
+ <a href="../integrations/index.html" aria-label="Integrations">Integrations</a> •
1004
+
1005
+
1006
+
1007
+ <a href="../accessibility/index.html" aria-label="Basecamp is for everyone">Basecamp is for everyone</a> •
1008
+
1009
+
1010
+
1011
+ <a href="../community/index.html" aria-label="Basecamp community">Basecamp community</a> •
1012
+
1013
+
1014
+
1015
+ <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14" aria-label="Learn Basecamp">Learn Basecamp</a> •
1016
+
1017
+
1018
+
1019
+ <a href="../handbook" aria-label="Employee handbook">Employee handbook</a>
1020
+
1021
+
1022
+
1023
+ </dd>
1024
+ </dl>
1025
+ </div>
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+
1033
+ <div class="footer__legal">
1034
+ <p>
1035
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
1036
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
1037
+ <strong>Basecamp</strong>
1038
+ </a>
1039
+ <span>is designed, built, and backed by</span>
1040
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
1041
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
1042
+ <strong>37signals</strong>
1043
+ </a>
1044
+ </p>
1045
+ <ul>
1046
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
1047
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
1048
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
1049
+ <li>&copy; 2025 37signals LLC</li>
1050
+ </ul>
1051
+ </div>
1052
+ </footer>
1053
+
1054
+
1055
+ <dialog class="modal">
1056
+ <div class="modal__backdrop"></div>
1057
+ <div class="modal__container"></div>
1058
+ </dialog>
1059
+
1060
+
1061
+ </body>
1062
+
1063
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/features/home ADDED
@@ -0,0 +1,1063 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Project management software, online collaboration</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Project management software, online collaboration">
28
+ <meta property="og:description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Project management software, online collaboration">
34
+ <meta name="twitter:description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Project management software, online collaboration",
53
+ "description": "Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.",
54
+ "url": "https://basecamp.com/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="../enterprise-extravaganza">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body class="body has-nav-phrase" data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <input id="nav-active" type="checkbox">
110
+
111
+ <label id="nav-underlay" for="nav-active"></label>
112
+
113
+ <nav class="nav">
114
+ <div class="nav__container">
115
+ <div class="nav__logo">
116
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
117
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
118
+ <strong>Basecamp</strong>
119
+ </a>
120
+ <div class="nav__phrase">is the <span class="highlight"></span> <strong>project management system</strong> by</div>
121
+ <b class="icon icon--37signals">
122
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
123
+ <strong>37signals</strong>
124
+ </b>
125
+ </div>
126
+ <div class="nav__links">
127
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
128
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
129
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
130
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
131
+ </div>
132
+ <div class="nav__buttons">
133
+ <a class="nav__button nav__button--launchpad" href="https://launchpad.37signals.com/signin" target="_blank" data-controller="signup" data-action="signup#trackLogin" aria-label="Sign in">Sign in</a>
134
+ <a class="nav__button nav__button--signup trk-package" id="sign-up-nav" href="../pricing/index.html#packages" aria-label="Sign up free">Sign up free</a>
135
+ </div>
136
+ <label class="nav__toggle" for="nav-active" aria-label="Nav Toggle" tabindex="0"></label>
137
+ </div>
138
+ <div class="nav__mobile">
139
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
140
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
141
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
142
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
143
+ </div>
144
+ </nav>
145
+
146
+
147
+
148
+
149
+ <main class="main">
150
+
151
+ <div class="illustration space-bottom--large">
152
+ <picture>
153
+ <source srcset="/assets/images/home/illustration-desktop.png" media="(min-width: 48em)">
154
+ <img src="../assets/images/home/illustration-mobile.png" alt="Wrestling with projects? It doesn’t have to be this hard.">
155
+ </picture>
156
+ </div>
157
+
158
+ <div class="columns">
159
+ <section>
160
+ <header>
161
+ <h1>Wrestling with projects?<br> It doesn’t have to be this hard.</h1>
162
+ </header>
163
+ <article>
164
+ <div>
165
+ <p>There are lots of ways to manage projects. And there’s plenty of software promising to help. You’ve probably tried some. Yet, here you are.</p>
166
+ <p><strong>Unfortunately, most project management systems are either overwhelming, inadequate, bewildering, or chaotic. You know?</strong></p>
167
+ <p>Not Basecamp. Basecamp is refreshingly straightforward, with a 21-year track record to back it up. Longevity isn’t luck — it’s proof it works. And you’ll work better with it too.</p>
168
+ </div>
169
+ <div>
170
+ <p><strong>Basecamp is famously no-nonsense, effective, and reliable.</strong> The trifecta. It’s <a href="../underdogs/index.html">designed for smaller, hungrier businesses</a>, not big, sluggish ones. <a href="../customers/index.html">Over 30 pages of customer testimonials</a> detail how things run better on Basecamp.</p>
171
+ <p>So, we invite you to poke around, watch the video below, and <a href="../pricing/index.html#packages">try Basecamp for free</a>. We’d be honored to have you as a customer. Thank you.</p>
172
+ <dl>
173
+ <dt><strong>Jason Fried</strong>, <a href="mailto:jason@basecamp.com">jason@basecamp.com</a></dt>
174
+ <dd><em>Co-founder &amp; CEO</em></dd>
175
+ </dl>
176
+ </div>
177
+ </article>
178
+ </section>
179
+ </div>
180
+
181
+ <div class="visual visual--walkthrough space-top--xxx-large">
182
+ <div class="visual__column">
183
+ <button class="visual__button modal-trigger" id="walkthrough-columns" data-type="video" data-event="Walkthrough: Columns" data-src="/videos/home/walkthrough.mp4" data-track="/videos/home/walkthrough.vtt">
184
+ <figure class="visual__figure">
185
+ <img src="../videos/home/walkthrough-small.webp" width="2400" height="1326" alt="See how Basecamp works">
186
+ <span aria-hidden="true">Hit play to see how Basecamp is different</span>
187
+ </figure>
188
+ <div class="visual__play"></div>
189
+ </button>
190
+ </div>
191
+ </div>
192
+
193
+ <div class="statement space-top--xxx-large">
194
+ <section>
195
+ <header>
196
+ <h2 id="features"><a href="../enterprise-extravaganza#features">Let’s walk through it.</a></h2>
197
+ </header>
198
+ </section>
199
+ </div>
200
+
201
+ <div class="headline space-top--large">
202
+ <header>
203
+ <h3 id="home"><a href="../enterprise-extravaganza#home">10 seconds after you sign up, clarity sets in.</a></h3>
204
+ </header>
205
+ <article>
206
+ <p>The home screen organizes your projects, assignments, and upcoming events together on one screen. It’s your calm, comfortable, simple starting point every morning.</p>
207
+ </article>
208
+ </div>
209
+
210
+ <div class="visual space-top--large">
211
+ <div class="visual__column visual__column--4">
212
+ <button class="visual__button modal-trigger" id="whats-my-week-look-like" data-type="video" data-event="Home: What’s my week look like?" data-src="/videos/home/whats-my-week-look-like.mp4" data-track="/videos/home/whats-my-week-look-like.vtt">
213
+ <figure class="visual__figure">
214
+ <img src="../videos/home/whats-my-week-look-like.webp" width="1260" height="1116" alt="View your schedule" loading="lazy">
215
+ <span aria-hidden="true">What’s my week look like?</span>
216
+ </figure>
217
+ <div class="visual__play"></div>
218
+ </button>
219
+ <button class="visual__button modal-trigger" id="whats-on-my-plate-today" data-type="video" data-event="Home: What’s on my plate today?" data-src="/videos/home/whats-on-my-plate-today.mp4" data-track="/videos/home/whats-on-my-plate-today.vtt">
220
+ <figure class="visual__figure">
221
+ <img src="../videos/home/whats-on-my-plate-today.webp" width="1260" height="1116" alt="View your assignments" loading="lazy">
222
+ <span aria-hidden="true">What’s on my plate today?</span>
223
+ </figure>
224
+ <div class="visual__play"></div>
225
+ </button>
226
+ <aside class="visual__aside" aria-label="Home">
227
+ <p><strong>Each person gets their own home screen depending on which projects they have access to.</strong> They’ll only see their own assignments and events. And you can keep important projects close at hand by pinning them to the top.</p>
228
+ </aside>
229
+ </div>
230
+ <div class="visual__column visual__column--8">
231
+ <button class="visual__button modal-trigger" id="which-projects-am-i-on" data-type="video" data-event="Home: Which projects am I on?" data-src="/videos/home/which-projects-am-i-on.mp4" data-track="/videos/home/which-projects-am-i-on.vtt">
232
+ <figure class="visual__figure">
233
+ <img src="../videos/home/which-projects-am-i-on.webp" width="2400" height="2854" alt="View projects on the home screen" loading="lazy">
234
+ <span aria-hidden="true">Which projects am I on?</span>
235
+ </figure>
236
+ <div class="visual__play"></div>
237
+ </button>
238
+ </div>
239
+ </div>
240
+
241
+ <div class="headline space-top--xxx-large">
242
+ <header>
243
+ <h3 id="projects"><a href="../enterprise-extravaganza#projects">Projects get teams — and keep teams — organized.</a></h3>
244
+ </header>
245
+ <article>
246
+ <p>A project is where the tasks, discussions, deliverables, and decisions happen. Projects hold everything — and everyone — together in one tidy, predictably structured place.</p>
247
+ </article>
248
+ </div>
249
+
250
+ <div class="visual space-top--large">
251
+ <div class="visual__column visual__column--6">
252
+ <button class="visual__button modal-trigger" id="all-in-one-toolbox" data-type="video" data-event="Projects: A project page organizes everything" data-src="/videos/home/all-in-one-toolbox.mp4" data-track="/videos/home/all-in-one-toolbox.vtt">
253
+ <figure class="visual__figure">
254
+ <img src="../videos/home/all-in-one-toolbox.webp" width="2400" height="2582" alt="A Basecamp project page" loading="lazy">
255
+ <span aria-hidden="true">A project page organizes everything</span>
256
+ </figure>
257
+ <div class="visual__play"></div>
258
+ </button>
259
+ <aside class="visual__aside" aria-label="Projects">
260
+ <p><strong>Make as many projects as you’d like.</strong> We run dozens at once in our own Basecamp account. For example, one for a web site redesign, <a href="../enterprise-extravaganza#organizing-a-meet-up" class="modal-trigger" id="organizing-a-meet-up" data-type="video" data-event="Organizing a Meet-up" data-src="/videos/organizing-a-meet-up/organizing-a-meet-up.mp4">one for planning an upcoming offsite</a>, one for working with our accountants, and one just for the executive team to plan strategy, etc.</p>
261
+ </aside>
262
+ </div>
263
+ <div class="visual__column visual__column--6 visual__column--grid">
264
+ <button class="visual__button modal-trigger" id="track-tasks" data-type="video" data-event="Projects: What to do + who’s doing?" data-src="/videos/home/track-tasks.mp4" data-track="/videos/home/track-tasks.vtt">
265
+ <figure class="visual__figure">
266
+ <img src="../assets/images/screenshots/to-dos-thumbnail.webp" width="1200" height="900" alt="Track work with To-dos" loading="lazy">
267
+ <span aria-hidden="true">What to do + who’s doing?</span>
268
+ </figure>
269
+ <div class="visual__play"></div>
270
+ </button>
271
+ <button class="visual__button modal-trigger" id="launch-discussions" data-type="video" data-event="Projects: Who said what when?" data-src="/videos/home/launch-discussions.mp4" data-track="/videos/home/launch-discussions.vtt">
272
+ <figure class="visual__figure">
273
+ <img src="../assets/images/screenshots/message-board-thumbnail.webp" width="1200" height="900" alt="Stay on topic with Messages" loading="lazy">
274
+ <span aria-hidden="true">Who said what when?</span>
275
+ </figure>
276
+ <div class="visual__play"></div>
277
+ </button>
278
+ <button class="visual__button modal-trigger" id="set-milestones" data-type="video" data-event="Projects: What’s due next?" data-src="/videos/home/set-milestones.mp4" data-track="/videos/home/set-milestones.vtt">
279
+ <figure class="visual__figure">
280
+ <img src="../assets/images/screenshots/schedule-thumbnail.webp" width="1200" height="900" alt="Schedule so you don’t forget" loading="lazy">
281
+ <span aria-hidden="true">What’s due next?</span>
282
+ </figure>
283
+ <div class="visual__play"></div>
284
+ </button>
285
+ <button class="visual__button modal-trigger" id="store-assets" data-type="video" data-event="Projects: Where’s the latest version?" data-src="/videos/home/store-assets.mp4" data-track="/videos/home/store-assets.vtt">
286
+ <figure class="visual__figure">
287
+ <img src="../assets/images/screenshots/docs-and-files-thumbnail.webp" width="1200" height="900" alt="Store, share, and discuss files" loading="lazy">
288
+ <span aria-hidden="true">Where’s the latest version?</span>
289
+ </figure>
290
+ <div class="visual__play"></div>
291
+ </button>
292
+ <button class="visual__button modal-trigger" id="hash-stuff-out" data-type="video" data-event="Projects: Got a quick question?" data-src="/videos/home/hash-stuff-out.mp4" data-track="/videos/home/hash-stuff-out.vtt">
293
+ <figure class="visual__figure">
294
+ <img src="../assets/images/screenshots/chat-thumbnail.webp" width="1200" height="900" alt="Chat around the campfire" loading="lazy">
295
+ <span aria-hidden="true">Got a quick question?</span>
296
+ </figure>
297
+ <div class="visual__play"></div>
298
+ </button>
299
+ <button class="visual__button modal-trigger" id="run-workflows" data-type="video" data-event="Projects: How’s the process flowing?" data-src="/videos/home/run-workflows.mp4" data-track="/videos/home/run-workflows.vtt">
300
+ <figure class="visual__figure">
301
+ <img src="../assets/images/screenshots/card-table-thumbnail.webp" width="1200" height="900" alt="Card Table is our unique take on Kanban" loading="lazy">
302
+ <span aria-hidden="true">How’s the process flowing?</span>
303
+ </figure>
304
+ <div class="visual__play"></div>
305
+ </button>
306
+ </div>
307
+ </div>
308
+
309
+ <div class="headline space-top--xxx-large">
310
+ <header>
311
+ <h3 id="reports"><a href="../enterprise-extravaganza#reports">Reports give you confidence to hold people accountable.</a></h3>
312
+ </header>
313
+ <article>
314
+ <p>Basecamp’s reports aren’t numbers, percentages, or abstract representations — they’re the real work, actual evidence of progress being made (or not made).</p>
315
+ </article>
316
+ </div>
317
+
318
+ <div class="visual space-top--large">
319
+ <div class="visual__column visual__column--4">
320
+ <button class="visual__button modal-trigger" id="whats-overdue" data-type="video" data-event="Reports: What’s overdue?" data-src="/videos/home/whats-overdue.mp4" data-track="/videos/home/whats-overdue.vtt">
321
+ <figure class="visual__figure">
322
+ <img src="../videos/home/whats-overdue.webp" width="1796" height="1304" alt="See everything that’s overdue" loading="lazy">
323
+ <span aria-hidden="true">What’s overdue?</span>
324
+ </figure>
325
+ <div class="visual__play"></div>
326
+ </button>
327
+ <button class="visual__button modal-trigger" id="how-much-time-have-we-spent" data-type="video" data-event="Reports: How much time have we spent?" data-src="/videos/home/how-much-time-have-we-spent.mp4" data-track="/videos/home/how-much-time-have-we-spent.vtt">
328
+ <figure class="visual__figure">
329
+ <img src="../videos/home/how-much-time-have-we-spent.webp" width="1796" height="1304" alt="Track time directly in Basecamp" loading="lazy">
330
+ <span aria-hidden="true">How much time have we spent?</span>
331
+ </figure>
332
+ <div class="visual__play"></div>
333
+ </button>
334
+ <button class="visual__button modal-trigger" id="whos-responsible-for-what" data-type="video" data-event="Reports: Who’s responsible for what?" data-src="/videos/home/whos-responsible-for-what.mp4" data-track="/videos/home/whos-responsible-for-what.vtt">
335
+ <figure class="visual__figure">
336
+ <img src="../videos/home/whos-responsible-for-what.webp" width="1796" height="1304" alt="Reports quickly cut across every project to give you quick insights" loading="lazy">
337
+ <span aria-hidden="true">Who’s responsible for what?</span>
338
+ </figure>
339
+ <div class="visual__play"></div>
340
+ </button>
341
+ </div>
342
+ <div class="visual__column visual__column--8">
343
+ <button class="visual__button modal-trigger" id="whats-actually-been-happening" data-type="video" data-event="Reports: What’s actually been happening?" data-src="/videos/home/whats-actually-been-happening.mp4" data-track="/videos/home/whats-actually-been-happening.vtt">
344
+ <figure class="visual__figure">
345
+ <img src="../videos/home/whats-actually-been-happening.webp" width="2400" height="3028" alt="The micro-view of everything that happens across every project in real-time" loading="lazy">
346
+ <span aria-hidden="true">What’s actually been happening?</span>
347
+ </figure>
348
+ <div class="visual__play"></div>
349
+ </button>
350
+ </div>
351
+ </div>
352
+
353
+ <div class="headline space-top--xxx-large">
354
+ <header>
355
+ <h3 id="visualizations"><a href="../enterprise-extravaganza#visualizations">Visualizations are for seeing, not squinting.</a></h3>
356
+ </header>
357
+ <article>
358
+ <p>Basecamp’s Lineup, Mission Control, and Hill Charts are visual tools that help you clearly see where projects really stand. Notice progress at a glance, know reality in an instant.</p>
359
+ </article>
360
+ </div>
361
+
362
+ <div class="visual space-top--large">
363
+ <div class="visual__column">
364
+ <button class="visual__button modal-trigger" id="how-far-along-are-we" data-type="video" data-event="Visualizations: How far along are we?" data-src="/videos/home/how-far-along-are-we.mp4" data-track="/videos/home/how-far-along-are-we.vtt">
365
+ <figure class="visual__figure">
366
+ <img src="../videos/home/how-far-along-are-we.webp" width="3008" height="1504" alt="The Lineup shows you where every project stands, from start to finish, all at once" loading="lazy">
367
+ <span aria-hidden="true">How far along are we?</span>
368
+ </figure>
369
+ <div class="visual__play"></div>
370
+ </button>
371
+ </div>
372
+ <div class="visual__column visual__column--grid">
373
+ <button class="visual__button modal-trigger" id="how-are-we-feeling" data-type="video" data-event="Visualizations: How are we feeling?" data-src="/videos/home/how-are-we-feeling.mp4" data-track="/videos/home/how-are-we-feeling.vtt">
374
+ <figure class="visual__figure">
375
+ <img src="../videos/home/how-are-we-feeling.webp" width="2400" height="1434" alt="Mission Control shows you which projects are on track and which ones need a helping hand" loading="lazy">
376
+ <span aria-hidden="true">How are we feeling?</span>
377
+ </figure>
378
+ <div class="visual__play"></div>
379
+ </button>
380
+ <button class="visual__button modal-trigger" id="what-still-needs-to-be-figured-out" data-type="video" data-event="Visualizations: What still needs to be figured out?" data-src="/videos/home/what-still-needs-to-be-figured-out.mp4" data-track="/videos/home/what-still-needs-to-be-figured-out.vtt">
381
+ <figure class="visual__figure">
382
+ <img src="../videos/home/what-still-needs-to-be-figured-out.webp" width="2400" height="1434" alt="Hill Charts visually display the progress of your To-do list" loading="lazy">
383
+ <span aria-hidden="true">What still needs to be figured out?</span>
384
+ </figure>
385
+ <div class="visual__play"></div>
386
+ </button>
387
+ </div>
388
+ </div>
389
+
390
+ <div class="headline space-top--xxx-large">
391
+ <header>
392
+ <h3 id="notifications"><a href="../enterprise-extravaganza#notifications">Ping! Hey! It’s for you.</a></h3>
393
+ </header>
394
+ <article>
395
+ <p>The Hey! menu aggregates your notifications in a never-annoying single menu. And “Pings”, our flavor of direct messages, let you kick off ad hoc chats 1:1 or in small groups.</p>
396
+ </article>
397
+ </div>
398
+
399
+ <div class="visual space-top--large">
400
+ <div class="visual__column visual__column--5">
401
+ <button class="visual__button modal-trigger" id="have-private-1-1-or-small-group-conversations" data-type="video" data-event="Notifications: Have private 1-1 or small group conversations" data-src="/videos/home/have-private-1-1-or-small-group-conversations.mp4" data-track="/videos/home/have-private-1-1-or-small-group-conversations.vtt">
402
+ <figure class="visual__figure">
403
+ <img src="../videos/home/have-private-1-1-or-small-group-conversations.webp" width="2400" height="1830" alt="Pings let you kick off ad hoc chats 1:1 or in small groups" loading="lazy">
404
+ <span aria-hidden="true">Have private 1-1 or small group conversations</span>
405
+ </figure>
406
+ <div class="visual__play"></div>
407
+ </button>
408
+ <aside class="visual__aside" aria-label="Notifications">
409
+ <p><strong>Don’t have work chats via text or Whatsapp on your personal phone number.</strong> Keep work at work by having them in Basecamp instead.</p>
410
+ </aside>
411
+ </div>
412
+ <div class="visual__column visual__column--7">
413
+ <button class="visual__button modal-trigger" id="notifications-in-one-place" data-type="video" data-event="Notifications: Notifications in one place, not in your face" data-src="/videos/home/notifications-in-one-place.mp4" data-track="/videos/home/notifications-in-one-place.vtt">
414
+ <figure class="visual__figure">
415
+ <img src="../videos/home/notifications-in-one-place.webp" width="2400" height="1830" alt="The Hey! menu aggregates all your notifications in a single menu" loading="lazy">
416
+ <span aria-hidden="true">Notifications in one place, not in your face</span>
417
+ </figure>
418
+ <div class="visual__play"></div>
419
+ </button>
420
+ </div>
421
+ </div>
422
+
423
+ <div class="headline space-top--xxx-large">
424
+ <header>
425
+ <h3 id="clients"><a href="../enterprise-extravaganza#clients">Got clients? Be partners, not adversaries.</a></h3>
426
+ </header>
427
+ <article>
428
+ <p>Basecamp keeps both sides organized, everyone’s feedback on the record, and all decisions, approvals, files, tasks, deadlines, and communications safe and centralized.</p>
429
+ </article>
430
+ </div>
431
+
432
+ <div class="visual space-top--large">
433
+ <div class="visual__column visual__column--grid">
434
+ <button class="visual__button modal-trigger" id="you-decide-what-clients-can-see" data-type="video" data-event="Clients: Can the client see this?" data-src="/videos/home/you-decide-what-clients-can-see.mp4" data-track="/videos/home/you-decide-what-clients-can-see.vtt">
435
+ <figure class="visual__figure">
436
+ <img src="../videos/home/you-decide-what-clients-can-see.webp" width="2400" height="1424" alt="You decide what your clients can see" loading="lazy">
437
+ <span aria-hidden="true">Can the client see this?</span>
438
+ </figure>
439
+ <div class="visual__play"></div>
440
+ </button>
441
+ <button class="visual__button modal-trigger" id="three-folders-for-you-one-for-them" data-type="video" data-event="Clients: Where’s the final version so we can show the client?" data-src="/videos/home/three-folders-for-you-one-for-them.mp4" data-track="/videos/home/three-folders-for-you-one-for-them.vtt">
442
+ <figure class="visual__figure">
443
+ <img src="../videos/home/three-folders-for-you-one-for-them.webp" width="2400" height="1424" alt="Let clients grab the files they need without having to ask" loading="lazy">
444
+ <span aria-hidden="true">Where’s the final version so we can show the client?</span>
445
+ </figure>
446
+ <div class="visual__play"></div>
447
+ </button>
448
+ <button class="visual__button modal-trigger" id="keep-approvals-on-the-official-record" data-type="video" data-event="Clients: Did the client officially approve it?" data-src="/videos/home/keep-approvals-on-the-official-record.mp4" data-track="/videos/home/keep-approvals-on-the-official-record.vtt">
449
+ <figure class="visual__figure">
450
+ <img src="../videos/home/keep-approvals-on-the-official-record.webp" width="2400" height="2108" alt="Keep client feedback on the official record" loading="lazy">
451
+ <span aria-hidden="true">Did the client officially approve it?</span>
452
+ </figure>
453
+ <div class="visual__play"></div>
454
+ </button>
455
+ <button class="visual__button modal-trigger" id="email-through-basecamp" data-type="video" data-event="Clients: Where’s the client’s email they sent?" data-src="/videos/home/email-through-basecamp.mp4" data-track="/videos/home/email-through-basecamp.vtt">
456
+ <figure class="visual__figure">
457
+ <img src="../videos/home/email-through-basecamp.webp" width="2400" height="2108" alt="Clients can respond to messages right from their inbox" loading="lazy">
458
+ <span aria-hidden="true">Where’s the client’s email they sent?</span>
459
+ </figure>
460
+ <div class="visual__play"></div>
461
+ </button>
462
+ </div>
463
+ </div>
464
+
465
+ <div class="headline space-top--xxx-large">
466
+ <header>
467
+ <h3 id="yes"><a href="../enterprise-extravaganza#yes">The answer is <span class="yes-label">YES!</span></a></h3>
468
+ </header>
469
+ <article>
470
+ <p>Can software be simple, straightforward, and easy, yet powerfully full-featured?<br> With Basecamp the answer is absolutely <strong>YES!</strong></p>
471
+ </article>
472
+ </div>
473
+
474
+ <div class="yes space-top--neutral">
475
+ <ul>
476
+ <li>Can I <strong>prevent our clients from seeing unfinished work?</strong></li>
477
+ <li>Can I <strong>link up files from Google Docs, Figma, Dropbox, Airtable, and other apps?</strong></li>
478
+ <li>Can I <strong>see everything I need to do on a single screen?</strong></li>
479
+ <li>Can I <strong>see everything that’s overdue on a single screen?</strong></li>
480
+ <li>Can I use Basecamp <strong>even if some of my team prefers just to use email?</strong></li>
481
+ <li>Can I <strong>see all the work that was completed on any given day?</strong></li>
482
+ <li>Can I <strong>set up projects that only some of my team can see?</strong></li>
483
+ <li>Can I <strong>see everything that’s happened across multiple projects in one place?</strong></li>
484
+ <li>Can I <strong>@mention someone so they’re notified about something?</strong></li>
485
+ <li>Can I <strong>see all the work someone’s done over a long period of time?</strong></li>
486
+ <li>Can I <strong>see everything that’s assigned to someone on a single page?</strong></li>
487
+ <li>Can I <strong>see exactly who worked on what today? Yesterday? Last week?</strong></li>
488
+ <li>Can I <strong>easily reference an entire conversation from a year ago?</strong></li>
489
+ <li>Can I <strong>follow a project quietly without receiving notifications?</strong></li>
490
+ <li>Can I <strong>assign tasks to multiple people at once?</strong></li>
491
+ <li>Can I <strong>see all our projects laid out on a visual timeline?</strong></li>
492
+ <li>Can I <strong>keep all the discussion about a to-do attached to that to-do?</strong></li>
493
+ <li>Can I <strong>follow-up directly with someone without anyone else knowing?</strong></li>
494
+ <li>Can <strong>our clients respond to our questions via email?</strong></li>
495
+ <li>Can <strong>our clients see a record of everything we’ve asked them?</strong></li>
496
+ <li>Can I <strong>organize ideas and setup workflows on a Kanban board?</strong></li>
497
+ <li>Can Basecamp <strong>tell me when someone completed an assignment?</strong></li>
498
+ <li>Can Basecamp <strong>help me get a client to approve a design?</strong></li>
499
+ <li>Can Basecamp <strong>help me hold my team accountable for deadlines?</strong></li>
500
+ <li>You <strong>wrote some <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18">books on how to run a business</a>, too, right?</strong></li>
501
+ </ul>
502
+ </div>
503
+
504
+ <div class="statement statement--gap-large space-top--xxx-large">
505
+ <section>
506
+ <header>
507
+ <h2 id="its-time"><a href="../enterprise-extravaganza#its-time">You wouldn’t be here if the<br> way you’ve been working was working. It’s time for Basecamp.</a></h2>
508
+ </header>
509
+ <article>
510
+ <p>Team super busy, but running in circles? <strong>It’s time for Basecamp.</strong> Finding stuff easy to start, but hard to finish? <strong>It’s time for Basecamp.</strong> Things taking longer than they should? <strong>It’s time for Basecamp.</strong> Info increasingly scattered across different apps? <strong>It’s time for Basecamp.</strong> Subscription fees keep adding up?<br> <strong>It’s time for Basecamp.</strong> Growing into dysfunction? <strong>It’s time for Basecamp.</strong> Tired of looking disorganized in front of clients? <strong class="highlight highlight--time">It’s time for Basecamp.</strong></p>
511
+ </article>
512
+ </section>
513
+ </div>
514
+
515
+ <div class="headline space-top--xxx-large">
516
+ <header>
517
+ <h3 id="company-faqs"><a href="../enterprise-extravaganza#company-faqs">I have questions about your company&hellip;</a></h3>
518
+ </header>
519
+ </div>
520
+
521
+ <div class="details space-top--medium">
522
+
523
+ <details id="trust">
524
+ <summary>
525
+ <p>How long have you been around? Can we trust you?</p>
526
+ </summary>
527
+ <article>
528
+ <p>The company that designed, owns, and operates Basecamp is called <a href="https://37signals.com" target="_blank">37signals</a>, and we’ve been around as a company since 1999. We launched Basecamp, the product, in 2004 and have been improving it weekly ever since. Running a sane, responsible, sustainable business is part of our commitment to you.</p>
529
+ <p>We’ve been <strong>profitable for 25 straight years, we have zero debt, we’re privately held, and built to stay, not exit.</strong> Our <a href="../handbook">employee handbook</a> is also public for everyone to see how we run our business and treat our employees.</p>
530
+ <p>We’ve also written a number of <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18">bestselling books</a> (REWORK, Remote, It Doesn’t Have to Be Crazy at Work) as well. The books detail how we’ve built, and run, such a unique, long-lasting company in a field full of sameness and short-term thinking.</p>
531
+ <p>You can email Jason Fried, our Co-Founder and CEO, any time at <a href="mailto:jason@basecamp.com">jason@basecamp.com</a>. He doesn’t have an assistant, so he’ll read and respond to your emails personally.</p>
532
+ </article>
533
+ </details>
534
+
535
+ <details id="uptime">
536
+ <summary>
537
+ <p>What about reliability and uptime?</p>
538
+ </summary>
539
+ <article>
540
+ <p>We can make endless promises, but the numbers are what matter here. Our historical uptime over multiple decades is well over 99.99%, and you can see recent real-time history on our <a href="https://www.37status.com" target="_blank">Status Page</a>.</p>
541
+ </article>
542
+ </details>
543
+
544
+ <details id="refunds">
545
+ <summary>
546
+ <p>What’s your refund policy like?</p>
547
+ </summary>
548
+ <article>
549
+ <p>We aim to be fair and reasonable, just as we’d want to be treated. <a href="https://37signals.com/policies/refund/" target="_blank">Our refund policy</a> reflects that.</p>
550
+ </article>
551
+ </details>
552
+
553
+ <details id="questions">
554
+ <summary>
555
+ <p>Can I ask ownership a question directly?</p>
556
+ </summary>
557
+ <article>
558
+ <p><strong>Absolutely.</strong> Our Co-Founder and CEO (Jason Fried) is available direct at <a href="mailto:jason@basecamp.com">jason@basecamp.com</a>, and our other Co-Founder and CTO (David Heinemeier Hansson) is at <a href="mailto:david@basecamp.com">david@basecamp.com</a>. Please do reach out. They don’t have assistants or anyone who reads their emails, so you’ll hear from them directly.</p>
559
+ </article>
560
+ </details>
561
+
562
+ </div>
563
+
564
+ <div class="headline space-top--x-large">
565
+ <header>
566
+ <h3 id="security-faqs"><a href="../enterprise-extravaganza#security-faqs">I have questions about security and our data&hellip;</a></h3>
567
+ </header>
568
+ </div>
569
+
570
+ <div class="details space-top--medium">
571
+
572
+ <details id="secure">
573
+ <summary>
574
+ <p>How secure is Basecamp?</p>
575
+ </summary>
576
+ <article>
577
+ <p>We have a <a href="https://37signals.com/policies/security/" target="_blank">full security write-up</a> available on the 37signals site. 37signals is the company behind Basecamp.</p>
578
+ </article>
579
+ </details>
580
+
581
+ <details id="backups">
582
+ <summary>
583
+ <p>Is our data backed up? How often?</p>
584
+ </summary>
585
+ <article>
586
+ <p>Data customers enter into Basecamp is stored in multiple, redundant data centers. That data is backed up several times a day, and copies of those backups are stored both locally and off-site to further reduce points of possible failure. Files customers upload are stored off-site and backed up to servers in a different geographic region.</p>
587
+ </article>
588
+ </details>
589
+
590
+ <details id="data-centers">
591
+ <summary>
592
+ <p>Where are the servers that store our data?</p>
593
+ </summary>
594
+ <article>
595
+ <p>Our servers are located in multiple data centers in the United States. We service customers from over 160 countries from these servers. We do not currently have data centers outside the US.</p>
596
+ </article>
597
+ </details>
598
+
599
+ <details id="custom-security-questionnaires">
600
+ <summary>
601
+ <p>Can you fill our custom security questionnaires?</p>
602
+ </summary>
603
+ <article>
604
+ <p>We don’t fill out custom security questionnaires, but we’ve <a href="https://37signals.com/policies/security/37signals%20Security%20Overview.pdf" target="_blank">prepared a summary security PDF</a> which you can provide to your IT staff.</p>
605
+ </article>
606
+ </details>
607
+
608
+ <details id="export-our-data">
609
+ <summary>
610
+ <p>Can I export our data if we ever want to leave?</p>
611
+ </summary>
612
+ <article>
613
+ <p><strong>Absolutely,</strong> you can do it as often as you’d like. Plus, it’s entirely self-service and easy so you don’t need to ask anyone for help or permission. Further, we provide it in a format that allows you to browse it in a web browser so it’s actually useful. <a href="https://3.basecamp-help.com/article/150-export-your-basecamp-data" target="_blank">Here’s how exporting works</a>.</p>
614
+ </article>
615
+ </details>
616
+
617
+ </div>
618
+
619
+ <div class="headline space-top--x-large">
620
+ <header>
621
+ <h3 id="other-faqs"><a href="../enterprise-extravaganza#other-faqs">I have other questions&hellip;</a></h3>
622
+ </header>
623
+ </div>
624
+
625
+ <div class="details space-top--medium">
626
+
627
+ <details id="api">
628
+ <summary>
629
+ <p>Does Basecamp have an API? Can we integrate with Basecamp?</p>
630
+ </summary>
631
+ <article>
632
+ <p><strong>Yes,</strong> <a href="https://github.com/basecamp/bc3-api" target="_blank">Basecamp has a full-featured API (docs are hosted on GitHub)</a>. Hundreds of companies have written custom integrations, and <a href="../integrations/index.html">our Integrations page</a> links up third-party solutions for invoicing, accounting, time tracking, reporting, planning, asset management, contracts, proposals, and more.</p>
633
+ </article>
634
+ </details>
635
+
636
+ <details id="customer-support">
637
+ <summary>
638
+ <p>What’s your customer support like? What if we need help?</p>
639
+ </summary>
640
+ <article>
641
+ <p>Our customer support is widely considered to be among the best of the best. Everyone who works on our support team are expert specialists who know Basecamp inside and out, many having been with us for years and years, some over a decade. Further, we occasionally cycle every employee through support — including our CEO — so everyone has a chance to directly interact with customers.</p>
642
+ <p>You can <a href="../support/index.html">ask support a question</a>, or <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">watch tutorials</a>, or <a href="https://3.basecamp-help.com">review the help guides</a>, or <a href="../classes/index.html">attend a live walkthrough class and Q&amp;A</a>.</p>
643
+ </article>
644
+ </details>
645
+
646
+ <details id="languages">
647
+ <summary>
648
+ <p>Is Basecamp available in languages other than English?</p>
649
+ </summary>
650
+ <article>
651
+ <p>Currently we only offer Basecamp’s interface in English, although we have people in over 160 countries writing and sharing in their own native languages using Basecamp.</p>
652
+ </article>
653
+ </details>
654
+
655
+ <details id="other-products">
656
+ <summary>
657
+ <p>If we go with Basecamp, will we still need stuff like Slack? Asana? Dropbox?</p>
658
+ </summary>
659
+ <article>
660
+ <p><strong>Nope,</strong> Basecamp replaces a whole set of separate products and saves you a ton of money. Basecamp has chat built in (no more Slack). Basecamp has exceptional task management in the form of to-dos and kanban-style Card Tables (no more Asana). And you can store and share all the files you need in a project (no more Dropbox). Basecamp also replaces document-based tools like Google Docs, Notion, etc. And yet, if you need to continue to use some of those tools, you can always link them up right from inside Basecamp using the Doors feature.</p>
661
+ </article>
662
+ </details>
663
+
664
+ <details id="who-uses-basecamp">
665
+ <summary>
666
+ <p>What kind of companies, in which industries, use Basecamp?</p>
667
+ </summary>
668
+ <article>
669
+ <p>Basecamp is used by top notch marketers, ad agencies, designers, client services firms, consultants, software developers, freelancers, PR agencies, contractors, religious institutions, schools, non-profits, first responders, and many others. Over 75,000 organizations, across every industry imaginable, in 166 countries, use Basecamp for project management.</p>
670
+ <p>Our customers are primarily small or medium-sized companies with fewer than 100 full-time employees, but Basecamp is also used by teams inside many of the world’s largest companies.</p>
671
+ </article>
672
+ </details>
673
+
674
+ <details id="classes" class="data-classes data-classes--details" data-classes-limit="6">
675
+ <summary>
676
+ <p>Do you offer classes to learn more about Basecamp?</p>
677
+ </summary>
678
+ <article>
679
+ <p><strong>Yes, see our upcoming classes below.</strong> We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask. We’ll teach you the basics of using Basecamp, with plenty of time set aside for questions.<span class="data-classes__link"> <a href="../classes/index.html">See all our upcoming classes</a>.</span></p>
680
+ <div class="data-classes__output"></div>
681
+ </article>
682
+ </details>
683
+
684
+ </div>
685
+
686
+ <div class="marquee marquee--left space-bottom--xxx-large space-top--xx-large">
687
+
688
+ <a href="../customers/index.html" aria-hidden="true" tabindex="-1">
689
+ <ul>
690
+
691
+
692
+
693
+
694
+
695
+ <li>“Extremely user friendly”</li>
696
+
697
+
698
+
699
+ <li>“Truly amazing!”</li>
700
+
701
+
702
+
703
+ <li>“A godsend for our org”</li>
704
+
705
+
706
+
707
+ <li>“Simple, quick, powerful”</li>
708
+
709
+
710
+
711
+ <li>“So glad I found Basecamp”</li>
712
+
713
+
714
+
715
+ <li>“The perfect solution”</li>
716
+
717
+
718
+
719
+ <li>“Really great”</li>
720
+
721
+
722
+
723
+ <li>“Outstanding”</li>
724
+
725
+
726
+
727
+ <li>“Best app for teams”</li>
728
+
729
+
730
+
731
+ <li>“Awesome service”</li>
732
+
733
+
734
+
735
+ <li>“Gets better and better”</li>
736
+
737
+
738
+
739
+ <li>“Great collaboration tool”</li>
740
+
741
+
742
+
743
+ <li>“Great software”</li>
744
+
745
+
746
+
747
+ <li>“Gold standard PM app”</li>
748
+
749
+
750
+
751
+ <li>“Brilliant solution”</li>
752
+
753
+
754
+
755
+ <li>“Clean and easy to use”</li>
756
+
757
+
758
+
759
+ <li>“Fantastic app”</li>
760
+
761
+
762
+
763
+ <li>“Organized and on point”</li>
764
+
765
+
766
+
767
+ <li>“Extremely user friendly”</li>
768
+
769
+
770
+
771
+ <li>“Truly amazing!”</li>
772
+
773
+
774
+
775
+ <li>“A godsend for our org”</li>
776
+
777
+
778
+
779
+ <li>“Simple, quick, powerful”</li>
780
+
781
+
782
+
783
+ <li>“So glad I found Basecamp”</li>
784
+
785
+
786
+
787
+ <li>“The perfect solution”</li>
788
+
789
+
790
+
791
+ <li>“Really great”</li>
792
+
793
+
794
+
795
+ <li>“Outstanding”</li>
796
+
797
+
798
+
799
+ <li>“Best app for teams”</li>
800
+
801
+
802
+
803
+ <li>“Awesome service”</li>
804
+
805
+
806
+
807
+ <li>“Gets better and better”</li>
808
+
809
+
810
+
811
+ <li>“Great collaboration tool”</li>
812
+
813
+
814
+
815
+ <li>“Great software”</li>
816
+
817
+
818
+
819
+ <li>“Gold standard PM app”</li>
820
+
821
+
822
+
823
+ <li>“Brilliant solution”</li>
824
+
825
+
826
+
827
+ <li>“Clean and easy to use”</li>
828
+
829
+
830
+
831
+ <li>“Fantastic app”</li>
832
+
833
+
834
+
835
+ <li>“Organized and on point”</li>
836
+
837
+
838
+
839
+ </ul>
840
+ </a>
841
+
842
+
843
+ </div>
844
+
845
+
846
+ </main>
847
+
848
+ <footer class="footer">
849
+
850
+
851
+
852
+
853
+
854
+ <div class="footer__apps" id="apps">
855
+ <dl class="footer__headline">
856
+ <dt>Basecamp’s everywhere</dt>
857
+ <dd>Mac, Windows, iOS, Android, and on the web — Basecamp is ready <a href="../apps/index.html">whenever and wherever you are</a>.</dd>
858
+ </dl>
859
+ <ul>
860
+ <li><a class="button button--icon button--pwa" href="https://3.basecamp-help.com/article/937-basecamp-pwa" title="Install Basecamp on Mac and Windows">Desktop apps</a></li>
861
+ <li><a class="button button--icon button--ios" href="https://apps.apple.com/us/app/basecamp-project-management/id1015603248" title="Install Basecamp on iOS">iOS</a></li>
862
+ <li><a class="button button--icon button--android" href="https://play.google.com/store/apps/details?id=com.basecamp.bc3" title="Install Basecamp on Android">Android</a></li>
863
+ <li><a class="button button--icon button--basecamp" href="https://launchpad.37signals.com/signin" title="Use Basecamp in your web browser" target="_blank" data-controller="signup" data-action="signup#trackLogin">Sign in to Basecamp</a></li>
864
+ </ul>
865
+ </div>
866
+
867
+
868
+
869
+
870
+
871
+ <div class="footer__classes data-classes" data-classes-limit="4">
872
+ <dl class="footer__headline">
873
+ <dt>Join us for a free live class</dt>
874
+ <dd>We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask.<span class="data-classes__link"> <a href="../classes/index.html">See all our upcoming classes</a>.</span></dd>
875
+ </dl>
876
+ <div class="data-classes__output"></div>
877
+ </div>
878
+
879
+
880
+
881
+
882
+
883
+ <div class="footer__newsletter">
884
+ <dl class="footer__headline">
885
+ <dt>Never miss an update</dt>
886
+ <dd>Join more than 150,000 people who get <a href="../newsletter/index.html">our newsletter</a>. We’ll share product updates, thoughts, new releases, and other tidbits we think you’ll find interesting.</dd>
887
+ </dl>
888
+ <div class="newsletter">
889
+ <div class="newsletter__container">
890
+ <form novalidate action="https://basecamp.us2.list-manage.com/subscribe/post-json?u=2a145c60b16248b65e46a799a&amp;id=476312b66e&amp;c=?" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form">
891
+ <div aria-hidden="true" style="position: absolute; left: -5000px;"><input type="text" name="b_2a145c60b16248b65e46a799a_476312b66e" value="" tabindex="-1" aria-label="mce"></div>
892
+ <input type="hidden" name="tags" value="23018">
893
+ <input type="email" name="EMAIL" value="" id="mce-EMAIL" placeholder="julie.young@hey.com" aria-label="Your email address" required data-1p-ignore>
894
+ <button type="submit" name="subscribe" id="mc-embedded-subscribe">Subscribe</button>
895
+ </form>
896
+ </div>
897
+ </div>
898
+ </div>
899
+
900
+
901
+
902
+
903
+
904
+ <div class="footer__support">
905
+ <dl class="footer__headline">
906
+ <dt>We’re here to help with 24/7/365 support</dt>
907
+ <dd>There are no stupid questions — for pre-sales questions, existing customers who need a hand, or any other inquiries, <a href="../support/index.html">contact us</a> and we’ll get back to you within an hour. <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">Watch tutorials</a>, <a href="../help/index.html">read the help guides</a>, or <a href="../support/index.html">send us a message</a> to get help.</dd>
908
+ </dl>
909
+
910
+
911
+
912
+ <div class="footer__hey">
913
+ <a href="https://www.hey.com" target="_blank">
914
+ <span>If you love Basecamp, you’ll love <strong>HEY</strong> — our delightfully fresh take on email + calendar</span>
915
+ </a>
916
+ </div>
917
+
918
+
919
+
920
+ </div>
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+ <div class="footer__links">
929
+ <dl class="footer__headline">
930
+ <dt>And there’s more&hellip;</dt>
931
+ <dd>
932
+
933
+
934
+
935
+ <a href="../new/index.html" aria-label="What’s new">What’s new</a> •
936
+
937
+
938
+
939
+ <a href="../paths/index.html" aria-label="The people’s path to Basecamp">The people’s path to Basecamp</a> •
940
+
941
+
942
+
943
+ <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18" aria-label="Books we’ve written">Books we’ve written</a> •
944
+
945
+
946
+
947
+ <a href="../about/index.html" aria-label="Where we came from">Where we came from</a> •
948
+
949
+
950
+
951
+ <a href="../guides/how-we-communicate/index.html" aria-label="How we communicate">How we communicate</a> •
952
+
953
+
954
+
955
+ <a href="../guides/how-we-make-decisions/index.html" aria-label="How we make decisions">How we make decisions</a> •
956
+
957
+
958
+
959
+ <a href="../guides/why-we-choose-profit/index.html" aria-label="Why we choose profit">Why we choose profit</a> •
960
+
961
+
962
+
963
+ <a href="../guides/group-chat-problems/index.html" aria-label="Group chat problems">Group chat problems</a> •
964
+
965
+
966
+
967
+ <a href="../guides/seven-shipping-principles/index.html" aria-label="Seven shipping principles">Seven shipping principles</a> •
968
+
969
+
970
+
971
+ <a href="../underdogs/index.html" aria-label="We stand with the underdogs">We stand with the underdogs</a> •
972
+
973
+
974
+
975
+ <a href="../small/index.html" aria-label="Come small, come all">Come small, come all</a> •
976
+
977
+
978
+
979
+ <a href="../overkill/index.html" aria-label="Kill overkill">Kill overkill</a> •
980
+
981
+
982
+
983
+ <a href="../cloud-exit/index.html" aria-label="Leaving the Cloud">Leaving the Cloud</a> •
984
+
985
+
986
+
987
+ <a href="../before-and-after/index.html" aria-label="Night &amp; day">Night &amp; day</a> •
988
+
989
+
990
+
991
+ <a href="../hill-charts/index.html" aria-label="See where projects really stand">See where projects really stand</a> •
992
+
993
+
994
+
995
+ <a href="../justletmedomyjob/index.html" aria-label="JUST LET ME DO MY JOB">JUST LET ME DO MY JOB</a> •
996
+
997
+
998
+
999
+ <a href="../customers/index.html" aria-label="What changed for the better?">What changed for the better?</a> •
1000
+
1001
+
1002
+
1003
+ <a href="../integrations/index.html" aria-label="Integrations">Integrations</a> •
1004
+
1005
+
1006
+
1007
+ <a href="../accessibility/index.html" aria-label="Basecamp is for everyone">Basecamp is for everyone</a> •
1008
+
1009
+
1010
+
1011
+ <a href="../community/index.html" aria-label="Basecamp community">Basecamp community</a> •
1012
+
1013
+
1014
+
1015
+ <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14" aria-label="Learn Basecamp">Learn Basecamp</a> •
1016
+
1017
+
1018
+
1019
+ <a href="../handbook" aria-label="Employee handbook">Employee handbook</a>
1020
+
1021
+
1022
+
1023
+ </dd>
1024
+ </dl>
1025
+ </div>
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+
1033
+ <div class="footer__legal">
1034
+ <p>
1035
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
1036
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
1037
+ <strong>Basecamp</strong>
1038
+ </a>
1039
+ <span>is designed, built, and backed by</span>
1040
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
1041
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
1042
+ <strong>37signals</strong>
1043
+ </a>
1044
+ </p>
1045
+ <ul>
1046
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
1047
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
1048
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
1049
+ <li>&copy; 2025 37signals LLC</li>
1050
+ </ul>
1051
+ </div>
1052
+ </footer>
1053
+
1054
+
1055
+ <dialog class="modal">
1056
+ <div class="modal__backdrop"></div>
1057
+ <div class="modal__container"></div>
1058
+ </dialog>
1059
+
1060
+
1061
+ </body>
1062
+
1063
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/features/lineup ADDED
@@ -0,0 +1,1063 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Project management software, online collaboration</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Project management software, online collaboration">
28
+ <meta property="og:description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Project management software, online collaboration">
34
+ <meta name="twitter:description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Project management software, online collaboration",
53
+ "description": "Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.",
54
+ "url": "https://basecamp.com/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="../enterprise-extravaganza">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body class="body has-nav-phrase" data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <input id="nav-active" type="checkbox">
110
+
111
+ <label id="nav-underlay" for="nav-active"></label>
112
+
113
+ <nav class="nav">
114
+ <div class="nav__container">
115
+ <div class="nav__logo">
116
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
117
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
118
+ <strong>Basecamp</strong>
119
+ </a>
120
+ <div class="nav__phrase">is the <span class="highlight"></span> <strong>project management system</strong> by</div>
121
+ <b class="icon icon--37signals">
122
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
123
+ <strong>37signals</strong>
124
+ </b>
125
+ </div>
126
+ <div class="nav__links">
127
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
128
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
129
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
130
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
131
+ </div>
132
+ <div class="nav__buttons">
133
+ <a class="nav__button nav__button--launchpad" href="https://launchpad.37signals.com/signin" target="_blank" data-controller="signup" data-action="signup#trackLogin" aria-label="Sign in">Sign in</a>
134
+ <a class="nav__button nav__button--signup trk-package" id="sign-up-nav" href="../pricing/index.html#packages" aria-label="Sign up free">Sign up free</a>
135
+ </div>
136
+ <label class="nav__toggle" for="nav-active" aria-label="Nav Toggle" tabindex="0"></label>
137
+ </div>
138
+ <div class="nav__mobile">
139
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
140
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
141
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
142
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
143
+ </div>
144
+ </nav>
145
+
146
+
147
+
148
+
149
+ <main class="main">
150
+
151
+ <div class="illustration space-bottom--large">
152
+ <picture>
153
+ <source srcset="/assets/images/home/illustration-desktop.png" media="(min-width: 48em)">
154
+ <img src="../assets/images/home/illustration-mobile.png" alt="Wrestling with projects? It doesn’t have to be this hard.">
155
+ </picture>
156
+ </div>
157
+
158
+ <div class="columns">
159
+ <section>
160
+ <header>
161
+ <h1>Wrestling with projects?<br> It doesn’t have to be this hard.</h1>
162
+ </header>
163
+ <article>
164
+ <div>
165
+ <p>There are lots of ways to manage projects. And there’s plenty of software promising to help. You’ve probably tried some. Yet, here you are.</p>
166
+ <p><strong>Unfortunately, most project management systems are either overwhelming, inadequate, bewildering, or chaotic. You know?</strong></p>
167
+ <p>Not Basecamp. Basecamp is refreshingly straightforward, with a 21-year track record to back it up. Longevity isn’t luck — it’s proof it works. And you’ll work better with it too.</p>
168
+ </div>
169
+ <div>
170
+ <p><strong>Basecamp is famously no-nonsense, effective, and reliable.</strong> The trifecta. It’s <a href="../underdogs/index.html">designed for smaller, hungrier businesses</a>, not big, sluggish ones. <a href="../customers/index.html">Over 30 pages of customer testimonials</a> detail how things run better on Basecamp.</p>
171
+ <p>So, we invite you to poke around, watch the video below, and <a href="../pricing/index.html#packages">try Basecamp for free</a>. We’d be honored to have you as a customer. Thank you.</p>
172
+ <dl>
173
+ <dt><strong>Jason Fried</strong>, <a href="mailto:jason@basecamp.com">jason@basecamp.com</a></dt>
174
+ <dd><em>Co-founder &amp; CEO</em></dd>
175
+ </dl>
176
+ </div>
177
+ </article>
178
+ </section>
179
+ </div>
180
+
181
+ <div class="visual visual--walkthrough space-top--xxx-large">
182
+ <div class="visual__column">
183
+ <button class="visual__button modal-trigger" id="walkthrough-columns" data-type="video" data-event="Walkthrough: Columns" data-src="/videos/home/walkthrough.mp4" data-track="/videos/home/walkthrough.vtt">
184
+ <figure class="visual__figure">
185
+ <img src="../videos/home/walkthrough-small.webp" width="2400" height="1326" alt="See how Basecamp works">
186
+ <span aria-hidden="true">Hit play to see how Basecamp is different</span>
187
+ </figure>
188
+ <div class="visual__play"></div>
189
+ </button>
190
+ </div>
191
+ </div>
192
+
193
+ <div class="statement space-top--xxx-large">
194
+ <section>
195
+ <header>
196
+ <h2 id="features"><a href="../enterprise-extravaganza#features">Let’s walk through it.</a></h2>
197
+ </header>
198
+ </section>
199
+ </div>
200
+
201
+ <div class="headline space-top--large">
202
+ <header>
203
+ <h3 id="home"><a href="../enterprise-extravaganza#home">10 seconds after you sign up, clarity sets in.</a></h3>
204
+ </header>
205
+ <article>
206
+ <p>The home screen organizes your projects, assignments, and upcoming events together on one screen. It’s your calm, comfortable, simple starting point every morning.</p>
207
+ </article>
208
+ </div>
209
+
210
+ <div class="visual space-top--large">
211
+ <div class="visual__column visual__column--4">
212
+ <button class="visual__button modal-trigger" id="whats-my-week-look-like" data-type="video" data-event="Home: What’s my week look like?" data-src="/videos/home/whats-my-week-look-like.mp4" data-track="/videos/home/whats-my-week-look-like.vtt">
213
+ <figure class="visual__figure">
214
+ <img src="../videos/home/whats-my-week-look-like.webp" width="1260" height="1116" alt="View your schedule" loading="lazy">
215
+ <span aria-hidden="true">What’s my week look like?</span>
216
+ </figure>
217
+ <div class="visual__play"></div>
218
+ </button>
219
+ <button class="visual__button modal-trigger" id="whats-on-my-plate-today" data-type="video" data-event="Home: What’s on my plate today?" data-src="/videos/home/whats-on-my-plate-today.mp4" data-track="/videos/home/whats-on-my-plate-today.vtt">
220
+ <figure class="visual__figure">
221
+ <img src="../videos/home/whats-on-my-plate-today.webp" width="1260" height="1116" alt="View your assignments" loading="lazy">
222
+ <span aria-hidden="true">What’s on my plate today?</span>
223
+ </figure>
224
+ <div class="visual__play"></div>
225
+ </button>
226
+ <aside class="visual__aside" aria-label="Home">
227
+ <p><strong>Each person gets their own home screen depending on which projects they have access to.</strong> They’ll only see their own assignments and events. And you can keep important projects close at hand by pinning them to the top.</p>
228
+ </aside>
229
+ </div>
230
+ <div class="visual__column visual__column--8">
231
+ <button class="visual__button modal-trigger" id="which-projects-am-i-on" data-type="video" data-event="Home: Which projects am I on?" data-src="/videos/home/which-projects-am-i-on.mp4" data-track="/videos/home/which-projects-am-i-on.vtt">
232
+ <figure class="visual__figure">
233
+ <img src="../videos/home/which-projects-am-i-on.webp" width="2400" height="2854" alt="View projects on the home screen" loading="lazy">
234
+ <span aria-hidden="true">Which projects am I on?</span>
235
+ </figure>
236
+ <div class="visual__play"></div>
237
+ </button>
238
+ </div>
239
+ </div>
240
+
241
+ <div class="headline space-top--xxx-large">
242
+ <header>
243
+ <h3 id="projects"><a href="../enterprise-extravaganza#projects">Projects get teams — and keep teams — organized.</a></h3>
244
+ </header>
245
+ <article>
246
+ <p>A project is where the tasks, discussions, deliverables, and decisions happen. Projects hold everything — and everyone — together in one tidy, predictably structured place.</p>
247
+ </article>
248
+ </div>
249
+
250
+ <div class="visual space-top--large">
251
+ <div class="visual__column visual__column--6">
252
+ <button class="visual__button modal-trigger" id="all-in-one-toolbox" data-type="video" data-event="Projects: A project page organizes everything" data-src="/videos/home/all-in-one-toolbox.mp4" data-track="/videos/home/all-in-one-toolbox.vtt">
253
+ <figure class="visual__figure">
254
+ <img src="../videos/home/all-in-one-toolbox.webp" width="2400" height="2582" alt="A Basecamp project page" loading="lazy">
255
+ <span aria-hidden="true">A project page organizes everything</span>
256
+ </figure>
257
+ <div class="visual__play"></div>
258
+ </button>
259
+ <aside class="visual__aside" aria-label="Projects">
260
+ <p><strong>Make as many projects as you’d like.</strong> We run dozens at once in our own Basecamp account. For example, one for a web site redesign, <a href="../enterprise-extravaganza#organizing-a-meet-up" class="modal-trigger" id="organizing-a-meet-up" data-type="video" data-event="Organizing a Meet-up" data-src="/videos/organizing-a-meet-up/organizing-a-meet-up.mp4">one for planning an upcoming offsite</a>, one for working with our accountants, and one just for the executive team to plan strategy, etc.</p>
261
+ </aside>
262
+ </div>
263
+ <div class="visual__column visual__column--6 visual__column--grid">
264
+ <button class="visual__button modal-trigger" id="track-tasks" data-type="video" data-event="Projects: What to do + who’s doing?" data-src="/videos/home/track-tasks.mp4" data-track="/videos/home/track-tasks.vtt">
265
+ <figure class="visual__figure">
266
+ <img src="../assets/images/screenshots/to-dos-thumbnail.webp" width="1200" height="900" alt="Track work with To-dos" loading="lazy">
267
+ <span aria-hidden="true">What to do + who’s doing?</span>
268
+ </figure>
269
+ <div class="visual__play"></div>
270
+ </button>
271
+ <button class="visual__button modal-trigger" id="launch-discussions" data-type="video" data-event="Projects: Who said what when?" data-src="/videos/home/launch-discussions.mp4" data-track="/videos/home/launch-discussions.vtt">
272
+ <figure class="visual__figure">
273
+ <img src="../assets/images/screenshots/message-board-thumbnail.webp" width="1200" height="900" alt="Stay on topic with Messages" loading="lazy">
274
+ <span aria-hidden="true">Who said what when?</span>
275
+ </figure>
276
+ <div class="visual__play"></div>
277
+ </button>
278
+ <button class="visual__button modal-trigger" id="set-milestones" data-type="video" data-event="Projects: What’s due next?" data-src="/videos/home/set-milestones.mp4" data-track="/videos/home/set-milestones.vtt">
279
+ <figure class="visual__figure">
280
+ <img src="../assets/images/screenshots/schedule-thumbnail.webp" width="1200" height="900" alt="Schedule so you don’t forget" loading="lazy">
281
+ <span aria-hidden="true">What’s due next?</span>
282
+ </figure>
283
+ <div class="visual__play"></div>
284
+ </button>
285
+ <button class="visual__button modal-trigger" id="store-assets" data-type="video" data-event="Projects: Where’s the latest version?" data-src="/videos/home/store-assets.mp4" data-track="/videos/home/store-assets.vtt">
286
+ <figure class="visual__figure">
287
+ <img src="../assets/images/screenshots/docs-and-files-thumbnail.webp" width="1200" height="900" alt="Store, share, and discuss files" loading="lazy">
288
+ <span aria-hidden="true">Where’s the latest version?</span>
289
+ </figure>
290
+ <div class="visual__play"></div>
291
+ </button>
292
+ <button class="visual__button modal-trigger" id="hash-stuff-out" data-type="video" data-event="Projects: Got a quick question?" data-src="/videos/home/hash-stuff-out.mp4" data-track="/videos/home/hash-stuff-out.vtt">
293
+ <figure class="visual__figure">
294
+ <img src="../assets/images/screenshots/chat-thumbnail.webp" width="1200" height="900" alt="Chat around the campfire" loading="lazy">
295
+ <span aria-hidden="true">Got a quick question?</span>
296
+ </figure>
297
+ <div class="visual__play"></div>
298
+ </button>
299
+ <button class="visual__button modal-trigger" id="run-workflows" data-type="video" data-event="Projects: How’s the process flowing?" data-src="/videos/home/run-workflows.mp4" data-track="/videos/home/run-workflows.vtt">
300
+ <figure class="visual__figure">
301
+ <img src="../assets/images/screenshots/card-table-thumbnail.webp" width="1200" height="900" alt="Card Table is our unique take on Kanban" loading="lazy">
302
+ <span aria-hidden="true">How’s the process flowing?</span>
303
+ </figure>
304
+ <div class="visual__play"></div>
305
+ </button>
306
+ </div>
307
+ </div>
308
+
309
+ <div class="headline space-top--xxx-large">
310
+ <header>
311
+ <h3 id="reports"><a href="../enterprise-extravaganza#reports">Reports give you confidence to hold people accountable.</a></h3>
312
+ </header>
313
+ <article>
314
+ <p>Basecamp’s reports aren’t numbers, percentages, or abstract representations — they’re the real work, actual evidence of progress being made (or not made).</p>
315
+ </article>
316
+ </div>
317
+
318
+ <div class="visual space-top--large">
319
+ <div class="visual__column visual__column--4">
320
+ <button class="visual__button modal-trigger" id="whats-overdue" data-type="video" data-event="Reports: What’s overdue?" data-src="/videos/home/whats-overdue.mp4" data-track="/videos/home/whats-overdue.vtt">
321
+ <figure class="visual__figure">
322
+ <img src="../videos/home/whats-overdue.webp" width="1796" height="1304" alt="See everything that’s overdue" loading="lazy">
323
+ <span aria-hidden="true">What’s overdue?</span>
324
+ </figure>
325
+ <div class="visual__play"></div>
326
+ </button>
327
+ <button class="visual__button modal-trigger" id="how-much-time-have-we-spent" data-type="video" data-event="Reports: How much time have we spent?" data-src="/videos/home/how-much-time-have-we-spent.mp4" data-track="/videos/home/how-much-time-have-we-spent.vtt">
328
+ <figure class="visual__figure">
329
+ <img src="../videos/home/how-much-time-have-we-spent.webp" width="1796" height="1304" alt="Track time directly in Basecamp" loading="lazy">
330
+ <span aria-hidden="true">How much time have we spent?</span>
331
+ </figure>
332
+ <div class="visual__play"></div>
333
+ </button>
334
+ <button class="visual__button modal-trigger" id="whos-responsible-for-what" data-type="video" data-event="Reports: Who’s responsible for what?" data-src="/videos/home/whos-responsible-for-what.mp4" data-track="/videos/home/whos-responsible-for-what.vtt">
335
+ <figure class="visual__figure">
336
+ <img src="../videos/home/whos-responsible-for-what.webp" width="1796" height="1304" alt="Reports quickly cut across every project to give you quick insights" loading="lazy">
337
+ <span aria-hidden="true">Who’s responsible for what?</span>
338
+ </figure>
339
+ <div class="visual__play"></div>
340
+ </button>
341
+ </div>
342
+ <div class="visual__column visual__column--8">
343
+ <button class="visual__button modal-trigger" id="whats-actually-been-happening" data-type="video" data-event="Reports: What’s actually been happening?" data-src="/videos/home/whats-actually-been-happening.mp4" data-track="/videos/home/whats-actually-been-happening.vtt">
344
+ <figure class="visual__figure">
345
+ <img src="../videos/home/whats-actually-been-happening.webp" width="2400" height="3028" alt="The micro-view of everything that happens across every project in real-time" loading="lazy">
346
+ <span aria-hidden="true">What’s actually been happening?</span>
347
+ </figure>
348
+ <div class="visual__play"></div>
349
+ </button>
350
+ </div>
351
+ </div>
352
+
353
+ <div class="headline space-top--xxx-large">
354
+ <header>
355
+ <h3 id="visualizations"><a href="../enterprise-extravaganza#visualizations">Visualizations are for seeing, not squinting.</a></h3>
356
+ </header>
357
+ <article>
358
+ <p>Basecamp’s Lineup, Mission Control, and Hill Charts are visual tools that help you clearly see where projects really stand. Notice progress at a glance, know reality in an instant.</p>
359
+ </article>
360
+ </div>
361
+
362
+ <div class="visual space-top--large">
363
+ <div class="visual__column">
364
+ <button class="visual__button modal-trigger" id="how-far-along-are-we" data-type="video" data-event="Visualizations: How far along are we?" data-src="/videos/home/how-far-along-are-we.mp4" data-track="/videos/home/how-far-along-are-we.vtt">
365
+ <figure class="visual__figure">
366
+ <img src="../videos/home/how-far-along-are-we.webp" width="3008" height="1504" alt="The Lineup shows you where every project stands, from start to finish, all at once" loading="lazy">
367
+ <span aria-hidden="true">How far along are we?</span>
368
+ </figure>
369
+ <div class="visual__play"></div>
370
+ </button>
371
+ </div>
372
+ <div class="visual__column visual__column--grid">
373
+ <button class="visual__button modal-trigger" id="how-are-we-feeling" data-type="video" data-event="Visualizations: How are we feeling?" data-src="/videos/home/how-are-we-feeling.mp4" data-track="/videos/home/how-are-we-feeling.vtt">
374
+ <figure class="visual__figure">
375
+ <img src="../videos/home/how-are-we-feeling.webp" width="2400" height="1434" alt="Mission Control shows you which projects are on track and which ones need a helping hand" loading="lazy">
376
+ <span aria-hidden="true">How are we feeling?</span>
377
+ </figure>
378
+ <div class="visual__play"></div>
379
+ </button>
380
+ <button class="visual__button modal-trigger" id="what-still-needs-to-be-figured-out" data-type="video" data-event="Visualizations: What still needs to be figured out?" data-src="/videos/home/what-still-needs-to-be-figured-out.mp4" data-track="/videos/home/what-still-needs-to-be-figured-out.vtt">
381
+ <figure class="visual__figure">
382
+ <img src="../videos/home/what-still-needs-to-be-figured-out.webp" width="2400" height="1434" alt="Hill Charts visually display the progress of your To-do list" loading="lazy">
383
+ <span aria-hidden="true">What still needs to be figured out?</span>
384
+ </figure>
385
+ <div class="visual__play"></div>
386
+ </button>
387
+ </div>
388
+ </div>
389
+
390
+ <div class="headline space-top--xxx-large">
391
+ <header>
392
+ <h3 id="notifications"><a href="../enterprise-extravaganza#notifications">Ping! Hey! It’s for you.</a></h3>
393
+ </header>
394
+ <article>
395
+ <p>The Hey! menu aggregates your notifications in a never-annoying single menu. And “Pings”, our flavor of direct messages, let you kick off ad hoc chats 1:1 or in small groups.</p>
396
+ </article>
397
+ </div>
398
+
399
+ <div class="visual space-top--large">
400
+ <div class="visual__column visual__column--5">
401
+ <button class="visual__button modal-trigger" id="have-private-1-1-or-small-group-conversations" data-type="video" data-event="Notifications: Have private 1-1 or small group conversations" data-src="/videos/home/have-private-1-1-or-small-group-conversations.mp4" data-track="/videos/home/have-private-1-1-or-small-group-conversations.vtt">
402
+ <figure class="visual__figure">
403
+ <img src="../videos/home/have-private-1-1-or-small-group-conversations.webp" width="2400" height="1830" alt="Pings let you kick off ad hoc chats 1:1 or in small groups" loading="lazy">
404
+ <span aria-hidden="true">Have private 1-1 or small group conversations</span>
405
+ </figure>
406
+ <div class="visual__play"></div>
407
+ </button>
408
+ <aside class="visual__aside" aria-label="Notifications">
409
+ <p><strong>Don’t have work chats via text or Whatsapp on your personal phone number.</strong> Keep work at work by having them in Basecamp instead.</p>
410
+ </aside>
411
+ </div>
412
+ <div class="visual__column visual__column--7">
413
+ <button class="visual__button modal-trigger" id="notifications-in-one-place" data-type="video" data-event="Notifications: Notifications in one place, not in your face" data-src="/videos/home/notifications-in-one-place.mp4" data-track="/videos/home/notifications-in-one-place.vtt">
414
+ <figure class="visual__figure">
415
+ <img src="../videos/home/notifications-in-one-place.webp" width="2400" height="1830" alt="The Hey! menu aggregates all your notifications in a single menu" loading="lazy">
416
+ <span aria-hidden="true">Notifications in one place, not in your face</span>
417
+ </figure>
418
+ <div class="visual__play"></div>
419
+ </button>
420
+ </div>
421
+ </div>
422
+
423
+ <div class="headline space-top--xxx-large">
424
+ <header>
425
+ <h3 id="clients"><a href="../enterprise-extravaganza#clients">Got clients? Be partners, not adversaries.</a></h3>
426
+ </header>
427
+ <article>
428
+ <p>Basecamp keeps both sides organized, everyone’s feedback on the record, and all decisions, approvals, files, tasks, deadlines, and communications safe and centralized.</p>
429
+ </article>
430
+ </div>
431
+
432
+ <div class="visual space-top--large">
433
+ <div class="visual__column visual__column--grid">
434
+ <button class="visual__button modal-trigger" id="you-decide-what-clients-can-see" data-type="video" data-event="Clients: Can the client see this?" data-src="/videos/home/you-decide-what-clients-can-see.mp4" data-track="/videos/home/you-decide-what-clients-can-see.vtt">
435
+ <figure class="visual__figure">
436
+ <img src="../videos/home/you-decide-what-clients-can-see.webp" width="2400" height="1424" alt="You decide what your clients can see" loading="lazy">
437
+ <span aria-hidden="true">Can the client see this?</span>
438
+ </figure>
439
+ <div class="visual__play"></div>
440
+ </button>
441
+ <button class="visual__button modal-trigger" id="three-folders-for-you-one-for-them" data-type="video" data-event="Clients: Where’s the final version so we can show the client?" data-src="/videos/home/three-folders-for-you-one-for-them.mp4" data-track="/videos/home/three-folders-for-you-one-for-them.vtt">
442
+ <figure class="visual__figure">
443
+ <img src="../videos/home/three-folders-for-you-one-for-them.webp" width="2400" height="1424" alt="Let clients grab the files they need without having to ask" loading="lazy">
444
+ <span aria-hidden="true">Where’s the final version so we can show the client?</span>
445
+ </figure>
446
+ <div class="visual__play"></div>
447
+ </button>
448
+ <button class="visual__button modal-trigger" id="keep-approvals-on-the-official-record" data-type="video" data-event="Clients: Did the client officially approve it?" data-src="/videos/home/keep-approvals-on-the-official-record.mp4" data-track="/videos/home/keep-approvals-on-the-official-record.vtt">
449
+ <figure class="visual__figure">
450
+ <img src="../videos/home/keep-approvals-on-the-official-record.webp" width="2400" height="2108" alt="Keep client feedback on the official record" loading="lazy">
451
+ <span aria-hidden="true">Did the client officially approve it?</span>
452
+ </figure>
453
+ <div class="visual__play"></div>
454
+ </button>
455
+ <button class="visual__button modal-trigger" id="email-through-basecamp" data-type="video" data-event="Clients: Where’s the client’s email they sent?" data-src="/videos/home/email-through-basecamp.mp4" data-track="/videos/home/email-through-basecamp.vtt">
456
+ <figure class="visual__figure">
457
+ <img src="../videos/home/email-through-basecamp.webp" width="2400" height="2108" alt="Clients can respond to messages right from their inbox" loading="lazy">
458
+ <span aria-hidden="true">Where’s the client’s email they sent?</span>
459
+ </figure>
460
+ <div class="visual__play"></div>
461
+ </button>
462
+ </div>
463
+ </div>
464
+
465
+ <div class="headline space-top--xxx-large">
466
+ <header>
467
+ <h3 id="yes"><a href="../enterprise-extravaganza#yes">The answer is <span class="yes-label">YES!</span></a></h3>
468
+ </header>
469
+ <article>
470
+ <p>Can software be simple, straightforward, and easy, yet powerfully full-featured?<br> With Basecamp the answer is absolutely <strong>YES!</strong></p>
471
+ </article>
472
+ </div>
473
+
474
+ <div class="yes space-top--neutral">
475
+ <ul>
476
+ <li>Can I <strong>prevent our clients from seeing unfinished work?</strong></li>
477
+ <li>Can I <strong>link up files from Google Docs, Figma, Dropbox, Airtable, and other apps?</strong></li>
478
+ <li>Can I <strong>see everything I need to do on a single screen?</strong></li>
479
+ <li>Can I <strong>see everything that’s overdue on a single screen?</strong></li>
480
+ <li>Can I use Basecamp <strong>even if some of my team prefers just to use email?</strong></li>
481
+ <li>Can I <strong>see all the work that was completed on any given day?</strong></li>
482
+ <li>Can I <strong>set up projects that only some of my team can see?</strong></li>
483
+ <li>Can I <strong>see everything that’s happened across multiple projects in one place?</strong></li>
484
+ <li>Can I <strong>@mention someone so they’re notified about something?</strong></li>
485
+ <li>Can I <strong>see all the work someone’s done over a long period of time?</strong></li>
486
+ <li>Can I <strong>see everything that’s assigned to someone on a single page?</strong></li>
487
+ <li>Can I <strong>see exactly who worked on what today? Yesterday? Last week?</strong></li>
488
+ <li>Can I <strong>easily reference an entire conversation from a year ago?</strong></li>
489
+ <li>Can I <strong>follow a project quietly without receiving notifications?</strong></li>
490
+ <li>Can I <strong>assign tasks to multiple people at once?</strong></li>
491
+ <li>Can I <strong>see all our projects laid out on a visual timeline?</strong></li>
492
+ <li>Can I <strong>keep all the discussion about a to-do attached to that to-do?</strong></li>
493
+ <li>Can I <strong>follow-up directly with someone without anyone else knowing?</strong></li>
494
+ <li>Can <strong>our clients respond to our questions via email?</strong></li>
495
+ <li>Can <strong>our clients see a record of everything we’ve asked them?</strong></li>
496
+ <li>Can I <strong>organize ideas and setup workflows on a Kanban board?</strong></li>
497
+ <li>Can Basecamp <strong>tell me when someone completed an assignment?</strong></li>
498
+ <li>Can Basecamp <strong>help me get a client to approve a design?</strong></li>
499
+ <li>Can Basecamp <strong>help me hold my team accountable for deadlines?</strong></li>
500
+ <li>You <strong>wrote some <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18">books on how to run a business</a>, too, right?</strong></li>
501
+ </ul>
502
+ </div>
503
+
504
+ <div class="statement statement--gap-large space-top--xxx-large">
505
+ <section>
506
+ <header>
507
+ <h2 id="its-time"><a href="../enterprise-extravaganza#its-time">You wouldn’t be here if the<br> way you’ve been working was working. It’s time for Basecamp.</a></h2>
508
+ </header>
509
+ <article>
510
+ <p>Team super busy, but running in circles? <strong>It’s time for Basecamp.</strong> Finding stuff easy to start, but hard to finish? <strong>It’s time for Basecamp.</strong> Things taking longer than they should? <strong>It’s time for Basecamp.</strong> Info increasingly scattered across different apps? <strong>It’s time for Basecamp.</strong> Subscription fees keep adding up?<br> <strong>It’s time for Basecamp.</strong> Growing into dysfunction? <strong>It’s time for Basecamp.</strong> Tired of looking disorganized in front of clients? <strong class="highlight highlight--time">It’s time for Basecamp.</strong></p>
511
+ </article>
512
+ </section>
513
+ </div>
514
+
515
+ <div class="headline space-top--xxx-large">
516
+ <header>
517
+ <h3 id="company-faqs"><a href="../enterprise-extravaganza#company-faqs">I have questions about your company&hellip;</a></h3>
518
+ </header>
519
+ </div>
520
+
521
+ <div class="details space-top--medium">
522
+
523
+ <details id="trust">
524
+ <summary>
525
+ <p>How long have you been around? Can we trust you?</p>
526
+ </summary>
527
+ <article>
528
+ <p>The company that designed, owns, and operates Basecamp is called <a href="https://37signals.com" target="_blank">37signals</a>, and we’ve been around as a company since 1999. We launched Basecamp, the product, in 2004 and have been improving it weekly ever since. Running a sane, responsible, sustainable business is part of our commitment to you.</p>
529
+ <p>We’ve been <strong>profitable for 25 straight years, we have zero debt, we’re privately held, and built to stay, not exit.</strong> Our <a href="../handbook">employee handbook</a> is also public for everyone to see how we run our business and treat our employees.</p>
530
+ <p>We’ve also written a number of <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18">bestselling books</a> (REWORK, Remote, It Doesn’t Have to Be Crazy at Work) as well. The books detail how we’ve built, and run, such a unique, long-lasting company in a field full of sameness and short-term thinking.</p>
531
+ <p>You can email Jason Fried, our Co-Founder and CEO, any time at <a href="mailto:jason@basecamp.com">jason@basecamp.com</a>. He doesn’t have an assistant, so he’ll read and respond to your emails personally.</p>
532
+ </article>
533
+ </details>
534
+
535
+ <details id="uptime">
536
+ <summary>
537
+ <p>What about reliability and uptime?</p>
538
+ </summary>
539
+ <article>
540
+ <p>We can make endless promises, but the numbers are what matter here. Our historical uptime over multiple decades is well over 99.99%, and you can see recent real-time history on our <a href="https://www.37status.com" target="_blank">Status Page</a>.</p>
541
+ </article>
542
+ </details>
543
+
544
+ <details id="refunds">
545
+ <summary>
546
+ <p>What’s your refund policy like?</p>
547
+ </summary>
548
+ <article>
549
+ <p>We aim to be fair and reasonable, just as we’d want to be treated. <a href="https://37signals.com/policies/refund/" target="_blank">Our refund policy</a> reflects that.</p>
550
+ </article>
551
+ </details>
552
+
553
+ <details id="questions">
554
+ <summary>
555
+ <p>Can I ask ownership a question directly?</p>
556
+ </summary>
557
+ <article>
558
+ <p><strong>Absolutely.</strong> Our Co-Founder and CEO (Jason Fried) is available direct at <a href="mailto:jason@basecamp.com">jason@basecamp.com</a>, and our other Co-Founder and CTO (David Heinemeier Hansson) is at <a href="mailto:david@basecamp.com">david@basecamp.com</a>. Please do reach out. They don’t have assistants or anyone who reads their emails, so you’ll hear from them directly.</p>
559
+ </article>
560
+ </details>
561
+
562
+ </div>
563
+
564
+ <div class="headline space-top--x-large">
565
+ <header>
566
+ <h3 id="security-faqs"><a href="../enterprise-extravaganza#security-faqs">I have questions about security and our data&hellip;</a></h3>
567
+ </header>
568
+ </div>
569
+
570
+ <div class="details space-top--medium">
571
+
572
+ <details id="secure">
573
+ <summary>
574
+ <p>How secure is Basecamp?</p>
575
+ </summary>
576
+ <article>
577
+ <p>We have a <a href="https://37signals.com/policies/security/" target="_blank">full security write-up</a> available on the 37signals site. 37signals is the company behind Basecamp.</p>
578
+ </article>
579
+ </details>
580
+
581
+ <details id="backups">
582
+ <summary>
583
+ <p>Is our data backed up? How often?</p>
584
+ </summary>
585
+ <article>
586
+ <p>Data customers enter into Basecamp is stored in multiple, redundant data centers. That data is backed up several times a day, and copies of those backups are stored both locally and off-site to further reduce points of possible failure. Files customers upload are stored off-site and backed up to servers in a different geographic region.</p>
587
+ </article>
588
+ </details>
589
+
590
+ <details id="data-centers">
591
+ <summary>
592
+ <p>Where are the servers that store our data?</p>
593
+ </summary>
594
+ <article>
595
+ <p>Our servers are located in multiple data centers in the United States. We service customers from over 160 countries from these servers. We do not currently have data centers outside the US.</p>
596
+ </article>
597
+ </details>
598
+
599
+ <details id="custom-security-questionnaires">
600
+ <summary>
601
+ <p>Can you fill our custom security questionnaires?</p>
602
+ </summary>
603
+ <article>
604
+ <p>We don’t fill out custom security questionnaires, but we’ve <a href="https://37signals.com/policies/security/37signals%20Security%20Overview.pdf" target="_blank">prepared a summary security PDF</a> which you can provide to your IT staff.</p>
605
+ </article>
606
+ </details>
607
+
608
+ <details id="export-our-data">
609
+ <summary>
610
+ <p>Can I export our data if we ever want to leave?</p>
611
+ </summary>
612
+ <article>
613
+ <p><strong>Absolutely,</strong> you can do it as often as you’d like. Plus, it’s entirely self-service and easy so you don’t need to ask anyone for help or permission. Further, we provide it in a format that allows you to browse it in a web browser so it’s actually useful. <a href="https://3.basecamp-help.com/article/150-export-your-basecamp-data" target="_blank">Here’s how exporting works</a>.</p>
614
+ </article>
615
+ </details>
616
+
617
+ </div>
618
+
619
+ <div class="headline space-top--x-large">
620
+ <header>
621
+ <h3 id="other-faqs"><a href="../enterprise-extravaganza#other-faqs">I have other questions&hellip;</a></h3>
622
+ </header>
623
+ </div>
624
+
625
+ <div class="details space-top--medium">
626
+
627
+ <details id="api">
628
+ <summary>
629
+ <p>Does Basecamp have an API? Can we integrate with Basecamp?</p>
630
+ </summary>
631
+ <article>
632
+ <p><strong>Yes,</strong> <a href="https://github.com/basecamp/bc3-api" target="_blank">Basecamp has a full-featured API (docs are hosted on GitHub)</a>. Hundreds of companies have written custom integrations, and <a href="../integrations/index.html">our Integrations page</a> links up third-party solutions for invoicing, accounting, time tracking, reporting, planning, asset management, contracts, proposals, and more.</p>
633
+ </article>
634
+ </details>
635
+
636
+ <details id="customer-support">
637
+ <summary>
638
+ <p>What’s your customer support like? What if we need help?</p>
639
+ </summary>
640
+ <article>
641
+ <p>Our customer support is widely considered to be among the best of the best. Everyone who works on our support team are expert specialists who know Basecamp inside and out, many having been with us for years and years, some over a decade. Further, we occasionally cycle every employee through support — including our CEO — so everyone has a chance to directly interact with customers.</p>
642
+ <p>You can <a href="../support/index.html">ask support a question</a>, or <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">watch tutorials</a>, or <a href="https://3.basecamp-help.com">review the help guides</a>, or <a href="../classes/index.html">attend a live walkthrough class and Q&amp;A</a>.</p>
643
+ </article>
644
+ </details>
645
+
646
+ <details id="languages">
647
+ <summary>
648
+ <p>Is Basecamp available in languages other than English?</p>
649
+ </summary>
650
+ <article>
651
+ <p>Currently we only offer Basecamp’s interface in English, although we have people in over 160 countries writing and sharing in their own native languages using Basecamp.</p>
652
+ </article>
653
+ </details>
654
+
655
+ <details id="other-products">
656
+ <summary>
657
+ <p>If we go with Basecamp, will we still need stuff like Slack? Asana? Dropbox?</p>
658
+ </summary>
659
+ <article>
660
+ <p><strong>Nope,</strong> Basecamp replaces a whole set of separate products and saves you a ton of money. Basecamp has chat built in (no more Slack). Basecamp has exceptional task management in the form of to-dos and kanban-style Card Tables (no more Asana). And you can store and share all the files you need in a project (no more Dropbox). Basecamp also replaces document-based tools like Google Docs, Notion, etc. And yet, if you need to continue to use some of those tools, you can always link them up right from inside Basecamp using the Doors feature.</p>
661
+ </article>
662
+ </details>
663
+
664
+ <details id="who-uses-basecamp">
665
+ <summary>
666
+ <p>What kind of companies, in which industries, use Basecamp?</p>
667
+ </summary>
668
+ <article>
669
+ <p>Basecamp is used by top notch marketers, ad agencies, designers, client services firms, consultants, software developers, freelancers, PR agencies, contractors, religious institutions, schools, non-profits, first responders, and many others. Over 75,000 organizations, across every industry imaginable, in 166 countries, use Basecamp for project management.</p>
670
+ <p>Our customers are primarily small or medium-sized companies with fewer than 100 full-time employees, but Basecamp is also used by teams inside many of the world’s largest companies.</p>
671
+ </article>
672
+ </details>
673
+
674
+ <details id="classes" class="data-classes data-classes--details" data-classes-limit="6">
675
+ <summary>
676
+ <p>Do you offer classes to learn more about Basecamp?</p>
677
+ </summary>
678
+ <article>
679
+ <p><strong>Yes, see our upcoming classes below.</strong> We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask. We’ll teach you the basics of using Basecamp, with plenty of time set aside for questions.<span class="data-classes__link"> <a href="../classes/index.html">See all our upcoming classes</a>.</span></p>
680
+ <div class="data-classes__output"></div>
681
+ </article>
682
+ </details>
683
+
684
+ </div>
685
+
686
+ <div class="marquee marquee--left space-bottom--xxx-large space-top--xx-large">
687
+
688
+ <a href="../customers/index.html" aria-hidden="true" tabindex="-1">
689
+ <ul>
690
+
691
+
692
+
693
+
694
+
695
+ <li>“Extremely user friendly”</li>
696
+
697
+
698
+
699
+ <li>“Truly amazing!”</li>
700
+
701
+
702
+
703
+ <li>“A godsend for our org”</li>
704
+
705
+
706
+
707
+ <li>“Simple, quick, powerful”</li>
708
+
709
+
710
+
711
+ <li>“So glad I found Basecamp”</li>
712
+
713
+
714
+
715
+ <li>“The perfect solution”</li>
716
+
717
+
718
+
719
+ <li>“Really great”</li>
720
+
721
+
722
+
723
+ <li>“Outstanding”</li>
724
+
725
+
726
+
727
+ <li>“Best app for teams”</li>
728
+
729
+
730
+
731
+ <li>“Awesome service”</li>
732
+
733
+
734
+
735
+ <li>“Gets better and better”</li>
736
+
737
+
738
+
739
+ <li>“Great collaboration tool”</li>
740
+
741
+
742
+
743
+ <li>“Great software”</li>
744
+
745
+
746
+
747
+ <li>“Gold standard PM app”</li>
748
+
749
+
750
+
751
+ <li>“Brilliant solution”</li>
752
+
753
+
754
+
755
+ <li>“Clean and easy to use”</li>
756
+
757
+
758
+
759
+ <li>“Fantastic app”</li>
760
+
761
+
762
+
763
+ <li>“Organized and on point”</li>
764
+
765
+
766
+
767
+ <li>“Extremely user friendly”</li>
768
+
769
+
770
+
771
+ <li>“Truly amazing!”</li>
772
+
773
+
774
+
775
+ <li>“A godsend for our org”</li>
776
+
777
+
778
+
779
+ <li>“Simple, quick, powerful”</li>
780
+
781
+
782
+
783
+ <li>“So glad I found Basecamp”</li>
784
+
785
+
786
+
787
+ <li>“The perfect solution”</li>
788
+
789
+
790
+
791
+ <li>“Really great”</li>
792
+
793
+
794
+
795
+ <li>“Outstanding”</li>
796
+
797
+
798
+
799
+ <li>“Best app for teams”</li>
800
+
801
+
802
+
803
+ <li>“Awesome service”</li>
804
+
805
+
806
+
807
+ <li>“Gets better and better”</li>
808
+
809
+
810
+
811
+ <li>“Great collaboration tool”</li>
812
+
813
+
814
+
815
+ <li>“Great software”</li>
816
+
817
+
818
+
819
+ <li>“Gold standard PM app”</li>
820
+
821
+
822
+
823
+ <li>“Brilliant solution”</li>
824
+
825
+
826
+
827
+ <li>“Clean and easy to use”</li>
828
+
829
+
830
+
831
+ <li>“Fantastic app”</li>
832
+
833
+
834
+
835
+ <li>“Organized and on point”</li>
836
+
837
+
838
+
839
+ </ul>
840
+ </a>
841
+
842
+
843
+ </div>
844
+
845
+
846
+ </main>
847
+
848
+ <footer class="footer">
849
+
850
+
851
+
852
+
853
+
854
+ <div class="footer__apps" id="apps">
855
+ <dl class="footer__headline">
856
+ <dt>Basecamp’s everywhere</dt>
857
+ <dd>Mac, Windows, iOS, Android, and on the web — Basecamp is ready <a href="../apps/index.html">whenever and wherever you are</a>.</dd>
858
+ </dl>
859
+ <ul>
860
+ <li><a class="button button--icon button--pwa" href="https://3.basecamp-help.com/article/937-basecamp-pwa" title="Install Basecamp on Mac and Windows">Desktop apps</a></li>
861
+ <li><a class="button button--icon button--ios" href="https://apps.apple.com/us/app/basecamp-project-management/id1015603248" title="Install Basecamp on iOS">iOS</a></li>
862
+ <li><a class="button button--icon button--android" href="https://play.google.com/store/apps/details?id=com.basecamp.bc3" title="Install Basecamp on Android">Android</a></li>
863
+ <li><a class="button button--icon button--basecamp" href="https://launchpad.37signals.com/signin" title="Use Basecamp in your web browser" target="_blank" data-controller="signup" data-action="signup#trackLogin">Sign in to Basecamp</a></li>
864
+ </ul>
865
+ </div>
866
+
867
+
868
+
869
+
870
+
871
+ <div class="footer__classes data-classes" data-classes-limit="4">
872
+ <dl class="footer__headline">
873
+ <dt>Join us for a free live class</dt>
874
+ <dd>We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask.<span class="data-classes__link"> <a href="../classes/index.html">See all our upcoming classes</a>.</span></dd>
875
+ </dl>
876
+ <div class="data-classes__output"></div>
877
+ </div>
878
+
879
+
880
+
881
+
882
+
883
+ <div class="footer__newsletter">
884
+ <dl class="footer__headline">
885
+ <dt>Never miss an update</dt>
886
+ <dd>Join more than 150,000 people who get <a href="../newsletter/index.html">our newsletter</a>. We’ll share product updates, thoughts, new releases, and other tidbits we think you’ll find interesting.</dd>
887
+ </dl>
888
+ <div class="newsletter">
889
+ <div class="newsletter__container">
890
+ <form novalidate action="https://basecamp.us2.list-manage.com/subscribe/post-json?u=2a145c60b16248b65e46a799a&amp;id=476312b66e&amp;c=?" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form">
891
+ <div aria-hidden="true" style="position: absolute; left: -5000px;"><input type="text" name="b_2a145c60b16248b65e46a799a_476312b66e" value="" tabindex="-1" aria-label="mce"></div>
892
+ <input type="hidden" name="tags" value="23018">
893
+ <input type="email" name="EMAIL" value="" id="mce-EMAIL" placeholder="julie.young@hey.com" aria-label="Your email address" required data-1p-ignore>
894
+ <button type="submit" name="subscribe" id="mc-embedded-subscribe">Subscribe</button>
895
+ </form>
896
+ </div>
897
+ </div>
898
+ </div>
899
+
900
+
901
+
902
+
903
+
904
+ <div class="footer__support">
905
+ <dl class="footer__headline">
906
+ <dt>We’re here to help with 24/7/365 support</dt>
907
+ <dd>There are no stupid questions — for pre-sales questions, existing customers who need a hand, or any other inquiries, <a href="../support/index.html">contact us</a> and we’ll get back to you within an hour. <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">Watch tutorials</a>, <a href="../help/index.html">read the help guides</a>, or <a href="../support/index.html">send us a message</a> to get help.</dd>
908
+ </dl>
909
+
910
+
911
+
912
+ <div class="footer__hey">
913
+ <a href="https://www.hey.com" target="_blank">
914
+ <span>If you love Basecamp, you’ll love <strong>HEY</strong> — our delightfully fresh take on email + calendar</span>
915
+ </a>
916
+ </div>
917
+
918
+
919
+
920
+ </div>
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+ <div class="footer__links">
929
+ <dl class="footer__headline">
930
+ <dt>And there’s more&hellip;</dt>
931
+ <dd>
932
+
933
+
934
+
935
+ <a href="../new/index.html" aria-label="What’s new">What’s new</a> •
936
+
937
+
938
+
939
+ <a href="../paths/index.html" aria-label="The people’s path to Basecamp">The people’s path to Basecamp</a> •
940
+
941
+
942
+
943
+ <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18" aria-label="Books we’ve written">Books we’ve written</a> •
944
+
945
+
946
+
947
+ <a href="../about/index.html" aria-label="Where we came from">Where we came from</a> •
948
+
949
+
950
+
951
+ <a href="../guides/how-we-communicate/index.html" aria-label="How we communicate">How we communicate</a> •
952
+
953
+
954
+
955
+ <a href="../guides/how-we-make-decisions/index.html" aria-label="How we make decisions">How we make decisions</a> •
956
+
957
+
958
+
959
+ <a href="../guides/why-we-choose-profit/index.html" aria-label="Why we choose profit">Why we choose profit</a> •
960
+
961
+
962
+
963
+ <a href="../guides/group-chat-problems/index.html" aria-label="Group chat problems">Group chat problems</a> •
964
+
965
+
966
+
967
+ <a href="../guides/seven-shipping-principles/index.html" aria-label="Seven shipping principles">Seven shipping principles</a> •
968
+
969
+
970
+
971
+ <a href="../underdogs/index.html" aria-label="We stand with the underdogs">We stand with the underdogs</a> •
972
+
973
+
974
+
975
+ <a href="../small/index.html" aria-label="Come small, come all">Come small, come all</a> •
976
+
977
+
978
+
979
+ <a href="../overkill/index.html" aria-label="Kill overkill">Kill overkill</a> •
980
+
981
+
982
+
983
+ <a href="../cloud-exit/index.html" aria-label="Leaving the Cloud">Leaving the Cloud</a> •
984
+
985
+
986
+
987
+ <a href="../before-and-after/index.html" aria-label="Night &amp; day">Night &amp; day</a> •
988
+
989
+
990
+
991
+ <a href="../hill-charts/index.html" aria-label="See where projects really stand">See where projects really stand</a> •
992
+
993
+
994
+
995
+ <a href="../justletmedomyjob/index.html" aria-label="JUST LET ME DO MY JOB">JUST LET ME DO MY JOB</a> •
996
+
997
+
998
+
999
+ <a href="../customers/index.html" aria-label="What changed for the better?">What changed for the better?</a> •
1000
+
1001
+
1002
+
1003
+ <a href="../integrations/index.html" aria-label="Integrations">Integrations</a> •
1004
+
1005
+
1006
+
1007
+ <a href="../accessibility/index.html" aria-label="Basecamp is for everyone">Basecamp is for everyone</a> •
1008
+
1009
+
1010
+
1011
+ <a href="../community/index.html" aria-label="Basecamp community">Basecamp community</a> •
1012
+
1013
+
1014
+
1015
+ <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14" aria-label="Learn Basecamp">Learn Basecamp</a> •
1016
+
1017
+
1018
+
1019
+ <a href="../handbook" aria-label="Employee handbook">Employee handbook</a>
1020
+
1021
+
1022
+
1023
+ </dd>
1024
+ </dl>
1025
+ </div>
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+
1033
+ <div class="footer__legal">
1034
+ <p>
1035
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
1036
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
1037
+ <strong>Basecamp</strong>
1038
+ </a>
1039
+ <span>is designed, built, and backed by</span>
1040
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
1041
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
1042
+ <strong>37signals</strong>
1043
+ </a>
1044
+ </p>
1045
+ <ul>
1046
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
1047
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
1048
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
1049
+ <li>&copy; 2025 37signals LLC</li>
1050
+ </ul>
1051
+ </div>
1052
+ </footer>
1053
+
1054
+
1055
+ <dialog class="modal">
1056
+ <div class="modal__backdrop"></div>
1057
+ <div class="modal__container"></div>
1058
+ </dialog>
1059
+
1060
+
1061
+ </body>
1062
+
1063
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/features/move-the-needle ADDED
@@ -0,0 +1,1063 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ <head>
14
+
15
+ <!-- online collaboration: Basecamp -->
16
+
17
+ <title>Basecamp: Project management software, online collaboration</title>
18
+
19
+ <meta charset="utf-8">
20
+ <meta content="ie=edge" http-equiv="x-ua-compatible">
21
+ <meta name="handheldfriendly" content="true">
22
+ <meta name="viewport" content="initial-scale=1, width=device-width">
23
+ <meta name="description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
24
+ <meta name="robots" content="noodp">
25
+
26
+ <meta property="og:site_name" content="Basecamp">
27
+ <meta property="og:title" content="Project management software, online collaboration">
28
+ <meta property="og:description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
29
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405">
30
+ <meta property="og:url" content="https://basecamp.com/">
31
+ <meta property="og:type" content="website">
32
+
33
+ <meta name="twitter:title" content="Project management software, online collaboration">
34
+ <meta name="twitter:description" content="Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.">
35
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405">
36
+ <meta name="twitter:card" content="summary_large_image">
37
+ <meta name="twitter:creator" content="@basecamp">
38
+ <meta name="twitter:site" content="@basecamp">
39
+ <meta name="twitter:image:alt" content="Basecamp">
40
+
41
+ <meta name="msvalidate.01" content="A5371071ED21978C32097632D5DA73B8">
42
+
43
+ <script type="application/ld+json">
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "WebPage",
47
+ "mainEntityOfPage": {
48
+ "@type": "WebPage",
49
+ "@id": "https://basecamp.com/"
50
+ },
51
+ "name": "Basecamp",
52
+ "headline": "Project management software, online collaboration",
53
+ "description": "Trusted by millions, Basecamp puts everything you need to get work done in one place. It’s the calm, organized way to manage projects, work with clients, and communicate company-wide.",
54
+ "url": "https://basecamp.com/",
55
+ "image": "https://basecamp.com/assets/images/opengraph/basecamp.png?1755033405"
56
+ }
57
+ </script>
58
+
59
+ <script type="application/ld+json">
60
+ {
61
+ "@context": "https://schema.org",
62
+ "@type": "WebSite",
63
+ "name": "Basecamp",
64
+ "url": "https://basecamp.com"
65
+ }
66
+ </script>
67
+
68
+ <link rel="canonical" href="../enterprise-extravaganza">
69
+ <link rel="icon" href="../assets/images/general/favicon.ico">
70
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
71
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
72
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
73
+ <link rel="stylesheet" href="../assets/css/style.css?1755033405" type="text/css">
74
+
75
+
76
+
77
+ <script>phrase = [{"phrase": "famously straightforward"},{"phrase": "refreshingly clear"},{"phrase": "no-nonsense"},{"phrase": "amazingly intuitive"},{"phrase": "refreshingly simple"},{"phrase": "wonderfully efficient"},{"phrase": "simply powerful"},{"phrase": "especially practical"},{"phrase": "delightfully direct"},{"phrase": "super organized"},{"phrase": "down-to-earth"}];</script>
78
+
79
+ <script src="../assets/js/packages/cookie.js?1755033405"></script>
80
+ <script src="../assets/js/application.js?1755033405" type="module"></script>
81
+ <script src="../assets/js/script.js?1755033405" type="module"></script>
82
+
83
+
84
+
85
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
86
+
87
+
88
+
89
+ </head>
90
+
91
+
92
+ <body class="body has-nav-phrase" data-controller="tracking engagement">
93
+
94
+ <div class="tracking tracking--hidden" aria-hidden="true" data-tracking-target="permissionDialog">
95
+ <div class="tracking__container">
96
+ <div class="tracking__content">
97
+ <p>We’d like to use cookies to help understand if our ads are working or not.</p>
98
+ </div>
99
+ <div class="tracking__buttons">
100
+ <button class="deny" data-action="tracking#deny">No</button>
101
+ <button class="grant" data-action="tracking#grant">Yes, that’s fine</button>
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+
107
+
108
+
109
+ <input id="nav-active" type="checkbox">
110
+
111
+ <label id="nav-underlay" for="nav-active"></label>
112
+
113
+ <nav class="nav">
114
+ <div class="nav__container">
115
+ <div class="nav__logo">
116
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
117
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
118
+ <strong>Basecamp</strong>
119
+ </a>
120
+ <div class="nav__phrase">is the <span class="highlight"></span> <strong>project management system</strong> by</div>
121
+ <b class="icon icon--37signals">
122
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
123
+ <strong>37signals</strong>
124
+ </b>
125
+ </div>
126
+ <div class="nav__links">
127
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
128
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
129
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
130
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
131
+ </div>
132
+ <div class="nav__buttons">
133
+ <a class="nav__button nav__button--launchpad" href="https://launchpad.37signals.com/signin" target="_blank" data-controller="signup" data-action="signup#trackLogin" aria-label="Sign in">Sign in</a>
134
+ <a class="nav__button nav__button--signup trk-package" id="sign-up-nav" href="../pricing/index.html#packages" aria-label="Sign up free">Sign up free</a>
135
+ </div>
136
+ <label class="nav__toggle" for="nav-active" aria-label="Nav Toggle" tabindex="0"></label>
137
+ </div>
138
+ <div class="nav__mobile">
139
+ <a href="../customers/index.html" aria-label="Real world results">Real world results</a>
140
+ <a href="../enterprise-extravaganza#features" aria-label="Features">Features</a>
141
+ <a href="../paths/index.html" aria-label="Paths">Paths</a>
142
+ <a href="../pricing/index.html" aria-label="Pricing">Pricing</a>
143
+ </div>
144
+ </nav>
145
+
146
+
147
+
148
+
149
+ <main class="main">
150
+
151
+ <div class="illustration space-bottom--large">
152
+ <picture>
153
+ <source srcset="/assets/images/home/illustration-desktop.png" media="(min-width: 48em)">
154
+ <img src="../assets/images/home/illustration-mobile.png" alt="Wrestling with projects? It doesn’t have to be this hard.">
155
+ </picture>
156
+ </div>
157
+
158
+ <div class="columns">
159
+ <section>
160
+ <header>
161
+ <h1>Wrestling with projects?<br> It doesn’t have to be this hard.</h1>
162
+ </header>
163
+ <article>
164
+ <div>
165
+ <p>There are lots of ways to manage projects. And there’s plenty of software promising to help. You’ve probably tried some. Yet, here you are.</p>
166
+ <p><strong>Unfortunately, most project management systems are either overwhelming, inadequate, bewildering, or chaotic. You know?</strong></p>
167
+ <p>Not Basecamp. Basecamp is refreshingly straightforward, with a 21-year track record to back it up. Longevity isn’t luck — it’s proof it works. And you’ll work better with it too.</p>
168
+ </div>
169
+ <div>
170
+ <p><strong>Basecamp is famously no-nonsense, effective, and reliable.</strong> The trifecta. It’s <a href="../underdogs/index.html">designed for smaller, hungrier businesses</a>, not big, sluggish ones. <a href="../customers/index.html">Over 30 pages of customer testimonials</a> detail how things run better on Basecamp.</p>
171
+ <p>So, we invite you to poke around, watch the video below, and <a href="../pricing/index.html#packages">try Basecamp for free</a>. We’d be honored to have you as a customer. Thank you.</p>
172
+ <dl>
173
+ <dt><strong>Jason Fried</strong>, <a href="mailto:jason@basecamp.com">jason@basecamp.com</a></dt>
174
+ <dd><em>Co-founder &amp; CEO</em></dd>
175
+ </dl>
176
+ </div>
177
+ </article>
178
+ </section>
179
+ </div>
180
+
181
+ <div class="visual visual--walkthrough space-top--xxx-large">
182
+ <div class="visual__column">
183
+ <button class="visual__button modal-trigger" id="walkthrough-columns" data-type="video" data-event="Walkthrough: Columns" data-src="/videos/home/walkthrough.mp4" data-track="/videos/home/walkthrough.vtt">
184
+ <figure class="visual__figure">
185
+ <img src="../videos/home/walkthrough-small.webp" width="2400" height="1326" alt="See how Basecamp works">
186
+ <span aria-hidden="true">Hit play to see how Basecamp is different</span>
187
+ </figure>
188
+ <div class="visual__play"></div>
189
+ </button>
190
+ </div>
191
+ </div>
192
+
193
+ <div class="statement space-top--xxx-large">
194
+ <section>
195
+ <header>
196
+ <h2 id="features"><a href="../enterprise-extravaganza#features">Let’s walk through it.</a></h2>
197
+ </header>
198
+ </section>
199
+ </div>
200
+
201
+ <div class="headline space-top--large">
202
+ <header>
203
+ <h3 id="home"><a href="../enterprise-extravaganza#home">10 seconds after you sign up, clarity sets in.</a></h3>
204
+ </header>
205
+ <article>
206
+ <p>The home screen organizes your projects, assignments, and upcoming events together on one screen. It’s your calm, comfortable, simple starting point every morning.</p>
207
+ </article>
208
+ </div>
209
+
210
+ <div class="visual space-top--large">
211
+ <div class="visual__column visual__column--4">
212
+ <button class="visual__button modal-trigger" id="whats-my-week-look-like" data-type="video" data-event="Home: What’s my week look like?" data-src="/videos/home/whats-my-week-look-like.mp4" data-track="/videos/home/whats-my-week-look-like.vtt">
213
+ <figure class="visual__figure">
214
+ <img src="../videos/home/whats-my-week-look-like.webp" width="1260" height="1116" alt="View your schedule" loading="lazy">
215
+ <span aria-hidden="true">What’s my week look like?</span>
216
+ </figure>
217
+ <div class="visual__play"></div>
218
+ </button>
219
+ <button class="visual__button modal-trigger" id="whats-on-my-plate-today" data-type="video" data-event="Home: What’s on my plate today?" data-src="/videos/home/whats-on-my-plate-today.mp4" data-track="/videos/home/whats-on-my-plate-today.vtt">
220
+ <figure class="visual__figure">
221
+ <img src="../videos/home/whats-on-my-plate-today.webp" width="1260" height="1116" alt="View your assignments" loading="lazy">
222
+ <span aria-hidden="true">What’s on my plate today?</span>
223
+ </figure>
224
+ <div class="visual__play"></div>
225
+ </button>
226
+ <aside class="visual__aside" aria-label="Home">
227
+ <p><strong>Each person gets their own home screen depending on which projects they have access to.</strong> They’ll only see their own assignments and events. And you can keep important projects close at hand by pinning them to the top.</p>
228
+ </aside>
229
+ </div>
230
+ <div class="visual__column visual__column--8">
231
+ <button class="visual__button modal-trigger" id="which-projects-am-i-on" data-type="video" data-event="Home: Which projects am I on?" data-src="/videos/home/which-projects-am-i-on.mp4" data-track="/videos/home/which-projects-am-i-on.vtt">
232
+ <figure class="visual__figure">
233
+ <img src="../videos/home/which-projects-am-i-on.webp" width="2400" height="2854" alt="View projects on the home screen" loading="lazy">
234
+ <span aria-hidden="true">Which projects am I on?</span>
235
+ </figure>
236
+ <div class="visual__play"></div>
237
+ </button>
238
+ </div>
239
+ </div>
240
+
241
+ <div class="headline space-top--xxx-large">
242
+ <header>
243
+ <h3 id="projects"><a href="../enterprise-extravaganza#projects">Projects get teams — and keep teams — organized.</a></h3>
244
+ </header>
245
+ <article>
246
+ <p>A project is where the tasks, discussions, deliverables, and decisions happen. Projects hold everything — and everyone — together in one tidy, predictably structured place.</p>
247
+ </article>
248
+ </div>
249
+
250
+ <div class="visual space-top--large">
251
+ <div class="visual__column visual__column--6">
252
+ <button class="visual__button modal-trigger" id="all-in-one-toolbox" data-type="video" data-event="Projects: A project page organizes everything" data-src="/videos/home/all-in-one-toolbox.mp4" data-track="/videos/home/all-in-one-toolbox.vtt">
253
+ <figure class="visual__figure">
254
+ <img src="../videos/home/all-in-one-toolbox.webp" width="2400" height="2582" alt="A Basecamp project page" loading="lazy">
255
+ <span aria-hidden="true">A project page organizes everything</span>
256
+ </figure>
257
+ <div class="visual__play"></div>
258
+ </button>
259
+ <aside class="visual__aside" aria-label="Projects">
260
+ <p><strong>Make as many projects as you’d like.</strong> We run dozens at once in our own Basecamp account. For example, one for a web site redesign, <a href="../enterprise-extravaganza#organizing-a-meet-up" class="modal-trigger" id="organizing-a-meet-up" data-type="video" data-event="Organizing a Meet-up" data-src="/videos/organizing-a-meet-up/organizing-a-meet-up.mp4">one for planning an upcoming offsite</a>, one for working with our accountants, and one just for the executive team to plan strategy, etc.</p>
261
+ </aside>
262
+ </div>
263
+ <div class="visual__column visual__column--6 visual__column--grid">
264
+ <button class="visual__button modal-trigger" id="track-tasks" data-type="video" data-event="Projects: What to do + who’s doing?" data-src="/videos/home/track-tasks.mp4" data-track="/videos/home/track-tasks.vtt">
265
+ <figure class="visual__figure">
266
+ <img src="../assets/images/screenshots/to-dos-thumbnail.webp" width="1200" height="900" alt="Track work with To-dos" loading="lazy">
267
+ <span aria-hidden="true">What to do + who’s doing?</span>
268
+ </figure>
269
+ <div class="visual__play"></div>
270
+ </button>
271
+ <button class="visual__button modal-trigger" id="launch-discussions" data-type="video" data-event="Projects: Who said what when?" data-src="/videos/home/launch-discussions.mp4" data-track="/videos/home/launch-discussions.vtt">
272
+ <figure class="visual__figure">
273
+ <img src="../assets/images/screenshots/message-board-thumbnail.webp" width="1200" height="900" alt="Stay on topic with Messages" loading="lazy">
274
+ <span aria-hidden="true">Who said what when?</span>
275
+ </figure>
276
+ <div class="visual__play"></div>
277
+ </button>
278
+ <button class="visual__button modal-trigger" id="set-milestones" data-type="video" data-event="Projects: What’s due next?" data-src="/videos/home/set-milestones.mp4" data-track="/videos/home/set-milestones.vtt">
279
+ <figure class="visual__figure">
280
+ <img src="../assets/images/screenshots/schedule-thumbnail.webp" width="1200" height="900" alt="Schedule so you don’t forget" loading="lazy">
281
+ <span aria-hidden="true">What’s due next?</span>
282
+ </figure>
283
+ <div class="visual__play"></div>
284
+ </button>
285
+ <button class="visual__button modal-trigger" id="store-assets" data-type="video" data-event="Projects: Where’s the latest version?" data-src="/videos/home/store-assets.mp4" data-track="/videos/home/store-assets.vtt">
286
+ <figure class="visual__figure">
287
+ <img src="../assets/images/screenshots/docs-and-files-thumbnail.webp" width="1200" height="900" alt="Store, share, and discuss files" loading="lazy">
288
+ <span aria-hidden="true">Where’s the latest version?</span>
289
+ </figure>
290
+ <div class="visual__play"></div>
291
+ </button>
292
+ <button class="visual__button modal-trigger" id="hash-stuff-out" data-type="video" data-event="Projects: Got a quick question?" data-src="/videos/home/hash-stuff-out.mp4" data-track="/videos/home/hash-stuff-out.vtt">
293
+ <figure class="visual__figure">
294
+ <img src="../assets/images/screenshots/chat-thumbnail.webp" width="1200" height="900" alt="Chat around the campfire" loading="lazy">
295
+ <span aria-hidden="true">Got a quick question?</span>
296
+ </figure>
297
+ <div class="visual__play"></div>
298
+ </button>
299
+ <button class="visual__button modal-trigger" id="run-workflows" data-type="video" data-event="Projects: How’s the process flowing?" data-src="/videos/home/run-workflows.mp4" data-track="/videos/home/run-workflows.vtt">
300
+ <figure class="visual__figure">
301
+ <img src="../assets/images/screenshots/card-table-thumbnail.webp" width="1200" height="900" alt="Card Table is our unique take on Kanban" loading="lazy">
302
+ <span aria-hidden="true">How’s the process flowing?</span>
303
+ </figure>
304
+ <div class="visual__play"></div>
305
+ </button>
306
+ </div>
307
+ </div>
308
+
309
+ <div class="headline space-top--xxx-large">
310
+ <header>
311
+ <h3 id="reports"><a href="../enterprise-extravaganza#reports">Reports give you confidence to hold people accountable.</a></h3>
312
+ </header>
313
+ <article>
314
+ <p>Basecamp’s reports aren’t numbers, percentages, or abstract representations — they’re the real work, actual evidence of progress being made (or not made).</p>
315
+ </article>
316
+ </div>
317
+
318
+ <div class="visual space-top--large">
319
+ <div class="visual__column visual__column--4">
320
+ <button class="visual__button modal-trigger" id="whats-overdue" data-type="video" data-event="Reports: What’s overdue?" data-src="/videos/home/whats-overdue.mp4" data-track="/videos/home/whats-overdue.vtt">
321
+ <figure class="visual__figure">
322
+ <img src="../videos/home/whats-overdue.webp" width="1796" height="1304" alt="See everything that’s overdue" loading="lazy">
323
+ <span aria-hidden="true">What’s overdue?</span>
324
+ </figure>
325
+ <div class="visual__play"></div>
326
+ </button>
327
+ <button class="visual__button modal-trigger" id="how-much-time-have-we-spent" data-type="video" data-event="Reports: How much time have we spent?" data-src="/videos/home/how-much-time-have-we-spent.mp4" data-track="/videos/home/how-much-time-have-we-spent.vtt">
328
+ <figure class="visual__figure">
329
+ <img src="../videos/home/how-much-time-have-we-spent.webp" width="1796" height="1304" alt="Track time directly in Basecamp" loading="lazy">
330
+ <span aria-hidden="true">How much time have we spent?</span>
331
+ </figure>
332
+ <div class="visual__play"></div>
333
+ </button>
334
+ <button class="visual__button modal-trigger" id="whos-responsible-for-what" data-type="video" data-event="Reports: Who’s responsible for what?" data-src="/videos/home/whos-responsible-for-what.mp4" data-track="/videos/home/whos-responsible-for-what.vtt">
335
+ <figure class="visual__figure">
336
+ <img src="../videos/home/whos-responsible-for-what.webp" width="1796" height="1304" alt="Reports quickly cut across every project to give you quick insights" loading="lazy">
337
+ <span aria-hidden="true">Who’s responsible for what?</span>
338
+ </figure>
339
+ <div class="visual__play"></div>
340
+ </button>
341
+ </div>
342
+ <div class="visual__column visual__column--8">
343
+ <button class="visual__button modal-trigger" id="whats-actually-been-happening" data-type="video" data-event="Reports: What’s actually been happening?" data-src="/videos/home/whats-actually-been-happening.mp4" data-track="/videos/home/whats-actually-been-happening.vtt">
344
+ <figure class="visual__figure">
345
+ <img src="../videos/home/whats-actually-been-happening.webp" width="2400" height="3028" alt="The micro-view of everything that happens across every project in real-time" loading="lazy">
346
+ <span aria-hidden="true">What’s actually been happening?</span>
347
+ </figure>
348
+ <div class="visual__play"></div>
349
+ </button>
350
+ </div>
351
+ </div>
352
+
353
+ <div class="headline space-top--xxx-large">
354
+ <header>
355
+ <h3 id="visualizations"><a href="../enterprise-extravaganza#visualizations">Visualizations are for seeing, not squinting.</a></h3>
356
+ </header>
357
+ <article>
358
+ <p>Basecamp’s Lineup, Mission Control, and Hill Charts are visual tools that help you clearly see where projects really stand. Notice progress at a glance, know reality in an instant.</p>
359
+ </article>
360
+ </div>
361
+
362
+ <div class="visual space-top--large">
363
+ <div class="visual__column">
364
+ <button class="visual__button modal-trigger" id="how-far-along-are-we" data-type="video" data-event="Visualizations: How far along are we?" data-src="/videos/home/how-far-along-are-we.mp4" data-track="/videos/home/how-far-along-are-we.vtt">
365
+ <figure class="visual__figure">
366
+ <img src="../videos/home/how-far-along-are-we.webp" width="3008" height="1504" alt="The Lineup shows you where every project stands, from start to finish, all at once" loading="lazy">
367
+ <span aria-hidden="true">How far along are we?</span>
368
+ </figure>
369
+ <div class="visual__play"></div>
370
+ </button>
371
+ </div>
372
+ <div class="visual__column visual__column--grid">
373
+ <button class="visual__button modal-trigger" id="how-are-we-feeling" data-type="video" data-event="Visualizations: How are we feeling?" data-src="/videos/home/how-are-we-feeling.mp4" data-track="/videos/home/how-are-we-feeling.vtt">
374
+ <figure class="visual__figure">
375
+ <img src="../videos/home/how-are-we-feeling.webp" width="2400" height="1434" alt="Mission Control shows you which projects are on track and which ones need a helping hand" loading="lazy">
376
+ <span aria-hidden="true">How are we feeling?</span>
377
+ </figure>
378
+ <div class="visual__play"></div>
379
+ </button>
380
+ <button class="visual__button modal-trigger" id="what-still-needs-to-be-figured-out" data-type="video" data-event="Visualizations: What still needs to be figured out?" data-src="/videos/home/what-still-needs-to-be-figured-out.mp4" data-track="/videos/home/what-still-needs-to-be-figured-out.vtt">
381
+ <figure class="visual__figure">
382
+ <img src="../videos/home/what-still-needs-to-be-figured-out.webp" width="2400" height="1434" alt="Hill Charts visually display the progress of your To-do list" loading="lazy">
383
+ <span aria-hidden="true">What still needs to be figured out?</span>
384
+ </figure>
385
+ <div class="visual__play"></div>
386
+ </button>
387
+ </div>
388
+ </div>
389
+
390
+ <div class="headline space-top--xxx-large">
391
+ <header>
392
+ <h3 id="notifications"><a href="../enterprise-extravaganza#notifications">Ping! Hey! It’s for you.</a></h3>
393
+ </header>
394
+ <article>
395
+ <p>The Hey! menu aggregates your notifications in a never-annoying single menu. And “Pings”, our flavor of direct messages, let you kick off ad hoc chats 1:1 or in small groups.</p>
396
+ </article>
397
+ </div>
398
+
399
+ <div class="visual space-top--large">
400
+ <div class="visual__column visual__column--5">
401
+ <button class="visual__button modal-trigger" id="have-private-1-1-or-small-group-conversations" data-type="video" data-event="Notifications: Have private 1-1 or small group conversations" data-src="/videos/home/have-private-1-1-or-small-group-conversations.mp4" data-track="/videos/home/have-private-1-1-or-small-group-conversations.vtt">
402
+ <figure class="visual__figure">
403
+ <img src="../videos/home/have-private-1-1-or-small-group-conversations.webp" width="2400" height="1830" alt="Pings let you kick off ad hoc chats 1:1 or in small groups" loading="lazy">
404
+ <span aria-hidden="true">Have private 1-1 or small group conversations</span>
405
+ </figure>
406
+ <div class="visual__play"></div>
407
+ </button>
408
+ <aside class="visual__aside" aria-label="Notifications">
409
+ <p><strong>Don’t have work chats via text or Whatsapp on your personal phone number.</strong> Keep work at work by having them in Basecamp instead.</p>
410
+ </aside>
411
+ </div>
412
+ <div class="visual__column visual__column--7">
413
+ <button class="visual__button modal-trigger" id="notifications-in-one-place" data-type="video" data-event="Notifications: Notifications in one place, not in your face" data-src="/videos/home/notifications-in-one-place.mp4" data-track="/videos/home/notifications-in-one-place.vtt">
414
+ <figure class="visual__figure">
415
+ <img src="../videos/home/notifications-in-one-place.webp" width="2400" height="1830" alt="The Hey! menu aggregates all your notifications in a single menu" loading="lazy">
416
+ <span aria-hidden="true">Notifications in one place, not in your face</span>
417
+ </figure>
418
+ <div class="visual__play"></div>
419
+ </button>
420
+ </div>
421
+ </div>
422
+
423
+ <div class="headline space-top--xxx-large">
424
+ <header>
425
+ <h3 id="clients"><a href="../enterprise-extravaganza#clients">Got clients? Be partners, not adversaries.</a></h3>
426
+ </header>
427
+ <article>
428
+ <p>Basecamp keeps both sides organized, everyone’s feedback on the record, and all decisions, approvals, files, tasks, deadlines, and communications safe and centralized.</p>
429
+ </article>
430
+ </div>
431
+
432
+ <div class="visual space-top--large">
433
+ <div class="visual__column visual__column--grid">
434
+ <button class="visual__button modal-trigger" id="you-decide-what-clients-can-see" data-type="video" data-event="Clients: Can the client see this?" data-src="/videos/home/you-decide-what-clients-can-see.mp4" data-track="/videos/home/you-decide-what-clients-can-see.vtt">
435
+ <figure class="visual__figure">
436
+ <img src="../videos/home/you-decide-what-clients-can-see.webp" width="2400" height="1424" alt="You decide what your clients can see" loading="lazy">
437
+ <span aria-hidden="true">Can the client see this?</span>
438
+ </figure>
439
+ <div class="visual__play"></div>
440
+ </button>
441
+ <button class="visual__button modal-trigger" id="three-folders-for-you-one-for-them" data-type="video" data-event="Clients: Where’s the final version so we can show the client?" data-src="/videos/home/three-folders-for-you-one-for-them.mp4" data-track="/videos/home/three-folders-for-you-one-for-them.vtt">
442
+ <figure class="visual__figure">
443
+ <img src="../videos/home/three-folders-for-you-one-for-them.webp" width="2400" height="1424" alt="Let clients grab the files they need without having to ask" loading="lazy">
444
+ <span aria-hidden="true">Where’s the final version so we can show the client?</span>
445
+ </figure>
446
+ <div class="visual__play"></div>
447
+ </button>
448
+ <button class="visual__button modal-trigger" id="keep-approvals-on-the-official-record" data-type="video" data-event="Clients: Did the client officially approve it?" data-src="/videos/home/keep-approvals-on-the-official-record.mp4" data-track="/videos/home/keep-approvals-on-the-official-record.vtt">
449
+ <figure class="visual__figure">
450
+ <img src="../videos/home/keep-approvals-on-the-official-record.webp" width="2400" height="2108" alt="Keep client feedback on the official record" loading="lazy">
451
+ <span aria-hidden="true">Did the client officially approve it?</span>
452
+ </figure>
453
+ <div class="visual__play"></div>
454
+ </button>
455
+ <button class="visual__button modal-trigger" id="email-through-basecamp" data-type="video" data-event="Clients: Where’s the client’s email they sent?" data-src="/videos/home/email-through-basecamp.mp4" data-track="/videos/home/email-through-basecamp.vtt">
456
+ <figure class="visual__figure">
457
+ <img src="../videos/home/email-through-basecamp.webp" width="2400" height="2108" alt="Clients can respond to messages right from their inbox" loading="lazy">
458
+ <span aria-hidden="true">Where’s the client’s email they sent?</span>
459
+ </figure>
460
+ <div class="visual__play"></div>
461
+ </button>
462
+ </div>
463
+ </div>
464
+
465
+ <div class="headline space-top--xxx-large">
466
+ <header>
467
+ <h3 id="yes"><a href="../enterprise-extravaganza#yes">The answer is <span class="yes-label">YES!</span></a></h3>
468
+ </header>
469
+ <article>
470
+ <p>Can software be simple, straightforward, and easy, yet powerfully full-featured?<br> With Basecamp the answer is absolutely <strong>YES!</strong></p>
471
+ </article>
472
+ </div>
473
+
474
+ <div class="yes space-top--neutral">
475
+ <ul>
476
+ <li>Can I <strong>prevent our clients from seeing unfinished work?</strong></li>
477
+ <li>Can I <strong>link up files from Google Docs, Figma, Dropbox, Airtable, and other apps?</strong></li>
478
+ <li>Can I <strong>see everything I need to do on a single screen?</strong></li>
479
+ <li>Can I <strong>see everything that’s overdue on a single screen?</strong></li>
480
+ <li>Can I use Basecamp <strong>even if some of my team prefers just to use email?</strong></li>
481
+ <li>Can I <strong>see all the work that was completed on any given day?</strong></li>
482
+ <li>Can I <strong>set up projects that only some of my team can see?</strong></li>
483
+ <li>Can I <strong>see everything that’s happened across multiple projects in one place?</strong></li>
484
+ <li>Can I <strong>@mention someone so they’re notified about something?</strong></li>
485
+ <li>Can I <strong>see all the work someone’s done over a long period of time?</strong></li>
486
+ <li>Can I <strong>see everything that’s assigned to someone on a single page?</strong></li>
487
+ <li>Can I <strong>see exactly who worked on what today? Yesterday? Last week?</strong></li>
488
+ <li>Can I <strong>easily reference an entire conversation from a year ago?</strong></li>
489
+ <li>Can I <strong>follow a project quietly without receiving notifications?</strong></li>
490
+ <li>Can I <strong>assign tasks to multiple people at once?</strong></li>
491
+ <li>Can I <strong>see all our projects laid out on a visual timeline?</strong></li>
492
+ <li>Can I <strong>keep all the discussion about a to-do attached to that to-do?</strong></li>
493
+ <li>Can I <strong>follow-up directly with someone without anyone else knowing?</strong></li>
494
+ <li>Can <strong>our clients respond to our questions via email?</strong></li>
495
+ <li>Can <strong>our clients see a record of everything we’ve asked them?</strong></li>
496
+ <li>Can I <strong>organize ideas and setup workflows on a Kanban board?</strong></li>
497
+ <li>Can Basecamp <strong>tell me when someone completed an assignment?</strong></li>
498
+ <li>Can Basecamp <strong>help me get a client to approve a design?</strong></li>
499
+ <li>Can Basecamp <strong>help me hold my team accountable for deadlines?</strong></li>
500
+ <li>You <strong>wrote some <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18">books on how to run a business</a>, too, right?</strong></li>
501
+ </ul>
502
+ </div>
503
+
504
+ <div class="statement statement--gap-large space-top--xxx-large">
505
+ <section>
506
+ <header>
507
+ <h2 id="its-time"><a href="../enterprise-extravaganza#its-time">You wouldn’t be here if the<br> way you’ve been working was working. It’s time for Basecamp.</a></h2>
508
+ </header>
509
+ <article>
510
+ <p>Team super busy, but running in circles? <strong>It’s time for Basecamp.</strong> Finding stuff easy to start, but hard to finish? <strong>It’s time for Basecamp.</strong> Things taking longer than they should? <strong>It’s time for Basecamp.</strong> Info increasingly scattered across different apps? <strong>It’s time for Basecamp.</strong> Subscription fees keep adding up?<br> <strong>It’s time for Basecamp.</strong> Growing into dysfunction? <strong>It’s time for Basecamp.</strong> Tired of looking disorganized in front of clients? <strong class="highlight highlight--time">It’s time for Basecamp.</strong></p>
511
+ </article>
512
+ </section>
513
+ </div>
514
+
515
+ <div class="headline space-top--xxx-large">
516
+ <header>
517
+ <h3 id="company-faqs"><a href="../enterprise-extravaganza#company-faqs">I have questions about your company&hellip;</a></h3>
518
+ </header>
519
+ </div>
520
+
521
+ <div class="details space-top--medium">
522
+
523
+ <details id="trust">
524
+ <summary>
525
+ <p>How long have you been around? Can we trust you?</p>
526
+ </summary>
527
+ <article>
528
+ <p>The company that designed, owns, and operates Basecamp is called <a href="https://37signals.com" target="_blank">37signals</a>, and we’ve been around as a company since 1999. We launched Basecamp, the product, in 2004 and have been improving it weekly ever since. Running a sane, responsible, sustainable business is part of our commitment to you.</p>
529
+ <p>We’ve been <strong>profitable for 25 straight years, we have zero debt, we’re privately held, and built to stay, not exit.</strong> Our <a href="../handbook">employee handbook</a> is also public for everyone to see how we run our business and treat our employees.</p>
530
+ <p>We’ve also written a number of <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18">bestselling books</a> (REWORK, Remote, It Doesn’t Have to Be Crazy at Work) as well. The books detail how we’ve built, and run, such a unique, long-lasting company in a field full of sameness and short-term thinking.</p>
531
+ <p>You can email Jason Fried, our Co-Founder and CEO, any time at <a href="mailto:jason@basecamp.com">jason@basecamp.com</a>. He doesn’t have an assistant, so he’ll read and respond to your emails personally.</p>
532
+ </article>
533
+ </details>
534
+
535
+ <details id="uptime">
536
+ <summary>
537
+ <p>What about reliability and uptime?</p>
538
+ </summary>
539
+ <article>
540
+ <p>We can make endless promises, but the numbers are what matter here. Our historical uptime over multiple decades is well over 99.99%, and you can see recent real-time history on our <a href="https://www.37status.com" target="_blank">Status Page</a>.</p>
541
+ </article>
542
+ </details>
543
+
544
+ <details id="refunds">
545
+ <summary>
546
+ <p>What’s your refund policy like?</p>
547
+ </summary>
548
+ <article>
549
+ <p>We aim to be fair and reasonable, just as we’d want to be treated. <a href="https://37signals.com/policies/refund/" target="_blank">Our refund policy</a> reflects that.</p>
550
+ </article>
551
+ </details>
552
+
553
+ <details id="questions">
554
+ <summary>
555
+ <p>Can I ask ownership a question directly?</p>
556
+ </summary>
557
+ <article>
558
+ <p><strong>Absolutely.</strong> Our Co-Founder and CEO (Jason Fried) is available direct at <a href="mailto:jason@basecamp.com">jason@basecamp.com</a>, and our other Co-Founder and CTO (David Heinemeier Hansson) is at <a href="mailto:david@basecamp.com">david@basecamp.com</a>. Please do reach out. They don’t have assistants or anyone who reads their emails, so you’ll hear from them directly.</p>
559
+ </article>
560
+ </details>
561
+
562
+ </div>
563
+
564
+ <div class="headline space-top--x-large">
565
+ <header>
566
+ <h3 id="security-faqs"><a href="../enterprise-extravaganza#security-faqs">I have questions about security and our data&hellip;</a></h3>
567
+ </header>
568
+ </div>
569
+
570
+ <div class="details space-top--medium">
571
+
572
+ <details id="secure">
573
+ <summary>
574
+ <p>How secure is Basecamp?</p>
575
+ </summary>
576
+ <article>
577
+ <p>We have a <a href="https://37signals.com/policies/security/" target="_blank">full security write-up</a> available on the 37signals site. 37signals is the company behind Basecamp.</p>
578
+ </article>
579
+ </details>
580
+
581
+ <details id="backups">
582
+ <summary>
583
+ <p>Is our data backed up? How often?</p>
584
+ </summary>
585
+ <article>
586
+ <p>Data customers enter into Basecamp is stored in multiple, redundant data centers. That data is backed up several times a day, and copies of those backups are stored both locally and off-site to further reduce points of possible failure. Files customers upload are stored off-site and backed up to servers in a different geographic region.</p>
587
+ </article>
588
+ </details>
589
+
590
+ <details id="data-centers">
591
+ <summary>
592
+ <p>Where are the servers that store our data?</p>
593
+ </summary>
594
+ <article>
595
+ <p>Our servers are located in multiple data centers in the United States. We service customers from over 160 countries from these servers. We do not currently have data centers outside the US.</p>
596
+ </article>
597
+ </details>
598
+
599
+ <details id="custom-security-questionnaires">
600
+ <summary>
601
+ <p>Can you fill our custom security questionnaires?</p>
602
+ </summary>
603
+ <article>
604
+ <p>We don’t fill out custom security questionnaires, but we’ve <a href="https://37signals.com/policies/security/37signals%20Security%20Overview.pdf" target="_blank">prepared a summary security PDF</a> which you can provide to your IT staff.</p>
605
+ </article>
606
+ </details>
607
+
608
+ <details id="export-our-data">
609
+ <summary>
610
+ <p>Can I export our data if we ever want to leave?</p>
611
+ </summary>
612
+ <article>
613
+ <p><strong>Absolutely,</strong> you can do it as often as you’d like. Plus, it’s entirely self-service and easy so you don’t need to ask anyone for help or permission. Further, we provide it in a format that allows you to browse it in a web browser so it’s actually useful. <a href="https://3.basecamp-help.com/article/150-export-your-basecamp-data" target="_blank">Here’s how exporting works</a>.</p>
614
+ </article>
615
+ </details>
616
+
617
+ </div>
618
+
619
+ <div class="headline space-top--x-large">
620
+ <header>
621
+ <h3 id="other-faqs"><a href="../enterprise-extravaganza#other-faqs">I have other questions&hellip;</a></h3>
622
+ </header>
623
+ </div>
624
+
625
+ <div class="details space-top--medium">
626
+
627
+ <details id="api">
628
+ <summary>
629
+ <p>Does Basecamp have an API? Can we integrate with Basecamp?</p>
630
+ </summary>
631
+ <article>
632
+ <p><strong>Yes,</strong> <a href="https://github.com/basecamp/bc3-api" target="_blank">Basecamp has a full-featured API (docs are hosted on GitHub)</a>. Hundreds of companies have written custom integrations, and <a href="../integrations/index.html">our Integrations page</a> links up third-party solutions for invoicing, accounting, time tracking, reporting, planning, asset management, contracts, proposals, and more.</p>
633
+ </article>
634
+ </details>
635
+
636
+ <details id="customer-support">
637
+ <summary>
638
+ <p>What’s your customer support like? What if we need help?</p>
639
+ </summary>
640
+ <article>
641
+ <p>Our customer support is widely considered to be among the best of the best. Everyone who works on our support team are expert specialists who know Basecamp inside and out, many having been with us for years and years, some over a decade. Further, we occasionally cycle every employee through support — including our CEO — so everyone has a chance to directly interact with customers.</p>
642
+ <p>You can <a href="../support/index.html">ask support a question</a>, or <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">watch tutorials</a>, or <a href="https://3.basecamp-help.com">review the help guides</a>, or <a href="../classes/index.html">attend a live walkthrough class and Q&amp;A</a>.</p>
643
+ </article>
644
+ </details>
645
+
646
+ <details id="languages">
647
+ <summary>
648
+ <p>Is Basecamp available in languages other than English?</p>
649
+ </summary>
650
+ <article>
651
+ <p>Currently we only offer Basecamp’s interface in English, although we have people in over 160 countries writing and sharing in their own native languages using Basecamp.</p>
652
+ </article>
653
+ </details>
654
+
655
+ <details id="other-products">
656
+ <summary>
657
+ <p>If we go with Basecamp, will we still need stuff like Slack? Asana? Dropbox?</p>
658
+ </summary>
659
+ <article>
660
+ <p><strong>Nope,</strong> Basecamp replaces a whole set of separate products and saves you a ton of money. Basecamp has chat built in (no more Slack). Basecamp has exceptional task management in the form of to-dos and kanban-style Card Tables (no more Asana). And you can store and share all the files you need in a project (no more Dropbox). Basecamp also replaces document-based tools like Google Docs, Notion, etc. And yet, if you need to continue to use some of those tools, you can always link them up right from inside Basecamp using the Doors feature.</p>
661
+ </article>
662
+ </details>
663
+
664
+ <details id="who-uses-basecamp">
665
+ <summary>
666
+ <p>What kind of companies, in which industries, use Basecamp?</p>
667
+ </summary>
668
+ <article>
669
+ <p>Basecamp is used by top notch marketers, ad agencies, designers, client services firms, consultants, software developers, freelancers, PR agencies, contractors, religious institutions, schools, non-profits, first responders, and many others. Over 75,000 organizations, across every industry imaginable, in 166 countries, use Basecamp for project management.</p>
670
+ <p>Our customers are primarily small or medium-sized companies with fewer than 100 full-time employees, but Basecamp is also used by teams inside many of the world’s largest companies.</p>
671
+ </article>
672
+ </details>
673
+
674
+ <details id="classes" class="data-classes data-classes--details" data-classes-limit="6">
675
+ <summary>
676
+ <p>Do you offer classes to learn more about Basecamp?</p>
677
+ </summary>
678
+ <article>
679
+ <p><strong>Yes, see our upcoming classes below.</strong> We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask. We’ll teach you the basics of using Basecamp, with plenty of time set aside for questions.<span class="data-classes__link"> <a href="../classes/index.html">See all our upcoming classes</a>.</span></p>
680
+ <div class="data-classes__output"></div>
681
+ </article>
682
+ </details>
683
+
684
+ </div>
685
+
686
+ <div class="marquee marquee--left space-bottom--xxx-large space-top--xx-large">
687
+
688
+ <a href="../customers/index.html" aria-hidden="true" tabindex="-1">
689
+ <ul>
690
+
691
+
692
+
693
+
694
+
695
+ <li>“Extremely user friendly”</li>
696
+
697
+
698
+
699
+ <li>“Truly amazing!”</li>
700
+
701
+
702
+
703
+ <li>“A godsend for our org”</li>
704
+
705
+
706
+
707
+ <li>“Simple, quick, powerful”</li>
708
+
709
+
710
+
711
+ <li>“So glad I found Basecamp”</li>
712
+
713
+
714
+
715
+ <li>“The perfect solution”</li>
716
+
717
+
718
+
719
+ <li>“Really great”</li>
720
+
721
+
722
+
723
+ <li>“Outstanding”</li>
724
+
725
+
726
+
727
+ <li>“Best app for teams”</li>
728
+
729
+
730
+
731
+ <li>“Awesome service”</li>
732
+
733
+
734
+
735
+ <li>“Gets better and better”</li>
736
+
737
+
738
+
739
+ <li>“Great collaboration tool”</li>
740
+
741
+
742
+
743
+ <li>“Great software”</li>
744
+
745
+
746
+
747
+ <li>“Gold standard PM app”</li>
748
+
749
+
750
+
751
+ <li>“Brilliant solution”</li>
752
+
753
+
754
+
755
+ <li>“Clean and easy to use”</li>
756
+
757
+
758
+
759
+ <li>“Fantastic app”</li>
760
+
761
+
762
+
763
+ <li>“Organized and on point”</li>
764
+
765
+
766
+
767
+ <li>“Extremely user friendly”</li>
768
+
769
+
770
+
771
+ <li>“Truly amazing!”</li>
772
+
773
+
774
+
775
+ <li>“A godsend for our org”</li>
776
+
777
+
778
+
779
+ <li>“Simple, quick, powerful”</li>
780
+
781
+
782
+
783
+ <li>“So glad I found Basecamp”</li>
784
+
785
+
786
+
787
+ <li>“The perfect solution”</li>
788
+
789
+
790
+
791
+ <li>“Really great”</li>
792
+
793
+
794
+
795
+ <li>“Outstanding”</li>
796
+
797
+
798
+
799
+ <li>“Best app for teams”</li>
800
+
801
+
802
+
803
+ <li>“Awesome service”</li>
804
+
805
+
806
+
807
+ <li>“Gets better and better”</li>
808
+
809
+
810
+
811
+ <li>“Great collaboration tool”</li>
812
+
813
+
814
+
815
+ <li>“Great software”</li>
816
+
817
+
818
+
819
+ <li>“Gold standard PM app”</li>
820
+
821
+
822
+
823
+ <li>“Brilliant solution”</li>
824
+
825
+
826
+
827
+ <li>“Clean and easy to use”</li>
828
+
829
+
830
+
831
+ <li>“Fantastic app”</li>
832
+
833
+
834
+
835
+ <li>“Organized and on point”</li>
836
+
837
+
838
+
839
+ </ul>
840
+ </a>
841
+
842
+
843
+ </div>
844
+
845
+
846
+ </main>
847
+
848
+ <footer class="footer">
849
+
850
+
851
+
852
+
853
+
854
+ <div class="footer__apps" id="apps">
855
+ <dl class="footer__headline">
856
+ <dt>Basecamp’s everywhere</dt>
857
+ <dd>Mac, Windows, iOS, Android, and on the web — Basecamp is ready <a href="../apps/index.html">whenever and wherever you are</a>.</dd>
858
+ </dl>
859
+ <ul>
860
+ <li><a class="button button--icon button--pwa" href="https://3.basecamp-help.com/article/937-basecamp-pwa" title="Install Basecamp on Mac and Windows">Desktop apps</a></li>
861
+ <li><a class="button button--icon button--ios" href="https://apps.apple.com/us/app/basecamp-project-management/id1015603248" title="Install Basecamp on iOS">iOS</a></li>
862
+ <li><a class="button button--icon button--android" href="https://play.google.com/store/apps/details?id=com.basecamp.bc3" title="Install Basecamp on Android">Android</a></li>
863
+ <li><a class="button button--icon button--basecamp" href="https://launchpad.37signals.com/signin" title="Use Basecamp in your web browser" target="_blank" data-controller="signup" data-action="signup#trackLogin">Sign in to Basecamp</a></li>
864
+ </ul>
865
+ </div>
866
+
867
+
868
+
869
+
870
+
871
+ <div class="footer__classes data-classes" data-classes-limit="4">
872
+ <dl class="footer__headline">
873
+ <dt>Join us for a free live class</dt>
874
+ <dd>We’ll answer questions about setting up Basecamp, rolling it out to your team, and anything else you’d like to ask.<span class="data-classes__link"> <a href="../classes/index.html">See all our upcoming classes</a>.</span></dd>
875
+ </dl>
876
+ <div class="data-classes__output"></div>
877
+ </div>
878
+
879
+
880
+
881
+
882
+
883
+ <div class="footer__newsletter">
884
+ <dl class="footer__headline">
885
+ <dt>Never miss an update</dt>
886
+ <dd>Join more than 150,000 people who get <a href="../newsletter/index.html">our newsletter</a>. We’ll share product updates, thoughts, new releases, and other tidbits we think you’ll find interesting.</dd>
887
+ </dl>
888
+ <div class="newsletter">
889
+ <div class="newsletter__container">
890
+ <form novalidate action="https://basecamp.us2.list-manage.com/subscribe/post-json?u=2a145c60b16248b65e46a799a&amp;id=476312b66e&amp;c=?" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form">
891
+ <div aria-hidden="true" style="position: absolute; left: -5000px;"><input type="text" name="b_2a145c60b16248b65e46a799a_476312b66e" value="" tabindex="-1" aria-label="mce"></div>
892
+ <input type="hidden" name="tags" value="23018">
893
+ <input type="email" name="EMAIL" value="" id="mce-EMAIL" placeholder="julie.young@hey.com" aria-label="Your email address" required data-1p-ignore>
894
+ <button type="submit" name="subscribe" id="mc-embedded-subscribe">Subscribe</button>
895
+ </form>
896
+ </div>
897
+ </div>
898
+ </div>
899
+
900
+
901
+
902
+
903
+
904
+ <div class="footer__support">
905
+ <dl class="footer__headline">
906
+ <dt>We’re here to help with 24/7/365 support</dt>
907
+ <dd>There are no stupid questions — for pre-sales questions, existing customers who need a hand, or any other inquiries, <a href="../support/index.html">contact us</a> and we’ll get back to you within an hour. <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14">Watch tutorials</a>, <a href="../help/index.html">read the help guides</a>, or <a href="../support/index.html">send us a message</a> to get help.</dd>
908
+ </dl>
909
+
910
+
911
+
912
+ <div class="footer__hey">
913
+ <a href="https://www.hey.com" target="_blank">
914
+ <span>If you love Basecamp, you’ll love <strong>HEY</strong> — our delightfully fresh take on email + calendar</span>
915
+ </a>
916
+ </div>
917
+
918
+
919
+
920
+ </div>
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+ <div class="footer__links">
929
+ <dl class="footer__headline">
930
+ <dt>And there’s more&hellip;</dt>
931
+ <dd>
932
+
933
+
934
+
935
+ <a href="../new/index.html" aria-label="What’s new">What’s new</a> •
936
+
937
+
938
+
939
+ <a href="../paths/index.html" aria-label="The people’s path to Basecamp">The people’s path to Basecamp</a> •
940
+
941
+
942
+
943
+ <a href="../books/rework?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_09_18" aria-label="Books we’ve written">Books we’ve written</a> •
944
+
945
+
946
+
947
+ <a href="../about/index.html" aria-label="Where we came from">Where we came from</a> •
948
+
949
+
950
+
951
+ <a href="../guides/how-we-communicate/index.html" aria-label="How we communicate">How we communicate</a> •
952
+
953
+
954
+
955
+ <a href="../guides/how-we-make-decisions/index.html" aria-label="How we make decisions">How we make decisions</a> •
956
+
957
+
958
+
959
+ <a href="../guides/why-we-choose-profit/index.html" aria-label="Why we choose profit">Why we choose profit</a> •
960
+
961
+
962
+
963
+ <a href="../guides/group-chat-problems/index.html" aria-label="Group chat problems">Group chat problems</a> •
964
+
965
+
966
+
967
+ <a href="../guides/seven-shipping-principles/index.html" aria-label="Seven shipping principles">Seven shipping principles</a> •
968
+
969
+
970
+
971
+ <a href="../underdogs/index.html" aria-label="We stand with the underdogs">We stand with the underdogs</a> •
972
+
973
+
974
+
975
+ <a href="../small/index.html" aria-label="Come small, come all">Come small, come all</a> •
976
+
977
+
978
+
979
+ <a href="../overkill/index.html" aria-label="Kill overkill">Kill overkill</a> •
980
+
981
+
982
+
983
+ <a href="../cloud-exit/index.html" aria-label="Leaving the Cloud">Leaving the Cloud</a> •
984
+
985
+
986
+
987
+ <a href="../before-and-after/index.html" aria-label="Night &amp; day">Night &amp; day</a> •
988
+
989
+
990
+
991
+ <a href="../hill-charts/index.html" aria-label="See where projects really stand">See where projects really stand</a> •
992
+
993
+
994
+
995
+ <a href="../justletmedomyjob/index.html" aria-label="JUST LET ME DO MY JOB">JUST LET ME DO MY JOB</a> •
996
+
997
+
998
+
999
+ <a href="../customers/index.html" aria-label="What changed for the better?">What changed for the better?</a> •
1000
+
1001
+
1002
+
1003
+ <a href="../integrations/index.html" aria-label="Integrations">Integrations</a> •
1004
+
1005
+
1006
+
1007
+ <a href="../accessibility/index.html" aria-label="Basecamp is for everyone">Basecamp is for everyone</a> •
1008
+
1009
+
1010
+
1011
+ <a href="../community/index.html" aria-label="Basecamp community">Basecamp community</a> •
1012
+
1013
+
1014
+
1015
+ <a href="../learn/beyond-the-basics/doors?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=whats_new_2023_08_14" aria-label="Learn Basecamp">Learn Basecamp</a> •
1016
+
1017
+
1018
+
1019
+ <a href="../handbook" aria-label="Employee handbook">Employee handbook</a>
1020
+
1021
+
1022
+
1023
+ </dd>
1024
+ </dl>
1025
+ </div>
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+
1033
+ <div class="footer__legal">
1034
+ <p>
1035
+ <a href="../enterprise-extravaganza" class="icon icon--basecamp" aria-label="Basecamp">
1036
+ <svg height="37" viewBox="0 0 43 37" width="43" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m9.11245 4.96735c3.71755-3.30318 8.12595-4.96735 13.18775-4.96735 6.653 0 11.4993 4.25486 14.756 9.78279 3.2565 5.52761 4.9536 12.37121 5.305 17.66761.0325.4457-.0654.8911-.2823 1.2816l-.0011.0024-.0013.0021c-3.1106 5.3439-10.1714 8.2612-19.7748 8.2614-6.8962.0906-13.49199-2.8171-18.07711-7.969-.54569-.6067-.70947-1.4659-.4251-2.2307.61494-1.6552 1.76704-4.4162 3.2968-6.7708.76476-1.177 1.63046-2.2629 2.57901-3.0583.9482-.7951 1.9972-1.3145 3.1223-1.3207h.0014c1.1335 0 2.1132.4518 2.9626 1.0623.8305.5969 1.5529 1.3581 2.1824 2.0213l.0382.0405.0021.0021c.3606.3999.7431.7793 1.1457 1.1368 1.7152-2.2044 3.1506-4.6135 4.2725-7.172l.0034-.008.0043-.0078c.5441-1.0339 1.8035-1.4594 2.8632-.9673 1.0598.492 1.5472 1.7286 1.1087 2.8114l-.0023.006-.0027.0057c-2.2942 4.9152-4.0667 7.4003-5.3849 8.6581-.6612.631-1.2134.9586-1.6652 1.1257-.4553.1686-.7936.1686-1.0031.1686-.961 0-1.7805-.3707-2.5096-.8979-.7148-.5169-1.3582-1.1958-1.9708-1.8422l-.0259-.0273c-.2813-.2984-.7075-.7499-1.1178-1.1264-.2055-.1888-.4013-.3532-.5688-.469-.0837-.0579-.1554-.1003-.2138-.1271-.0289-.0135-.0518-.0217-.0693-.0267-.0041-.0011-.0078-.0019-.011-.0026-.0688.0182-.1661.0656-.2926.1599-.1406.1048-.3011.255-.4784.4499-.3543.3895-.7583.9382-1.1842 1.6052-.828 1.2962-1.72463 3.0171-2.48507 4.8278 3.69297 3.6451 8.70587 5.6433 13.89847 5.535h.0051c7.6057 0 13.2067-2.063 15.6357-5.5441-.4322-4.7999-1.9775-10.4676-4.5985-14.9376-2.6397-4.50233-6.3344-7.73542-11.0372-7.73542-8.0326 0-14.12677 5.60339-18.08345 16.77792l-.00246.0069-.00291.0068c-.45185 1.0672-1.65612 1.5984-2.7488 1.2126-1.092715-.3861-1.696399-1.5557-1.3779807-2.6697l.0020652-.0074.0025157-.0072c2.2981498-6.5037 5.3105498-11.42696 9.0232698-14.72585z" fill="currentColor" fill-rule="evenodd"/></svg>
1037
+ <strong>Basecamp</strong>
1038
+ </a>
1039
+ <span>is designed, built, and backed by</span>
1040
+ <a href="https://37signals.com" class="icon icon--37signals" target="_blank" aria-label="37signals">
1041
+ <svg height="37" viewBox="0 0 37 37" width="37" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="m35.4812 22.164c2.0248-2.0239 2.0248-5.3007-.0003-7.3248-2.0198-2.0258-5.301-2.0258-7.319.0007-2.0281 2.0232-2.0292 5.3012 0 7.3241 2.017 2.0215 5.2989 2.0221 7.3193 0z"/><path d="m22.1611 8.84334c2.0249-2.02387 2.0249-5.30008-.0002-7.32415-2.0198-2.02571-5.301-2.025711-7.319.00075-2.0281 2.02309-2.0292 5.30112 0 7.32404 2.017 2.02152 5.2989 2.02152 7.3192-.00064z"/><path d="m14.8417 35.4878c-2.0004-1.9957-1.9608-5.2847 0-7.3054 1.6632-1.6643 1.6633-4.3568 0-6.0182-1.6514-1.6494-4.3462-1.6166-6.01902 0-2.01326 2.0137-5.29117 2.0138-7.30726 0-2.000628-1.9982-1.960613-5.3031.00011-7.3247 1.64664-1.6469 1.614-4.3531 0-6.02035-2.020627-2.01857-2.020787-5.2857 0-7.30443 2.01572-2.019741 5.29428-2.019741 7.30798.00069 2.00119 1.99779 1.96109 5.28187-.0009 7.30374-1.6608 1.66305-1.6608 4.35645.00061 6.02035 1.65198 1.6478 4.34698 1.6154 6.01848 0 2.0158-2.0162 5.3064-2.0167 7.3201 0 2.004 1.9963 1.9646 5.3019 0 7.3247-1.6606 1.661-1.6615 4.354 0 6.0188 2.0241 2.0154 2.0252 5.2892 0 7.3055-2.0128 2.0155-5.3039 2.0155-7.3201-.0007z"/></g></svg>
1042
+ <strong>37signals</strong>
1043
+ </a>
1044
+ </p>
1045
+ <ul>
1046
+ <li><a href="https://updates.37signals.com" target="_blank" aria-label="Updates">Updates</a></li>
1047
+ <li><a href="https://www.37status.com" target="_blank" aria-label="Status">Status</a></li>
1048
+ <li><a href="https://37signals.com/policies/" target="_blank" aria-label="Policies">Policies</a></li>
1049
+ <li>&copy; 2025 37signals LLC</li>
1050
+ </ul>
1051
+ </div>
1052
+ </footer>
1053
+
1054
+
1055
+ <dialog class="modal">
1056
+ <div class="modal__backdrop"></div>
1057
+ <div class="modal__container"></div>
1058
+ </dialog>
1059
+
1060
+
1061
+ </body>
1062
+
1063
+ </html>
platform/aiml/etl/corpus-data/for-profit/raw/basecamp/basecamp.com/gettingreal/01.1-what-is-getting-real ADDED
@@ -0,0 +1,1137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+
34
+
35
+
36
+ <!doctype html>
37
+
38
+ <html lang="en">
39
+
40
+ <head>
41
+
42
+ <!-- online collaboration: Basecamp -->
43
+
44
+ <meta charset="utf-8">
45
+
46
+ <link rel="stylesheet" href="../assets/css/web-book.css" type="text/css">
47
+ <link rel="stylesheet" href="https://use.typekit.net/xig7qap.css">
48
+
49
+ <script src="../assets/js/packages/popper.js"></script>
50
+ <script src="../assets/js/web-book.js" type="module"></script>
51
+
52
+ <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/general/favicon-32.png">
53
+ <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/general/favicon-16.png">
54
+ <link rel="apple-touch-icon" href="../assets/images/general/apple-touch-icon.png">
55
+
56
+
57
+
58
+ <title>What is Getting Real | Getting Real</title>
59
+
60
+
61
+
62
+
63
+
64
+ <meta name="theme-color" content="#000000">
65
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
66
+
67
+
68
+
69
+
70
+ <meta property="og:title" content="What is Getting Real | Getting Real">
71
+ <meta property="og:description" content="">
72
+ <meta property="og:image" content="https://basecamp.com/assets/images/opengraph/getting-real.png">
73
+ <meta property="og:url" content="https://basecamp.com/gettingreal/01.1-what-is-getting-real">
74
+
75
+ <meta name="twitter:title" content="What is Getting Real | Getting Real">
76
+ <meta name="twitter:description" content="">
77
+ <meta name="twitter:image" content="https://basecamp.com/assets/images/opengraph/getting-real.png">
78
+ <meta name="twitter:card" content="summary_large_image">
79
+ <meta name="twitter:creator" content="@basecamp">
80
+ <meta name="twitter:site" content="@basecamp">
81
+
82
+ <script async data-domain="basecamp.com" src="../js/script.outbound-links.tagged-events.js"></script>
83
+
84
+ </head>
85
+
86
+
87
+ <body data-controller="sidebar glossary" data-action="keydown->sidebar#closeWithKey">
88
+
89
+ <main id="main" class="wb">
90
+
91
+
92
+ <style type="text/css">
93
+ :root {
94
+ --color-text: 29, 45, 53;
95
+ --color-background: 255, 255, 255;
96
+ --color-link: 29, 45, 53;
97
+ }
98
+ @media (prefers-color-scheme: dark) {
99
+ :root {
100
+ --color-text: 29, 45, 53;
101
+ --color-background: 255, 255, 255;
102
+ --color-link: 29, 45, 53;
103
+ }
104
+ }
105
+ </style>
106
+
107
+
108
+ <p class="warning" style="font-size: 24px;">
109
+ <strong>Heads up!</strong> This page uses features your browser doesn’t support. Try a modern browser like <a href="https://www.mozilla.org/en-US/firefox/new/" target="_blank" rel="noopener noreferrer">Firefox</a> or <a href="https://www.google.com/chrome/" target="_blank" rel="noopener noreferrer">Chrome</a> for the best experience.
110
+ </p>
111
+
112
+ <div class="intro">
113
+
114
+ <div class="intro__content intro__content--sticky">
115
+
116
+ <button class="intro__book-title button hidden-print" data-action="click->sidebar#open" aria-label="Getting Real Table Of Contents">
117
+ <svg class="icon" viewBox="0 0 112 80" xmlns="http://www.w3.org/2000/svg"><path d="m2.37 13.63a7.71 7.71 0 0 1 -2.37-5.63 7.73 7.73 0 0 1 2.37-5.63 7.71 7.71 0 0 1 5.63-2.37h96a7.73 7.73 0 0 1 5.63 2.37 7.73 7.73 0 0 1 2.37 5.63 7.71 7.71 0 0 1 -2.37 5.63 7.73 7.73 0 0 1 -5.63 2.37h-96a7.71 7.71 0 0 1 -5.63-2.37zm107.26 20.75a8 8 0 0 1 -5.63 13.62h-96a7.71 7.71 0 0 1 -5.63-2.37 7.86 7.86 0 0 1 0-11.25 7.68 7.68 0 0 1 5.63-2.38h96a7.7 7.7 0 0 1 5.63 2.38zm0 32a8 8 0 0 1 -5.63 13.62h-96a7.71 7.71 0 0 1 -5.63-2.37 7.86 7.86 0 0 1 0-11.25 7.68 7.68 0 0 1 5.63-2.38h96a7.7 7.7 0 0 1 5.63 2.38z"/></svg>
118
+ <span>Getting Real</span>
119
+ </button>
120
+
121
+ <p class="intro__masthead">Chapter 1:</p>
122
+
123
+ <h1 class="intro__title"><a href="01.1-what-is-getting-real">What is Getting Real</a></h1>
124
+
125
+ <ul class="intro__sections">
126
+
127
+ </ul>
128
+
129
+
130
+ <p class="intro__next hidden-print"><a href="01.2-about-basecamp">Next: About Basecamp</a></p>
131
+
132
+
133
+ </div>
134
+
135
+ </div>
136
+
137
+ <div class="content" data-controller="bookmark anchors tweet" data-target="sidebar.content" data-action="click->sidebar#close mouseup->tweet#update input->tweet#update keydown->tweet#update scroll@window->tweet#update" data-bookmark-id="/gettingreal">
138
+ <template data-target="anchors.iconTemplate"><svg class="icon icon--link" viewBox="0 0 85.69 85.69" xmlns="http://www.w3.org/2000/svg"><path d="m49.71 65.61c.78 0 1.25.14 1.42.42s0 .69-.59 1.25l-11.71 11.72a21.94 21.94 0 0 1 -16.07 6.69 21.94 21.94 0 0 1 -16.07-6.69 22.65 22.65 0 0 1 0-32.14l16.07-16.07a21.38 21.38 0 0 1 5.52-4 21.55 21.55 0 0 1 10.55-2.69h.33a26.68 26.68 0 0 1 8.37 1.67v.17a13.49 13.49 0 0 1 2.85 1.34 22.09 22.09 0 0 1 4.52 3.51 5.69 5.69 0 1 1 -8 8 11.31 11.31 0 0 0 -16.07 0l-16.1 16.11a11.3 11.3 0 0 0 0 16.06 10.92 10.92 0 0 0 8 3.35 10.92 10.92 0 0 0 8-3.35l6.53-6.52c.45-.45 1.62-.39 3.52.16a29.76 29.76 0 0 0 8.93 1.01zm13.22-65.61a21.94 21.94 0 0 1 16.07 6.69 21.94 21.94 0 0 1 6.69 16.07 21.92 21.92 0 0 1 -6.69 16.07l-16.07 16.07a22.23 22.23 0 0 1 -11.72 6.19c-.44.11-1 .22-1.5.33a14.75 14.75 0 0 1 -2.51.17 18.79 18.79 0 0 1 -2.51-.17c-1-.11-1.79-.22-2.35-.33-1-.22-1.67-.39-2-.5a22.66 22.66 0 0 1 -9.54-5.69 5.69 5.69 0 1 1 8-8 11.31 11.31 0 0 0 16.07 0l16.13-16.11a11 11 0 0 0 3.35-8 11 11 0 0 0 -3.35-8 11.3 11.3 0 0 0 -16.06 0l-6.7 6.69c-.45.45-1.62.39-3.51-.16a29.83 29.83 0 0 0 -8.87-1c-.79.11-1.26 0-1.43-.33s0-.78.59-1.34l11.84-11.96a21.92 21.92 0 0 1 16.07-6.69z"/></svg></template>
139
+ <template data-target="tweet.iconTemplate"><svg class="icon icon--twitter" viewBox="0 0 101.53 82.49" xmlns="http://www.w3.org/2000/svg"><path d="m91 20.62a18.68 18.68 0 0 1 .19 2.58 58.44 58.44 0 0 1 -4 20.92 66.22 66.22 0 0 1 -11.2 19 53.33 53.33 0 0 1 -18.84 14 59.6 59.6 0 0 1 -25.28 5.35 58.34 58.34 0 0 1 -31.87-9.3c1.72.13 3.37.2 5 .2a40.78 40.78 0 0 0 26-8.92 19.07 19.07 0 0 1 -12-4.07 20.6 20.6 0 0 1 -7.3-10.38 20.75 20.75 0 0 0 4.16.4 26.41 26.41 0 0 0 5.95-.6 18.82 18.82 0 0 1 -11.2-7.24 21.21 21.21 0 0 1 -4.26-13.21v-.35c0 .79.89 1.42 2.67 1.88a22.14 22.14 0 0 0 5.65.7 25.41 25.41 0 0 1 -7.53-7.58 17.48 17.48 0 0 1 -3-9.71 21.19 21.19 0 0 1 2.8-10.52 59.45 59.45 0 0 0 19.14 15.46 57.54 57.54 0 0 0 23.92 6.35 19.39 19.39 0 0 1 -.59-4.76 20 20 0 0 1 6.11-14.67 20.84 20.84 0 0 1 29.94.39 44.74 44.74 0 0 0 13.29-4.95 20.48 20.48 0 0 1 -9.32 11.5 42.27 42.27 0 0 0 12.1-3.37 45.93 45.93 0 0 1 -10.53 10.9z"/></svg></template>
140
+
141
+ <p>Want to build a successful web app? Then it’s time to Get Real. Getting Real is a smaller, faster, better way to build software.</p>
142
+
143
+ <ul>
144
+ <li>Getting Real is about skipping all the stuff that represents real (charts, graphs, boxes, arrows, schematics, wireframes, etc.) and actually building the real thing.</li>
145
+ <li>Getting real is less. Less mass, less software, less features, less paperwork, less of everything that’s not essential (and most of what you think is essential actually isn’t).</li>
146
+ <li>Getting Real is staying small and being agile.</li>
147
+ <li>Getting Real starts with the interface, the real screens that people are going to use. It begins with what the customer actually experiences and builds backwards from there. This lets you get the interface right before you get the software wrong.</li>
148
+ <li>Getting Real is about iterations and lowering the cost of change. Getting Real is all about launching, tweaking, and constantly improving which makes it a perfect approach for web-based software.</li>
149
+ <li>Getting Real delivers just what customers need and eliminates anything they don’t.</li>
150
+ </ul>
151
+
152
+ <h2 id="the-benefits-of-getting-real">The benefits of Getting Real</h2>
153
+
154
+ <p>Getting Real delivers better results because it forces you to deal with the actual problems you’re trying to solve instead of your ideas about those problems. It forces you to deal with reality.</p>
155
+
156
+ <p>Getting Real foregoes functional specs and other transitory documentation in favor of building real screens. A functional spec is make-believe, an illusion of agreement, while an actual web page is reality. That’s what your customers are going to see and use. That’s what matters. Getting Real gets you there faster. And that means you’re making software decisions based on the real thing instead of abstract notions.</p>
157
+
158
+ <p>Finally, Getting Real is an approach ideally suited to web-based software. The old school model of shipping software in a box and then waiting a year or two to deliver an update is fading away. Unlike installed software, web apps can constantly evolve on a day-to-day basis. Getting Real leverages this advantage for all its worth.</p>
159
+
160
+ <div class="page-break"></div>
161
+ <h3 id="how-to-write-vigorous-software">How To Write Vigorous Software</h3>
162
+
163
+ <blockquote>
164
+ <p>Vigorous writing is concise. A sentence should contain no unnecessary words, a paragraph no unnecessary sentences, for the same reason that a drawing should have no unnecessary lines and a machine no unnecessary parts. This requires not that the writer make all sentences short or avoid all detail and treat subjects only in outline, but that every word tell.</p>
165
+ </blockquote>
166
+
167
+ <p>—From <a href="http://www.bartleby.com/141/strunk5.html">“The Elements of Style”</a> by William Strunk Jr.</p>
168
+
169
+ <h2 id="no-more-bloat">No more bloat</h2>
170
+
171
+ <p>The old way: a lengthy, bureaucratic, we’re-doing-this-to-cover-our-asses process. The typical result: bloated, forgettable software dripping with mediocrity. Blech.</p>
172
+
173
+ <h2 id="getting-real-gets-rid-of">Getting Real gets rid of…</h2>
174
+
175
+ <ul>
176
+ <li>Timelines that take months or even years</li>
177
+ <li>Pie-in-the-sky functional specs</li>
178
+ <li>Scalability debates</li>
179
+ <li>Interminable staff meetings</li>
180
+ <li>The “need” to hire dozens of employees</li>
181
+ <li>Meaningless version numbers</li>
182
+ <li>Pristine roadmaps that predict the perfect future</li>
183
+ <li>Endless preference options</li>
184
+ <li>Outsourced support</li>
185
+ <li>Unrealistic user testing</li>
186
+ <li>Useless paperwork</li>
187
+ <li>Top-down hierarchy</li>
188
+ </ul>
189
+
190
+ <p>You don’t need tons of money or a huge team or a lengthy development cycle to build great software. Those things are the ingredients for slow, murky, changeless applications. Getting real takes the opposite approach.</p>
191
+
192
+ <h2 id="in-this-book-well-show-you">In this book we’ll show you…</h2>
193
+
194
+ <ul>
195
+ <li>The importance of having a philosophy</li>
196
+ <li>Why staying small is a good thing</li>
197
+ <li>How to build less</li>
198
+ <li>How to get from idea to reality quickly</li>
199
+ <li>How to staff your team</li>
200
+ <li>Why you should design from the inside out</li>
201
+ <li>Why writing is so crucial</li>
202
+ <li>Why you should underdo your competition</li>
203
+ <li>How to promote your app and spread the word</li>
204
+ <li>Secrets to successful support</li>
205
+ <li>Tips on keeping momentum going after launch</li>
206
+ <li>…and lots more</li>
207
+ </ul>
208
+
209
+ <p>The focus is on big-picture ideas. We won’t bog you down with detailed code snippets or css tricks. We’ll stick to the major ideas and philosophies that drive the Getting Real process.</p>
210
+
211
+ <h2 id="is-this-book-for-you">Is this book for you?</h2>
212
+
213
+ <p>You’re an entrepreneur, designer, programmer, or marketer working on a big idea.</p>
214
+
215
+ <p>You realize the old rules don’t apply anymore. Distribute your software on cd-roms every year? How 2002. Version numbers? Out the window. You need to build, launch, and tweak. Then rinse and repeat.</p>
216
+
217
+ <p>Or maybe you’re not yet on board with agile development and business structures, but you’re eager to learn more.</p>
218
+
219
+ <p><strong>If this sounds like you, then this book is for you.</strong></p>
220
+
221
+ <p>Note: While this book’s emphasis is on building a web app, a lot of these ideas are applicable to non-software activities too. The suggestions about small teams, rapid prototyping, expecting iterations, and many others presented here can serve as a guide whether you’re starting a business, writing a book, designing a web site, recording an album, or doing a variety of other endeavors. Once you start Getting Real in one area of your life, you’ll see how these concepts can apply to a wide range of activities.</p>
222
+
223
+
224
+
225
+ <nav class="pagination hidden-print">
226
+
227
+ <a class="button" href="01.2-about-basecamp">About Basecamp &rarr;</a>
228
+
229
+ </nav>
230
+
231
+ <footer class="footer hidden-print">
232
+
233
+ We made <a href="../enterprise-extravaganza" target="_blank">Basecamp</a> using the principles in this book. It combines all the tools teams need to get work done in a single, streamlined package. With Basecamp, everyone knows what to do, where things stand, and where to find things they need.
234
+
235
+
236
+ <p class="footer__copyright"><em>Copyright &copy;1999-2025 37signals LLC. All rights reserved.</em></p>
237
+ </footer>
238
+ </div>
239
+
240
+ <nav class="menu" role="dialog" tabindex="0" data-target="sidebar.menu" data-action="click->sidebar#close">
241
+
242
+ <button class="menu__close button button--reversed" aria-label="close menu" data-action="click->sidebar#close">
243
+ <svg class="icon" viewBox="0 0 40.3 40.3" xmlns="http://www.w3.org/2000/svg"><path d="m39.45 35.89-3.56 3.56a2.28 2.28 0 0 1 -3.56 0l-12.22-12.38-12.22 12.38a2.28 2.28 0 0 1 -3.56 0l-3.4-3.56q-1.86-1.7 0-3.56l12.22-12.22-12.22-12.22q-1.86-1.69 0-3.56l3.4-3.4c1.24-1.24 2.42-1.24 3.56 0l12.22 12.22 12.22-12.22c1.24-1.24 2.42-1.24 3.56 0l3.56 3.4a2.29 2.29 0 0 1 0 3.56l-12.38 12.22 12.38 12.22a2.29 2.29 0 0 1 0 3.56z"/></svg>
244
+ </button>
245
+
246
+ <div class="book-info">
247
+ <p class="book-info__back"><a href="../enterprise-extravaganza"><em>Back to Basecamp.com</em></a></p>
248
+ <h1 class="book-info__title"><a href="../gettingreal">Getting Real</a></h1>
249
+ <p class="book-info__subtitle">The smarter, faster, easier way to build a successful web application</p>
250
+ <p class="book-info__author">by Basecamp</p>
251
+
252
+ </div>
253
+
254
+ <div class="toc">
255
+
256
+ <div class="toc__part">
257
+
258
+ <h2 class="toc__part-title">Introduction</h2>
259
+
260
+ <ul class="toc__chapters">
261
+
262
+ <li class="toc__chapter">
263
+ <p class="toc__chapter-number">Chapter 1</p>
264
+ <h3 class="toc__chapter-title"><a href="01.1-what-is-getting-real">What is Getting Real</a></h3>
265
+ <ul class="toc__sections">
266
+
267
+ </ul>
268
+ </li>
269
+
270
+ <li class="toc__chapter">
271
+ <p class="toc__chapter-number">Chapter 2</p>
272
+ <h3 class="toc__chapter-title"><a href="01.2-about-basecamp">About Basecamp</a></h3>
273
+ <ul class="toc__sections">
274
+
275
+ </ul>
276
+ </li>
277
+
278
+ <li class="toc__chapter">
279
+ <p class="toc__chapter-number">Chapter 3</p>
280
+ <h3 class="toc__chapter-title"><a href="01.3-caveats-disclaimers-and-other-preemptive-strikes">Caveats, disclaimers, and other preemptive strikes</a></h3>
281
+ <ul class="toc__sections">
282
+
283
+ </ul>
284
+ </li>
285
+
286
+ </ul>
287
+ </div>
288
+
289
+ <div class="toc__part">
290
+
291
+ <h2 class="toc__part-title">The Starting Line</h2>
292
+
293
+ <ul class="toc__chapters">
294
+
295
+ <li class="toc__chapter">
296
+ <p class="toc__chapter-number">Chapter 4</p>
297
+ <h3 class="toc__chapter-title"><a href="02.1-build-less">Build Less</a></h3>
298
+ <ul class="toc__sections">
299
+
300
+ </ul>
301
+ </li>
302
+
303
+ <li class="toc__chapter">
304
+ <p class="toc__chapter-number">Chapter 5</p>
305
+ <h3 class="toc__chapter-title"><a href="02.2-whats-your-problem">What’s Your Problem?</a></h3>
306
+ <ul class="toc__sections">
307
+
308
+ </ul>
309
+ </li>
310
+
311
+ <li class="toc__chapter">
312
+ <p class="toc__chapter-number">Chapter 6</p>
313
+ <h3 class="toc__chapter-title"><a href="02.3-fund-yourself">Fund Yourself</a></h3>
314
+ <ul class="toc__sections">
315
+
316
+ </ul>
317
+ </li>
318
+
319
+ <li class="toc__chapter">
320
+ <p class="toc__chapter-number">Chapter 7</p>
321
+ <h3 class="toc__chapter-title"><a href="02.4-fix-time-and-budget-flex-scope">Fix Time and Budget, Flex Scope</a></h3>
322
+ <ul class="toc__sections">
323
+
324
+ </ul>
325
+ </li>
326
+
327
+ <li class="toc__chapter">
328
+ <p class="toc__chapter-number">Chapter 8</p>
329
+ <h3 class="toc__chapter-title"><a href="02.5-have-an-enemy">Have an Enemy</a></h3>
330
+ <ul class="toc__sections">
331
+
332
+ </ul>
333
+ </li>
334
+
335
+ <li class="toc__chapter">
336
+ <p class="toc__chapter-number">Chapter 9</p>
337
+ <h3 class="toc__chapter-title"><a href="02.6-it-shouldnt-be-a-chore">It Shouldn’t be a Chore</a></h3>
338
+ <ul class="toc__sections">
339
+
340
+ </ul>
341
+ </li>
342
+
343
+ </ul>
344
+ </div>
345
+
346
+ <div class="toc__part">
347
+
348
+ <h2 class="toc__part-title">Stay Lean</h2>
349
+
350
+ <ul class="toc__chapters">
351
+
352
+ <li class="toc__chapter">
353
+ <p class="toc__chapter-number">Chapter 10</p>
354
+ <h3 class="toc__chapter-title"><a href="03.1-less-mass">Less Mass</a></h3>
355
+ <ul class="toc__sections">
356
+
357
+ </ul>
358
+ </li>
359
+
360
+ <li class="toc__chapter">
361
+ <p class="toc__chapter-number">Chapter 11</p>
362
+ <h3 class="toc__chapter-title"><a href="03.2-lower-your-cost-of-change">Lower Your Cost of Change</a></h3>
363
+ <ul class="toc__sections">
364
+
365
+ </ul>
366
+ </li>
367
+
368
+ <li class="toc__chapter">
369
+ <p class="toc__chapter-number">Chapter 12</p>
370
+ <h3 class="toc__chapter-title"><a href="03.3-the-three-musketeers">The Three Musketeers</a></h3>
371
+ <ul class="toc__sections">
372
+
373
+ </ul>
374
+ </li>
375
+
376
+ <li class="toc__chapter">
377
+ <p class="toc__chapter-number">Chapter 13</p>
378
+ <h3 class="toc__chapter-title"><a href="03.4-embrace-constraints">Embrace Constraints</a></h3>
379
+ <ul class="toc__sections">
380
+
381
+ </ul>
382
+ </li>
383
+
384
+ <li class="toc__chapter">
385
+ <p class="toc__chapter-number">Chapter 14</p>
386
+ <h3 class="toc__chapter-title"><a href="03.5-be-yourself">Be Yourself</a></h3>
387
+ <ul class="toc__sections">
388
+
389
+ </ul>
390
+ </li>
391
+
392
+ </ul>
393
+ </div>
394
+
395
+ <div class="toc__part">
396
+
397
+ <h2 class="toc__part-title">Priorities</h2>
398
+
399
+ <ul class="toc__chapters">
400
+
401
+ <li class="toc__chapter">
402
+ <p class="toc__chapter-number">Chapter 15</p>
403
+ <h3 class="toc__chapter-title"><a href="04.1-whats-the-big-idea">What’s the Big Idea?</a></h3>
404
+ <ul class="toc__sections">
405
+
406
+ </ul>
407
+ </li>
408
+
409
+ <li class="toc__chapter">
410
+ <p class="toc__chapter-number">Chapter 16</p>
411
+ <h3 class="toc__chapter-title"><a href="04.2-ignore-details-early-on">Ignore Details Early On</a></h3>
412
+ <ul class="toc__sections">
413
+
414
+ </ul>
415
+ </li>
416
+
417
+ <li class="toc__chapter">
418
+ <p class="toc__chapter-number">Chapter 17</p>
419
+ <h3 class="toc__chapter-title"><a href="04.3-its-a-problem-when-its-a-problem">It’s a Problem When It’s a Problem</a></h3>
420
+ <ul class="toc__sections">
421
+
422
+ </ul>
423
+ </li>
424
+
425
+ <li class="toc__chapter">
426
+ <p class="toc__chapter-number">Chapter 18</p>
427
+ <h3 class="toc__chapter-title"><a href="04.4-hire-the-right-customers">Hire the Right Customers</a></h3>
428
+ <ul class="toc__sections">
429
+
430
+ </ul>
431
+ </li>
432
+
433
+ <li class="toc__chapter">
434
+ <p class="toc__chapter-number">Chapter 19</p>
435
+ <h3 class="toc__chapter-title"><a href="04.5-scale-later">Scale Later</a></h3>
436
+ <ul class="toc__sections">
437
+
438
+ </ul>
439
+ </li>
440
+
441
+ <li class="toc__chapter">
442
+ <p class="toc__chapter-number">Chapter 20</p>
443
+ <h3 class="toc__chapter-title"><a href="04.6-make-opinionated-software">Make Opinionated Software</a></h3>
444
+ <ul class="toc__sections">
445
+
446
+ </ul>
447
+ </li>
448
+
449
+ </ul>
450
+ </div>
451
+
452
+ <div class="toc__part">
453
+
454
+ <h2 class="toc__part-title">Feature Selection</h2>
455
+
456
+ <ul class="toc__chapters">
457
+
458
+ <li class="toc__chapter">
459
+ <p class="toc__chapter-number">Chapter 21</p>
460
+ <h3 class="toc__chapter-title"><a href="05.1-half-not-half-assed">Half, Not Half-Assed</a></h3>
461
+ <ul class="toc__sections">
462
+
463
+ </ul>
464
+ </li>
465
+
466
+ <li class="toc__chapter">
467
+ <p class="toc__chapter-number">Chapter 22</p>
468
+ <h3 class="toc__chapter-title"><a href="05.2-it-just-doesnt-matter">It Just Doesn’t Matter</a></h3>
469
+ <ul class="toc__sections">
470
+
471
+ </ul>
472
+ </li>
473
+
474
+ <li class="toc__chapter">
475
+ <p class="toc__chapter-number">Chapter 23</p>
476
+ <h3 class="toc__chapter-title"><a href="05.3-start-with-no">Start With No</a></h3>
477
+ <ul class="toc__sections">
478
+
479
+ </ul>
480
+ </li>
481
+
482
+ <li class="toc__chapter">
483
+ <p class="toc__chapter-number">Chapter 24</p>
484
+ <h3 class="toc__chapter-title"><a href="05.4-hidden-costs">Hidden Costs</a></h3>
485
+ <ul class="toc__sections">
486
+
487
+ </ul>
488
+ </li>
489
+
490
+ <li class="toc__chapter">
491
+ <p class="toc__chapter-number">Chapter 25</p>
492
+ <h3 class="toc__chapter-title"><a href="05.5-can-you-handle-it">Can You Handle It?</a></h3>
493
+ <ul class="toc__sections">
494
+
495
+ </ul>
496
+ </li>
497
+
498
+ <li class="toc__chapter">
499
+ <p class="toc__chapter-number">Chapter 26</p>
500
+ <h3 class="toc__chapter-title"><a href="05.6-human-solutions">Human Solutions</a></h3>
501
+ <ul class="toc__sections">
502
+
503
+ </ul>
504
+ </li>
505
+
506
+ <li class="toc__chapter">
507
+ <p class="toc__chapter-number">Chapter 27</p>
508
+ <h3 class="toc__chapter-title"><a href="05.7-forget-feature-requests">Forget Feature Requests</a></h3>
509
+ <ul class="toc__sections">
510
+
511
+ </ul>
512
+ </li>
513
+
514
+ <li class="toc__chapter">
515
+ <p class="toc__chapter-number">Chapter 28</p>
516
+ <h3 class="toc__chapter-title"><a href="05.8-hold-the-mayo">Hold the Mayo</a></h3>
517
+ <ul class="toc__sections">
518
+
519
+ </ul>
520
+ </li>
521
+
522
+ </ul>
523
+ </div>
524
+
525
+ <div class="toc__part">
526
+
527
+ <h2 class="toc__part-title">Process</h2>
528
+
529
+ <ul class="toc__chapters">
530
+
531
+ <li class="toc__chapter">
532
+ <p class="toc__chapter-number">Chapter 29</p>
533
+ <h3 class="toc__chapter-title"><a href="06.1-race-to-running-software">Race to Running Software</a></h3>
534
+ <ul class="toc__sections">
535
+
536
+ </ul>
537
+ </li>
538
+
539
+ <li class="toc__chapter">
540
+ <p class="toc__chapter-number">Chapter 30</p>
541
+ <h3 class="toc__chapter-title"><a href="06.2-rinse-and-repeat">Rinse and Repeat</a></h3>
542
+ <ul class="toc__sections">
543
+
544
+ </ul>
545
+ </li>
546
+
547
+ <li class="toc__chapter">
548
+ <p class="toc__chapter-number">Chapter 31</p>
549
+ <h3 class="toc__chapter-title"><a href="06.3-from-idea-to-implementation">From Idea to Implementation</a></h3>
550
+ <ul class="toc__sections">
551
+
552
+ </ul>
553
+ </li>
554
+
555
+ <li class="toc__chapter">
556
+ <p class="toc__chapter-number">Chapter 32</p>
557
+ <h3 class="toc__chapter-title"><a href="06.4-avoid-preferences">Avoid Preferences</a></h3>
558
+ <ul class="toc__sections">
559
+
560
+ </ul>
561
+ </li>
562
+
563
+ <li class="toc__chapter">
564
+ <p class="toc__chapter-number">Chapter 33</p>
565
+ <h3 class="toc__chapter-title"><a href="06.5-done">“Done!”</a></h3>
566
+ <ul class="toc__sections">
567
+
568
+ </ul>
569
+ </li>
570
+
571
+ <li class="toc__chapter">
572
+ <p class="toc__chapter-number">Chapter 34</p>
573
+ <h3 class="toc__chapter-title"><a href="06.6-test-in-the-wild">Test in the Wild</a></h3>
574
+ <ul class="toc__sections">
575
+
576
+ </ul>
577
+ </li>
578
+
579
+ <li class="toc__chapter">
580
+ <p class="toc__chapter-number">Chapter 35</p>
581
+ <h3 class="toc__chapter-title"><a href="06.7-shrink-your-time">Shrink Your Time</a></h3>
582
+ <ul class="toc__sections">
583
+
584
+ </ul>
585
+ </li>
586
+
587
+ </ul>
588
+ </div>
589
+
590
+ <div class="toc__part">
591
+
592
+ <h2 class="toc__part-title">The Organization</h2>
593
+
594
+ <ul class="toc__chapters">
595
+
596
+ <li class="toc__chapter">
597
+ <p class="toc__chapter-number">Chapter 36</p>
598
+ <h3 class="toc__chapter-title"><a href="07.1-unity">Unity</a></h3>
599
+ <ul class="toc__sections">
600
+
601
+ </ul>
602
+ </li>
603
+
604
+ <li class="toc__chapter">
605
+ <p class="toc__chapter-number">Chapter 37</p>
606
+ <h3 class="toc__chapter-title"><a href="07.2-alone-time">Alone Time</a></h3>
607
+ <ul class="toc__sections">
608
+
609
+ </ul>
610
+ </li>
611
+
612
+ <li class="toc__chapter">
613
+ <p class="toc__chapter-number">Chapter 38</p>
614
+ <h3 class="toc__chapter-title"><a href="07.3-meetings-are-toxic">Meetings Are Toxic</a></h3>
615
+ <ul class="toc__sections">
616
+
617
+ </ul>
618
+ </li>
619
+
620
+ <li class="toc__chapter">
621
+ <p class="toc__chapter-number">Chapter 39</p>
622
+ <h3 class="toc__chapter-title"><a href="07.4-seek-and-celebrate-small-victories">Seek and Celebrate Small Victories</a></h3>
623
+ <ul class="toc__sections">
624
+
625
+ </ul>
626
+ </li>
627
+
628
+ </ul>
629
+ </div>
630
+
631
+ <div class="toc__part">
632
+
633
+ <h2 class="toc__part-title">Staffing</h2>
634
+
635
+ <ul class="toc__chapters">
636
+
637
+ <li class="toc__chapter">
638
+ <p class="toc__chapter-number">Chapter 40</p>
639
+ <h3 class="toc__chapter-title"><a href="08.1-hire-less-and-hire-later">Hire Less and Hire Later</a></h3>
640
+ <ul class="toc__sections">
641
+
642
+ </ul>
643
+ </li>
644
+
645
+ <li class="toc__chapter">
646
+ <p class="toc__chapter-number">Chapter 41</p>
647
+ <h3 class="toc__chapter-title"><a href="08.2-kick-the-tires">Kick the Tires</a></h3>
648
+ <ul class="toc__sections">
649
+
650
+ </ul>
651
+ </li>
652
+
653
+ <li class="toc__chapter">
654
+ <p class="toc__chapter-number">Chapter 42</p>
655
+ <h3 class="toc__chapter-title"><a href="08.3-actions-not-words">Actions, Not Words</a></h3>
656
+ <ul class="toc__sections">
657
+
658
+ </ul>
659
+ </li>
660
+
661
+ <li class="toc__chapter">
662
+ <p class="toc__chapter-number">Chapter 43</p>
663
+ <h3 class="toc__chapter-title"><a href="08.4-get-well-rounded-individuals">Get Well Rounded Individuals</a></h3>
664
+ <ul class="toc__sections">
665
+
666
+ </ul>
667
+ </li>
668
+
669
+ <li class="toc__chapter">
670
+ <p class="toc__chapter-number">Chapter 44</p>
671
+ <h3 class="toc__chapter-title"><a href="08.5-you-cant-fake-enthusiasm">You Can’t Fake Enthusiasm</a></h3>
672
+ <ul class="toc__sections">
673
+
674
+ </ul>
675
+ </li>
676
+
677
+ <li class="toc__chapter">
678
+ <p class="toc__chapter-number">Chapter 45</p>
679
+ <h3 class="toc__chapter-title"><a href="08.6-wordsmiths">Wordsmiths</a></h3>
680
+ <ul class="toc__sections">
681
+
682
+ </ul>
683
+ </li>
684
+
685
+ </ul>
686
+ </div>
687
+
688
+ <div class="toc__part">
689
+
690
+ <h2 class="toc__part-title">Interface Design</h2>
691
+
692
+ <ul class="toc__chapters">
693
+
694
+ <li class="toc__chapter">
695
+ <p class="toc__chapter-number">Chapter 46</p>
696
+ <h3 class="toc__chapter-title"><a href="09.1-interface-first">Interface First</a></h3>
697
+ <ul class="toc__sections">
698
+
699
+ </ul>
700
+ </li>
701
+
702
+ <li class="toc__chapter">
703
+ <p class="toc__chapter-number">Chapter 47</p>
704
+ <h3 class="toc__chapter-title"><a href="09.2-epicenter-design">Epicenter Design</a></h3>
705
+ <ul class="toc__sections">
706
+
707
+ </ul>
708
+ </li>
709
+
710
+ <li class="toc__chapter">
711
+ <p class="toc__chapter-number">Chapter 48</p>
712
+ <h3 class="toc__chapter-title"><a href="09.3-three-state-solution">Three State Solution</a></h3>
713
+ <ul class="toc__sections">
714
+
715
+ </ul>
716
+ </li>
717
+
718
+ <li class="toc__chapter">
719
+ <p class="toc__chapter-number">Chapter 49</p>
720
+ <h3 class="toc__chapter-title"><a href="09.4-the-blank-slate">The Blank Slate</a></h3>
721
+ <ul class="toc__sections">
722
+
723
+ </ul>
724
+ </li>
725
+
726
+ <li class="toc__chapter">
727
+ <p class="toc__chapter-number">Chapter 50</p>
728
+ <h3 class="toc__chapter-title"><a href="09.5-get-defensive">Get Defensive</a></h3>
729
+ <ul class="toc__sections">
730
+
731
+ </ul>
732
+ </li>
733
+
734
+ <li class="toc__chapter">
735
+ <p class="toc__chapter-number">Chapter 51</p>
736
+ <h3 class="toc__chapter-title"><a href="09.6-context-over-consistency">Context Over Consistency</a></h3>
737
+ <ul class="toc__sections">
738
+
739
+ </ul>
740
+ </li>
741
+
742
+ <li class="toc__chapter">
743
+ <p class="toc__chapter-number">Chapter 52</p>
744
+ <h3 class="toc__chapter-title"><a href="09.7-copywriting-is-interface-design">Copywriting is Interface Design</a></h3>
745
+ <ul class="toc__sections">
746
+
747
+ </ul>
748
+ </li>
749
+
750
+ <li class="toc__chapter">
751
+ <p class="toc__chapter-number">Chapter 53</p>
752
+ <h3 class="toc__chapter-title"><a href="09.8-one-interface">One Interface</a></h3>
753
+ <ul class="toc__sections">
754
+
755
+ </ul>
756
+ </li>
757
+
758
+ </ul>
759
+ </div>
760
+
761
+ <div class="toc__part">
762
+
763
+ <h2 class="toc__part-title">Code</h2>
764
+
765
+ <ul class="toc__chapters">
766
+
767
+ <li class="toc__chapter">
768
+ <p class="toc__chapter-number">Chapter 54</p>
769
+ <h3 class="toc__chapter-title"><a href="10.1-less-software">Less Software</a></h3>
770
+ <ul class="toc__sections">
771
+
772
+ </ul>
773
+ </li>
774
+
775
+ <li class="toc__chapter">
776
+ <p class="toc__chapter-number">Chapter 55</p>
777
+ <h3 class="toc__chapter-title"><a href="10.2-optimize-for-happiness">Optimize for Happiness</a></h3>
778
+ <ul class="toc__sections">
779
+
780
+ </ul>
781
+ </li>
782
+
783
+ <li class="toc__chapter">
784
+ <p class="toc__chapter-number">Chapter 56</p>
785
+ <h3 class="toc__chapter-title"><a href="10.3-code-speaks">Code Speaks</a></h3>
786
+ <ul class="toc__sections">
787
+
788
+ </ul>
789
+ </li>
790
+
791
+ <li class="toc__chapter">
792
+ <p class="toc__chapter-number">Chapter 57</p>
793
+ <h3 class="toc__chapter-title"><a href="10.4-manage-debt">Manage Debt</a></h3>
794
+ <ul class="toc__sections">
795
+
796
+ </ul>
797
+ </li>
798
+
799
+ <li class="toc__chapter">
800
+ <p class="toc__chapter-number">Chapter 58</p>
801
+ <h3 class="toc__chapter-title"><a href="10.5-open-doors">Open Doors</a></h3>
802
+ <ul class="toc__sections">
803
+
804
+ </ul>
805
+ </li>
806
+
807
+ </ul>
808
+ </div>
809
+
810
+ <div class="toc__part">
811
+
812
+ <h2 class="toc__part-title">Words</h2>
813
+
814
+ <ul class="toc__chapters">
815
+
816
+ <li class="toc__chapter">
817
+ <p class="toc__chapter-number">Chapter 59</p>
818
+ <h3 class="toc__chapter-title"><a href="11.1-theres-nothing-functional-about-afunctional-spec">There’s Nothing Functional about a Functional Spec</a></h3>
819
+ <ul class="toc__sections">
820
+
821
+ </ul>
822
+ </li>
823
+
824
+ <li class="toc__chapter">
825
+ <p class="toc__chapter-number">Chapter 60</p>
826
+ <h3 class="toc__chapter-title"><a href="11.2-dont-do-dead-documents">Don’t Do Dead Documents</a></h3>
827
+ <ul class="toc__sections">
828
+
829
+ </ul>
830
+ </li>
831
+
832
+ <li class="toc__chapter">
833
+ <p class="toc__chapter-number">Chapter 61</p>
834
+ <h3 class="toc__chapter-title"><a href="11.3-tell-me-a-quick-story">Tell Me a Quick Story</a></h3>
835
+ <ul class="toc__sections">
836
+
837
+ </ul>
838
+ </li>
839
+
840
+ <li class="toc__chapter">
841
+ <p class="toc__chapter-number">Chapter 62</p>
842
+ <h3 class="toc__chapter-title"><a href="11.4-use-real-words">Use Real Words</a></h3>
843
+ <ul class="toc__sections">
844
+
845
+ </ul>
846
+ </li>
847
+
848
+ <li class="toc__chapter">
849
+ <p class="toc__chapter-number">Chapter 63</p>
850
+ <h3 class="toc__chapter-title"><a href="11.5-personify-your-product">Personify Your Product</a></h3>
851
+ <ul class="toc__sections">
852
+
853
+ </ul>
854
+ </li>
855
+
856
+ </ul>
857
+ </div>
858
+
859
+ <div class="toc__part">
860
+
861
+ <h2 class="toc__part-title">Pricing and Signup</h2>
862
+
863
+ <ul class="toc__chapters">
864
+
865
+ <li class="toc__chapter">
866
+ <p class="toc__chapter-number">Chapter 64</p>
867
+ <h3 class="toc__chapter-title"><a href="12.1-free-samples">Free Samples</a></h3>
868
+ <ul class="toc__sections">
869
+
870
+ </ul>
871
+ </li>
872
+
873
+ <li class="toc__chapter">
874
+ <p class="toc__chapter-number">Chapter 65</p>
875
+ <h3 class="toc__chapter-title"><a href="12.2-easy-on-easy-off">Easy On, Easy Off</a></h3>
876
+ <ul class="toc__sections">
877
+
878
+ </ul>
879
+ </li>
880
+
881
+ <li class="toc__chapter">
882
+ <p class="toc__chapter-number">Chapter 66</p>
883
+ <h3 class="toc__chapter-title"><a href="12.3-silly-rabbit-tricks-are-for-kids">Silly Rabbit, Tricks are for Kids</a></h3>
884
+ <ul class="toc__sections">
885
+
886
+ </ul>
887
+ </li>
888
+
889
+ <li class="toc__chapter">
890
+ <p class="toc__chapter-number">Chapter 67</p>
891
+ <h3 class="toc__chapter-title"><a href="12.4-a-softer-bullet">A Softer bullet</a></h3>
892
+ <ul class="toc__sections">
893
+
894
+ </ul>
895
+ </li>
896
+
897
+ </ul>
898
+ </div>
899
+
900
+ <div class="toc__part">
901
+
902
+ <h2 class="toc__part-title">Promotion</h2>
903
+
904
+ <ul class="toc__chapters">
905
+
906
+ <li class="toc__chapter">
907
+ <p class="toc__chapter-number">Chapter 68</p>
908
+ <h3 class="toc__chapter-title"><a href="13.1-hollywood-launch">Hollywood Launch</a></h3>
909
+ <ul class="toc__sections">
910
+
911
+ </ul>
912
+ </li>
913
+
914
+ <li class="toc__chapter">
915
+ <p class="toc__chapter-number">Chapter 69</p>
916
+ <h3 class="toc__chapter-title"><a href="13.2-a-powerful-promo-site">A Powerful Promo Site</a></h3>
917
+ <ul class="toc__sections">
918
+
919
+ </ul>
920
+ </li>
921
+
922
+ <li class="toc__chapter">
923
+ <p class="toc__chapter-number">Chapter 70</p>
924
+ <h3 class="toc__chapter-title"><a href="13.3-ride-the-blog-wave">Ride the Blog Wave</a></h3>
925
+ <ul class="toc__sections">
926
+
927
+ </ul>
928
+ </li>
929
+
930
+ <li class="toc__chapter">
931
+ <p class="toc__chapter-number">Chapter 71</p>
932
+ <h3 class="toc__chapter-title"><a href="13.4-solicit-early">Solicit Early</a></h3>
933
+ <ul class="toc__sections">
934
+
935
+ </ul>
936
+ </li>
937
+
938
+ <li class="toc__chapter">
939
+ <p class="toc__chapter-number">Chapter 72</p>
940
+ <h3 class="toc__chapter-title"><a href="13.5-promote-through-education">Promote Through Education</a></h3>
941
+ <ul class="toc__sections">
942
+
943
+ </ul>
944
+ </li>
945
+
946
+ <li class="toc__chapter">
947
+ <p class="toc__chapter-number">Chapter 73</p>
948
+ <h3 class="toc__chapter-title"><a href="13.6-feature-food">Feature Food</a></h3>
949
+ <ul class="toc__sections">
950
+
951
+ </ul>
952
+ </li>
953
+
954
+ <li class="toc__chapter">
955
+ <p class="toc__chapter-number">Chapter 74</p>
956
+ <h3 class="toc__chapter-title"><a href="13.7-track-your-logs">Track Your Logs</a></h3>
957
+ <ul class="toc__sections">
958
+
959
+ </ul>
960
+ </li>
961
+
962
+ <li class="toc__chapter">
963
+ <p class="toc__chapter-number">Chapter 75</p>
964
+ <h3 class="toc__chapter-title"><a href="13.8-inline-upsell">Inline Upsell</a></h3>
965
+ <ul class="toc__sections">
966
+
967
+ </ul>
968
+ </li>
969
+
970
+ <li class="toc__chapter">
971
+ <p class="toc__chapter-number">Chapter 76</p>
972
+ <h3 class="toc__chapter-title"><a href="13.9-name-hook">Name Hook</a></h3>
973
+ <ul class="toc__sections">
974
+
975
+ </ul>
976
+ </li>
977
+
978
+ </ul>
979
+ </div>
980
+
981
+ <div class="toc__part">
982
+
983
+ <h2 class="toc__part-title">Support</h2>
984
+
985
+ <ul class="toc__chapters">
986
+
987
+ <li class="toc__chapter">
988
+ <p class="toc__chapter-number">Chapter 77</p>
989
+ <h3 class="toc__chapter-title"><a href="14.1-feel-the-pain">Feel The Pain</a></h3>
990
+ <ul class="toc__sections">
991
+
992
+ </ul>
993
+ </li>
994
+
995
+ <li class="toc__chapter">
996
+ <p class="toc__chapter-number">Chapter 78</p>
997
+ <h3 class="toc__chapter-title"><a href="14.2-zero-training">Zero Training</a></h3>
998
+ <ul class="toc__sections">
999
+
1000
+ </ul>
1001
+ </li>
1002
+
1003
+ <li class="toc__chapter">
1004
+ <p class="toc__chapter-number">Chapter 79</p>
1005
+ <h3 class="toc__chapter-title"><a href="14.3-answer-quick">Answer Quick</a></h3>
1006
+ <ul class="toc__sections">
1007
+
1008
+ </ul>
1009
+ </li>
1010
+
1011
+ <li class="toc__chapter">
1012
+ <p class="toc__chapter-number">Chapter 80</p>
1013
+ <h3 class="toc__chapter-title"><a href="14.4-tough-love">Tough Love</a></h3>
1014
+ <ul class="toc__sections">
1015
+
1016
+ </ul>
1017
+ </li>
1018
+
1019
+ <li class="toc__chapter">
1020
+ <p class="toc__chapter-number">Chapter 81</p>
1021
+ <h3 class="toc__chapter-title"><a href="14.5-in-fine-forum">In Fine Forum</a></h3>
1022
+ <ul class="toc__sections">
1023
+
1024
+ </ul>
1025
+ </li>
1026
+
1027
+ <li class="toc__chapter">
1028
+ <p class="toc__chapter-number">Chapter 82</p>
1029
+ <h3 class="toc__chapter-title"><a href="14.6-publicize-your-screwups">Publicize Your Screwups</a></h3>
1030
+ <ul class="toc__sections">
1031
+
1032
+ </ul>
1033
+ </li>
1034
+
1035
+ </ul>
1036
+ </div>
1037
+
1038
+ <div class="toc__part">
1039
+
1040
+ <h2 class="toc__part-title">Post-Launch</h2>
1041
+
1042
+ <ul class="toc__chapters">
1043
+
1044
+ <li class="toc__chapter">
1045
+ <p class="toc__chapter-number">Chapter 83</p>
1046
+ <h3 class="toc__chapter-title"><a href="15.1-one-month-tuneup">One Month Tuneup</a></h3>
1047
+ <ul class="toc__sections">
1048
+
1049
+ </ul>
1050
+ </li>
1051
+
1052
+ <li class="toc__chapter">
1053
+ <p class="toc__chapter-number">Chapter 84</p>
1054
+ <h3 class="toc__chapter-title"><a href="15.2-keep-the-posts-coming">Keep the Posts Coming</a></h3>
1055
+ <ul class="toc__sections">
1056
+
1057
+ </ul>
1058
+ </li>
1059
+
1060
+ <li class="toc__chapter">
1061
+ <p class="toc__chapter-number">Chapter 85</p>
1062
+ <h3 class="toc__chapter-title"><a href="15.3-better-not-beta">Better, Not Beta</a></h3>
1063
+ <ul class="toc__sections">
1064
+
1065
+ </ul>
1066
+ </li>
1067
+
1068
+ <li class="toc__chapter">
1069
+ <p class="toc__chapter-number">Chapter 86</p>
1070
+ <h3 class="toc__chapter-title"><a href="15.4-all-bugs-are-not-created-equal">All Bugs Are Not Created Equal</a></h3>
1071
+ <ul class="toc__sections">
1072
+
1073
+ </ul>
1074
+ </li>
1075
+
1076
+ <li class="toc__chapter">
1077
+ <p class="toc__chapter-number">Chapter 87</p>
1078
+ <h3 class="toc__chapter-title"><a href="15.5-ride-out-the-storm">Ride Out the Storm</a></h3>
1079
+ <ul class="toc__sections">
1080
+
1081
+ </ul>
1082
+ </li>
1083
+
1084
+ <li class="toc__chapter">
1085
+ <p class="toc__chapter-number">Chapter 88</p>
1086
+ <h3 class="toc__chapter-title"><a href="15.6-keep-up-with-the-joneses">Keep Up With the Joneses</a></h3>
1087
+ <ul class="toc__sections">
1088
+
1089
+ </ul>
1090
+ </li>
1091
+
1092
+ <li class="toc__chapter">
1093
+ <p class="toc__chapter-number">Chapter 89</p>
1094
+ <h3 class="toc__chapter-title"><a href="15.7-beware-the-bloat-monster">Beware the Bloat Monster</a></h3>
1095
+ <ul class="toc__sections">
1096
+
1097
+ </ul>
1098
+ </li>
1099
+
1100
+ <li class="toc__chapter">
1101
+ <p class="toc__chapter-number">Chapter 90</p>
1102
+ <h3 class="toc__chapter-title"><a href="15.8-go-with-the-flow">Go With The Flow</a></h3>
1103
+ <ul class="toc__sections">
1104
+
1105
+ </ul>
1106
+ </li>
1107
+
1108
+ </ul>
1109
+ </div>
1110
+
1111
+ <div class="toc__part">
1112
+
1113
+ <h2 class="toc__part-title">Conclusion</h2>
1114
+
1115
+ <ul class="toc__chapters">
1116
+
1117
+ <li class="toc__chapter">
1118
+ <p class="toc__chapter-number">Chapter 91</p>
1119
+ <h3 class="toc__chapter-title"><a href="16.1-start-your-engines">Start Your Engines</a></h3>
1120
+ <ul class="toc__sections">
1121
+
1122
+ </ul>
1123
+ </li>
1124
+
1125
+ </ul>
1126
+ </div>
1127
+
1128
+ </div>
1129
+
1130
+ <dl class="glossary hidden" data-target="glossary.source">
1131
+
1132
+ </dl>
1133
+ </nav>
1134
+ </main>
1135
+
1136
+ </body>
1137
+ </html>