const termsOfService = {
effectiveDate: "2025-01-01",
version: "1.0.0",
lastUpdated: "2025-01-01"
};
effectiveDate: "2025-01-01",
version: "1.0.0",
lastUpdated: "2025-01-01"
};
/* TERMS_OF_SERVICE.txt */
// The rules of engagement for Roger users
$ cat terms_of_service.txt
# Roger Terms of Service
// Effective: 2025-01-01
// Effective: 2025-01-01
## ACCEPTANCE
// By using Roger, you agree to these terms
if (user.usesRoger) {
user.agreesToTerms = true;
}
// By using Roger, you agree to these terms
if (user.usesRoger) {
user.agreesToTerms = true;
}
## SERVICE_DESCRIPTION
// What Roger does
const roger = {
purpose: "fitness_accountability",
target: "tech_founders",
method: "daily_checkins"
};
// What Roger does
const roger = {
purpose: "fitness_accountability",
target: "tech_founders",
method: "daily_checkins"
};
## USER_RESPONSIBILITIES
// What you agree to do
const userRules = {
lawfulUse: true,
accurateData: true,
noSpam: true
};
// What you agree to do
const userRules = {
lawfulUse: true,
accurateData: true,
noSpam: true
};
## INTELLECTUAL_PROPERTY
// Roger's code and content
const ownership = {
rogerCode: "owned_by_roger",
userData: "owned_by_user"
};
// Roger's code and content
const ownership = {
rogerCode: "owned_by_roger",
userData: "owned_by_user"
};
## LIABILITY
// We're not responsible for everything
const liability = "limited";
// We're not responsible for everything
const liability = "limited";
## GOVERNING_LAW
// Legal jurisdiction
const jurisdiction = "Brazil";
// Legal jurisdiction
const jurisdiction = "Brazil";
## UPDATES
// We might change these terms
function updateTerms() {
// Email notification
// 30 days notice
}
// We might change these terms
function updateTerms() {
// Email notification
// 30 days notice
}
## CONTACT
// Questions about terms?
const contact = "thiago@sharingram.com";
// Questions about terms?
const contact = "thiago@sharingram.com";
// Built by founders, for founders. Fair terms for fair use.