-
Notifications
You must be signed in to change notification settings - Fork 0
/
notion.json
1165 lines (1165 loc) · 100 KB
/
notion.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": "https://jsonfeed.org/version/1.1",
"title": "r/notion",
"description": "Write, plan, collaborate, and get organized. Notion is all you need \u2014 in one tool. This community-run subreddit is all about Notion, the future of productivity apps.",
"home_page_url": "https://reddit.com",
"feed_url": "https://raw.githubusercontent.com/jonathanlaniado/feeds/master/notion.json",
"icon": "https://styles.redditmedia.com/t5_hds7r/styles/communityIcon_324t3hd214r81.jpeg",
"favicon": "https://styles.redditmedia.com/t5_hds7r/styles/communityIcon_324t3hd214r81.jpeg",
"items": [
{
"id": "1ge7n8j",
"url": "/r/Notion/comments/1ge7n8j/notions_biggest_update_happened_4_days_ago_heres/",
"external_url": "https://www.reddit.com/r/Notion/comments/1ge7n8j/notions_biggest_update_happened_4_days_ago_heres/",
"title": "Notion's biggest update happened 4 days ago \u2192 here's the recap if you missed it",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1ge7n8j/notions_biggest_update_happened_4_days_ago_heres/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1ge7n8j/notions_biggest_update_happened_4_days_ago_heres/'>Reddit</a></caption><div><br></div><p>Notion dropped some major updates at their 'Make With Notion' conference just four days ago.</p>\n<p>If you weren't there, this is for you:</p>\n<h1>TL;DR: What's New?</h1>\n<ul>\n<li><strong>Forms:</strong> Create and share forms directly in Notion</li>\n<li><strong>Layouts:</strong> Customize your database page layouts</li>\n<li><strong>Automations:</strong> New formula-based automations and Gmail integration</li>\n<li><strong>Marketplace:</strong> Sell your templates on Notion</li>\n<li><strong>Notion Mail:</strong> Turn your inbox into a Notion database (coming in early 2025)</li>\n<li><strong>Offline Mode:</strong> Currently in alpha</li>\n</ul>\n<p>Intrigued? Want more details?</p>\n<p>There you go \u2193</p>\n<h1>1. Notion Forms</h1>\n<p>Notion has been teasing this feature for a while, and now it's finally here!\u00a0<strong>Notion Forms</strong>\u00a0allows you to say goodbye to external survey tools and gather data directly into your Notion databases.</p>\n<p><a href=\"https://preview.redd.it/g467qbu14jxd1.jpg?width=1920&format=pjpg&auto=webp&s=dddf95a34acac96704ace0905d9cbbe6b23364c7\">Notion Forms</a></p>\n<p><strong>What can you do with Notion Forms?</strong></p>\n<ul>\n<li>Create unlimited forms by typing /form or adding a new view to any database</li>\n<li>Share forms privately or publicly</li>\n<li>Collect anonymous responses</li>\n<li>Use conditional logic (coming soon)</li>\n</ul>\n<p>This is perfect for setting up internal helpdesks, expense reports, or collecting feedback!</p>\n<h1>2. Database Layouts</h1>\n<p>Notion's new\u00a0<strong>Database Layout Builder</strong>\u00a0gives you more control over how your content is displayed, allowing you to create\u00a0<strong>custom page structures</strong>.</p>\n<p><a href=\"https://preview.redd.it/jlzczgw54jxd1.jpg?width=1920&format=pjpg&auto=webp&s=bddc6229c2765e96da95cc4bbccc5a54ab24df68\">Notion Layouts</a></p>\n<p><strong>What's New?</strong></p>\n<ul>\n<li>Pin up to 4 important properties below page titles</li>\n<li>Group properties on the main page or in a sidebar</li>\n<li>Add modules like photos or numbers for key metrics</li>\n<li>Choose whether to display property icons</li>\n</ul>\n<p>Note: Currently, you can only have one layout per database that applies to all pages.</p>\n<h1>3. New Automations</h1>\n<p>Notion's\u00a0<strong>Automation</strong>\u00a0features have received a significant upgrade, with 2 powerful new additions:</p>\n<ul>\n<li><strong>Formula Automations:</strong>\u00a0Create complex automations using formulas and automatically change linked database page properties</li>\n<li><strong>Gmail Notifications:</strong>\u00a0Trigger and personalize Gmail notifications directly from Notion using variables and formulas</li>\n</ul>\n<p><a href=\"https://preview.redd.it/xktgwlgb4jxd1.jpg?width=1920&format=pjpg&auto=webp&s=452d533a5a4dca73caf277e957489128add9b787\">Notion New Automations</a></p>\n<p><strong>Here are some practical use cases:</strong></p>\n<ul>\n<li>Set a project to \"In Progress\" when the first task starts</li>\n<li>Automatically mark all tasks as \"Done\" when a project closes</li>\n<li>Send email updates to members when a project status changes</li>\n</ul>\n<h1>4. Notion Marketplace</h1>\n<p>The\u00a0<strong>Notion Marketplace</strong>\u00a0is replacing the current Template Gallery, turning Notion into a proper marketplace for creators.</p>\n<p><a href=\"https://preview.redd.it/hf1yktui4jxd1.jpg?width=1920&format=pjpg&auto=webp&s=303f772c061ab01853b3e96be5bf9decc5ce94a7\">Notion Marketplace</a></p>\n<p>Here's what's new:</p>\n<ul>\n<li>Monetization: Sell templates directly on the marketplace with a 10% fee</li>\n<li>User Engagement: Collect buyer emails, enable ratings and reviews, and access sales stats</li>\n<li>Buyer Protection: Templates are locked to prevent unauthorized transfers, with a 14-day refund window</li>\n</ul>\n<p>This new marketplace will help users identify the best templates and creators, saving time that might otherwise be spent struggling with bad templates.</p>\n<h1>5. Notion Mail (coming in early 2025)</h1>\n<p><strong>Notion Mail</strong>, potentially the biggest announcement of the conference, is set to revolutionize how we handle emails within the Notion ecosystem. Currently in alpha, it's expected to launch in\u00a0<strong>early 2025</strong>.</p>\n<p><a href=\"https://preview.redd.it/05itmb3l4jxd1.jpg?width=1920&format=pjpg&auto=webp&s=39c2cd8631ab43f72e9512558ff16adeacbe7cf0\">Notion Mail</a></p>\n<p><strong>Here's what Notion Mail will offer:</strong></p>\n<ul>\n<li>Email inbox functioning like a customizable Notion database</li>\n<li>Organize emails based on workflows, not just by date</li>\n<li>Use shortcuts to avoid manually rewriting emails</li>\n<li>AI-powered features for inbox organization and automatic responses</li>\n<li>Use Notion blocks to write beautiful emails</li>\n</ul>\n<p>Note: You can sign up for\u00a0<a href=\"https://affiliate.notion.so/mail-notion\"><strong>the waitlist</strong></a>\u00a0to be among the first to try it!</p>\n<h1>6. Offline Mode (currently in alpha)</h1>\n<p>Great news! Notion has confirmed that\u00a0<strong>offline mode</strong>\u00a0is in development and currently in alpha.</p>\n<p>This highly requested feature will allow you to access and work on your Notion pages without an internet connection, making Notion even more versatile for users on-the-go. Stay tuned for its release!</p>\n<h1>What Should You Do Now?</h1>\n<p>Notion's rolling these updates out gradually, so if you don't see them yet, give it some time. Meanwhile, here are a few steps to help you get started:</p>\n<ol>\n<li><strong>Try Forms:</strong>\u00a0Set up a form for collecting feedback, feature requests, or surveys.</li>\n<li><strong>Explore New Layouts:</strong>\u00a0Review your most-used databases and experiment with the new layout options.</li>\n<li><strong>Set Up Automations:</strong>\u00a0Think about workflows you can automate, especially with the new Gmail integration.</li>\n<li><strong>Prepare for Notion Mail:</strong>\u00a0Join the waitlist and start brainstorming how you might integrate email into your Notion workflows.</li>\n</ol>\n<h1>Now...</h1>\n<p>Have you already started building cool stuff with these new features?</p>\n<p>Share your creations in the comments below. </p>\n<p>Let's inspire each other!</p>",
"date_published": "2024-10-28T17:18:59+00:00",
"authors": [
{
"name": "qntnv",
"url": "https://www.reddit.com/user/qntnv"
}
]
},
{
"id": "1gcrvfu",
"url": "/r/Notion/comments/1gcrvfu/a_simple_project_task_management_system_ive/",
"external_url": "https://i.redd.it/kvsjo8nkb5xd1.png",
"title": "A simple Project & Task Management System I've created. I thought some of you might find it helpful :)",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1gcrvfu/a_simple_project_task_management_system_ive/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1gcrvfu/a_simple_project_task_management_system_ive/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/kvsjo8nkb5xd1.png\" />",
"date_published": "2024-10-26T18:43:06+00:00",
"authors": [
{
"name": "eyomiha",
"url": "https://www.reddit.com/user/eyomiha"
}
]
},
{
"id": "1gb9kfi",
"url": "/r/Notion/comments/1gb9kfi/notion_offline_mode_announced_as_in_progress_at/",
"external_url": "https://i.redd.it/tc6odg2dyqwd1.jpeg",
"title": "Notion Offline Mode - Announced as In Progress At Made in Notion",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1gb9kfi/notion_offline_mode_announced_as_in_progress_at/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1gb9kfi/notion_offline_mode_announced_as_in_progress_at/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/tc6odg2dyqwd1.jpeg\" />",
"date_published": "2024-10-24T18:23:58+00:00",
"authors": [
{
"name": "LewisTheScot",
"url": "https://www.reddit.com/user/LewisTheScot"
}
]
},
{
"id": "1gaywn8",
"url": "/r/Notion/comments/1gaywn8/notions_big_updates_are_just_12_hours_away_which/",
"external_url": "https://i.redd.it/hcpa0tlufowd1.png",
"title": "Notion's big updates are just 12 hours away. which talk are you most excited about?",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1gaywn8/notions_big_updates_are_just_12_hours_away_which/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1gaywn8/notions_big_updates_are_just_12_hours_away_which/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/hcpa0tlufowd1.png\" />",
"date_published": "2024-10-24T09:56:49+00:00",
"authors": [
{
"name": "lukakopajtic",
"url": "https://www.reddit.com/user/lukakopajtic"
}
]
},
{
"id": "1g8npez",
"url": "/r/Notion/comments/1g8npez/my_cyberpunk_life_os_template/",
"external_url": "https://v.redd.it/820zdjq1k3wd1",
"title": "\ud83c\udf03 my cyberpunk `life os` template",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1g8npez/my_cyberpunk_life_os_template/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1g8npez/my_cyberpunk_life_os_template/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-10-21T11:47:03+00:00",
"authors": [
{
"name": "MedicalSet4355",
"url": "https://www.reddit.com/user/MedicalSet4355"
}
]
},
{
"id": "1g8aprp",
"url": "/r/Notion/comments/1g8aprp/please_let_me_turn_off_ai/",
"external_url": "https://www.reddit.com/r/Notion/comments/1g8aprp/please_let_me_turn_off_ai/",
"title": "Please let me turn off AI!",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1g8aprp/please_let_me_turn_off_ai/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1g8aprp/please_let_me_turn_off_ai/'>Reddit</a></caption><div><br></div><p>I understand why you have it! I love AI! I subscribe to all of them!</p>\n<p>Just don\u2019t want it here!</p>\n<p>Focus on making the app lightning quick!</p>\n<p>That\u2019s it. </p>",
"date_published": "2024-10-20T22:19:58+00:00",
"authors": [
{
"name": "GolfnNSkiing",
"url": "https://www.reddit.com/user/GolfnNSkiing"
}
]
},
{
"id": "1g7gx3h",
"url": "/r/Notion/comments/1g7gx3h/lets_be_honest_about_notion_ai/",
"external_url": "https://www.reddit.com/r/Notion/comments/1g7gx3h/lets_be_honest_about_notion_ai/",
"title": "Let\u2019s be honest about Notion AI",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1g7gx3h/lets_be_honest_about_notion_ai/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1g7gx3h/lets_be_honest_about_notion_ai/'>Reddit</a></caption><div><br></div><p>It sucks. It\u2019s using subpar models and it\u2019s unable to fulfill tasks such as identifying stuff inside specific databases when asked to. </p>\n<p>Dear Notion team, it\u2019s all cool and all that you want to be an AI company because of the hype, funding and actual usefulness. Still, let\u2019s take a page from Apple\u2019s book and let people integrate their already existing subscription to services such as ChatGPT and Claude to Notion\u2019s AI? Then you guys can focus on contextual information and integration instead of whatever is happening pls and thx.</p>",
"date_published": "2024-10-19T19:41:42+00:00",
"authors": [
{
"name": "profilehere",
"url": "https://www.reddit.com/user/profilehere"
}
]
},
{
"id": "1g6qt8z",
"url": "/r/Notion/comments/1g6qt8z/burn/",
"external_url": "https://i.redd.it/mljcsptlikvd1.jpeg",
"title": "Burn!",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1g6qt8z/burn/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1g6qt8z/burn/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/mljcsptlikvd1.jpeg\" />",
"date_published": "2024-10-18T19:40:48+00:00",
"authors": [
{
"name": "vanchica",
"url": "https://www.reddit.com/user/vanchica"
}
]
},
{
"id": "1g50swv",
"url": "/r/Notion/comments/1g50swv/seeking_a_to_do_list_and_ai_task_management_tool/",
"external_url": "https://www.reddit.com/r/Notion/comments/1g50swv/seeking_a_to_do_list_and_ai_task_management_tool/",
"title": "Seeking a To do list and AI task management tool",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1g50swv/seeking_a_to_do_list_and_ai_task_management_tool/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1g50swv/seeking_a_to_do_list_and_ai_task_management_tool/'>Reddit</a></caption><div><br></div><p>Hey everyone!</p>\n<p>I\u2019m dealing with chronic fatigue syndrome, and I\u2019m really trying to improve my routines and time management. I\u2019ve tried a bunch of apps and websites, but I haven\u2019t found one that has everything I need. It\u2019s been a bit overwhelming, so I thought I\u2019d reach out here for some recommendations. Thanks in advance!</p>\n<p>Here\u2019s what I\u2019m hoping to find:</p>\n<ul>\n<li><strong>Task Breakdown:</strong>\u00a0I need a way to split projects into smaller, manageable tasks or subcategories.</li>\n<li><strong>Progress Insights:</strong>\u00a0It would be great if the tool has features to analyze how I spend my time or track my habits.</li>\n<li><strong>Preferred Timing:</strong>\u00a0A feature to specify the best times for completing tasks would be super helpful.</li>\n<li><strong>Focus Sessions:</strong>\u00a0I\u2019d appreciate a way to schedule dedicated focus periods for specific tasks.</li>\n<li><strong>Recurring Task Scheduler:</strong>\u00a0I\u2019d love to set up and manage tasks that repeat regularly.</li>\n<li><strong>Smart Scheduling:</strong>\u00a0An AI-driven planner would be a huge bonus!</li>\n<li><strong>Flexible Deadlines:</strong>\u00a0I need a tool that can manage tasks with varying deadlines.</li>\n</ul>\n<p>So far, I\u2019ve checked out the following apps:</p>\n<ul>\n<li><a href=\"http://Sunsama.com\">Sunsama</a><strong>:</strong>\u00a0It helps with task breakdowns and has some tracking features, but it\u2019s missing a perfect to do list.</li>\n<li><a href=\"http://Cerefine.com\">Cerefine</a><strong>:</strong>\u00a0I\u2019ve just started using it, and it seems to check off a lot of my boxes. To-do list, habit tracking, and focus sessions. I\u2019d love to hear if anyone else has experience with it!</li>\n<li><a href=\"http://Notion.com\">Notion</a><strong>:</strong>\u00a0I like its flexibility, but it can be overwhelming. The complex interface, information overload, and numerous features can make it hard to stay organized.</li>\n<li><a href=\"http://Omnifocus.com\">Omnifocus</a><strong>:</strong>\u00a0I like that it allows for detailed task management, but the lack of a web version is a downside.</li>\n<li><a href=\"http://Asana.com\">Asana</a><strong>:</strong>\u00a0Good for organizing tasks and tracking progress, but it doesn\u2019t have features for recurring tasks.</li>\n<li><a href=\"http://Skedpal.com\">Skedpal</a><strong>:</strong>\u00a0I found it helpful for scheduling tasks at specific times, but I\u2019m looking for something with more features.</li>\n</ul>\n<p>If anyone has any suggestions or knows of tools that fit these needs, I would really appreciate it!</p>",
"date_published": "2024-10-16T14:32:30+00:00",
"authors": [
{
"name": "aymanof96",
"url": "https://www.reddit.com/user/aymanof96"
}
]
},
{
"id": "1g3dlgy",
"url": "/r/Notion/comments/1g3dlgy/using_notion_in_combination_with_cerefine_to_stay/",
"external_url": "https://www.reddit.com/r/Notion/comments/1g3dlgy/using_notion_in_combination_with_cerefine_to_stay/",
"title": "Using Notion in combination with Cerefine to stay productive",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1g3dlgy/using_notion_in_combination_with_cerefine_to_stay/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1g3dlgy/using_notion_in_combination_with_cerefine_to_stay/'>Reddit</a></caption><div><br></div><p>I\u2019ve been using <a href=\"http://Notion.com\">Notion</a> for a while to organize everything... notes, tasks, projects, all that. It\u2019s been good, but I feel like I keep planning stuff without actually sticking to it. Notion helps me set goals, but I kept falling behind on making progress.</p>\n<p>I recently tried out <a href=\"http://cerefine.com\">Cerefine</a>, and it\u2019s not a replacement for Notion, but I\u2019m finding it\u2019s actually helping me stick to what I set up in Notion. Like Cerefine handles the day to day accountability and progress tracking for the goals I set up on Notion. Does anyone else use Notion in combination with another app?</p>",
"date_published": "2024-10-14T11:35:36+00:00",
"authors": [
{
"name": "junkai90",
"url": "https://www.reddit.com/user/junkai90"
}
]
},
{
"id": "1fvvhd9",
"url": "/r/Notion/comments/1fvvhd9/what_are_your_second_brain_apps/",
"external_url": "https://i.redd.it/7cohubtrppsd1.png",
"title": "What are your second brain apps?",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1fvvhd9/what_are_your_second_brain_apps/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1fvvhd9/what_are_your_second_brain_apps/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/7cohubtrppsd1.png\" />",
"date_published": "2024-10-04T09:57:37+00:00",
"authors": [
{
"name": "heyeaslo",
"url": "https://www.reddit.com/user/heyeaslo"
}
]
},
{
"id": "1fv6yae",
"url": "/r/Notion/comments/1fv6yae/i_created_some_pixel_icons_and_assets_for_notion/",
"external_url": "https://www.reddit.com/gallery/1fv6yae",
"title": "I created some pixel icons and assets for Notion, along with a pixel avatar maker :)",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1fv6yae/i_created_some_pixel_icons_and_assets_for_notion/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1fv6yae/i_created_some_pixel_icons_and_assets_for_notion/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-10-03T12:50:22+00:00",
"authors": [
{
"name": "nasstaran",
"url": "https://www.reddit.com/user/nasstaran"
}
]
},
{
"id": "1fu2e3c",
"url": "/r/Notion/comments/1fu2e3c/petition_to_change_the_subreddit_picture_back/",
"external_url": "https://www.reddit.com/r/Notion/comments/1fu2e3c/petition_to_change_the_subreddit_picture_back/",
"title": "Petition to change the subreddit picture back from the stupid AI face",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1fu2e3c/petition_to_change_the_subreddit_picture_back/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1fu2e3c/petition_to_change_the_subreddit_picture_back/'>Reddit</a></caption><div><br></div><p>Go ahead and change that back thanks i never want to see it again. Emailed them to disable AI as fast as i possibly could.</p>",
"date_published": "2024-10-01T23:32:21+00:00",
"authors": [
{
"name": "chrl_nrys",
"url": "https://www.reddit.com/user/chrl_nrys"
}
]
},
{
"id": "1ft02wg",
"url": "/r/Notion/comments/1ft02wg/i_created_a_meal_planner/",
"external_url": "https://i.redd.it/2zjzc9fs5zrd1.jpeg",
"title": "I created a Meal Planner \ud83c\udf73",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1ft02wg/i_created_a_meal_planner/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1ft02wg/i_created_a_meal_planner/'>Reddit</a></caption><div><br></div><p>Any suggestions to improve it? Would love to hear it!</p><div><br></div><img src=\"https://i.redd.it/2zjzc9fs5zrd1.jpeg\" />",
"date_published": "2024-09-30T16:39:14+00:00",
"authors": [
{
"name": "gracenotion",
"url": "https://www.reddit.com/user/gracenotion"
}
]
},
{
"id": "1fniypp",
"url": "/r/Notion/comments/1fniypp/yearly_reminder_that_notion_said_yes_to_offline/",
"external_url": "https://i.redd.it/910jaxlcwjqd1.png",
"title": "Yearly reminder that Notion said yes to Offline Mode 6 years ago",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1fniypp/yearly_reminder_that_notion_said_yes_to_offline/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1fniypp/yearly_reminder_that_notion_said_yes_to_offline/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/910jaxlcwjqd1.png\" />",
"date_published": "2024-09-23T12:15:59+00:00",
"authors": [
{
"name": "jbldotexe",
"url": "https://www.reddit.com/user/jbldotexe"
}
]
},
{
"id": "1fkeauf",
"url": "/r/Notion/comments/1fkeauf/what_do_you_mean_this_is_not_work/",
"external_url": "https://i.redd.it/cned5rv1lppd1.jpeg",
"title": "What do you mean this is not work.",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1fkeauf/what_do_you_mean_this_is_not_work/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1fkeauf/what_do_you_mean_this_is_not_work/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/cned5rv1lppd1.jpeg\" />",
"date_published": "2024-09-19T06:19:37+00:00",
"authors": [
{
"name": "thekader",
"url": "https://www.reddit.com/user/thekader"
}
]
},
{
"id": "1fc3znq",
"url": "/r/Notion/comments/1fc3znq/finally_had_the_motivation_to_finish_my_reading/",
"external_url": "https://i.redd.it/57y01l1tjmnd1.png",
"title": "Finally had the motivation to finish my reading tracker T^T",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1fc3znq/finally_had_the_motivation_to_finish_my_reading/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1fc3znq/finally_had_the_motivation_to_finish_my_reading/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/57y01l1tjmnd1.png\" />",
"date_published": "2024-09-08T18:01:44+00:00",
"authors": [
{
"name": "__shion",
"url": "https://www.reddit.com/user/__shion"
}
]
},
{
"id": "1f7zo6n",
"url": "/r/Notion/comments/1f7zo6n/any_suggestions_to_add/",
"external_url": "https://www.reddit.com/gallery/1f7zo6n",
"title": "any suggestions to add ",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1f7zo6n/any_suggestions_to_add/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1f7zo6n/any_suggestions_to_add/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-09-03T13:16:13+00:00",
"authors": [
{
"name": "Delicious_General369",
"url": "https://www.reddit.com/user/Delicious_General369"
}
]
},
{
"id": "1f7g33j",
"url": "/r/Notion/comments/1f7g33j/a_slice_of_the_entrepreneur_system/",
"external_url": "https://i.redd.it/2sld1licagmd1.png",
"title": "A slice of The Entrepreneur system",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1f7g33j/a_slice_of_the_entrepreneur_system/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1f7g33j/a_slice_of_the_entrepreneur_system/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/2sld1licagmd1.png\" />",
"date_published": "2024-09-02T19:50:19+00:00",
"authors": [
{
"name": "VishnOx",
"url": "https://www.reddit.com/user/VishnOx"
}
]
},
{
"id": "1eyqqvr",
"url": "/r/Notion/comments/1eyqqvr/how_to_get_a_job_at_notion/",
"external_url": "https://www.reddit.com/r/Notion/comments/1eyqqvr/how_to_get_a_job_at_notion/",
"title": "How to get a job at Notion",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1eyqqvr/how_to_get_a_job_at_notion/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1eyqqvr/how_to_get_a_job_at_notion/'>Reddit</a></caption><div><br></div><p><strong>TL;DR I have worked in tech for 8 years, am based in NYC, am a huge Notion evangelist, but am finding it hard to get an interview with Notion. If you\u2019re feeling generous today, please upvote this post to help me hopefully get the attention of the Notion team! :)</strong></p>\n<p>\u2014</p>\n<p>It\u2019s my belief that the best employees are those who are passionate about the product and the mission of your company. For that reason, the companies where I believe I could add the most value are the companies with products that I love, use the most, and recommend to others \u2014 Notion is at the top of that list.</p>\n<p>I have worked long hours for most of my career in hopes that I could learn skills across all functions of a business at an accelerated rate compared to a typical 9-5pm schedule. I started as a financial <strong>consultant</strong> (working with the largest financial institutions in the world like <strong>Bank of America & TD Bank</strong>), then worked for a high-growth midmarket company (<a href=\"http://www.lemonade.com\"><strong>Lemonade</strong></a> insurance), and have spent most of the last 5 years as an early employee for growth stage VC-backed startups (<a href=\"http://www.knoetic.com\"><strong>Knoetic</strong></a>, <a href=\"http://www.thirdwork.xyz\"><strong>Thirdwork</strong></a>).</p>\n<p><strong>I have diverse experience problem-solving and pattern matching across operations, BD, and product, but at a high level consider my greatest strengths to be:</strong></p>\n<blockquote>\n<p><em>1.</em> <strong><em>Being the interface between technical and business functions:</em></strong> <em>Starting my career as a backend engineer allows me to dig deep with data/eng teams, then condense complicated topics in a digestible way to the rest of the org</em></p>\n<p><em>2.</em> <strong><em>Relationship building</em></strong>: I grew <a href=\"http://www.thirdwork.xyz\"><strong><em>Thirdwork</em></strong></a> <em>from $0 - 800k in annualized revenue selling to early-stage and midmarket founders / executives, and led Sales & Customer Success at</em> <a href=\"http://www.knoetic.com\"><strong><em>Knoetic</em></strong></a></p>\n</blockquote>\n<p><em>I have applied to multiple different roles at Notion over the last few months + sent personalized outreach to hiring managers in hopes of getting noticed, but I\u2019m sure Notion is receiving A LOT of applications for each job req\u2026If anyone has any suggestions on how to break through, I\u2019d love to hear them!</em> \ud83d\ude4f</p>\n<p><a href=\"https://drive.google.com/file/d/19tU0KdLHRzisKIEZd1dHkTITazAnmL9P/view?usp=sharing\"><strong>My Resume</strong></a></p>\n<p><a href=\"https://www.linkedin.com/in/jeffwinkle/\"><strong>My LinkedIn</strong></a></p>\n<p>\u270c\ufe0f Jeff</p>\n<p>https://preview.redd.it/ph4k31heg9kd1.jpg?width=400&format=pjpg&auto=webp&s=b5b44078e740f5e91c9ed436ee0495f33822b75f</p>",
"date_published": "2024-08-22T18:27:18+00:00",
"authors": [
{
"name": "jdwinkle08",
"url": "https://www.reddit.com/user/jdwinkle08"
}
]
},
{
"id": "1ehy61a",
"url": "/r/Notion/comments/1ehy61a/how_it_really_goes/",
"external_url": "https://i.imgur.com/3sFfU4d.jpg",
"title": "How it really goes",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1ehy61a/how_it_really_goes/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1ehy61a/how_it_really_goes/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.imgur.com/3sFfU4d.jpg\" />",
"date_published": "2024-08-02T01:52:47+00:00",
"authors": [
{
"name": "nic0lk",
"url": "https://www.reddit.com/user/nic0lk"
}
]
},
{
"id": "1c6yv8v",
"url": "/r/Notion/comments/1c6yv8v/i_did_it_i_made_your_life_in_weeks_in_notion/",
"external_url": "https://i.redd.it/0pbk196wf7vc1.jpeg",
"title": "I did it! I made Your Life in Weeks in Notion!",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1c6yv8v/i_did_it_i_made_your_life_in_weeks_in_notion/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1c6yv8v/i_did_it_i_made_your_life_in_weeks_in_notion/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/0pbk196wf7vc1.jpeg\" />",
"date_published": "2024-04-18T09:13:58+00:00",
"authors": [
{
"name": "GosdeeNotion",
"url": "https://www.reddit.com/user/GosdeeNotion"
}
]
},
{
"id": "1c3uuec",
"url": "/r/Notion/comments/1c3uuec/what_do_you_think_of_this/",
"external_url": "https://v.redd.it/62v8btf9gguc1",
"title": "What do you think of this?",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1c3uuec/what_do_you_think_of_this/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1c3uuec/what_do_you_think_of_this/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-04-14T14:28:29+00:00",
"authors": [
{
"name": "laurieherault",
"url": "https://www.reddit.com/user/laurieherault"
}
]
},
{
"id": "1c0yquw",
"url": "/r/Notion/comments/1c0yquw/do_you_agree_or_disagree/",
"external_url": "https://i.redd.it/efy5ddedbqtc1.png",
"title": "Do you agree or disagree?",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1c0yquw/do_you_agree_or_disagree/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1c0yquw/do_you_agree_or_disagree/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/efy5ddedbqtc1.png\" />",
"date_published": "2024-04-10T22:34:15+00:00",
"authors": [
{
"name": "optemization",
"url": "https://www.reddit.com/user/optemization"
}
]
},
{
"id": "1bncjp1",
"url": "/r/Notion/comments/1bncjp1/is_notion_down_again/",
"external_url": "https://i.redd.it/19raih806hqc1.jpeg",
"title": "Is Notion down again?",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1bncjp1/is_notion_down_again/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1bncjp1/is_notion_down_again/'>Reddit</a></caption><div><br></div><p>But this just happened 3 days ago\u2026 </p><div><br></div><img src=\"https://i.redd.it/19raih806hqc1.jpeg\" />",
"date_published": "2024-03-25T12:35:19+00:00",
"authors": [
{
"name": "n-plasx",
"url": "https://www.reddit.com/user/n-plasx"
}
]
},
{
"id": "1bnchiy",
"url": "/r/Notion/comments/1bnchiy/notion_seems_to_be_down_again/",
"external_url": "https://www.reddit.com/r/Notion/comments/1bnchiy/notion_seems_to_be_down_again/",
"title": "Notion seems to be down again",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1bnchiy/notion_seems_to_be_down_again/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1bnchiy/notion_seems_to_be_down_again/'>Reddit</a></caption><div><br></div><p>Hi, does anyone else have the same issue? Changes are not saved on any of my devices. People are reporting the same issue on Twitter right now. :(</p>",
"date_published": "2024-03-25T12:32:10+00:00",
"authors": [
{
"name": "timpera",
"url": "https://www.reddit.com/user/timpera"
}
]
},
{
"id": "1bku55j",
"url": "/r/Notion/comments/1bku55j/notion_down/",
"external_url": "https://www.reddit.com/r/Notion/comments/1bku55j/notion_down/",
"title": "Notion down?",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1bku55j/notion_down/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1bku55j/notion_down/'>Reddit</a></caption><div><br></div><p>Is notion down right now? I keep getting this message</p>\n<p>https://preview.redd.it/dbpn09rdgupc1.png?width=704&format=png&auto=webp&s=5e4390277dd7c76644daeeaa1a624a5ade681f23</p>",
"date_published": "2024-03-22T08:13:03+00:00",
"authors": [
{
"name": "Prestigious_Moose190",
"url": "https://www.reddit.com/user/Prestigious_Moose190"
}
]
},
{
"id": "1b8cwjm",
"url": "/r/Notion/comments/1b8cwjm/average_notion_user_and_their_dashbkards/",
"external_url": "https://i.redd.it/cp5ke09nfsmc1.jpeg",
"title": "Average Notion user and their dashbkards",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1b8cwjm/average_notion_user_and_their_dashbkards/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1b8cwjm/average_notion_user_and_their_dashbkards/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/cp5ke09nfsmc1.jpeg\" />",
"date_published": "2024-03-06T22:12:24+00:00",
"authors": [
{
"name": "Ambitious_Note_8896",
"url": "https://www.reddit.com/user/Ambitious_Note_8896"
}
]
},
{
"id": "1arfezp",
"url": "/r/Notion/comments/1arfezp/this_is_how_i_organize_my_notion/",
"external_url": "https://i.redd.it/foml7kom3ric1.png",
"title": "This is how I organize my Notion.",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1arfezp/this_is_how_i_organize_my_notion/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1arfezp/this_is_how_i_organize_my_notion/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/foml7kom3ric1.png\" />",
"date_published": "2024-02-15T13:28:26+00:00",
"authors": [
{
"name": "heyeaslo",
"url": "https://www.reddit.com/user/heyeaslo"
}
]
},
{
"id": "1aqb02e",
"url": "/r/Notion/comments/1aqb02e/added_a_game_to_my_notion/",
"external_url": "https://imgur.com/a/8ircQpy",
"title": "Added a game to my Notion \u2728",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1aqb02e/added_a_game_to_my_notion/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1aqb02e/added_a_game_to_my_notion/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.imgur.com/a/8ircQpy.jpg\" />",
"date_published": "2024-02-14T01:44:57+00:00",
"authors": [
{
"name": "bucctif",
"url": "https://www.reddit.com/user/bucctif"
}
]
},
{
"id": "1ah921d",
"url": "/r/Notion/comments/1ah921d/you_people_lately/",
"external_url": "https://i.redd.it/tmjollpfi7gc1.gif",
"title": "You people lately",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1ah921d/you_people_lately/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1ah921d/you_people_lately/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/tmjollpfi7gc1.gif\" />",
"date_published": "2024-02-02T17:25:49+00:00",
"authors": [
{
"name": "PabloDickasso6969",
"url": "https://www.reddit.com/user/PabloDickasso6969"
}
]
},
{
"id": "1ah1bz6",
"url": "/r/Notion/comments/1ah1bz6/i_love_storing_my_design_resources_in_notion/",
"external_url": "https://i.redd.it/mq3ujct5o5gc1.png",
"title": "I love storing my design resources in Notion \ud83d\udd25\ud83d\udd25",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1ah1bz6/i_love_storing_my_design_resources_in_notion/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1ah1bz6/i_love_storing_my_design_resources_in_notion/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/mq3ujct5o5gc1.png\" />",
"date_published": "2024-02-02T11:14:22+00:00",
"authors": [
{
"name": "Notionallity",
"url": "https://www.reddit.com/user/Notionallity"
}
]
},
{
"id": "1acq0ha",
"url": "/r/Notion/comments/1acq0ha/done_with_notion/",
"external_url": "https://www.reddit.com/r/Notion/comments/1acq0ha/done_with_notion/",
"title": "Done with Notion",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1acq0ha/done_with_notion/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1acq0ha/done_with_notion/'>Reddit</a></caption><div><br></div><p>This probably won't be received well here but I am moving on from Notion. Been trying to use it since it first came out because it really really really looks good from far as the ultimate solution for organizing yourself, but I have come to the conclusion that this tool does, at least for me, more harm than good.</p>\n<p>Let's go over what my point is and what I am trying to get across:</p>\n<p>Jack of all and master of none. Most of the built-in tools that it provides are a half-assed version of what you could get from a tool that does only that certain thing. Let's go over some examples.</p>\n<ul>\n<li>\n<p>Need a database? Airtable is a better tool and offers a free plan</p>\n</li>\n<li>\n<p>Need to write down notes? Apple Notes, Google Keep, and Evernote(Free version or paid) are better and work offline</p>\n</li>\n<li>\n<p>Need to track habits? Notion is horrible for that. Use an actual habit tracker like Looper or other free tools so that the functionality is built in and you do not have to manually reset everything or have one built out that </p>\n</li>\n<li>\n<p>Tracking todos? If you are tracking stuff for work that has to be tracked and done on time and not for <strong>\"aesthetic\"</strong> reasons then use a tool like Todoist or Asana. Both offer free versions.</p>\n</li>\n<li>\n<p>Wiki software? If you are using it personally, sorry but those fall under the notes category. If it is for a business then you should either be hosting it on your own as a DokuWiki or using something like confluence which is free for up to 10 users, BUT I can see just in this use case how notion helps.</p>\n</li>\n<li>\n<p>Outlining? This is what brought me to Nion in the first place. I thought it was a better version of Workflowy, but it is not. Workflowy and Dynalist do a much better job of outlines.</p>\n</li>\n<li>\n<p>Project management? I mean c'mon folks. If you take your business seriously then you should use something like Trello, Basecamp, Asana, and Monday. The list goes on and on and there are industry-specific tools for you that I have not mentioned.</p>\n</li>\n</ul>\n<p>I can't think of any single use case where Notion does something better than a tool that was built for that specific purpose and find myself going back to other tools and having to run back and forth between something that doesn't work and something that does.</p>\n<p>Notion has become a way for people to make extra money selling templates for things that you don't need, don't use, and won't make you more productive; because at the end of the day, the only reason to be using notion is for productivity. It reminds me of the aisle in Staples and Office Depot that sells daily planners that have designs on them and people only buy them because they <strong>look</strong> good. If it will not make you more productive, then you are using it as a toy and not as a tool.</p>\n<p>The real winners here are people who made businesses out of selling you a template for something that can be bought off the shelf and work better. Just feels really scammy.</p>\n<p>I don't want to shit on the developers because they have made a great product, but it feels like they have lost their core competency on what they are trying to build and are adding on features for a user base that will grow up and move on to big-boy tools. It seems like what they are making right now is for children and not professionals. Sorry for venting but this is just my opinion and hopefully it will help people who are having issues with using Notion to get things done because that's what really matters.</p>\n<p><strong><em>Later.</em></strong></p>",
"date_published": "2024-01-28T00:53:11+00:00",
"authors": [
{
"name": "Vren",
"url": "https://www.reddit.com/user/Vren"
}
]
},
{
"id": "19ezwns",
"url": "/r/Notion/comments/19ezwns/my_resolution_board_for_2024_my_whole_planning/",
"external_url": "https://www.reddit.com/r/Notion/comments/19ezwns/my_resolution_board_for_2024_my_whole_planning/",
"title": "My resolution board for 2024 - My whole planning system to be better than last year",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/19ezwns/my_resolution_board_for_2024_my_whole_planning/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/19ezwns/my_resolution_board_for_2024_my_whole_planning/'>Reddit</a></caption><div><br></div><p>This is how I plan my 2024 which covers Journaling, Habits tracker, Diet/meal plan, Goals, Budget & Travel.</p>\n<p><a href=\"https://preview.redd.it/6bbgo4vrbiec1.png?width=1920&format=png&auto=webp&s=26c7ee696c6fb1ef3f8d8af67e125461c083777c\">I'm not into aesthetic style, simple and direct is good enough for me.</a></p>\n<p>​</p>\n<p>​</p>",
"date_published": "2024-01-25T03:35:08+00:00",
"authors": [
{
"name": "hye_ukiyo",
"url": "https://www.reddit.com/user/hye_ukiyo"
}
]
},
{
"id": "19drpjs",
"url": "/r/Notion/comments/19drpjs/is_this_the_beginning_of_the_end/",
"external_url": "https://i.redd.it/jcyhv3ldq7ec1.jpeg",
"title": "Is this the beginning of the end?",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/19drpjs/is_this_the_beginning_of_the_end/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/19drpjs/is_this_the_beginning_of_the_end/'>Reddit</a></caption><div><br></div><p>Why not the same color scheme?? \ud83d\ude29</p><div><br></div><img src=\"https://i.redd.it/jcyhv3ldq7ec1.jpeg\" />",
"date_published": "2024-01-23T16:02:03+00:00",
"authors": [
{
"name": "kulpio",
"url": "https://www.reddit.com/user/kulpio"
}
]
},
{
"id": "1991zd2",
"url": "/r/Notion/comments/1991zd2/the_countdown_is_over_its_really_just_the/",
"external_url": "https://i.redd.it/712nq1pna1dc1.png",
"title": "\u231b the countdown is over! its... really just the calendar? \ud83d\ude44 let's discuss",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1991zd2/the_countdown_is_over_its_really_just_the/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1991zd2/the_countdown_is_over_its_really_just_the/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/712nq1pna1dc1.png\" />",
"date_published": "2024-01-17T17:19:07+00:00",
"authors": [
{
"name": "lukakopajtic",
"url": "https://www.reddit.com/user/lukakopajtic"
}
]
},
{
"id": "19915au",
"url": "/r/Notion/comments/19915au/im_so_disappointed_with_notion_calendar_here_is/",
"external_url": "https://www.reddit.com/r/Notion/comments/19915au/im_so_disappointed_with_notion_calendar_here_is/",
"title": "I\u2019m so disappointed with Notion Calendar \u2014 Here is why",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/19915au/im_so_disappointed_with_notion_calendar_here_is/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/19915au/im_so_disappointed_with_notion_calendar_here_is/'>Reddit</a></caption><div><br></div><p>For some of us, calendar is really not our thing, and especially it\u2019s just a Cron rebranding, I don\u2019t understand the hype (if any).</p>\n<p>Another thing on the marketing, to wipe every Instagram posts just to promote this? And posts can be archived and probably unarchive after the launch right? I felt the marketing is overdone.</p>\n<p>Sorry if I offended calendar lovers \u2014 it\u2019s not you.</p>\n<p>Who else agree?</p>",
"date_published": "2024-01-17T16:48:05+00:00",
"authors": [
{
"name": "xokeyif692",
"url": "https://www.reddit.com/user/xokeyif692"
}
]
},
{
"id": "1990jyk",
"url": "/r/Notion/comments/1990jyk/how_to_get_audio_notesvoice_recording_in_notion/",
"external_url": "https://www.reddit.com/r/Notion/comments/1990jyk/how_to_get_audio_notesvoice_recording_in_notion/",
"title": "How to get audio notes/voice recording in Notion for free",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/1990jyk/how_to_get_audio_notesvoice_recording_in_notion/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/1990jyk/how_to_get_audio_notesvoice_recording_in_notion/'>Reddit</a></caption><div><br></div><p>Hi guys! </p>\n<p>We\u2019ve developed free online service that converts various media files, including voice memos, audio recordings, and video files, into structured text. This text can be organized as paragraphs or bullet points and is automatically and seamlessly exported to Notion.</p>\n<p>How can you send files to the service?</p>\n<ul>\n<li>Record your own voice message directly on the service</li>\n<li>Send audio from any other app (e.g., Voice Memo App, WhatsApp, your phone's video gallery) to the bot</li>\n<li>Upload an audio/video file</li>\n</ul>\n<p>If you want to automatically export your summaries and transcriptions to Notion, you simply need to integrate it with your Notion account. This usually takes 10-20 seconds. </p>\n<p>Thank you for taking the time to check it out. I look forward to hearing your feedback. You can access the service by visiting this link: <a href=\"https://audionotes.ai/\">https://audionotes.ai</a> \ud83d\ude4f</p>",
"date_published": "2024-01-17T16:25:03+00:00",
"authors": [
{
"name": "OneMoreSuperUser",
"url": "https://www.reddit.com/user/OneMoreSuperUser"
}
]
},
{
"id": "194x0o0",
"url": "/r/Notion/comments/194x0o0/crafting_a_pure_notion_formula_magic/",
"external_url": "https://i.redd.it/idg9ghgfw0cc1.png",
"title": "Crafting a pure notion formula magic",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/194x0o0/crafting_a_pure_notion_formula_magic/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/194x0o0/crafting_a_pure_notion_formula_magic/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/idg9ghgfw0cc1.png\" />",
"date_published": "2024-01-12T14:58:30+00:00",
"authors": [
{
"name": "notionself",
"url": "https://www.reddit.com/user/notionself"
}
]
},
{
"id": "192va6z",
"url": "/r/Notion/comments/192va6z/spoiler_notion_accidentally_revealed_what_they/",
"external_url": "https://www.reddit.com/r/Notion/comments/192va6z/spoiler_notion_accidentally_revealed_what_they/",
"title": "SPOILER: Notion accidentally revealed what they will release on January 17th",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/192va6z/spoiler_notion_accidentally_revealed_what_they/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/192va6z/spoiler_notion_accidentally_revealed_what_they/'>Reddit</a></caption><div><br></div><p>On January 1st, Notion started <a href=\"https://www.instagram.com/notionhq/\">a countdown to January 17th on Instagram</a> with a mysterious announcement:</p>\n<p>\"<em>exciting things soon\"</em></p>\n<p>Since then, people have been guessing what new feature Notion will release on January 17th. The guesses have ranged from instant messaging to integration with the Cron calendar, and even the long-awaited offline mode ...</p>\n<p>However, Notion seems to have accidentally revealed what it will be. Today, a banner briefly appeared at the top of the Notion website:</p>\n<p>https://preview.redd.it/seg94erzgibc1.jpg?width=3810&format=pjpg&auto=webp&s=69986e21d315d6b441ae2cf8873175ad9c8e5f64</p>\n<p>Shortly after, the banner was removed. So, we can look forward to a calendar integration! Whether it will be the integration of Cron remains to be seen. Cron is a separate calendar app that Notion acquired two years ago and can also manage data from Google Calendar. Through Cron, it would be possible to integrate Google Calendar into Notion.</p>\n<p>However, the banner does not mention Cron and instead refers to a \"Notion Calendar\". This could indicate a new native calendar functionality in Notion, independent of Cron.</p>\n<p>We don't know the details yet, but the anticipation is high since calendar functionality was certainly one of the most requested features by users \u2013 just behind offline mode... \ud83d\ude09</p>",
"date_published": "2024-01-10T00:59:36+00:00",
"authors": [
{
"name": "notion-deutsch_de",
"url": "https://www.reddit.com/user/notion-deutsch_de"
}
]
},
{
"id": "18sy6hq",
"url": "/r/Notion/comments/18sy6hq/i_think_im_ready_for_2024_still_updating_my_other/",
"external_url": "https://www.reddit.com/gallery/18sy6hq",
"title": "I think I'm ready for 2024, still updating my other planners but finally done with my library",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/18sy6hq/i_think_im_ready_for_2024_still_updating_my_other/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/18sy6hq/i_think_im_ready_for_2024_still_updating_my_other/'>Reddit</a></caption><div><br></div>",
"date_published": "2023-12-28T16:39:12+00:00",
"authors": [
{
"name": "Avaquen",
"url": "https://www.reddit.com/user/Avaquen"
}
]
},
{
"id": "18rey57",
"url": "/r/Notion/comments/18rey57/does_the_lack_of_an_offline_mode_bother_you/",
"external_url": "https://www.reddit.com/r/Notion/comments/18rey57/does_the_lack_of_an_offline_mode_bother_you/",
"title": "Does the lack of an offline mode bother you?",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/18rey57/does_the_lack_of_an_offline_mode_bother_you/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/18rey57/does_the_lack_of_an_offline_mode_bother_you/'>Reddit</a></caption><div><br></div><p>Dear Notioners, I searched the sub and it seems the prediction is that it's not Notion's top priority to offer an offline mode. Does the lack of an offline mode bother you? </p>\n<p>Upon reflecting on this, it seems I have internet access 99% of the time when I want to access my notes, despite travelling a lot. But sometimes the connection is bad in a foreign country or when driving on a highway in the mountains, when I want to quickly check a note about local restaurants that I have taken notes on. I can imagine there could be occasions in the future, say, if I want to do some focused writing in a remote location where internet is unreliable.</p>\n<p>Please don't recommend local first alternatives. I absolutely need to have web access to my notes when I'm on a work computer.</p>",
"date_published": "2023-12-26T18:42:12+00:00",
"authors": [
{
"name": "Active-Teach6311",
"url": "https://www.reddit.com/user/Active-Teach6311"
}
]
},
{
"id": "18qujyp",
"url": "/r/Notion/comments/18qujyp/rate_my_daily_planner_dashboard/",
"external_url": "https://i.redd.it/cgct7kl65j8c1.png",
"title": "Rate my daily planner dashboard",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/18qujyp/rate_my_daily_planner_dashboard/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/18qujyp/rate_my_daily_planner_dashboard/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/cgct7kl65j8c1.png\" />",
"date_published": "2023-12-26T00:00:32+00:00",
"authors": [
{
"name": "Meckysar",
"url": "https://www.reddit.com/user/Meckysar"
}
]
},
{
"id": "18qhn56",
"url": "/r/Notion/comments/18qhn56/why_does_notion_have_so_many_trackers/",
"external_url": "https://i.redd.it/s8ahp9f0of8c1.png",
"title": "Why does Notion have so many trackers?",
"content_html": "<caption>Open: <a href='winstonapp:///r/Notion/comments/18qhn56/why_does_notion_have_so_many_trackers/'>Winston</a> | <a href='https://reddit.com/r/Notion/comments/18qhn56/why_does_notion_have_so_many_trackers/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/s8ahp9f0of8c1.png\" />",
"date_published": "2023-12-25T12:19:53+00:00",
"authors": [
{
"name": "Insighteye19",
"url": "https://www.reddit.com/user/Insighteye19"
}
]
},
{
"id": "18hbgi7",
"url": "/r/Notion/comments/18hbgi7/finally_done_with_my_gamified_life_os_couldnt_be/",
"external_url": "https://www.reddit.com/r/Notion/comments/18hbgi7/finally_done_with_my_gamified_life_os_couldnt_be/",
"title": "Finally done with my Gamified Life OS, couldn't be more proud!",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/18hbgi7/finally_done_with_my_gamified_life_os_couldnt_be/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/18hbgi7/finally_done_with_my_gamified_life_os_couldnt_be/'>Reddit</a></caption><div><br></div><p>A few weeks ago I shared here an unfinished version of my Gamified Life OS, I'm happy to share it now that I've finally finished it. I had to redo everything from the ground up with the databases and went through a lot of testing, but overall it's now in a quite polished state. I've evolved it into some kind of Avatar: The Last Airbender theme because it resonates with me. In the end, I decided not to make a sort of RPG store/market, it just seemed unnecessary for my purposes. Other than that, it's perfection!</p>\n<p><a href=\"https://preview.redd.it/3qbkfjpfn06c1.png?width=2656&format=png&auto=webp&s=5d9d0b8ae5ce650874502cfe317573136541137e\">My Gamified Life Tracker</a></p>",
"date_published": "2023-12-13T07:30:03+00:00",
"authors": [
{
"name": "Kevechino",
"url": "https://www.reddit.com/user/Kevechino"
}
]
},
{
"id": "18ethyg",
"url": "/r/Notion/comments/18ethyg/could_be_better_but_this_mealplanning_dashboard/",
"external_url": "https://i.redd.it/6vk8o0y4pd5c1.png",
"title": "Could be better, but this meal-planning dashboard feels like an achievement! Overspending on groceries is killing my finances, so my goal was to plan a whole month at a time, see how many ingredients I already have in stock for various recipes, and most importantly see the total I expect to spend.",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/18ethyg/could_be_better_but_this_mealplanning_dashboard/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/18ethyg/could_be_better_but_this_mealplanning_dashboard/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/6vk8o0y4pd5c1.png\" />",
"date_published": "2023-12-10T02:31:51+00:00",
"authors": [
{
"name": "codenameblackmamba",
"url": "https://www.reddit.com/user/codenameblackmamba"
}
]
},
{
"id": "18as8ot",
"url": "/r/Notion/comments/18as8ot/my_new_homepage_i_am_a_writer/",
"external_url": "https://www.reddit.com/gallery/18as8ot",
"title": "My \"new\" homepage (I am a writer)",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/18as8ot/my_new_homepage_i_am_a_writer/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/18as8ot/my_new_homepage_i_am_a_writer/'>Reddit</a></caption><div><br></div>",
"date_published": "2023-12-04T19:37:27+00:00",
"authors": [
{
"name": "IamRis",
"url": "https://www.reddit.com/user/IamRis"
}
]
},
{
"id": "189xsmk",
"url": "/r/Notion/comments/189xsmk/dont_spend_your_life_perfecting_your_notion/",
"external_url": "https://i.redd.it/foq6pe1u144c1.png",
"title": "Don't spend your life perfecting your Notion dashboard...",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/189xsmk/dont_spend_your_life_perfecting_your_notion/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/189xsmk/dont_spend_your_life_perfecting_your_notion/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/foq6pe1u144c1.png\" />",
"date_published": "2023-12-03T17:00:57+00:00",
"authors": [
{
"name": "laurieherault",
"url": "https://www.reddit.com/user/laurieherault"
}
]
},
{
"id": "188hht9",
"url": "/r/Notion/comments/188hht9/as_we_wrap_up_the_year_heres_a_peek_at_my_2023/",
"external_url": "https://i.redd.it/4qdxbfg1yp3c1.png",
"title": "As we wrap up the year, here's a peek at my 2023 dashboard! \u2737\u2060\u203f\u2060\u2737",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/188hht9/as_we_wrap_up_the_year_heres_a_peek_at_my_2023/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/188hht9/as_we_wrap_up_the_year_heres_a_peek_at_my_2023/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/4qdxbfg1yp3c1.png\" />",
"date_published": "2023-12-01T17:31:37+00:00",
"authors": [
{
"name": "imstillmoody",
"url": "https://www.reddit.com/user/imstillmoody"
}
]
},
{
"id": "184c6jq",
"url": "/r/Notion/comments/184c6jq/i_made_a_better_notion_pdf_exporter/",
"external_url": "https://v.redd.it/tfjg46kifp2c1",
"title": "I made a better Notion PDF exporter!",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/184c6jq/i_made_a_better_notion_pdf_exporter/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/184c6jq/i_made_a_better_notion_pdf_exporter/'>Reddit</a></caption><div><br></div>",
"date_published": "2023-11-26T14:43:38+00:00",
"authors": [
{
"name": "yukaidev",
"url": "https://www.reddit.com/user/yukaidev"
}
]
},
{
"id": "183mwzw",
"url": "/r/Notion/comments/183mwzw/remember_simple_might_just_be_all_you_need_heres/",
"external_url": "https://i.redd.it/3zczgksmoi2c1.png",
"title": "remember - simple might just be all you need. here's my fitness dashboard after simplifying",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/183mwzw/remember_simple_might_just_be_all_you_need_heres/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/183mwzw/remember_simple_might_just_be_all_you_need_heres/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/3zczgksmoi2c1.png\" />",
"date_published": "2023-11-25T16:04:47+00:00",
"authors": [
{
"name": "lukakopajtic",
"url": "https://www.reddit.com/user/lukakopajtic"
}
]
},
{
"id": "182wbdc",
"url": "/r/Notion/comments/182wbdc/notion_black_friday_cyber_monday/",
"external_url": "https://www.reddit.com/r/Notion/comments/182wbdc/notion_black_friday_cyber_monday/",
"title": "Notion Black Friday / Cyber Monday?",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/182wbdc/notion_black_friday_cyber_monday/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/182wbdc/notion_black_friday_cyber_monday/'>Reddit</a></caption><div><br></div><p>Hi everyone! </p>\n<p>I've been using the free version of Notion and am thinking about upgrading. </p>\n<p>Does anyone know if Notion has any Black Friday or Cyber Monday deals? I didn\u2019t see anything about it on their website.</p>",
"date_published": "2023-11-24T16:45:57+00:00",
"authors": [
{
"name": "CeleryInside4784",
"url": "https://www.reddit.com/user/CeleryInside4784"
}
]
},
{
"id": "17vyl3c",
"url": "/r/Notion/comments/17vyl3c/microsoft_officially_launches_loop_its_notion/",
"external_url": "https://www.theverge.com/2023/11/15/23959801/microsoft-loop-launch-notion-competitor",
"title": "Microsoft officially launches Loop, its Notion competitor",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/17vyl3c/microsoft_officially_launches_loop_its_notion/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/17vyl3c/microsoft_officially_launches_loop_its_notion/'>Reddit</a></caption><div><br></div>",
"date_published": "2023-11-15T17:21:56+00:00",
"authors": [
{
"name": "webnetedgar",
"url": "https://www.reddit.com/user/webnetedgar"
}
]
},
{
"id": "17tcc7i",
"url": "/r/Notion/comments/17tcc7i/list_of_notion_ai_plugins/",
"external_url": "https://gpte.ai",
"title": "List of Notion AI Plugins",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/17tcc7i/list_of_notion_ai_plugins/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/17tcc7i/list_of_notion_ai_plugins/'>Reddit</a></caption><div><br></div>",
"date_published": "2023-11-12T04:16:24+00:00",
"authors": [
{
"name": "gruvis34",
"url": "https://www.reddit.com/user/gruvis34"
}
]
},
{
"id": "17s6t2c",
"url": "/r/Notion/comments/17s6t2c/notion_is_free_and_that_scares_me/",
"external_url": "https://www.reddit.com/r/Notion/comments/17s6t2c/notion_is_free_and_that_scares_me/",
"title": "Notion is free and that scares me...",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/17s6t2c/notion_is_free_and_that_scares_me/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/17s6t2c/notion_is_free_and_that_scares_me/'>Reddit</a></caption><div><br></div><p>20 years in IT industry, what I have learnt is anything free can disappear, get stolen, get hacked, get monetized by whoever runs the service. No one will be answerable and responsible because it is free.</p>\n<p>I am a new Notion user and I love it,, however as a productivity tool, putting my personal information and track my personal things, it scares me because it is free. I dont know whether I can put in, my personal data like even my location, address etc. However I see tons of videos showing how you can build your second brain...</p>\n<p>I use dropbox for years and I pay for it, so I am kind of sure, atleast there will be someone answering me. With notion, what motivates them to secure \"free\" accounts or even monetizing content from \"free\" accounts overnight or suddenly placing a limit on storage and deleting data or trying out new features like AI on my personal data? This terrifies me. What you guys think?</p>\n<p>​</p>",
"date_published": "2023-11-10T15:47:24+00:00",
"authors": [
{
"name": "Downtown_Lobster620",
"url": "https://www.reddit.com/user/Downtown_Lobster620"
}
]
},
{
"id": "17o97q3",
"url": "/r/Notion/comments/17o97q3/its_not_even_funny_anymore/",
"external_url": "https://i.redd.it/sj918eaiciyb1.png",
"title": "it's not even funny anymore...",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/17o97q3/its_not_even_funny_anymore/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/17o97q3/its_not_even_funny_anymore/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/sj918eaiciyb1.png\" />",
"date_published": "2023-11-05T10:38:09+00:00",
"authors": [
{
"name": "lukakopajtic",
"url": "https://www.reddit.com/user/lukakopajtic"
}
]
},
{
"id": "17lqccb",
"url": "/r/Notion/comments/17lqccb/my_new_ghibli_themed_notion_dashboard/",
"external_url": "https://i.redd.it/ve47vdoustxb1.png",
"title": "My new ghibli themed notion dashboard",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/17lqccb/my_new_ghibli_themed_notion_dashboard/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/17lqccb/my_new_ghibli_themed_notion_dashboard/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/ve47vdoustxb1.png\" />",
"date_published": "2023-11-02T00:05:19+00:00",
"authors": [
{
"name": "Cinnamon223",
"url": "https://www.reddit.com/user/Cinnamon223"
}
]
},
{
"id": "177evj4",
"url": "/r/Notion/comments/177evj4/i_made_windows_widgets_for_notion/",
"external_url": "https://v.redd.it/q43uenrpr2ub1",
"title": "I made Windows widgets for Notion",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/177evj4/i_made_windows_widgets_for_notion/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/177evj4/i_made_windows_widgets_for_notion/'>Reddit</a></caption><div><br></div>",
"date_published": "2023-10-14T02:05:54+00:00",
"authors": [
{
"name": "Corgii50",
"url": "https://www.reddit.com/user/Corgii50"
}
]
},
{
"id": "175g9qo",
"url": "/r/Notion/comments/175g9qo/kpi_tracking_and_automatic_resetting_in_notion/",
"external_url": "https://www.reddit.com/r/Notion/comments/175g9qo/kpi_tracking_and_automatic_resetting_in_notion/",
"title": "KPI tracking and automatic resetting in notion (All tips appreciated)",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/175g9qo/kpi_tracking_and_automatic_resetting_in_notion/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/175g9qo/kpi_tracking_and_automatic_resetting_in_notion/'>Reddit</a></caption><div><br></div><p>Hello all. Would it be possible for someone to aid me in setting up a KPI system so that it has a Log Interface that I use to log certain numbers, it updates the KPIs, and it shows me a progress bar as well as an on-track status for each KPI? I also need it to update every week and store the previous week's KPIs in an archive or Log. Something like the picture below. I know I have to link databases, have one database look up results from another, and all three aspects will probably be a database (Logging interface, actual KPI view, and archive). I looked at all the videos I could find, and I think <a href=\"https://www.youtube.com/watch?v=gyUhQFobvU0&t=12s\">something similar to this video came closest</a> to what I wanted. </p>\n<p>I also need to feed some of the results (like sales, expenses, etc) into another, overall KPI board of my agency. But I guess that's something I could just do with sums and references. </p>\n<p>https://preview.redd.it/vyu38lpr9ltb1.png?width=1254&format=png&auto=webp&s=0c2faff3224576a968566e58637b9868f2ad51e5</p>\n<p>No need to give me an entire solution, only looking for tips that could help me along the way. Thank you very much!!! </p>\n<p>​</p>\n<p>Any templates, courses, solutions, suggestions, external tools I need - not a problem. I'll buy them and learn. But I need to get this done. Thanks!! </p>",
"date_published": "2023-10-11T15:07:45+00:00",
"authors": [
{
"name": "Standard-Ad8023",
"url": "https://www.reddit.com/user/Standard-Ad8023"
}
]
},
{
"id": "172ve33",
"url": "/r/Notion/comments/172ve33/i_use_notion_to_record_my_daily_dose_of_python/",
"external_url": "https://i.redd.it/d1s3hmbybysb1.jpg",
"title": "I use Notion to record my daily dose of Python",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/172ve33/i_use_notion_to_record_my_daily_dose_of_python/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/172ve33/i_use_notion_to_record_my_daily_dose_of_python/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/d1s3hmbybysb1.jpg\" />",
"date_published": "2023-10-08T09:58:22+00:00",
"authors": [
{
"name": "yanreadworlds",
"url": "https://www.reddit.com/user/yanreadworlds"
}
]
},
{
"id": "171y6iq",
"url": "/r/Notion/comments/171y6iq/hot_take_notion_isnt_that_good_for_note_taking/",
"external_url": "https://www.reddit.com/r/Notion/comments/171y6iq/hot_take_notion_isnt_that_good_for_note_taking/",
"title": "Hot Take: Notion isn\u2019t that good for note taking.",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/171y6iq/hot_take_notion_isnt_that_good_for_note_taking/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/171y6iq/hot_take_notion_isnt_that_good_for_note_taking/'>Reddit</a></caption><div><br></div>",
"date_published": "2023-10-07T05:20:41+00:00",
"authors": [
{
"name": "productivestack",
"url": "https://www.reddit.com/user/productivestack"
}
]
},
{
"id": "170ix8b",
"url": "/r/Notion/comments/170ix8b/can_the_mods_do_something_about_antinotion_posts/",
"external_url": "https://www.reddit.com/r/Notion/comments/170ix8b/can_the_mods_do_something_about_antinotion_posts/",
"title": "Can the mods do something about anti-Notion posts?",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/170ix8b/can_the_mods_do_something_about_antinotion_posts/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/170ix8b/can_the_mods_do_something_about_antinotion_posts/'>Reddit</a></caption><div><br></div><p>I mean, I know this should be a free community and all and we don't need shills, but - </p>\n<p>Honestly, I never see anything useful pop up on my front page. Literally every post I see is \"What's an alternative\", \"What should I switch to\", \"What has [x feature] that Notion is missing\", etc.</p>\n<p>I'm here for Notion shit. Not not-Notion shit.</p>\n<p>If you want some alternatives, make a sticky and throw it in the sidebar. Use the damn search - people have said it 10000x. But can we make this place actually useful again?</p>",
"date_published": "2023-10-05T14:07:11+00:00",
"authors": [
{
"name": "FinallyAFreeMind",
"url": "https://www.reddit.com/user/FinallyAFreeMind"
}
]
},
{
"id": "16yxt4b",
"url": "/r/Notion/comments/16yxt4b/why_do_people_think_notions_going_to_explode/",
"external_url": "https://www.reddit.com/r/Notion/comments/16yxt4b/why_do_people_think_notions_going_to_explode/",
"title": "Why do people think Notion's going to explode?",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/16yxt4b/why_do_people_think_notions_going_to_explode/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/16yxt4b/why_do_people_think_notions_going_to_explode/'>Reddit</a></caption><div><br></div>Seriously, I see angst posts on here every day about the threat of Notion vanishing. Why? I get that it sometimes has speed issues, but I use it for all my university note-taking and it works fine. You can export any page or database you like. I understand you can't dump your whole account, but why not keep back-ups of all the super-important stuff? Why does anyone think it's just going to vanish and take all your data with it?<div><br></div><div><p>Seriously, I see angst posts on here every day about the threat of Notion vanishing. Why? I get that it sometimes has speed issues, but I use it for all my university note-taking and it works fine. You can export any page or database you like. I understand you can't dump your whole account, but why not keep back-ups of all the super-important stuff? Why does anyone think it's just going to vanish and take all your data with it?</p></div>",
"date_published": "2023-10-03T17:20:55+00:00",
"authors": [
{
"name": "fulltea",
"url": "https://www.reddit.com/user/fulltea"
}
]
},
{
"id": "16y26sb",
"url": "/r/Notion/comments/16y26sb/how_important_are_automations_in_notion_to_your/",
"external_url": "https://www.reddit.com/r/Notion/comments/16y26sb/how_important_are_automations_in_notion_to_your/",
"title": "How important are automations in Notion to your workflow?",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/16y26sb/how_important_are_automations_in_notion_to_your/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/16y26sb/how_important_are_automations_in_notion_to_your/'>Reddit</a></caption><div><br></div><iframe style='min-width: min(100%, 500px); height: 100vw; border: none;' id='reddit-embed' src='https://www.redditmedia.com/r/Notion/comments/16y26sb?embed=true' sandbox='allow-scripts allow-same-origin allow-popups' scrolling='no'></iframe><div><br></div><div><p>I want to learn more about how automations and IFTT in Notion aid the work process.</p>\n<ul>\n<li>Is the 'reward' for automating the process worth the effort it takes to set up?</li>\n<li>In what kinds of situations are automations most helpful to you?</li>\n</ul></div>",
"date_published": "2023-10-02T17:07:41+00:00",
"authors": [
{
"name": "casakojp",
"url": "https://www.reddit.com/user/casakojp"
}
]
},
{
"id": "16xvo1x",
"url": "/r/Notion/comments/16xvo1x/is_notion_down_or_something/",
"external_url": "https://www.reddit.com/r/Notion/comments/16xvo1x/is_notion_down_or_something/",
"title": "Is Notion down or something?",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/16xvo1x/is_notion_down_or_something/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/16xvo1x/is_notion_down_or_something/'>Reddit</a></caption><div><br></div><iframe style='min-width: min(100%, 500px); height: 100vw; border: none;' id='reddit-embed' src='https://www.redditmedia.com/r/Notion/comments/16xvo1x?embed=true' sandbox='allow-scripts allow-same-origin allow-popups' scrolling='no'></iframe><div><br></div><div><p>My templates aren't working, creating a new page in a database creates an empty page in stead. Notion <a href=\"https://status.notion.so/\">status page</a> shows everything working as normal. Isitdownrightnow.com shows notion.so being down.</p></div>",
"date_published": "2023-10-02T12:42:26+00:00",
"authors": [
{
"name": "PahaSeta",
"url": "https://www.reddit.com/user/PahaSeta"
}
]
},
{
"id": "16xriut",
"url": "/r/Notion/comments/16xriut/elon_is_announcing_a_crypto_event_both_bitcoins/",
"external_url": "https://i.redd.it/j1pmli1n6rrb1.gif",
"title": "Elon is announcing a crypto event, both Bitcoins and ETH. Limited time left.",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/16xriut/elon_is_announcing_a_crypto_event_both_bitcoins/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/16xriut/elon_is_announcing_a_crypto_event_both_bitcoins/'>Reddit</a></caption><div><br></div><div style='display: flex; justify-content: center; height:100vh'><iframe style='min-width: min(100%, 500px); height: 100%; border: none;' id='reddit-embed' src='https://www.redditmedia.com/r/Notion/comments/16xriut?embed=true' sandbox='allow-scripts allow-same-origin allow-popups' scrolling='no'/></div><div><br></div><img src=\"https://i.redd.it/j1pmli1n6rrb1.gif\" />",
"date_published": "2023-10-02T08:52:05+00:00",
"authors": [
{
"name": "JeffGoldblum64",
"url": "https://www.reddit.com/user/JeffGoldblum64"
}
]
},
{
"id": "16x16lb",
"url": "/r/Notion/comments/16x16lb/hit_a_60day_reading_streak_notions_really_doing/",
"external_url": "https://www.reddit.com/gallery/16x16lb",
"title": "Hit a 60-day reading streak! Notion's really doing its job!",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/16x16lb/hit_a_60day_reading_streak_notions_really_doing/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/16x16lb/hit_a_60day_reading_streak_notions_really_doing/'>Reddit</a></caption><div><br></div><blockquote class='reddit-embed-bq' style='height:500px' data-embed-height='500'><a href='https://reddit.com/r/Notion/comments/16x16lb/hit_a_60day_reading_streak_notions_really_doing/'></a</blockquote><script async='' src='https://embed.reddit.com/widgets.js' charset='UTF-8'></script>",
"date_published": "2023-10-01T13:26:42+00:00",
"authors": [
{
"name": "StoicDeer",
"url": "https://www.reddit.com/user/StoicDeer"
}
]
},
{
"id": "16whlbr",
"url": "/r/Notion/comments/16whlbr/elon_musk_announced_a_huge_give_away_for_bitcoins/",
"external_url": "https://i.redd.it/ckmq605ohgrb1.gif",
"title": "Elon Musk announced a huge give away for Bitcoins, limited time.",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/16whlbr/elon_musk_announced_a_huge_give_away_for_bitcoins/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/16whlbr/elon_musk_announced_a_huge_give_away_for_bitcoins/'>Reddit</a></caption><div><br></div><img src=\"https://i.redd.it/ckmq605ohgrb1.gif\" />",
"date_published": "2023-09-30T20:54:22+00:00",
"authors": [
{
"name": "Amazed_Alloy",
"url": "https://www.reddit.com/user/Amazed_Alloy"
}
]
},
{
"id": "16vzyc6",
"url": "/r/Notion/comments/16vzyc6/is_this_a_fake_website_when_searching_notion_on/",
"external_url": "https://www.reddit.com/gallery/16vzyc6",
"title": "Is this a fake website when searching \"Notion\" on Google?",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/16vzyc6/is_this_a_fake_website_when_searching_notion_on/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/16vzyc6/is_this_a_fake_website_when_searching_notion_on/'>Reddit</a></caption><div><br></div><blockquote class='reddit-embed-bq' style='height:500px' data-embed-height='500'><a href='https://reddit.com/r/Notion/comments/16vzyc6/is_this_a_fake_website_when_searching_notion_on/'></a</blockquote><script async='' src='https://embed.reddit.com/widgets.js' charset='UTF-8'></script>",
"date_published": "2023-09-30T06:54:05+00:00",
"authors": [
{
"name": "april_18th",
"url": "https://www.reddit.com/user/april_18th"
}
]
},
{
"id": "16vj45m",
"url": "/r/Notion/comments/16vj45m/whats_with_all_the_concerns_of_notion_going_down/",
"external_url": "https://www.reddit.com/r/Notion/comments/16vj45m/whats_with_all_the_concerns_of_notion_going_down/",
"title": "What\u2019s with all the concerns of Notion going down?",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/16vj45m/whats_with_all_the_concerns_of_notion_going_down/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/16vj45m/whats_with_all_the_concerns_of_notion_going_down/'>Reddit</a></caption><div><br></div><div><p>We\u2019ve went from monday to Notion a few months back and started following this sub. But now, every few days I see people talking about their concerns that they\u2019ll lose everything when Notion goes down.</p>\n<p>Is this a technical concern e.g. a server crash or are there any concerns about the business, that Notion ever would go bankrupt and they have to shut down the servers?</p>\n<p>AFAIK most \u201ccloud\u201d-services are well protected against dataloss so that\u2019s not something to worry about and about the business: they seem to make a good profit and easily got new funding rounds so I\u2019m really curious where all those concerns come from?</p></div>",
"date_published": "2023-09-29T18:20:42+00:00",
"authors": [
{
"name": "apoch8000",
"url": "https://www.reddit.com/user/apoch8000"
}
]
},
{
"id": "16utclj",
"url": "/r/Notion/comments/16utclj/so_scared_of_notion_collapsing_one_day_and_losing/",
"external_url": "https://www.reddit.com/r/Notion/comments/16utclj/so_scared_of_notion_collapsing_one_day_and_losing/",
"title": "So scared of Notion collapsing one day and losing all my hard work & collections",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/Notion/comments/16utclj/so_scared_of_notion_collapsing_one_day_and_losing/'>Apollo</a> | <a href='https://reddit.com/r/Notion/comments/16utclj/so_scared_of_notion_collapsing_one_day_and_losing/'>Reddit</a></caption><div><br></div><div><p>Can someone calm me down? I have a general fear of losing things I\u2019ve worked on many years and with Notion this fear is quite big. The app is exactly what I always needed but the inability to export and backup is scaring me. (Yes, you can backup, but it\u2019s a mess and not in the format I would want and you have to ask permission every time:/ ).</p>\n<p>I looked into alternatives like obsidian and anytype, but anytype doesn\u2019t have my beloved toggles and obsidian really doesn\u2019t fit my taste aesthetically.</p>\n<p><strong>Edit: If you have confidence in Notion, pls share why, so I can maybe adopt it.</strong></p></div>",
"date_published": "2023-09-28T22:09:46+00:00",
"authors": [
{
"name": "whoyouthinkyouarenot",
"url": "https://www.reddit.com/user/whoyouthinkyouarenot"