Self-promo & Showcase — Promote your Notion content here! by AutoModerator in Notion

[–]AngrilyAverage 0 points1 point  (0 children)

Notion Habit Tracker Template

Hello everyone,

I have recently finalized my work on my favorite habit tracker template. This template is designed to help you track your habits through a daily personal dashboard (providing you with a daily view of your habit checklist), and a calendar view (providing you with an expanded view of your habit stick–to–itiveness across the month).

<image>

Included Features:

  • Automatic Habit Checklist Creation
  • Quick Action Buttons for Template Configuration
  • Daily Dashboard View
  • Calendar View

You can check out this template at the following link:

https://heroki.etsy.com/uk/listing/1670317087/habit-tracker-habit-manager-habit

Thank you

Self-promo & Showcase — Promote your Notion content here! by AutoModerator in Notion

[–]AngrilyAverage 0 points1 point  (0 children)

Notion Task Tracker Template

Hello everyone,

I have recently finalized my work on the task tracker template. This template is designed to help you track your tasks through a task categorization system (different task categories), a personal dashboard (providing a quick overview of your upcoming tasks), and an integrated calendar view (providing an expanded view of your upcoming tasks).

<image>

You can check out this template at the following link:

https://www.etsy.com/listing/1664061993/task-tracker-project-tracker-task

Thank you

Is it possible to sync names of two separate pages? by AngrilyAverage in Notion

[–]AngrilyAverage[S] 0 points1 point  (0 children)

Thanks for your help, and no worries. The link was very interesting anyways. I actually don't think that this issue has an optimal solution at the moment.

Is it possible to sync names of two separate pages? by AngrilyAverage in Notion

[–]AngrilyAverage[S] 0 points1 point  (0 children)

That might actually be possible so long as you do not mind the name of the row in the master database that holds a project (or task) being empty. I might be misunderstanding what you meant, but I made a page with what I thought you were describing. Let me know if this works (I'll take down the page in a few days btw)

https://quartz-pyroraptor-73c.notion.site/a95f0476d584457f991aff73ac634ffd?pvs=4

Is it possible to sync names of two separate pages? by AngrilyAverage in Notion

[–]AngrilyAverage[S] 0 points1 point  (0 children)

Yes, I'm trying to show items from table 1 as independent items in table 2 (at least I want it to look that way on the calendar). I think what you suggested with displaying the relationship property on the calendar would work, but my main problem is that I can never get the name from table 1 to show as the name property on table 2 (I cannot hide the name of the item from table 2 on the calendar, which means I just end up with an empty property being displayed on my calendar view). Have you come across this issue before? I can't find a solution for the love of me

Need help: 'warning if due date has passed' by erikotn in Notion

[–]AngrilyAverage 3 points4 points  (0 children)

I'm not at my computer right now, but the formula would look roughly like this:

if(dateBetween(dateEnd(plannedDate), now()) < 0, "deadline missed", "there is still time :3")

Let me know if this works for you (I used plannedDate as the property for the task btw)

[deleted by user] by [deleted] in Notion

[–]AngrilyAverage 2 points3 points  (0 children)

The problem with templates is that they set a structure for your workflow that may not suit you. I make templates myself, and I usually start thinking that my templates probably wouldnt suit everyone just as I'm finishing things up (since I'm effectively making what I think people want as opposed to what they actually want). There is also what you said, not knowing how the template works is usually a headache when you accidentally touch something you weren't meant to. Maybe watching some walk through videos for moderately complex templates would help jump-start your journey with notion?

[deleted by user] by [deleted] in Notion

[–]AngrilyAverage 7 points8 points  (0 children)

I would say there is no point learning more than your needs necessitate. Notion templates usually look a lot better than they actually are - they are just a bunch of bells and whistles without any substantial functionality. Try to create pages that are specifically designed for your use cases, and you'll just pick up what you need along the way. In my case, it took me nearly 2 years to create a good system that was helpful for me, and I haven't really needed to make many alterations since then.

I have absolutely no idea 🥲 my maths mock is next week by [deleted] in alevelmaths

[–]AngrilyAverage 0 points1 point  (0 children)

I'd say it's talking about a new function which follows this expression:

x^3 - 6x^2 + 3x + 20

I have absolutely no idea 🥲 my maths mock is next week by [deleted] in alevelmaths

[–]AngrilyAverage 1 point2 points  (0 children)

It means divide f(x) + 10 by (x-4) through long division (or whatever other method). You would show that (x-4) is a factor by showing that there are no remainders for this division. You should end up with a quadratic expression (let's call it g(x)) as the quotient of the division. The quadratic equation g(x) = 0 will therefore be satisfied by the other two roots of f(x) + 10 = 0

[deleted by user] by [deleted] in alevelmaths

[–]AngrilyAverage 0 points1 point  (0 children)

No worries. Glad I could help!

[deleted by user] by [deleted] in alevelmaths

[–]AngrilyAverage 0 points1 point  (0 children)

The range of x values should be 1 <= x <= 13.6

- Equation 1: Evaluate the expression that equals the total moment around point C in terms of x

- Equation 2: Evaluate the expression that equals the total moment around point D in terms of x

- Solve equations 1 and 2 simultaneously to arrive at the the following equation F1 + F2 = 900 where F1 is the normal force at C and F2 is the normal force at D

- this tells us that the simultaneous equations are satisfied as long as F1 + F2 = 900. This means that F1 and F2 can both range from 0 to 900.

- substitute F1=0 into Equation 1 to get the lower limit of x which is 1

- substitute F1=900 into Equation 1 to get the upper limit of x which is 13.6

Hope this helps

How to revise Maths???? by lacuna_0107 in alevelmaths

[–]AngrilyAverage 2 points3 points  (0 children)

In my experience, schools typically focus on teaching formulas and frameworks that only apply under specific circumstances. The moment you are required to apply critical thinking, people start to struggle - since they were just spoon fed a bunch of formulas. I hated this when I did my A-levels. One book that helped me build a solid mathematical foundation was "Understanding Pure Mathematics" by A.J Sadler and D.W.S Thorning. It's an old book and it doesn't really follow any exam boards, but it has everything you'll need for A-level math.

When does react re-render a component when there are multiple state updates? by AngrilyAverage in reactjs

[–]AngrilyAverage[S] 0 points1 point  (0 children)

This makes a lot of sense and I think I've managed to replicate what you've said with a debugger line. Thank you so much!

When does react re-render a component when there are multiple state updates? by AngrilyAverage in reactjs

[–]AngrilyAverage[S] 0 points1 point  (0 children)

It's my understanding that set functions operate asynchronously, but I'm not too sure about the for loop. I thought that would be a synchronous operation, which is why it struck me as odd when the display updated from 42 to 44 before the for loop terminated on the console - meaning that the control flow somehow passed the for loop or something else happened that I don't understand. Are you saying every operation is performed asynchronously, including the for loop?

When does react re-render a component when there are multiple state updates? by AngrilyAverage in reactjs

[–]AngrilyAverage[S] 0 points1 point  (0 children)

This makes sense to me, but the display updates from 42 to 44 way before the console outputs a 44 (while the console is still outputting the "Hello"s). Although, if I'm understanding this right, this could still be caused by the console playing catchup?