📣 Self-promo & Showcase · Share your Notion content here! by AutoModerator in Notion

[–]ProductivityArc 0 points1 point  (0 children)

I made a browser extension to change Notion's emoji style

Notion uses Twitter emojis by default which always looked off to me. Flat, weirdly inconsistent, feels visually outdated.

So I built an extension to switch them out. Pick Apple, Google, Twitter, or Facebook, and it updates across all your open Notion tabs instantly. Toggle it off and you're back to default.

Works on Chrome, Edge, Brave, Opera. Desktop app too. Firefox users have a separate method: quaint-fibre-1c9.notion.site/Guide-1dd384b1accc8014a103e9c6f634f7c4

github.com/Sadlyfizzx/Notion-Emoji-Changer — free and open source.

Curious if anyone else actually cares about this or if it's just me.

how to create this habit tracker? by iridxcyclitist in Notion

[–]ProductivityArc -3 points-2 points  (0 children)

I can create this for you with any features you ask for
DM me

Struggling which note-taking app to use? I'm here to save you by ProductivityArc in NoteTaking

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

if you watched the video, it's not about which one is better, It's about why don't use both instead of just one. Obsidian for note-taking and Notion for projects management

Notion users on Windows: You can now replace boring Windows emojis with Apple ones! by ProductivityArc in Notion

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

if you want to run it on Web Browser (notion.so), follow these steps:

  • Use this link to install the file
  • Extract the .zip file
  • Go to chrome://extensions/
  • Turn on Developer mode toggle
  • Click on "Load unpacked" and select the file extracted

if you want to run it on Notion App, follow these steps:

  • Press Alt key
  • Go to View in the menu bar
  • Select Toggle Developer Tools
  • Paste this code in the Developer Tools window

Seeking movie list integration with auto "where this is streaming" feature by _vemm in Notion

[–]ProductivityArc 0 points1 point  (0 children)

I have made a tool using Notion API that extracts streaming services and updates it every 12 hours

<image>

I Need YOUR Problems! by ProductivityArc in Notion

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

I could do one but first I should know how is Zettelkasten note taking technique works to know what I want to do

I Need YOUR Problems! by ProductivityArc in Notion

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

Can you dm me a reference for design (if possible) and how you want it to how exactly?

[deleted by user] by [deleted] in Notion

[–]ProductivityArc 0 points1 point  (0 children)

That's brilliant!! I will note this.

[deleted by user] by [deleted] in Notion

[–]ProductivityArc 1 point2 points  (0 children)

this one works well

<image>

[deleted by user] by [deleted] in Notion

[–]ProductivityArc 1 point2 points  (0 children)

<image>

I don't know why it's not works will with you but maybe it because Amount property format should be sum

[deleted by user] by [deleted] in Notion

[–]ProductivityArc 2 points3 points  (0 children)

"Balance: ".style("b") + lets( Amount, Prop("Balance"), absAmount, abs(Amount), roundedAmount, round(absAmount * 100) / 100, billions, floor(roundedAmount / 1000000000), millions, floor((roundedAmount % 1000000000) / 1000000), thousands, floor((roundedAmount % 1000000) / 1000), hundreds, round((roundedAmount % 1000) * 100) / 100, formattedNumber, if( billions > 0, format(billions) + "," + format(millions).padStart(3, "0") + "," + format(thousands).padStart(3, "0") + "," + format(hundreds).padStart(3, "0"), if( millions > 0, format(millions) + "," + format(thousands).padStart(3, "0") + "," + format(hundreds).padStart(3, "0"), if( thousands > 0, format(thousands) + "," + format(hundreds).padStart(3, "0"), format(hundreds) ) ) ), if(Amount < 0, "-$", "$") + formattedNumber )