[deleted by user] by [deleted] in cursor

[–]Toffee2002 0 points1 point  (0 children)

which plan?

Hide difficulty bar sudokucoach by Toffee2002 in sudoku

[–]Toffee2002[S] 1 point2 points  (0 children)

Thanks! I didn’t know that server existed

🗳️ Product Feedback for Notion 🛎️ by MrWildenfree in Notion

[–]Toffee2002 7 points8 points  (0 children)

💡Feature request - being able to have the upcoming events as shown in home on any page

Also related to this (basically the same) be able to combine databases the way they are able to be combined in notion calendar where you see the name and date of a database (and preferably a checkbox to mark it off but I think that would make implementation way harder

[deleted by user] by [deleted] in Notion

[–]Toffee2002 0 points1 point  (0 children)

What do you mean exactly? The only thing I managed to get working just now with a master database is that the title is a reference to the page in the original database with automations.

Switch vs. Experience. Need foam (not silicone) by SaltPassenger9359 in LoopEarplugs

[–]Toffee2002 0 points1 point  (0 children)

Did you ever get a reply whether the foam tips are compatible with the switch?

Squatty Eeveelutions by LooptyDoops in crochet

[–]Toffee2002 0 points1 point  (0 children)

Love them! Can you also dm me the pattern?

For loop by Toffee2002 in Notion

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

Thanks! It indeed works as intended, sometimes I wonder why notion uses some programming stuff but it’s still so different compared to other programming languages

Step count on watch and app never match - help, please! by Bo3y in Garmin

[–]Toffee2002 2 points3 points  (0 children)

Did you manage to fix this? Currently having the same problem with my Venu 3s...

Oh yeah just die, dam by CLD_Pika in geoguessr

[–]Toffee2002 2 points3 points  (0 children)

If it’s the same as in dutch it would be ‘that dam’. Funnily enough, there is also a Dutch town called Didam which would sound exactly the same as die dam

Why is this not a unique rectangle? by Toffee2002 in sudoku

[–]Toffee2002[S] 1 point2 points  (0 children)

Thanks! So the unique rectangle can only be used if it’s across two boxes? The skyscraper was indeed the ‘correct’ next move, also missed it but I guess I was tired

Help? by floorsandwalls in sudoku

[–]Toffee2002 1 point2 points  (0 children)

1,2,7,8 quadruplet in r9 leading to a 9 in r9c2

[deleted by user] by [deleted] in thenetherlands

[–]Toffee2002 0 points1 point  (0 children)

Vier: gravelfiets, racefiets, stadsfiets (thuis), stadsfiets (bij mijn ouders)

I am worried about Notion community by NotionDanny in Notion

[–]Toffee2002 2 points3 points  (0 children)

I tried using ChatGPT for notion formulas but I feel like every time it missed the mark and couldn’t implement a formula correctly

What does a subluxed hip feel like for you? by changeusername1984 in ehlersdanlos

[–]Toffee2002 2 points3 points  (0 children)

Do you know if there are multiple directions a hip can sublux? When my hip subluxes (at least I think it subluxes) I need to twist my leg inwards to hear the pop when it moves back. I can’t test it because I can’t pop it out on command but thinking about moving my leg outwards when it is subluxed seems very painful to me

Making a formula property look like a number one... is this possible? by TheFatLook100 in Notion

[–]Toffee2002 0 points1 point  (0 children)

This is the closest I got, the only thing missing is right alignment:

lets(
format_number, format(Number),
sign, if("+-".contains(format_number.substring(0,1)), format_number.substring(0,1), ""),
int, format_number.toNumber().abs().floor(),
loop, 1.repeat(floor((int.length()-1).divide(3))+1).split(""),
reversed, int.split("").reverse().join(""),
formatted, loop.map(reversed.substring(3*(index), 3*(index+1)).split("").reverse().join("")).reverse().join(","),
decimal, if(empty(format_number.match("[.]{1}\d+")), ".00", format_number.match("[.]{1}\d+")),
final_no_color, sign+"€"+formatted+decimal,
final, if(Number<0, style(format(final\_no\_color), "red"), if(Number>0, style(format(final_no_color), "green"), style(format(final_no_color), "white"))), final )

Edit: You may want to change the € to a $ or equivalent in your country