Dashboard
ML readiness
Category progress
Weekly task completion trend
Task breakdown (today)
Topic heatmap (ML roadmap)
Completed
Pending
Daily tasks
Today's checklist
Daily learning log
Weekly goals
Set your weekly goals and log progress each day.
This week's goals
Daily progress log this week
Monthly goals
Set monthly goals with completion percentage and weekly summaries.
This month's goals
Weekly summaries this month
Yearly goals
Big-picture annual goals with monthly summaries and completion tracking.
2025 goals
Monthly summaries this year
ML / AI role readiness roadmap
Tick each topic as you complete it β your dashboard updates in real time.
Overall readiness
0%
0 of 0 topics completed
Google Sheets sync
Push all your tracker data into a structured Google Sheet automatically.
Step 1 β Create the Apps Script
1Open a new Google Sheet β click Extensions β Apps Script
2Delete any existing code and paste this entire block:
function doPost(e) {
try {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var payload = JSON.parse(e.postData.contents);
// payload.sheets = [ {sheet: "Name", rows: [[...],[...]]}, ... ]
var sheetsData = payload.sheets || [payload]; // support both batch and single
sheetsData.forEach(function(item) {
var sheet = ss.getSheetByName(item.sheet);
if (!sheet) { sheet = ss.insertSheet(item.sheet); }
sheet.clearContents();
item.rows.forEach(function(row) { sheet.appendRow(row); });
});
return ContentService
.createTextOutput(JSON.stringify({status:'ok'}))
.setMimeType(ContentService.MimeType.JSON);
} catch(err) {
return ContentService
.createTextOutput(JSON.stringify({status:'error', msg:err.toString()}))
.setMimeType(ContentService.MimeType.JSON);
}
}
function doGet(e) {
return ContentService.createTextOutput('GrowthOS Sync active β');
}
3Click Deploy β New deployment β Web app
4Set Who has access to Anyone β Deploy β Copy the URL
Step 2 β Connect & sync
Sheets that will be created / updated
π Daily Tasks β date, task, done
π Weekly Tasks β task, done
π Monthly Tasks β task, %, done
π Yearly Goals β goal, %, done
π Daily Notes β date, note
π ML Roadmap β category, topic, done
π Weekly Summaries β label, summary
π Monthly Summaries β month, summary