-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlatest?no_definitions=true&page=40.html
More file actions
1325 lines (1297 loc) · 73.1 KB
/
latest?no_definitions=true&page=40.html
File metadata and controls
1325 lines (1297 loc) · 73.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page 41 - Discuss @ Bootstrapped.fm</title>
<meta name="description" content="A friendly community guiding software bootstrappers">
<meta name="generator" content="Discourse 2.8.0.beta4 - https://github.com/discourse/discourse version 03896a9c43843208c0a5312ea879fd0971f8d1de">
<link rel="icon" type="image/png" href="https://aws1.discourse-cdn.com/business6/uploads/bootstrapped/optimized/2X/1/1cd396a8922e3c5965fd3511e0e3bf1a058613cc_2_32x32.png">
<link rel="apple-touch-icon" type="image/png" href="https://aws1.discourse-cdn.com/business6/uploads/bootstrapped/optimized/2X/4/42d2616574f968a8aa1fc8cf205e9fde4138796a_2_180x180.png">
<meta name="theme-color" content="#000000">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=yes, viewport-fit=cover">
<link rel="canonical" href="latest%3Fpage=40.html" />
<script type="application/ld+json">{"@context":"http://schema.org","@type":"WebSite","url":"https://discuss.bootstrapped.fm","potentialAction":{"@type":"SearchAction","target":"https://discuss.bootstrapped.fm/search?q={search_term_string}","query-input":"required name=search_term_string"}}</script>
<link rel="search" type="application/opensearchdescription+xml" href="opensearch.xml" title="Discuss @ Bootstrapped.fm Search">
<link href="/css/desktop.css" media="all" rel="stylesheet" data-target="desktop" />
<link href="/css/desktop_theme.css" media="all" rel="stylesheet" data-target="desktop_theme" data-theme-id="13" data-theme-name="material design theme"/>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
<meta id="data-ga-universal-analytics" data-tracking-code="UA-639849-24" data-json="{"cookieDomain":"auto"}" data-auto-link-domains="">
<link rel="preload" href="https://aws1.discourse-cdn.com/business6/assets/google-universal-analytics-v3-706f1d28f0a97f67a47515c96189277240ec4940d968955042066d7873fd1fe8.gz.js" as="script">
<script src="https://aws1.discourse-cdn.com/business6/assets/google-universal-analytics-v3-706f1d28f0a97f67a47515c96189277240ec4940d968955042066d7873fd1fe8.gz.js"></script>
<link rel="prev" href="latest%3Fno_definitions=true&page=39.html">
<link rel="next" href="latest%3Fno_definitions=true&page=41.html">
<link rel="alternate" type="application/rss+xml" title="Latest posts" href="posts.rss" />
<link rel="alternate" type="application/rss+xml" title="Latest topics" href="latest.rss" />
<meta property="og:site_name" content="Discuss @ Bootstrapped.fm" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://aws1.discourse-cdn.com/business6/uploads/bootstrapped/original/2X/1/1703e686b436ebed2802b18313f7548e60f3d18f.png" />
<meta property="og:image" content="https://aws1.discourse-cdn.com/business6/uploads/bootstrapped/original/2X/0/01534e37c0e9ff591ae519f69954d5cf41138035.png" />
<meta property="og:url" content="https://discuss.bootstrapped.fm/latest?no_definitions=true&page=40" />
<meta name="twitter:url" content="https://discuss.bootstrapped.fm/latest?no_definitions=true&page=40" />
<meta property="og:title" content="Discuss @ Bootstrapped.fm" />
<meta name="twitter:title" content="Discuss @ Bootstrapped.fm" />
<meta property="og:description" content="A friendly community guiding software bootstrappers" />
<meta name="twitter:description" content="A friendly community guiding software bootstrappers" />
</head>
<body class="crawler">
<header>
<a href="index.html">
<img src="https://aws1.discourse-cdn.com/business6/uploads/bootstrapped/original/2X/e/e604f1b2b8574d12c3667936291430d292fd7aae.png" alt="Discuss @ Bootstrapped.fm" id="site-logo" style="max-width: 150px;">
</a>
</header>
<div id="main-outlet" class="wrap">
<div itemscope itemtype='http://schema.org/ItemList'>
<meta itemprop='itemListOrder' content='http://schema.org/ItemListOrderDescending'>
<table class='topic-list'>
<thead>
<tr>
<th>Topic</th>
<th></th>
<th class="replies">Replies</th>
<th class="views">Views</th>
<th>Activity</th>
</tr>
</thead>
<tbody>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='Meetup before/after Microconf in Barcelona'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/meetup-before-after-microconf-in-barcelona/4248'>
<meta itemprop='position' content='1'>
<span class="link-top-line">
<a href='t/meetup-before-after-microconf-in-barcelona/4248.html' class='title raw-link raw-topic-link'>Meetup before/after Microconf in Barcelona</a>
</span>
<div class="link-bottom-line">
<a href='c/real-life-bootstrapped-meet-ups/10.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #0E76BD'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Real-life Bootstrapped Meet-Ups</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/SteveMcLeod.html" class="latest single">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/stevemcleod/25/2640_2.png" class="avatar" title='SteveMcLeod - Original Poster, Most Recent Poster' aria-label='SteveMcLeod - Original Poster, Most Recent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>0</span>
</td>
<td class="views">
<span class='views' title='views'>1220</span>
</td>
<td>
July 29, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='Save money on Intercom, Mixpanel, etc?'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/save-money-on-intercom-mixpanel-etc/4247'>
<meta itemprop='position' content='2'>
<span class="link-top-line">
<a href='t/save-money-on-intercom-mixpanel-etc/4247.html' class='title raw-link raw-topic-link'>Save money on Intercom, Mixpanel, etc?</a>
</span>
<div class="link-bottom-line">
<a href='c/idea-pitches/12.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #ED207B'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Idea Pitches</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/jarcoal.html" class="latest single">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/jarcoal/25/3376_2.png" class="avatar" title='jarcoal - Original Poster, Most Recent Poster' aria-label='jarcoal - Original Poster, Most Recent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>0</span>
</td>
<td class="views">
<span class='views' title='views'>1415</span>
</td>
<td>
July 28, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='All the talks from 12 Business of Software Conferences'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/all-the-talks-from-12-business-of-software-conferences/4246'>
<meta itemprop='position' content='3'>
<span class="link-top-line">
<a href='t/all-the-talks-from-12-business-of-software-conferences/4246.html' class='title raw-link raw-topic-link'>All the talks from 12 Business of Software Conferences</a>
</span>
<div class="link-bottom-line">
<a href='c/interesting-links/4.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #AB9364'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Interesting Links</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/MarkLittlewood.html" class="latest single">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/marklittlewood/25/4220_2.png" class="avatar" title='MarkLittlewood - Original Poster, Most Recent Poster' aria-label='MarkLittlewood - Original Poster, Most Recent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>0</span>
</td>
<td class="views">
<span class='views' title='views'>1207</span>
</td>
<td>
July 28, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='The UI of product support via Facebook'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/the-ui-of-product-support-via-facebook/4236'>
<meta itemprop='position' content='4'>
<span class="link-top-line">
<a href='t/the-ui-of-product-support-via-facebook/4236.html' class='title raw-link raw-topic-link'>The UI of product support via Facebook</a>
</span>
<div class="link-bottom-line">
<a href='c/discussions/2.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #92278F'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Discussions</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/SteveMcLeod.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/stevemcleod/25/2640_2.png" class="avatar" title='SteveMcLeod - Original Poster' aria-label='SteveMcLeod - Original Poster'>
</a>
<a href="https://discuss.bootstrapped.fm/u/shantnu" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/shantnu/25/2752_2.png" class="avatar" title='shantnu - Frequent Poster' aria-label='shantnu - Frequent Poster'>
</a>
<a href="u/Andy.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/andy/25/4401_2.png" class="avatar" title='Andy - Frequent Poster' aria-label='Andy - Frequent Poster'>
</a>
<a href="u/gravelld.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/gravelld/25/4644_2.png" class="avatar" title='gravelld - Frequent Poster' aria-label='gravelld - Frequent Poster'>
</a>
<a href="https://discuss.bootstrapped.fm/u/jitbit" class="latest">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/jitbit/25/4408_2.png" class="avatar" title='jitbit - Most Recent Poster' aria-label='jitbit - Most Recent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>8</span>
</td>
<td class="views">
<span class='views' title='views'>1186</span>
</td>
<td>
July 27, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='Your opinion about the Spanish software market?'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/your-opinion-about-the-spanish-software-market/4216'>
<meta itemprop='position' content='5'>
<span class="link-top-line">
<a href='t/your-opinion-about-the-spanish-software-market/4216.html' class='title raw-link raw-topic-link'>Your opinion about the Spanish software market?</a>
</span>
<div class="link-bottom-line">
<a href='c/discussions/2.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #92278F'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Discussions</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="https://discuss.bootstrapped.fm/u/mcasas" class="">
<img width="25" height="25" src="https://avatars.discourse-cdn.com/v4/letter/m/67e7ee/25.png" class="avatar" title='mcasas - Original Poster' aria-label='mcasas - Original Poster'>
</a>
<a href="u/conradomaggi.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/conradomaggi/25/3163_2.png" class="avatar" title='conradomaggi - Frequent Poster' aria-label='conradomaggi - Frequent Poster'>
</a>
<a href="https://discuss.bootstrapped.fm/u/craigvn" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/craigvn/25/4798_2.png" class="avatar" title='craigvn - Frequent Poster' aria-label='craigvn - Frequent Poster'>
</a>
<a href="u/SteveMcLeod.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/stevemcleod/25/2640_2.png" class="avatar" title='SteveMcLeod - Frequent Poster' aria-label='SteveMcLeod - Frequent Poster'>
</a>
<a href="u/MrAndyChris.html" class="latest">
<img width="25" height="25" src="https://avatars.discourse-cdn.com/v4/letter/m/9dc877/25.png" class="avatar" title='MrAndyChris - Most Recent Poster' aria-label='MrAndyChris - Most Recent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>11</span>
</td>
<td class="views">
<span class='views' title='views'>1660</span>
</td>
<td>
July 27, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='Idea for a crowded market'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/idea-for-a-crowded-market/4245'>
<meta itemprop='position' content='6'>
<span class="link-top-line">
<a href='t/idea-for-a-crowded-market/4245.html' class='title raw-link raw-topic-link'>Idea for a crowded market</a>
</span>
<div class="link-bottom-line">
<a href='c/idea-pitches/12.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #ED207B'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Idea Pitches</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/_btsta.html" class="latest">
<img width="25" height="25" src="https://avatars.discourse-cdn.com/v4/letter/_/cc9497/25.png" class="avatar" title='_btsta - Original Poster, Most Recent Poster' aria-label='_btsta - Original Poster, Most Recent Poster'>
</a>
<a href="u/Rhino.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/rhino/25/4436_2.png" class="avatar" title='Rhino - Frequent Poster' aria-label='Rhino - Frequent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>2</span>
</td>
<td class="views">
<span class='views' title='views'>1567</span>
</td>
<td>
July 27, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='How to work with remote workers - what you would like to know'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/how-to-work-with-remote-workers-what-you-would-like-to-know/4241'>
<meta itemprop='position' content='7'>
<span class="link-top-line">
<a href='t/how-to-work-with-remote-workers-what-you-would-like-to-know/4241.html' class='title raw-link raw-topic-link'>How to work with remote workers - what you would like to know</a>
</span>
<div class="link-bottom-line">
<a href='c/discussions/2.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #92278F'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Discussions</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/rudni4ok.html" class="latest single">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/rudni4ok/25/2732_2.png" class="avatar" title='rudni4ok - Original Poster, Most Recent Poster' aria-label='rudni4ok - Original Poster, Most Recent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>0</span>
</td>
<td class="views">
<span class='views' title='views'>674</span>
</td>
<td>
July 26, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='On Premise or SaaS - Challenges!'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/on-premise-or-saas-challenges/4207'>
<meta itemprop='position' content='8'>
<span class="link-top-line">
<a href='t/on-premise-or-saas-challenges/4207.html' class='title raw-link raw-topic-link'>On Premise or SaaS - Challenges!</a>
</span>
<div class="link-bottom-line">
<a href='c/discussions/2.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #92278F'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Discussions</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/DLJ.html" class="latest">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/dlj/25/4861_2.png" class="avatar" title='DLJ - Original Poster, Most Recent Poster' aria-label='DLJ - Original Poster, Most Recent Poster'>
</a>
<a href="https://discuss.bootstrapped.fm/u/fideloper" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/fideloper/25/4483_2.png" class="avatar" title='fideloper - Frequent Poster' aria-label='fideloper - Frequent Poster'>
</a>
<a href="https://discuss.bootstrapped.fm/u/shantnu" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/shantnu/25/2752_2.png" class="avatar" title='shantnu - Frequent Poster' aria-label='shantnu - Frequent Poster'>
</a>
<a href="u/jcadam.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/jcadam/25/3225_2.png" class="avatar" title='jcadam - Frequent Poster' aria-label='jcadam - Frequent Poster'>
</a>
<a href="u/Serge.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/serge/25/2473_2.png" class="avatar" title='Serge - Frequent Poster' aria-label='Serge - Frequent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>22</span>
</td>
<td class="views">
<span class='views' title='views'>3146</span>
</td>
<td>
July 26, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='CRM+Helpdesk in a single on premise solution'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/crm-helpdesk-in-a-single-on-premise-solution/4238'>
<meta itemprop='position' content='9'>
<span class="link-top-line">
<a href='t/crm-helpdesk-in-a-single-on-premise-solution/4238.html' class='title raw-link raw-topic-link'>CRM+Helpdesk in a single on premise solution</a>
</span>
<div class="link-bottom-line">
<a href='c/discussions/2.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #92278F'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Discussions</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/Dennis_Crane.html" class="latest single">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/dennis_crane/25/3966_2.png" class="avatar" title='Dennis_Crane - Original Poster, Most Recent Poster' aria-label='Dennis_Crane - Original Poster, Most Recent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>0</span>
</td>
<td class="views">
<span class='views' title='views'>794</span>
</td>
<td>
July 25, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='Pre-qualified Leads'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/pre-qualified-leads/4221'>
<meta itemprop='position' content='10'>
<span class="link-top-line">
<a href='t/pre-qualified-leads/4221.html' class='title raw-link raw-topic-link'>Pre-qualified Leads</a>
</span>
<div class="link-bottom-line">
<a href='c/discussions/2.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #92278F'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Discussions</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/courtz.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/courtz/25/3927_2.png" class="avatar" title='courtz - Original Poster' aria-label='courtz - Original Poster'>
</a>
<a href="u/Jim_Wright.html" class="">
<img width="25" height="25" src="https://avatars.discourse-cdn.com/v4/letter/j/49beb7/25.png" class="avatar" title='Jim_Wright - Frequent Poster' aria-label='Jim_Wright - Frequent Poster'>
</a>
<a href="u/Tom_Hammond.html" class="latest">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/tom_hammond/25/4804_2.png" class="avatar" title='Tom_Hammond - Most Recent Poster' aria-label='Tom_Hammond - Most Recent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>2</span>
</td>
<td class="views">
<span class='views' title='views'>943</span>
</td>
<td>
July 25, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='Marketing Analytics'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/marketing-analytics/4230'>
<meta itemprop='position' content='11'>
<span class="link-top-line">
<a href='t/marketing-analytics/4230.html' class='title raw-link raw-topic-link'>Marketing Analytics</a>
</span>
<div class="link-bottom-line">
<a href='c/discussions/2.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #92278F'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Discussions</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/unicorm.html" class="latest single">
<img width="25" height="25" src="https://avatars.discourse-cdn.com/v4/letter/u/dfb087/25.png" class="avatar" title='unicorm - Original Poster, Most Recent Poster' aria-label='unicorm - Original Poster, Most Recent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>0</span>
</td>
<td class="views">
<span class='views' title='views'>658</span>
</td>
<td>
July 24, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='Hey everyone, Lenny here!'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/hey-everyone-lenny-here/4227'>
<meta itemprop='position' content='12'>
<span class="link-top-line">
<a href='t/hey-everyone-lenny-here/4227.html' class='title raw-link raw-topic-link'>Hey everyone, Lenny here!</a>
</span>
<div class="link-bottom-line">
<a href='c/introductions/3.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #3AB54A'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Introductions</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/yesinsights.html" class="">
<img width="25" height="25" src="https://avatars.discourse-cdn.com/v4/letter/y/77aa72/25.png" class="avatar" title='yesinsights - Original Poster' aria-label='yesinsights - Original Poster'>
</a>
<a href="u/Rhino.html" class="latest">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/rhino/25/4436_2.png" class="avatar" title='Rhino - Most Recent Poster' aria-label='Rhino - Most Recent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>1</span>
</td>
<td class="views">
<span class='views' title='views'>1034</span>
</td>
<td>
July 23, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='Hello, I'm Ivan from Chile'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/hello-im-ivan-from-chile/4220'>
<meta itemprop='position' content='13'>
<span class="link-top-line">
<a href='t/hello-im-ivan-from-chile/4220.html' class='title raw-link raw-topic-link'>Hello, I'm Ivan from Chile</a>
</span>
<div class="link-bottom-line">
<a href='c/introductions/3.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #3AB54A'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Introductions</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="https://discuss.bootstrapped.fm/u/ivm" class="latest">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/ivm/25/5339_2.png" class="avatar" title='ivm - Original Poster, Most Recent Poster' aria-label='ivm - Original Poster, Most Recent Poster'>
</a>
<a href="u/SteveMcLeod.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/stevemcleod/25/2640_2.png" class="avatar" title='SteveMcLeod - Frequent Poster' aria-label='SteveMcLeod - Frequent Poster'>
</a>
<a href="u/Andy.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/andy/25/4401_2.png" class="avatar" title='Andy - Frequent Poster' aria-label='Andy - Frequent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>4</span>
</td>
<td class="views">
<span class='views' title='views'>1418</span>
</td>
<td>
July 22, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='Hi, I'm a bootstrapper originally from London'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/hi-im-a-bootstrapper-originally-from-london/4223'>
<meta itemprop='position' content='14'>
<span class="link-top-line">
<a href='t/hi-im-a-bootstrapper-originally-from-london/4223.html' class='title raw-link raw-topic-link'>Hi, I'm a bootstrapper originally from London</a>
</span>
<div class="link-bottom-line">
<a href='c/introductions/3.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #3AB54A'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Introductions</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/cldr.html" class="latest single">
<img width="25" height="25" src="https://avatars.discourse-cdn.com/v4/letter/c/f14d63/25.png" class="avatar" title='cldr - Original Poster, Most Recent Poster' aria-label='cldr - Original Poster, Most Recent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>0</span>
</td>
<td class="views">
<span class='views' title='views'>1028</span>
</td>
<td>
July 22, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='Rob sold Drip to Leadpages'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/rob-sold-drip-to-leadpages/4189'>
<meta itemprop='position' content='15'>
<span class="link-top-line">
<a href='t/rob-sold-drip-to-leadpages/4189.html' class='title raw-link raw-topic-link'>Rob sold Drip to Leadpages</a>
</span>
<div class="link-bottom-line">
<a href='c/discussions/2.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #92278F'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Discussions</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="https://discuss.bootstrapped.fm/u/pjc" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/pjc/25/2627_2.png" class="avatar" title='pjc - Original Poster' aria-label='pjc - Original Poster'>
</a>
<a href="https://discuss.bootstrapped.fm/u/jitbit" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/jitbit/25/4408_2.png" class="avatar" title='jitbit - Frequent Poster' aria-label='jitbit - Frequent Poster'>
</a>
<a href="u/SteveMcLeod.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/stevemcleod/25/2640_2.png" class="avatar" title='SteveMcLeod - Frequent Poster' aria-label='SteveMcLeod - Frequent Poster'>
</a>
<a href="https://discuss.bootstrapped.fm/u/rfctr" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/rfctr/25/4795_2.png" class="avatar" title='rfctr - Frequent Poster' aria-label='rfctr - Frequent Poster'>
</a>
<a href="u/Rhino.html" class="latest">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/rhino/25/4436_2.png" class="avatar" title='Rhino - Most Recent Poster' aria-label='Rhino - Most Recent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>7</span>
</td>
<td class="views">
<span class='views' title='views'>2090</span>
</td>
<td>
July 22, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='Selling my SaaS business - the full writeup'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/selling-my-saas-business-the-full-writeup/4212'>
<meta itemprop='position' content='16'>
<span class="link-top-line">
<a href='t/selling-my-saas-business-the-full-writeup/4212.html' class='title raw-link raw-topic-link'>Selling my SaaS business - the full writeup</a>
</span>
<div class="link-bottom-line">
<a href='c/discussions/2.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #92278F'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Discussions</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/Dave_Churchville.html" class="latest">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/dave_churchville/25/3283_2.png" class="avatar" title='Dave_Churchville - Original Poster, Most Recent Poster' aria-label='Dave_Churchville - Original Poster, Most Recent Poster'>
</a>
<a href="https://discuss.bootstrapped.fm/u/rfctr" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/rfctr/25/4795_2.png" class="avatar" title='rfctr - Frequent Poster' aria-label='rfctr - Frequent Poster'>
</a>
<a href="u/SteveMcLeod.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/stevemcleod/25/2640_2.png" class="avatar" title='SteveMcLeod - Frequent Poster' aria-label='SteveMcLeod - Frequent Poster'>
</a>
<a href="https://discuss.bootstrapped.fm/u/shantnu" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/shantnu/25/2752_2.png" class="avatar" title='shantnu - Frequent Poster' aria-label='shantnu - Frequent Poster'>
</a>
<a href="u/Jim_Wright.html" class="">
<img width="25" height="25" src="https://avatars.discourse-cdn.com/v4/letter/j/49beb7/25.png" class="avatar" title='Jim_Wright - Frequent Poster' aria-label='Jim_Wright - Frequent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>12</span>
</td>
<td class="views">
<span class='views' title='views'>2166</span>
</td>
<td>
July 21, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='Minimum Price Calculator'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/minimum-price-calculator/4210'>
<meta itemprop='position' content='17'>
<span class="link-top-line">
<a href='t/minimum-price-calculator/4210.html' class='title raw-link raw-topic-link'>Minimum Price Calculator</a>
</span>
<div class="link-bottom-line">
<a href='c/show-bootstrapped/7.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #F7941D'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Show Bootstrapped</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/Leon.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/leon/25/4163_2.png" class="avatar" title='Leon - Original Poster' aria-label='Leon - Original Poster'>
</a>
<a href="u/rob_race.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/rob_race/25/2992_2.png" class="avatar" title='rob_race - Frequent Poster' aria-label='rob_race - Frequent Poster'>
</a>
<a href="https://discuss.bootstrapped.fm/u/ian" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/ian/25/3579_2.png" class="avatar" title='ian - Frequent Poster' aria-label='ian - Frequent Poster'>
</a>
<a href="https://discuss.bootstrapped.fm/u/syneryder" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/syneryder/25/12_2.png" class="avatar" title='syneryder - Frequent Poster' aria-label='syneryder - Frequent Poster'>
</a>
<a href="u/dtrejo.html" class="latest">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/dtrejo/25/3298_2.png" class="avatar" title='dtrejo - Most Recent Poster' aria-label='dtrejo - Most Recent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>8</span>
</td>
<td class="views">
<span class='views' title='views'>1797</span>
</td>
<td>
July 20, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='Can you criticize my website?'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/can-you-criticize-my-website/4213'>
<meta itemprop='position' content='18'>
<span class="link-top-line">
<a href='https://discuss.bootstrapped.fm/t/can-you-criticize-my-website/4213' class='title raw-link raw-topic-link'>Can you criticize my website?</a>
</span>
<div class="link-bottom-line">
<a href='c/show-bootstrapped/7.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #F7941D'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Show Bootstrapped</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="https://discuss.bootstrapped.fm/u/mcasas" class="">
<img width="25" height="25" src="https://avatars.discourse-cdn.com/v4/letter/m/67e7ee/25.png" class="avatar" title='mcasas - Original Poster' aria-label='mcasas - Original Poster'>
</a>
<a href="u/SteveMcLeod.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/stevemcleod/25/2640_2.png" class="avatar" title='SteveMcLeod - Frequent Poster' aria-label='SteveMcLeod - Frequent Poster'>
</a>
<a href="u/jeff.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/jeff/25/2426_2.png" class="avatar" title='jeff - Frequent Poster' aria-label='jeff - Frequent Poster'>
</a>
<a href="u/conradomaggi.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/conradomaggi/25/3163_2.png" class="avatar" title='conradomaggi - Frequent Poster' aria-label='conradomaggi - Frequent Poster'>
</a>
<a href="u/DLJ.html" class="latest">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/dlj/25/4861_2.png" class="avatar" title='DLJ - Most Recent Poster' aria-label='DLJ - Most Recent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>7</span>
</td>
<td class="views">
<span class='views' title='views'>1927</span>
</td>
<td>
July 19, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='Hi, I'm Dave from San Diego'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/hi-im-dave-from-san-diego/4142'>
<meta itemprop='position' content='19'>
<span class="link-top-line">
<a href='t/hi-im-dave-from-san-diego/4142.html' class='title raw-link raw-topic-link'>Hi, I'm Dave from San Diego</a>
</span>
<div class="link-bottom-line">
<a href='c/introductions/3.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #3AB54A'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Introductions</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/Dave_Churchville.html" class="latest">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/dave_churchville/25/3283_2.png" class="avatar" title='Dave_Churchville - Original Poster, Most Recent Poster' aria-label='Dave_Churchville - Original Poster, Most Recent Poster'>
</a>
<a href="u/Rhino.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/rhino/25/4436_2.png" class="avatar" title='Rhino - Frequent Poster' aria-label='Rhino - Frequent Poster'>
</a>
<a href="https://discuss.bootstrapped.fm/u/shanelabs" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/shanelabs/25/4653_2.png" class="avatar" title='shanelabs - Frequent Poster' aria-label='shanelabs - Frequent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>7</span>
</td>
<td class="views">
<span class='views' title='views'>2027</span>
</td>
<td>
July 17, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='Introducing Nugget! We send you a new SaaS business opportunity every day'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/introducing-nugget-we-send-you-a-new-saas-business-opportunity-every-day/4166'>
<meta itemprop='position' content='20'>
<span class="link-top-line">
<a href='t/introducing-nugget-we-send-you-a-new-saas-business-opportunity-every-day/4166.html' class='title raw-link raw-topic-link'>Introducing Nugget! We send you a new SaaS business opportunity every day</a>
</span>
<div class="link-bottom-line">
<a href='c/show-bootstrapped/7.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #F7941D'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Show Bootstrapped</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/jv2222.html" class="latest">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/jv2222/25/2717_2.png" class="avatar" title='jv2222 - Original Poster, Most Recent Poster' aria-label='jv2222 - Original Poster, Most Recent Poster'>
</a>
<a href="u/Gorby.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/gorby/25/2566_2.png" class="avatar" title='Gorby - Frequent Poster' aria-label='Gorby - Frequent Poster'>
</a>
<a href="u/danWilcz.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/danwilcz/25/3373_2.png" class="avatar" title='danWilcz - Frequent Poster' aria-label='danWilcz - Frequent Poster'>
</a>
<a href="https://discuss.bootstrapped.fm/u/jitbit" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/jitbit/25/4408_2.png" class="avatar" title='jitbit - Frequent Poster' aria-label='jitbit - Frequent Poster'>
</a>
<a href="u/MrAndyChris.html" class="">
<img width="25" height="25" src="https://avatars.discourse-cdn.com/v4/letter/m/9dc877/25.png" class="avatar" title='MrAndyChris - Frequent Poster' aria-label='MrAndyChris - Frequent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>14</span>
</td>
<td class="views">
<span class='views' title='views'>3409</span>
</td>
<td>
July 16, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='Hello, I'm Mauricio creator of FileSculptor'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/hello-im-mauricio-creator-of-filesculptor/4211'>
<meta itemprop='position' content='21'>
<span class="link-top-line">
<a href='t/hello-im-mauricio-creator-of-filesculptor/4211.html' class='title raw-link raw-topic-link'>Hello, I'm Mauricio creator of FileSculptor</a>
</span>
<div class="link-bottom-line">
<a href='c/introductions/3.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #3AB54A'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Introductions</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/Mauricio_Macedo.html" class="">
<img width="25" height="25" src="https://avatars.discourse-cdn.com/v4/letter/m/59ef9b/25.png" class="avatar" title='Mauricio_Macedo - Original Poster' aria-label='Mauricio_Macedo - Original Poster'>
</a>
<a href="u/Rhino.html" class="latest">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/rhino/25/4436_2.png" class="avatar" title='Rhino - Most Recent Poster' aria-label='Rhino - Most Recent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>1</span>
</td>
<td class="views">
<span class='views' title='views'>1115</span>
</td>
<td>
July 15, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='OverVue - Bring order to your daily project management chaos'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/overvue-bring-order-to-your-daily-project-management-chaos/4206'>
<meta itemprop='image' content='https://aws1.discourse-cdn.com/business6/uploads/bootstrapped/optimized/2X/7/7a7fb796fc674282ad3759a48e59c5774997070a_2_1024x271.png'>
<meta itemprop='position' content='22'>
<span class="link-top-line">
<a href='t/overvue-bring-order-to-your-daily-project-management-chaos/4206.html' class='title raw-link raw-topic-link'>OverVue - Bring order to your daily project management chaos</a>
</span>
<div class="link-bottom-line">
<a href='c/show-bootstrapped/7.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #F7941D'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Show Bootstrapped</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/rob_race.html" class="latest">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/rob_race/25/2992_2.png" class="avatar" title='rob_race - Original Poster, Most Recent Poster' aria-label='rob_race - Original Poster, Most Recent Poster'>
</a>
<a href="u/shubhamjain.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/shubhamjain/25/3345_2.png" class="avatar" title='shubhamjain - Frequent Poster' aria-label='shubhamjain - Frequent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>2</span>
</td>
<td class="views">
<span class='views' title='views'>961</span>
</td>
<td>
July 15, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='How should I start?'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/how-should-i-start/3777'>
<meta itemprop='position' content='23'>
<span class="link-top-line">
<a href='t/how-should-i-start/3777.html' class='title raw-link raw-topic-link'>How should I start?</a>
</span>
<div class="link-bottom-line">
<a href='c/discussions/2.html' class='badge-wrapper bullet'>
<span class='badge-category-bg' style='background-color: #92278F'></span>
<span class='badge-category clear-badge'>
<span class='category-name'>Discussions</span>
</span>
</a>
<div class="discourse-tags">
</div>
</div>
</td>
<td class='posters'>
<a href="u/fredrivett.html" class="latest">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/fredrivett/25/2824_2.png" class="avatar" title='fredrivett - Original Poster, Most Recent Poster' aria-label='fredrivett - Original Poster, Most Recent Poster'>
</a>
<a href="u/Sadoudou.html" class="">
<img width="25" height="25" src="https://avatars.discourse-cdn.com/v4/letter/s/22d042/25.png" class="avatar" title='Sadoudou - Frequent Poster' aria-label='Sadoudou - Frequent Poster'>
</a>
<a href="u/Jim_Wright.html" class="">
<img width="25" height="25" src="https://avatars.discourse-cdn.com/v4/letter/j/49beb7/25.png" class="avatar" title='Jim_Wright - Frequent Poster' aria-label='Jim_Wright - Frequent Poster'>
</a>
<a href="https://discuss.bootstrapped.fm/u/rfctr" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/rfctr/25/4795_2.png" class="avatar" title='rfctr - Frequent Poster' aria-label='rfctr - Frequent Poster'>
</a>
<a href="u/gravelld.html" class="">
<img width="25" height="25" src="user_avatar/discuss.bootstrapped.fm/gravelld/25/4644_2.png" class="avatar" title='gravelld - Frequent Poster' aria-label='gravelld - Frequent Poster'>
</a>
</td>
<td class="replies">
<span class='posts' title='posts'>21</span>
</td>
<td class="views">
<span class='views' title='views'>3645</span>
</td>
<td>
July 15, 2016
</td>
</tr>
<tr class="topic-list-item">
<td class="main-link" itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='name' content='Recommendations for business dashboard software?'>
<meta itemprop='url' content='https://discuss.bootstrapped.fm/t/recommendations-for-business-dashboard-software/4174'>
<meta itemprop='position' content='24'>
<span class="link-top-line">
<a href='t/recommendations-for-business-dashboard-software/4174.html' class='title raw-link raw-topic-link'>Recommendations for business dashboard software?</a>