Skip to content

Instantly share code, notes, and snippets.

@louis030195
Created January 1, 2023 09:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save louis030195/b465c443b34d0697138e990a7bc37ec6 to your computer and use it in GitHub Desktop.
Save louis030195/b465c443b34d0697138e990a7bc37ec6 to your computer and use it in GitHub Desktop.

#personal-growth #personal

Months of the Year {{date:YYYY}}

Write 1 to 3 bullet points for any defining events that took place during each of the months of the year. Use your calendar, journal, photo reel, social media posts, or any other systems of record to prompt your memory. 

Look for significant events that adequately represent the month to you.

Hack: Press cmd+r and replace current year by last - then change last block end date to current year

January

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 1,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 2,
		    "day": 1
	      }
      }]
    }
  }
}

February

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 2,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 3,
		    "day": 1
	      }
      }]
    }
  }
}

March

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 3,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 4,
		    "day": 1
	      }
      }]
    }
  }
}

April

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 4,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 5,
		    "day": 1
	      }
      }]
    }
  }
}

May

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 5,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 6,
		    "day": 1
	      }
      }]
    }
  }
}

June

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 6,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 7,
		    "day": 1
	      }
      }]
    }
  }
}

July

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 7,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 8,
		    "day": 1
	      }
      }]
    }
  }
}

August

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 8,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 9,
		    "day": 1
	      }
      }]
    }
  }
}

September

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 9,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 10,
		    "day": 1
	      }
      }]
    }
  }
}

October

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 10,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 11,
		    "day": 1
	      }
      }]
    }
  }
}

November

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 11,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 12,
		    "day": 1
	      }
      }]
    }
  }
}

December

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 12,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 1,
		    "day": 1
	      }
      }]
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment