lobsters
lobsters copied to clipboard
Disallow duplicate comments posted around the same time
Anecdotally, I've noticed an uptick recently in duplicate comments being posted in stories. For example: https://lobste.rs/s/bkw5u0/no_stale_bots#c_7jfizv and https://lobste.rs/s/bkw5u0/no_stale_bots#c_woz48w, and there was another pair on a recent story too (I'm not sure which one).
Seems likely this is a comment POST being received and processed by the server, but not making it back to the client or something like that. Ideally the server could catch this case and either abort the comment post or ideally simply lie to the client that the comment had been posted, claiming that the already-posted comment was actually the just-submitted comment. (Assuming the server even returns e.g. the comment URL - I haven't actually checked.)
It's unclear to me whether this is a recent problem or whether I just happen to have noticed it recently.
It's not a recent problem. I put together a query to find duplicated comments. This has flown under the radar because most (594 of 806) are removed by the submitter or a mod.
I haven't investigated the code, but I remember there's a bit in CommentsController that tries to prevent duplicate comments; it's clearly not working.
A complexity I remember is that we try to post comments by ajax to avoid provide a nicer-looking experience without the full-page reload (which would also move the user's ReadRibbon, resetting 'unread' markers). Maybe browsers are not waiting on the js to resolve? Or getting a js error after the server's received the comment, so they're submitting the comment anyways?
Plenty to investigate.
MariaDB [lobsters]> select c1.created_at, c2.created_at - c1.created_at as seconds, concat("https://lobste.rs/c/", c1.short_id) as c1_url, (c1.is_moderated or c2.is_deleted) as c1_gone, conca
t("https://lobste.rs/c/", c2.short_id) as c2_url, (c2.is_moderated or c2.is_deleted) as c2_gone from c
d = c2.story_id and c1.user_id = c2.user_id order by c1.id desc;
+---------------------+----------+----------------------------+---------+----------------------------+---------+
| created_at | seconds | c1_url | c1_gone | c2_url | c2_gone |
+---------------------+----------+----------------------------+---------+----------------------------+---------+
| 2024-02-15 09:45:09 | 0 | https://lobste.rs/c/kudiw3 | 1 | https://lobste.rs/c/2xueur | 1 |
| 2024-02-13 14:51:08 | 1 | https://lobste.rs/c/5m8yvc | 0 | https://lobste.rs/c/pfew3q | 0 |
| 2024-02-13 08:17:23 | 0 | https://lobste.rs/c/dzcor2 | 0 | https://lobste.rs/c/z6je0e | 0 |
| 2024-02-02 14:03:16 | 34 | https://lobste.rs/c/rxxlyl | 0 | https://lobste.rs/c/bolym7 | 0 |
| 2024-01-31 06:31:24 | 0 | https://lobste.rs/c/martuy | 1 | https://lobste.rs/c/sgpm4s | 1 |
| 2024-01-22 08:03:04 | 0 | https://lobste.rs/c/u6iiqf | 0 | https://lobste.rs/c/ukstff | 0 |
| 2024-01-16 16:49:51 | 0 | https://lobste.rs/c/tcjhwh | 1 | https://lobste.rs/c/xro5tu | 1 |
| 2024-01-10 21:54:17 | 5 | https://lobste.rs/c/4qdxkn | 0 | https://lobste.rs/c/qyj9y7 | 0 |
| 2024-01-10 20:31:29 | 12288 | https://lobste.rs/c/ng2wnd | 0 | https://lobste.rs/c/4qdxkn | 0 |
| 2024-01-10 20:31:29 | 12293 | https://lobste.rs/c/ng2wnd | 0 | https://lobste.rs/c/qyj9y7 | 0 |
| 2024-01-08 07:50:03 | 0 | https://lobste.rs/c/b5rjzg | 1 | https://lobste.rs/c/emcbcs | 1 |
| 2024-01-03 03:40:47 | 0 | https://lobste.rs/c/dmkixh | 0 | https://lobste.rs/c/zrcgdi | 0 |
| 2024-01-02 04:55:47 | 0 | https://lobste.rs/c/jbhykn | 1 | https://lobste.rs/c/is8ezf | 1 |
| 2024-01-01 15:30:14 | 22 | https://lobste.rs/c/s9apra | 0 | https://lobste.rs/c/4u4oyz | 0 |
| 2023-12-28 18:03:18 | 236 | https://lobste.rs/c/i9g3rj | 0 | https://lobste.rs/c/rv9vma | 0 |
| 2023-12-26 16:33:15 | 611 | https://lobste.rs/c/vy9dvt | 0 | https://lobste.rs/c/xnaixn | 0 |
| 2023-12-26 00:44:15 | 0 | https://lobste.rs/c/5ezrcm | 0 | https://lobste.rs/c/limool | 0 |
| 2023-12-22 12:53:04 | 2 | https://lobste.rs/c/bwi9rp | 1 | https://lobste.rs/c/eguvwp | 1 |
| 2023-12-21 07:35:55 | 0 | https://lobste.rs/c/o10xpv | 0 | https://lobste.rs/c/hbaeil | 0 |
| 2023-12-19 23:26:44 | 0 | https://lobste.rs/c/ylt3rc | 0 | https://lobste.rs/c/uovpmc | 0 |
| 2023-12-19 13:31:21 | 1 | https://lobste.rs/c/8c8evj | 0 | https://lobste.rs/c/y2npxs | 0 |
| 2023-12-14 04:24:04 | 0 | https://lobste.rs/c/73s4s2 | 0 | https://lobste.rs/c/tyuyp6 | 0 |
| 2023-12-13 00:36:03 | 0 | https://lobste.rs/c/elv74w | 1 | https://lobste.rs/c/kxvzog | 1 |
| 2023-12-07 15:24:30 | 0 | https://lobste.rs/c/4t4dmr | 0 | https://lobste.rs/c/4thttm | 0 |
| 2023-11-26 21:10:34 | 0 | https://lobste.rs/c/sefdna | 0 | https://lobste.rs/c/jih7fx | 0 |
| 2023-11-24 15:37:47 | 0 | https://lobste.rs/c/hwdjv4 | 1 | https://lobste.rs/c/q0qobu | 1 |
| 2023-11-17 14:21:36 | 0 | https://lobste.rs/c/wjtde0 | 1 | https://lobste.rs/c/cl81ld | 1 |
| 2023-11-17 14:16:42 | 0 | https://lobste.rs/c/yx7wwt | 1 | https://lobste.rs/c/dxhzqj | 1 |
| 2023-11-16 19:01:12 | 1 | https://lobste.rs/c/rkz33k | 0 | https://lobste.rs/c/oxsvgg | 0 |
| 2023-11-14 10:38:06 | 0 | https://lobste.rs/c/x0e7dw | 1 | https://lobste.rs/c/n42iij | 1 |
| 2023-11-07 09:26:49 | 0 | https://lobste.rs/c/kvvcsk | 1 | https://lobste.rs/c/vph8qw | 1 |
| 2023-10-23 22:47:58 | 0 | https://lobste.rs/c/x3ewvl | 0 | https://lobste.rs/c/autxvu | 0 |
| 2023-10-17 20:57:45 | 0 | https://lobste.rs/c/pqsyv6 | 0 | https://lobste.rs/c/gw32va | 0 |
| 2023-10-15 15:07:07 | 0 | https://lobste.rs/c/9ucxvg | 1 | https://lobste.rs/c/debeic | 1 |
| 2023-10-15 12:49:21 | 0 | https://lobste.rs/c/jaaipn | 0 | https://lobste.rs/c/tnafx7 | 0 |
| 2023-10-12 11:07:24 | 25 | https://lobste.rs/c/qkfyyg | 0 | https://lobste.rs/c/bocbnu | 0 |
| 2023-10-11 10:55:49 | 0 | https://lobste.rs/c/ekuzvu | 1 | https://lobste.rs/c/2spnr2 | 1 |
| 2023-10-11 10:55:48 | 1 | https://lobste.rs/c/5jyntm | 1 | https://lobste.rs/c/2spnr2 | 1 |
| 2023-10-11 10:55:48 | 1 | https://lobste.rs/c/5jyntm | 1 | https://lobste.rs/c/ekuzvu | 1 |
| 2023-09-25 03:08:08 | 0 | https://lobste.rs/c/ijymtj | 0 | https://lobste.rs/c/6o5rrh | 0 |
| 2023-09-24 20:59:33 | 0 | https://lobste.rs/c/woz48w | 0 | https://lobste.rs/c/7jfizv | 0 |
| 2023-09-20 15:29:16 | 0 | https://lobste.rs/c/wd5gu2 | 0 | https://lobste.rs/c/adfkae | 0 |
| 2023-09-14 14:42:20 | 22 | https://lobste.rs/c/5huf4f | 1 | https://lobste.rs/c/v44nof | 1 |
| 2023-09-12 15:39:09 | 0 | https://lobste.rs/c/dvdkyr | 0 | https://lobste.rs/c/qasbee | 0 |
| 2023-09-09 07:37:19 | 0 | https://lobste.rs/c/kiywhp | 1 | https://lobste.rs/c/ifvoaw | 1 |
| 2023-09-07 19:33:43 | 0 | https://lobste.rs/c/cbsowe | 0 | https://lobste.rs/c/zd5qne | 0 |
| 2023-09-06 17:02:38 | 0 | https://lobste.rs/c/5iqbbv | 1 | https://lobste.rs/c/tws4x9 | 1 |
| 2023-09-04 20:58:55 | 1 | https://lobste.rs/c/xm6y5z | 1 | https://lobste.rs/c/u1icfg | 1 |
| 2023-09-02 11:21:24 | 0 | https://lobste.rs/c/3utwpw | 1 | https://lobste.rs/c/k052pa | 1 |
| 2023-09-02 00:22:17 | -165 | https://lobste.rs/c/sm6q8s | 0 | https://lobste.rs/c/budnwm | 0 |
| 2023-09-02 00:22:17 | -165 | https://lobste.rs/c/vbt74l | 0 | https://lobste.rs/c/budnwm | 0 |
| 2023-09-02 00:22:17 | 0 | https://lobste.rs/c/vbt74l | 1 | https://lobste.rs/c/sm6q8s | 1 |
| 2023-08-29 14:26:07 | 0 | https://lobste.rs/c/btf5kb | 0 | https://lobste.rs/c/ikzs5o | 0 |
| 2023-08-20 03:40:01 | 0 | https://lobste.rs/c/wuapgk | 1 | https://lobste.rs/c/xgzwv7 | 1 |
| 2023-08-19 18:13:05 | 0 | https://lobste.rs/c/madzzk | 1 | https://lobste.rs/c/ktfa36 | 1 |
| 2023-08-19 08:25:37 | 0 | https://lobste.rs/c/dmjp41 | 1 | https://lobste.rs/c/yxzupt | 1 |
| 2023-08-11 22:52:54 | 151 | https://lobste.rs/c/t8heba | 0 | https://lobste.rs/c/zxvzvk | 0 |
| 2023-08-03 13:05:41 | 68 | https://lobste.rs/c/moa7el | 0 | https://lobste.rs/c/w41ljy | 0 |
| 2023-08-01 08:53:38 | 0 | https://lobste.rs/c/yjtkvk | 1 | https://lobste.rs/c/2h6nol | 1 |
| 2023-07-31 17:08:14 | 34 | https://lobste.rs/c/0cdjtf | 0 | https://lobste.rs/c/wk6moa | 0 |
| 2023-07-27 01:11:17 | 0 | https://lobste.rs/c/lyscht | 1 | https://lobste.rs/c/fisobm | 1 |
| 2023-07-23 19:21:40 | 0 | https://lobste.rs/c/hvmrz3 | 1 | https://lobste.rs/c/da6qss | 1 |
| 2023-07-05 17:22:04 | 0 | https://lobste.rs/c/a8gsxe | 0 | https://lobste.rs/c/grruu2 | 0 |
| 2023-07-01 07:58:22 | 0 | https://lobste.rs/c/ikam4y | 1 | https://lobste.rs/c/y5yhkr | 1 |
| 2023-06-15 07:54:54 | 0 | https://lobste.rs/c/fyynm5 | 0 | https://lobste.rs/c/d1rebg | 0 |
| 2023-06-14 10:18:14 | 0 | https://lobste.rs/c/12uess | 1 | https://lobste.rs/c/rycpqi | 1 |
| 2023-06-06 15:24:10 | 0 | https://lobste.rs/c/4c2ir1 | 1 | https://lobste.rs/c/yxt8o9 | 1 |
| 2023-05-29 13:15:08 | 0 | https://lobste.rs/c/fnko4u | 1 | https://lobste.rs/c/utyjsj | 1 |
| 2023-05-22 15:41:12 | 0 | https://lobste.rs/c/qhhcsm | 1 | https://lobste.rs/c/mrpk4z | 1 |
| 2023-05-04 23:07:06 | 18 | https://lobste.rs/c/rx7fsi | 0 | https://lobste.rs/c/ysgauq | 0 |
| 2023-05-04 19:18:17 | 0 | https://lobste.rs/c/bldxpi | 1 | https://lobste.rs/c/cuuejl | 1 |
| 2023-05-03 09:56:25 | 0 | https://lobste.rs/c/cdt4gj | 1 | https://lobste.rs/c/siuz5e | 1 |
| 2023-04-30 09:05:10 | 1 | https://lobste.rs/c/wno14n | 0 | https://lobste.rs/c/ft92gw | 0 |
| 2023-04-29 08:56:10 | 0 | https://lobste.rs/c/lztygm | 0 | https://lobste.rs/c/bleryu | 0 |
| 2023-04-04 11:25:41 | 0 | https://lobste.rs/c/pdbe56 | 0 | https://lobste.rs/c/hbxvj8 | 0 |
| 2023-03-27 12:28:47 | 0 | https://lobste.rs/c/dtei5d | 1 | https://lobste.rs/c/bcxofx | 1 |
| 2023-03-26 00:29:27 | 0 | https://lobste.rs/c/lsbct5 | 0 | https://lobste.rs/c/9vqhvk | 0 |
| 2023-03-21 22:59:12 | 904403 | https://lobste.rs/c/lfgcei | 0 | https://lobste.rs/c/7wrgeu | 0 |
| 2023-03-21 19:43:13 | 936002 | https://lobste.rs/c/bfqdxj | 0 | https://lobste.rs/c/7wrgeu | 0 |
| 2023-03-21 19:43:13 | 31599 | https://lobste.rs/c/bfqdxj | 0 | https://lobste.rs/c/lfgcei | 0 |
| 2023-03-20 19:32:06 | 36 | https://lobste.rs/c/dwmk5r | 0 | https://lobste.rs/c/ul1qna | 0 |
| 2023-03-19 09:10:43 | 96 | https://lobste.rs/c/nis78h | 0 | https://lobste.rs/c/cqrnpl | 0 |
| 2023-03-09 01:18:35 | 4 | https://lobste.rs/c/9dhinc | 1 | https://lobste.rs/c/amddph | 1 |
| 2023-02-27 13:41:00 | 0 | https://lobste.rs/c/lagcvh | 1 | https://lobste.rs/c/oiqnvq | 1 |
| 2023-02-24 23:57:59 | 0 | https://lobste.rs/c/nualvi | 1 | https://lobste.rs/c/pjs3is | 1 |
| 2023-02-24 23:57:59 | 0 | https://lobste.rs/c/kc3rbq | 1 | https://lobste.rs/c/nualvi | 1 |
| 2023-02-24 23:57:59 | 0 | https://lobste.rs/c/kc3rbq | 1 | https://lobste.rs/c/pjs3is | 1 |
| 2023-02-24 23:57:59 | 0 | https://lobste.rs/c/9dcc0l | 1 | https://lobste.rs/c/kc3rbq | 1 |
| 2023-02-24 23:57:59 | 0 | https://lobste.rs/c/9dcc0l | 1 | https://lobste.rs/c/nualvi | 1 |
| 2023-02-24 23:57:59 | 0 | https://lobste.rs/c/9dcc0l | 1 | https://lobste.rs/c/pjs3is | 1 |
| 2023-02-17 18:47:30 | 0 | https://lobste.rs/c/gdhrie | 1 | https://lobste.rs/c/tbvlso | 1 |
| 2023-02-15 13:07:35 | 2095 | https://lobste.rs/c/jqbogp | 1 | https://lobste.rs/c/kqzo9u | 1 |
| 2023-02-09 16:51:59 | 44 | https://lobste.rs/c/rpewr0 | 0 | https://lobste.rs/c/ryfcxb | 0 |
| 2023-02-08 22:34:15 | 1 | https://lobste.rs/c/wkvbfi | 0 | https://lobste.rs/c/wfxbbs | 0 |
| 2023-01-25 10:32:10 | 0 | https://lobste.rs/c/kiidsn | 1 | https://lobste.rs/c/vnzke8 | 1 |
| 2023-01-16 10:16:39 | 0 | https://lobste.rs/c/xchgf6 | 1 | https://lobste.rs/c/o4b4gz | 1 |
| 2023-01-10 15:02:21 | 0 | https://lobste.rs/c/emssap | 0 | https://lobste.rs/c/feytwr | 0 |
| 2023-01-09 16:49:00 | 0 | https://lobste.rs/c/yviuza | 1 | https://lobste.rs/c/eg94nw | 1 |
| 2022-12-27 16:28:39 | 74 | https://lobste.rs/c/bworqz | 0 | https://lobste.rs/c/m8ksui | 0 |
| 2022-12-27 06:04:55 | 47 | https://lobste.rs/c/hcjdfm | 0 | https://lobste.rs/c/vc1ijn | 0 |
| 2022-12-12 16:04:51 | 3 | https://lobste.rs/c/hlsiny | 0 | https://lobste.rs/c/jnxxyp | 0 |
| 2022-12-04 02:07:19 | 0 | https://lobste.rs/c/idriqx | 1 | https://lobste.rs/c/cm38f9 | 1 |
| 2022-12-01 07:55:41 | 63 | https://lobste.rs/c/iyztdq | 0 | https://lobste.rs/c/7kpyxq | 0 |
| 2022-11-26 21:32:32 | 0 | https://lobste.rs/c/7mmsxt | 1 | https://lobste.rs/c/pjc8xy | 1 |
| 2022-11-26 02:34:26 | 1 | https://lobste.rs/c/4fxsvl | 1 | https://lobste.rs/c/870nsa | 1 |
| 2022-11-10 12:51:45 | 73 | https://lobste.rs/c/uwropo | 0 | https://lobste.rs/c/i5ab1p | 0 |
| 2022-11-10 10:48:49 | 0 | https://lobste.rs/c/dj1ymp | 0 | https://lobste.rs/c/7ickgz | 0 |
| 2022-11-06 03:25:20 | 124 | https://lobste.rs/c/wb2him | 0 | https://lobste.rs/c/1re0xs | 0 |
| 2022-11-03 12:53:29 | 0 | https://lobste.rs/c/5pvw1u | 1 | https://lobste.rs/c/hddntw | 1 |
| 2022-11-03 12:53:29 | 0 | https://lobste.rs/c/6mofe2 | 1 | https://lobste.rs/c/5pvw1u | 1 |
| 2022-11-03 12:53:29 | 0 | https://lobste.rs/c/6mofe2 | 1 | https://lobste.rs/c/hddntw | 1 |
| 2022-10-27 12:49:28 | 122 | https://lobste.rs/c/82rkrq | 0 | https://lobste.rs/c/2lc2dk | 0 |
| 2022-10-07 15:15:51 | 389 | https://lobste.rs/c/h8bflq | 0 | https://lobste.rs/c/8s0amq | 0 |
| 2022-10-07 15:15:51 | 389 | https://lobste.rs/c/gzkyng | 0 | https://lobste.rs/c/8s0amq | 0 |
| 2022-10-07 15:15:51 | 0 | https://lobste.rs/c/gzkyng | 1 | https://lobste.rs/c/h8bflq | 1 |
| 2022-10-05 15:09:06 | 26 | https://lobste.rs/c/rri61e | 0 | https://lobste.rs/c/uvu71k | 0 |
| 2022-09-11 15:03:35 | 79 | https://lobste.rs/c/y6ti1h | 0 | https://lobste.rs/c/fuglx9 | 0 |
| 2022-08-31 14:19:09 | 20 | https://lobste.rs/c/u8xhi6 | 0 | https://lobste.rs/c/itu5eh | 0 |
| 2022-07-13 20:07:16 | 15 | https://lobste.rs/c/tyqete | 0 | https://lobste.rs/c/7kbysz | 0 |
| 2022-07-04 12:06:58 | 90 | https://lobste.rs/c/f60ucc | 0 | https://lobste.rs/c/74vu8j | 0 |
| 2022-06-13 16:08:48 | 0 | https://lobste.rs/c/poeaod | 1 | https://lobste.rs/c/0kyuny | 1 |
| 2022-06-06 00:56:38 | 0 | https://lobste.rs/c/o4c8rt | 1 | https://lobste.rs/c/dtijug | 1 |
| 2022-06-06 00:56:38 | 0 | https://lobste.rs/c/6xprzy | 1 | https://lobste.rs/c/dtijug | 1 |
| 2022-06-06 00:56:38 | 0 | https://lobste.rs/c/6xprzy | 1 | https://lobste.rs/c/o4c8rt | 1 |
| 2022-06-06 00:56:38 | 0 | https://lobste.rs/c/7yvg02 | 1 | https://lobste.rs/c/6xprzy | 1 |
| 2022-06-06 00:56:38 | 0 | https://lobste.rs/c/7yvg02 | 1 | https://lobste.rs/c/dtijug | 1 |
| 2022-06-06 00:56:38 | 0 | https://lobste.rs/c/7yvg02 | 1 | https://lobste.rs/c/o4c8rt | 1 |
| 2022-05-29 23:37:52 | 0 | https://lobste.rs/c/j9uk6a | 1 | https://lobste.rs/c/icxdmd | 1 |
| 2022-05-18 16:58:50 | 0 | https://lobste.rs/c/o70nhe | 1 | https://lobste.rs/c/x6eguh | 1 |
| 2022-05-18 16:35:28 | 0 | https://lobste.rs/c/rnbpd2 | 0 | https://lobste.rs/c/ypsk6r | 0 |
| 2022-05-16 23:55:26 | 766388 | https://lobste.rs/c/gitfux | 1 | https://lobste.rs/c/ljt4tz | 1 |
| 2022-05-15 15:39:02 | 0 | https://lobste.rs/c/3wqvao | 0 | https://lobste.rs/c/flwh3k | 0 |
| 2022-05-08 00:20:35 | 138922 | https://lobste.rs/c/vtq3x1 | 0 | https://lobste.rs/c/wihole | 0 |
| 2022-04-13 05:22:40 | 1 | https://lobste.rs/c/sxulii | 0 | https://lobste.rs/c/esyxfr | 0 |
| 2022-04-06 19:57:45 | 0 | https://lobste.rs/c/erwz4s | 1 | https://lobste.rs/c/mrh6ep | 1 |
| 2022-03-30 13:59:47 | 4096 | https://lobste.rs/c/nwidmj | 0 | https://lobste.rs/c/e5glgx | 0 |
| 2022-03-28 19:42:57 | 0 | https://lobste.rs/c/fuozw5 | 0 | https://lobste.rs/c/m4keu8 | 0 |
| 2022-03-23 14:01:50 | 0 | https://lobste.rs/c/bta69e | 0 | https://lobste.rs/c/m9lnjh | 0 |
| 2022-03-11 09:00:16 | 0 | https://lobste.rs/c/9j97sa | 0 | https://lobste.rs/c/wphuqu | 0 |
| 2022-03-02 08:19:43 | 8284 | https://lobste.rs/c/g4gi8i | 1 | https://lobste.rs/c/acsrbt | 1 |
| 2022-02-27 20:02:01 | 0 | https://lobste.rs/c/rhveqo | 0 | https://lobste.rs/c/kfiklu | 0 |
| 2022-02-23 07:04:05 | 36 | https://lobste.rs/c/htkqnp | 0 | https://lobste.rs/c/dosqth | 0 |
| 2022-02-18 16:17:31 | 0 | https://lobste.rs/c/zomnzh | 0 | https://lobste.rs/c/uqooze | 0 |
| 2022-02-17 05:01:41 | 480 | https://lobste.rs/c/0qzigp | 0 | https://lobste.rs/c/8ng0gw | 0 |
| 2022-02-16 05:02:04 | 0 | https://lobste.rs/c/0hevk9 | 1 | https://lobste.rs/c/4b9ee1 | 1 |
| 2022-02-14 15:20:28 | 0 | https://lobste.rs/c/ufs7lu | 1 | https://lobste.rs/c/hf3wk5 | 1 |
| 2022-02-02 09:17:59 | 47 | https://lobste.rs/c/r5t7zd | 0 | https://lobste.rs/c/mr4uh7 | 0 |
| 2022-02-02 09:17:41 | 65 | https://lobste.rs/c/17sghy | 0 | https://lobste.rs/c/mr4uh7 | 0 |
| 2022-02-02 09:17:41 | 18 | https://lobste.rs/c/17sghy | 0 | https://lobste.rs/c/r5t7zd | 0 |
| 2022-02-01 09:15:18 | 0 | https://lobste.rs/c/idcbhe | 1 | https://lobste.rs/c/mjj0rq | 1 |
| 2022-01-20 20:15:10 | 0 | https://lobste.rs/c/bsiia9 | 1 | https://lobste.rs/c/ic8nlt | 1 |
| 2022-01-18 09:08:12 | 0 | https://lobste.rs/c/qrboxr | 0 | https://lobste.rs/c/zfhcxq | 0 |
| 2022-01-18 02:09:52 | 0 | https://lobste.rs/c/pooffx | 1 | https://lobste.rs/c/6bytvi | 1 |
| 2022-01-17 12:10:48 | 0 | https://lobste.rs/c/jtnn5q | 1 | https://lobste.rs/c/vdsnyf | 1 |
| 2022-01-16 17:29:54 | 0 | https://lobste.rs/c/vw9chj | 1 | https://lobste.rs/c/hlsyhw | 1 |
| 2022-01-16 01:08:47 | 0 | https://lobste.rs/c/qnswzm | 1 | https://lobste.rs/c/yklde1 | 1 |
| 2022-01-13 21:04:30 | 21 | https://lobste.rs/c/7ftsys | 0 | https://lobste.rs/c/m8spof | 0 |
| 2022-01-11 00:43:42 | 0 | https://lobste.rs/c/wbavn0 | 0 | https://lobste.rs/c/xmeseu | 0 |
| 2022-01-10 14:09:16 | 0 | https://lobste.rs/c/dsnlue | 1 | https://lobste.rs/c/pifajy | 1 |
| 2022-01-10 14:09:15 | 1 | https://lobste.rs/c/pm6wyn | 1 | https://lobste.rs/c/dsnlue | 1 |
| 2022-01-10 14:09:15 | 1 | https://lobste.rs/c/pm6wyn | 1 | https://lobste.rs/c/pifajy | 1 |
| 2022-01-07 17:15:33 | 0 | https://lobste.rs/c/ffpiqb | 1 | https://lobste.rs/c/rluniz | 1 |
| 2022-01-03 22:27:24 | 0 | https://lobste.rs/c/klhbnm | 1 | https://lobste.rs/c/k6kkdt | 1 |
| 2022-01-03 22:27:24 | 0 | https://lobste.rs/c/gpoblh | 1 | https://lobste.rs/c/k6kkdt | 1 |
| 2022-01-03 22:27:24 | 0 | https://lobste.rs/c/gpoblh | 1 | https://lobste.rs/c/klhbnm | 1 |
| 2021-12-31 10:24:16 | 0 | https://lobste.rs/c/xkkb0t | 0 | https://lobste.rs/c/9kdqp1 | 0 |
| 2021-12-21 12:36:02 | 0 | https://lobste.rs/c/ke9lu1 | 0 | https://lobste.rs/c/jmsu8x | 0 |
| 2021-12-20 20:55:31 | 27 | https://lobste.rs/c/j102le | 1 | https://lobste.rs/c/rj8b8v | 1 |
| 2021-12-20 18:36:35 | 918422 | https://lobste.rs/c/pfes8e | 0 | https://lobste.rs/c/fcpzik | 0 |
| 2021-12-20 16:05:47 | 941510 | https://lobste.rs/c/1wqu4o | 0 | https://lobste.rs/c/fcpzik | 0 |
| 2021-12-20 16:05:47 | 23088 | https://lobste.rs/c/1wqu4o | 0 | https://lobste.rs/c/pfes8e | 0 |
| 2021-12-20 16:05:38 | 9 | https://lobste.rs/c/ccovhh | 0 | https://lobste.rs/c/1wqu4o | 0 |
| 2021-12-20 16:05:38 | 941519 | https://lobste.rs/c/ccovhh | 0 | https://lobste.rs/c/fcpzik | 0 |
| 2021-12-20 16:05:38 | 23097 | https://lobste.rs/c/ccovhh | 0 | https://lobste.rs/c/pfes8e | 0 |
| 2021-12-12 12:30:51 | 0 | https://lobste.rs/c/oeaua8 | 1 | https://lobste.rs/c/nucx6e | 1 |
| 2021-12-03 22:41:16 | 31 | https://lobste.rs/c/nqdpuh | 0 | https://lobste.rs/c/hgvqqk | 0 |
| 2021-12-01 20:21:35 | 0 | https://lobste.rs/c/qt5hkw | 1 | https://lobste.rs/c/mygxp5 | 1 |
| 2021-12-01 19:18:54 | 0 | https://lobste.rs/c/h9dyjp | 1 | https://lobste.rs/c/rqmfx2 | 1 |
| 2021-12-01 19:18:54 | 0 | https://lobste.rs/c/2ngcu8 | 1 | https://lobste.rs/c/h9dyjp | 1 |
| 2021-12-01 19:18:54 | 0 | https://lobste.rs/c/2ngcu8 | 1 | https://lobste.rs/c/rqmfx2 | 1 |
| 2021-11-30 02:25:09 | 0 | https://lobste.rs/c/nkbasb | 1 | https://lobste.rs/c/pqoycq | 1 |
| 2021-11-21 10:23:48 | 77 | https://lobste.rs/c/ijmlth | 0 | https://lobste.rs/c/88v2oq | 0 |
| 2021-11-20 14:44:29 | 329 | https://lobste.rs/c/0k3gpe | 0 | https://lobste.rs/c/hx3ltk | 0 |
| 2021-11-11 21:02:05 | 0 | https://lobste.rs/c/my53xt | 1 | https://lobste.rs/c/ynhr3b | 1 |
| 2021-11-06 19:40:09 | 0 | https://lobste.rs/c/aq1ald | 1 | https://lobste.rs/c/qldeud | 1 |
| 2021-11-04 19:12:16 | 0 | https://lobste.rs/c/gmjlp3 | 1 | https://lobste.rs/c/mencgc | 1 |
| 2021-10-12 13:14:25 | 0 | https://lobste.rs/c/p2pxsb | 1 | https://lobste.rs/c/kmdxa8 | 1 |
| 2021-10-08 16:29:15 | 29 | https://lobste.rs/c/caslmc | 0 | https://lobste.rs/c/3mvwj0 | 0 |
| 2021-10-05 09:13:51 | 0 | https://lobste.rs/c/rokpob | 1 | https://lobste.rs/c/pv0fn8 | 1 |
| 2021-10-01 20:07:32 | 0 | https://lobste.rs/c/bjrx9e | 1 | https://lobste.rs/c/nihwtf | 1 |
| 2021-09-30 09:22:39 | 68 | https://lobste.rs/c/qnulsj | 0 | https://lobste.rs/c/5akbmx | 0 |
| 2021-09-28 09:29:33 | 0 | https://lobste.rs/c/chqmkb | 0 | https://lobste.rs/c/lclzhz | 0 |
| 2021-09-26 17:00:08 | 0 | https://lobste.rs/c/pne6fn | 0 | https://lobste.rs/c/ina0sa | 0 |
| 2021-09-25 06:17:07 | 17 | https://lobste.rs/c/vhurqf | 0 | https://lobste.rs/c/tf6sr5 | 0 |
| 2021-09-24 20:29:27 | 0 | https://lobste.rs/c/a5op8l | 0 | https://lobste.rs/c/emnt38 | 0 |
| 2021-09-11 00:18:47 | 10086 | https://lobste.rs/c/b977fd | 0 | https://lobste.rs/c/8x6gxi | 0 |
| 2021-09-06 18:59:32 | 0 | https://lobste.rs/c/prgauv | 1 | https://lobste.rs/c/sw4rio | 1 |
| 2021-09-06 07:42:36 | 0 | https://lobste.rs/c/zlommu | 1 | https://lobste.rs/c/snfv1f | 1 |
| 2021-09-05 09:15:08 | 0 | https://lobste.rs/c/plncpr | 1 | https://lobste.rs/c/nmu7cu | 1 |
| 2021-08-30 03:39:39 | 0 | https://lobste.rs/c/rlaa5n | 0 | https://lobste.rs/c/esbucm | 0 |
| 2021-08-20 07:31:24 | 15 | https://lobste.rs/c/ikiilq | 0 | https://lobste.rs/c/4e5gbj | 0 |
| 2021-08-12 08:07:55 | 89 | https://lobste.rs/c/hjvhu1 | 0 | https://lobste.rs/c/gdrl7w | 0 |
| 2021-08-09 07:22:46 | 0 | https://lobste.rs/c/0lujfb | 1 | https://lobste.rs/c/ddsieo | 1 |
| 2021-08-07 02:52:10 | 21 | https://lobste.rs/c/kngmqx | 0 | https://lobste.rs/c/yubzdg | 0 |
| 2021-08-06 18:24:11 | 0 | https://lobste.rs/c/tdgeen | 1 | https://lobste.rs/c/ph0odi | 1 |
| 2021-08-01 21:26:21 | 0 | https://lobste.rs/c/emuhas | 1 | https://lobste.rs/c/sysrxg | 1 |
| 2021-07-31 05:15:06 | 0 | https://lobste.rs/c/5nlbmb | 1 | https://lobste.rs/c/1jhwpd | 1 |
| 2021-07-31 05:15:06 | 0 | https://lobste.rs/c/bmnd9a | 1 | https://lobste.rs/c/1jhwpd | 1 |
| 2021-07-31 05:15:06 | 0 | https://lobste.rs/c/bmnd9a | 1 | https://lobste.rs/c/5nlbmb | 1 |
| 2021-07-17 17:04:52 | 0 | https://lobste.rs/c/m7zaiz | 0 | https://lobste.rs/c/zylqbv | 0 |
| 2021-07-15 13:10:19 | 4203 | https://lobste.rs/c/9nnypl | 1 | https://lobste.rs/c/beis3f | 1 |
| 2021-06-18 13:44:53 | 0 | https://lobste.rs/c/i4bkpa | 0 | https://lobste.rs/c/ng3nbg | 0 |
| 2021-06-17 21:12:51 | 100 | https://lobste.rs/c/sk9arh | 0 | https://lobste.rs/c/krsh4d | 0 |
| 2021-06-09 17:49:57 | 772 | https://lobste.rs/c/nb3uno | 1 | https://lobste.rs/c/xstdki | 1 |
| 2021-06-03 00:08:42 | 6 | https://lobste.rs/c/swfem8 | 1 | https://lobste.rs/c/i4qsmy | 1 |
| 2021-06-02 07:10:08 | 1 | https://lobste.rs/c/2ygcog | 0 | https://lobste.rs/c/skcyzo | 0 |
| 2021-05-25 17:00:34 | 0 | https://lobste.rs/c/a0hkpn | 1 | https://lobste.rs/c/ncygpx | 1 |
| 2021-05-23 08:29:31 | 0 | https://lobste.rs/c/jodday | 0 | https://lobste.rs/c/lmkou7 | 0 |
| 2021-05-19 18:54:46 | 259 | https://lobste.rs/c/v6gvyx | 0 | https://lobste.rs/c/wvxxir | 0 |
| 2021-05-17 01:19:36 | 0 | https://lobste.rs/c/anb7vq | 0 | https://lobste.rs/c/8c7qb2 | 0 |
| 2021-05-15 16:09:49 | 12970 | https://lobste.rs/c/xr68jd | 1 | https://lobste.rs/c/oxnrc6 | 1 |
| 2021-05-14 21:33:45 | 0 | https://lobste.rs/c/5xqxhr | 1 | https://lobste.rs/c/vnx46n | 1 |
| 2021-05-13 13:31:40 | 9475 | https://lobste.rs/c/ax9r9n | 1 | https://lobste.rs/c/u7rdyg | 1 |
| 2021-05-11 15:55:32 | 69 | https://lobste.rs/c/wo2ijy | 0 | https://lobste.rs/c/x4daaj | 0 |
| 2021-05-08 07:13:08 | 9 | https://lobste.rs/c/hvp1oj | 1 | https://lobste.rs/c/msldfo | 1 |
| 2021-05-06 01:48:42 | 6 | https://lobste.rs/c/oma7su | 0 | https://lobste.rs/c/txpife | 0 |
| 2021-05-03 07:01:16 | 3786 | https://lobste.rs/c/5mck6q | 0 | https://lobste.rs/c/6ukpdw | 0 |
| 2021-05-02 02:04:37 | 0 | https://lobste.rs/c/4rgkop | 1 | https://lobste.rs/c/lfdygs | 1 |
| 2021-05-02 02:04:33 | 4 | https://lobste.rs/c/rlcexu | 0 | https://lobste.rs/c/4rgkop | 0 |
| 2021-05-02 02:04:33 | 4 | https://lobste.rs/c/rlcexu | 1 | https://lobste.rs/c/lfdygs | 1 |
| 2021-05-02 02:04:33 | 4 | https://lobste.rs/c/zd5sib | 0 | https://lobste.rs/c/4rgkop | 0 |
| 2021-05-02 02:04:33 | 4 | https://lobste.rs/c/zd5sib | 1 | https://lobste.rs/c/lfdygs | 1 |
| 2021-05-02 02:04:33 | 0 | https://lobste.rs/c/zd5sib | 1 | https://lobste.rs/c/rlcexu | 1 |
| 2021-05-02 02:04:22 | 15 | https://lobste.rs/c/ugjybv | 0 | https://lobste.rs/c/4rgkop | 0 |
| 2021-05-02 02:04:22 | 15 | https://lobste.rs/c/ugjybv | 1 | https://lobste.rs/c/lfdygs | 1 |
| 2021-05-02 02:04:22 | 11 | https://lobste.rs/c/ugjybv | 1 | https://lobste.rs/c/rlcexu | 1 |
| 2021-05-02 02:04:22 | 11 | https://lobste.rs/c/ugjybv | 1 | https://lobste.rs/c/zd5sib | 1 |
| 2021-04-27 23:05:38 | 1974881 | https://lobste.rs/c/bqt194 | 1 | https://lobste.rs/c/qm1knf | 1 |
| 2021-04-26 22:06:15 | 0 | https://lobste.rs/c/t5weft | 0 | https://lobste.rs/c/m0kv4z | 0 |
| 2021-04-23 11:21:05 | 19 | https://lobste.rs/c/xfkpae | 0 | https://lobste.rs/c/xm6eyv | 0 |
| 2021-04-22 23:18:47 | 0 | https://lobste.rs/c/nt2d3s | 1 | https://lobste.rs/c/lk6ynt | 1 |
| 2021-04-18 01:04:22 | 1 | https://lobste.rs/c/tyriep | 0 | https://lobste.rs/c/m25qqh | 0 |
| 2021-04-15 23:03:34 | 5 | https://lobste.rs/c/tzxa8p | 0 | https://lobste.rs/c/vmfedm | 0 |
| 2021-04-11 22:02:54 | 55 | https://lobste.rs/c/gxknoc | 0 | https://lobste.rs/c/wxp5q0 | 0 |
| 2021-04-10 18:59:29 | 0 | https://lobste.rs/c/bl2gxj | 0 | https://lobste.rs/c/bzmnvr | 0 |
| 2021-04-04 19:13:28 | 0 | https://lobste.rs/c/rinldn | 1 | https://lobste.rs/c/dak8s7 | 1 |
| 2021-03-27 05:46:49 | 676 | https://lobste.rs/c/taxax9 | 0 | https://lobste.rs/c/leq3py | 0 |
| 2021-03-24 20:06:50 | 9959 | https://lobste.rs/c/m9toap | 1 | https://lobste.rs/c/o7yfll | 1 |
| 2021-03-20 19:24:32 | 4 | https://lobste.rs/c/qvnsup | 0 | https://lobste.rs/c/rtul5f | 0 |
| 2021-03-18 05:28:41 | 0 | https://lobste.rs/c/j78o0n | 1 | https://lobste.rs/c/tgi8rx | 1 |
| 2021-03-18 03:23:15 | 0 | https://lobste.rs/c/pgaz0j | 1 | https://lobste.rs/c/zuraoo | 1 |
| 2021-03-15 02:35:12 | 0 | https://lobste.rs/c/9igtio | 0 | https://lobste.rs/c/eaifng | 0 |
| 2021-03-14 04:37:50 | 12063 | https://lobste.rs/c/ssnkdu | 0 | https://lobste.rs/c/9hitzi | 0 |
| 2021-03-14 04:14:21 | 0 | https://lobste.rs/c/wqcd8k | 0 | https://lobste.rs/c/unkemu | 0 |
| 2021-03-13 16:05:37 | 97 | https://lobste.rs/c/nyshzu | 0 | https://lobste.rs/c/7r0tin | 0 |
| 2021-03-04 19:24:25 | 0 | https://lobste.rs/c/3b50mf | 1 | https://lobste.rs/c/cmevhz | 1 |
| 2021-02-27 13:23:55 | 0 | https://lobste.rs/c/idlhcb | 0 | https://lobste.rs/c/irapiz | 0 |
| 2021-02-22 22:13:30 | 0 | https://lobste.rs/c/wbhrl6 | 1 | https://lobste.rs/c/u22hs2 | 1 |
| 2021-02-21 01:26:32 | 0 | https://lobste.rs/c/0gnh0q | 1 | https://lobste.rs/c/26yn3v | 1 |
| 2021-02-20 15:00:02 | 13 | https://lobste.rs/c/m9wrp8 | 0 | https://lobste.rs/c/nhjqnn | 0 |
| 2021-02-20 10:55:02 | 137 | https://lobste.rs/c/uyb2rn | 0 | https://lobste.rs/c/r7jfix | 0 |
| 2021-02-20 10:54:39 | 200 | https://lobste.rs/c/mmtcjh | 0 | https://lobste.rs/c/r7jfix | 0 |
| 2021-02-20 10:54:39 | 63 | https://lobste.rs/c/mmtcjh | 1 | https://lobste.rs/c/uyb2rn | 1 |
| 2021-02-17 18:41:30 | 0 | https://lobste.rs/c/nyopmz | 1 | https://lobste.rs/c/ivfbvl | 1 |
| 2021-02-01 20:53:32 | 0 | https://lobste.rs/c/rfufw8 | 0 | https://lobste.rs/c/conoip | 0 |
| 2021-01-30 03:42:15 | 0 | https://lobste.rs/c/b6wbjg | 1 | https://lobste.rs/c/iyhcku | 1 |
| 2021-01-26 09:40:40 | 261 | https://lobste.rs/c/wqvbj8 | 1 | https://lobste.rs/c/htdd9z | 1 |
| 2021-01-24 06:52:20 | 0 | https://lobste.rs/c/xpyncv | 0 | https://lobste.rs/c/dm3cli | 0 |
| 2021-01-20 08:08:07 | 0 | https://lobste.rs/c/j7sqan | 0 | https://lobste.rs/c/bw0efc | 0 |
| 2021-01-20 01:57:08 | 0 | https://lobste.rs/c/frrplq | 0 | https://lobste.rs/c/3hsyjh | 0 |
| 2021-01-14 14:45:36 | 0 | https://lobste.rs/c/udw9pn | 0 | https://lobste.rs/c/45zx8i | 0 |
| 2021-01-14 01:43:27 | 1 | https://lobste.rs/c/nvulzq | 0 | https://lobste.rs/c/luvffs | 0 |
| 2021-01-14 01:43:24 | 4 | https://lobste.rs/c/6thige | 0 | https://lobste.rs/c/luvffs | 0 |
| 2021-01-14 01:43:24 | 3 | https://lobste.rs/c/6thige | 1 | https://lobste.rs/c/nvulzq | 1 |
| 2021-01-13 06:30:26 | 0 | https://lobste.rs/c/kizfuu | 1 | https://lobste.rs/c/vgu3ya | 1 |
| 2021-01-11 22:50:05 | 0 | https://lobste.rs/c/pc3upm | 0 | https://lobste.rs/c/i6ihyr | 0 |
| 2021-01-07 21:00:28 | 0 | https://lobste.rs/c/u7pcdy | 1 | https://lobste.rs/c/dokzfm | 1 |
| 2021-01-07 17:37:30 | 24 | https://lobste.rs/c/lnv178 | 0 | https://lobste.rs/c/2tpy5e | 0 |
| 2021-01-06 16:05:45 | 1 | https://lobste.rs/c/gbyzwe | 0 | https://lobste.rs/c/u6nfj6 | 0 |
| 2021-01-06 16:02:50 | 0 | https://lobste.rs/c/yqr9cg | 0 | https://lobste.rs/c/6vfa0h | 0 |
| 2021-01-06 16:02:49 | 1 | https://lobste.rs/c/hs7vlb | 0 | https://lobste.rs/c/6vfa0h | 0 |
| 2021-01-06 16:02:49 | 1 | https://lobste.rs/c/hs7vlb | 0 | https://lobste.rs/c/yqr9cg | 0 |
| 2021-01-04 12:05:09 | 0 | https://lobste.rs/c/mzsblm | 1 | https://lobste.rs/c/omcrxp | 1 |
| 2021-01-04 05:01:47 | 7 | https://lobste.rs/c/egtqae | 0 | https://lobste.rs/c/blgp8c | 0 |
| 2020-12-31 00:39:35 | 72 | https://lobste.rs/c/5xgfzo | 0 | https://lobste.rs/c/4pkl2h | 0 |
| 2020-12-22 23:15:32 | 851214 | https://lobste.rs/c/zy7rcr | 1 | https://lobste.rs/c/ejotcs | 1 |
| 2020-12-21 10:41:03 | 146 | https://lobste.rs/c/asnx9f | 0 | https://lobste.rs/c/oudnhe | 0 |
| 2020-12-19 16:01:21 | 22 | https://lobste.rs/c/d7wfyt | 0 | https://lobste.rs/c/ys8mvr | 0 |
| 2020-12-10 15:29:21 | 1822 | https://lobste.rs/c/9qwvfh | 1 | https://lobste.rs/c/a2ggdg | 1 |
| 2020-12-06 16:52:56 | 45 | https://lobste.rs/c/g96xu3 | 0 | https://lobste.rs/c/9cbfe9 | 0 |
| 2020-12-05 18:20:47 | 0 | https://lobste.rs/c/s2wejo | 1 | https://lobste.rs/c/pn6lth | 1 |
| 2020-11-30 21:53:15 | 7 | https://lobste.rs/c/wa3sjo | 1 | https://lobste.rs/c/sxh2p5 | 1 |
| 2020-11-25 22:52:38 | 795920 | https://lobste.rs/c/dt6w2o | 1 | https://lobste.rs/c/e6j0go | 1 |
| 2020-11-24 18:31:20 | 96 | https://lobste.rs/c/pawxcf | 0 | https://lobste.rs/c/22dgl8 | 0 |
| 2020-11-15 20:10:28 | 11 | https://lobste.rs/c/4oirqt | 0 | https://lobste.rs/c/u3ljnk | 0 |
| 2020-11-14 16:51:19 | 0 | https://lobste.rs/c/fpnip7 | 1 | https://lobste.rs/c/3j21cl | 1 |
| 2020-11-11 19:18:58 | 42 | https://lobste.rs/c/qegihu | 1 | https://lobste.rs/c/ougcoo | 1 |
| 2020-11-09 08:25:31 | 0 | https://lobste.rs/c/jkz6i8 | 0 | https://lobste.rs/c/b4egjd | 0 |
| 2020-11-03 22:50:07 | 2 | https://lobste.rs/c/apfrwn | 1 | https://lobste.rs/c/jwdrhc | 1 |
| 2020-11-02 20:47:55 | 180 | https://lobste.rs/c/ohfzpd | 0 | https://lobste.rs/c/j7brxb | 0 |
| 2020-11-01 06:08:52 | 52 | https://lobste.rs/c/ghuvw2 | 0 | https://lobste.rs/c/414oou | 0 |
| 2020-10-26 15:57:00 | 0 | https://lobste.rs/c/icecjm | 0 | https://lobste.rs/c/ly4rkr | 0 |
| 2020-10-25 19:57:11 | 10195 | https://lobste.rs/c/orjqp7 | 1 | https://lobste.rs/c/3jhleo | 1 |
| 2020-10-25 03:44:42 | 5688 | https://lobste.rs/c/yl1soq | 0 | https://lobste.rs/c/2l9h4e | 0 |
| 2020-10-23 22:12:12 | 0 | https://lobste.rs/c/ltucwi | 1 | https://lobste.rs/c/rzz9ze | 1 |
| 2020-10-22 22:57:42 | 1 | https://lobste.rs/c/9dct8z | 1 | https://lobste.rs/c/tvdpjh | 1 |
| 2020-10-21 09:03:32 | 0 | https://lobste.rs/c/gsejy4 | 0 | https://lobste.rs/c/gyetxe | 0 |
| 2020-10-21 09:03:32 | 0 | https://lobste.rs/c/mosbcf | 1 | https://lobste.rs/c/gsejy4 | 1 |
| 2020-10-21 09:03:32 | 0 | https://lobste.rs/c/mosbcf | 0 | https://lobste.rs/c/gyetxe | 0 |
| 2020-10-21 09:03:32 | 0 | https://lobste.rs/c/lqzjra | 1 | https://lobste.rs/c/gsejy4 | 1 |
| 2020-10-21 09:03:32 | 0 | https://lobste.rs/c/lqzjra | 0 | https://lobste.rs/c/gyetxe | 0 |
| 2020-10-21 09:03:32 | 0 | https://lobste.rs/c/lqzjra | 1 | https://lobste.rs/c/mosbcf | 1 |
| 2020-10-14 14:58:46 | 0 | https://lobste.rs/c/gcfy0n | 1 | https://lobste.rs/c/estgzm | 1 |
| 2020-10-08 05:07:39 | 0 | https://lobste.rs/c/nzs0pj | 1 | https://lobste.rs/c/amytvp | 1 |
| 2020-10-07 12:20:25 | 0 | https://lobste.rs/c/laknwx | 0 | https://lobste.rs/c/jc0p2b | 0 |
| 2020-10-07 12:20:25 | 0 | https://lobste.rs/c/cd0uz5 | 0 | https://lobste.rs/c/jc0p2b | 0 |
| 2020-10-07 12:20:25 | 0 | https://lobste.rs/c/cd0uz5 | 1 | https://lobste.rs/c/laknwx | 1 |
| 2020-09-24 11:45:03 | 12 | https://lobste.rs/c/lyiqef | 0 | https://lobste.rs/c/ays1ep | 0 |
| 2020-09-23 12:30:55 | 63 | https://lobste.rs/c/hnsllw | 0 | https://lobste.rs/c/qoslhr | 0 |
| 2020-09-22 14:26:30 | 0 | https://lobste.rs/c/biex0k | 1 | https://lobste.rs/c/j2qz24 | 1 |
| 2020-09-19 17:28:18 | 0 | https://lobste.rs/c/lptgzm | 0 | https://lobste.rs/c/pyzshx | 0 |
| 2020-09-17 15:44:38 | 0 | https://lobste.rs/c/ny77yx | 1 | https://lobste.rs/c/o0ldtx | 1 |
| 2020-09-14 14:56:23 | 6702 | https://lobste.rs/c/htpkub | 0 | https://lobste.rs/c/5waqbw | 0 |
| 2020-09-14 09:43:18 | 96398 | https://lobste.rs/c/fxdm0w | 1 | https://lobste.rs/c/cmciz7 | 1 |
| 2020-09-02 20:42:33 | 0 | https://lobste.rs/c/qwoydy | 0 | https://lobste.rs/c/hoz5xi | 0 |
| 2020-09-02 09:29:52 | 21993 | https://lobste.rs/c/figdxr | 1 | https://lobste.rs/c/ii7bvg | 1 |
| 2020-08-30 19:40:33 | 14 | https://lobste.rs/c/iql2by | 0 | https://lobste.rs/c/kjczgm | 0 |
| 2020-08-28 08:18:49 | 78 | https://lobste.rs/c/nhpolo | 0 | https://lobste.rs/c/qfyzgd | 0 |
| 2020-08-24 08:50:20 | 0 | https://lobste.rs/c/v5dpfy | 1 | https://lobste.rs/c/dvnvft | 1 |
| 2020-08-21 07:50:40 | 65 | https://lobste.rs/c/iukttu | 0 | https://lobste.rs/c/me2vud | 0 |
| 2020-08-17 20:23:40 | 11 | https://lobste.rs/c/tkayqh | 0 | https://lobste.rs/c/ziiu32 | 0 |
| 2020-08-12 10:29:38 | 91 | https://lobste.rs/c/r5ahbn | 0 | https://lobste.rs/c/7myzmz | 0 |
| 2020-08-10 17:52:16 | 905810 | https://lobste.rs/c/uytfxg | 1 | https://lobste.rs/c/5lexly | 1 |
| 2020-08-09 15:07:40 | 2162 | https://lobste.rs/c/wxxjc2 | 0 | https://lobste.rs/c/iwlrtn | 0 |
| 2020-08-05 02:40:17 | 25 | https://lobste.rs/c/elmpb3 | 0 | https://lobste.rs/c/xkkkic | 0 |
| 2020-08-01 02:40:46 | 0 | https://lobste.rs/c/4rlvlr | 1 | https://lobste.rs/c/eqjltk | 1 |
| 2020-07-28 13:32:42 | 38880 | https://lobste.rs/c/7ddrvx | 1 | https://lobste.rs/c/esbqpj | 1 |
| 2020-07-23 20:02:38 | 21 | https://lobste.rs/c/p9ndqr | 0 | https://lobste.rs/c/p58uyj | 0 |
| 2020-07-19 14:20:53 | 0 | https://lobste.rs/c/akrwgh | 1 | https://lobste.rs/c/vdpszd | 1 |
| 2020-07-16 15:00:16 | 2102 | https://lobste.rs/c/q0rtao | 0 | https://lobste.rs/c/hr3v63 | 0 |
| 2020-07-12 23:40:27 | 766221 | https://lobste.rs/c/v6y82m | 1 | https://lobste.rs/c/bycqqr | 1 |
| 2020-07-12 01:48:10 | 5695 | https://lobste.rs/c/39gvro | 0 | https://lobste.rs/c/i7vb5p | 0 |
| 2020-07-06 18:31:31 | 0 | https://lobste.rs/c/f8l9tm | 0 | https://lobste.rs/c/6ecupp | 0 |
| 2020-07-01 14:19:22 | 0 | https://lobste.rs/c/awl6ie | 0 | https://lobste.rs/c/kjyqn4 | 0 |
| 2020-07-01 08:21:26 | 27 | https://lobste.rs/c/vc8dkx | 0 | https://lobste.rs/c/lkhxgn | 0 |
| 2020-06-27 01:10:17 | 2083123 | https://lobste.rs/c/2xcgrl | 0 | https://lobste.rs/c/on8cvr | 0 |
| 2020-06-23 10:15:04 | 0 | https://lobste.rs/c/f6rz8m | 1 | https://lobste.rs/c/00ayrb | 1 |
| 2020-06-19 21:24:16 | 0 | https://lobste.rs/c/robpm6 | 1 | https://lobste.rs/c/a2bhwk | 1 |
| 2020-06-17 22:56:42 | 0 | https://lobste.rs/c/yedtrp | 1 | https://lobste.rs/c/jxrkeh | 1 |
| 2020-06-14 10:02:46 | 0 | https://lobste.rs/c/3ez1ja | 1 | https://lobste.rs/c/igwrmd | 1 |
| 2020-06-12 13:21:00 | 3849 | https://lobste.rs/c/54gwnv | 1 | https://lobste.rs/c/hilvbk | 1 |
| 2020-06-11 13:00:12 | 13789 | https://lobste.rs/c/in6wra | 0 | https://lobste.rs/c/dl3nl8 | 0 |
| 2020-06-11 08:22:18 | 0 | https://lobste.rs/c/6suez0 | 0 | https://lobste.rs/c/iiectj | 0 |
| 2020-06-08 20:44:57 | 6675 | https://lobste.rs/c/cbhwez | 0 | https://lobste.rs/c/w2tsg5 | 0 |
| 2020-06-07 14:24:09 | 0 | https://lobste.rs/c/yy7jgs | 0 | https://lobste.rs/c/8ts3gq | 0 |
| 2020-06-03 13:00:53 | 55 | https://lobste.rs/c/ydrwv0 | 0 | https://lobste.rs/c/9bbprj | 0 |
| 2020-06-02 14:03:01 | 1551 | https://lobste.rs/c/xt6otv | 1 | https://lobste.rs/c/kerjor | 1 |
| 2020-05-19 16:35:09 | 94 | https://lobste.rs/c/vy4hqn | 0 | https://lobste.rs/c/cynzal | 0 |
| 2020-05-15 21:37:27 | 1 | https://lobste.rs/c/r5bgxv | 1 | https://lobste.rs/c/u6c15d | 1 |
| 2020-05-15 08:44:03 | 14 | https://lobste.rs/c/vbzx9n | 0 | https://lobste.rs/c/w3bt64 | 0 |
| 2020-05-14 19:30:37 | 0 | https://lobste.rs/c/kuyrg0 | 0 | https://lobste.rs/c/jfmjbb | 0 |
| 2020-05-12 09:20:30 | 5 | https://lobste.rs/c/hy7oph | 0 | https://lobste.rs/c/molbiy | 0 |
| 2020-05-08 09:01:19 | 0 | https://lobste.rs/c/ft6u3t | 0 | https://lobste.rs/c/b2iljs | 0 |
| 2020-05-02 12:41:31 | 0 | https://lobste.rs/c/zrcv1d | 1 | https://lobste.rs/c/xltqam | 1 |
| 2020-05-02 00:09:18 | 0 | https://lobste.rs/c/f7u8pw | 1 | https://lobste.rs/c/e37crw | 1 |
| 2020-05-01 09:51:00 | 0 | https://lobste.rs/c/vczb3n | 1 | https://lobste.rs/c/pqq06c | 1 |
| 2020-04-18 02:14:31 | 0 | https://lobste.rs/c/sobx4e | 1 | https://lobste.rs/c/zgexeb | 1 |
| 2020-04-01 21:59:52 | 5 | https://lobste.rs/c/0sydjc | 1 | https://lobste.rs/c/hqv3q1 | 1 |
| 2020-03-11 15:56:56 | 91 | https://lobste.rs/c/zkgilp | 0 | https://lobste.rs/c/kxefrz | 0 |
| 2020-03-07 00:58:33 | 0 | https://lobste.rs/c/jwduyv | 1 | https://lobste.rs/c/xt8fde | 1 |
| 2020-03-06 00:45:24 | 3109612 | https://lobste.rs/c/p5ctfm | 1 | https://lobste.rs/c/gbd0m3 | 1 |
| 2020-02-28 22:51:24 | 96 | https://lobste.rs/c/fkqkow | 0 | https://lobste.rs/c/rrv0md | 0 |
| 2020-02-27 16:12:48 | 31271 | https://lobste.rs/c/uoj4hs | 0 | https://lobste.rs/c/osmobv | 0 |
| 2020-02-25 13:58:52 | 0 | https://lobste.rs/c/m5okee | 1 | https://lobste.rs/c/ryp1bv | 1 |
| 2020-02-23 22:00:04 | 2 | https://lobste.rs/c/zsvn2m | 1 | https://lobste.rs/c/n5oew9 | 1 |
| 2020-02-17 19:53:33 | 0 | https://lobste.rs/c/ov3fb3 | 0 | https://lobste.rs/c/27jzfs | 0 |
| 2020-02-14 19:24:36 | 0 | https://lobste.rs/c/my6wjg | 0 | https://lobste.rs/c/tycofo | 0 |
| 2020-02-13 17:04:54 | 51 | https://lobste.rs/c/qvteqz | 0 | https://lobste.rs/c/p70zj3 | 0 |
| 2020-02-12 00:27:43 | 62 | https://lobste.rs/c/euqbgm | 0 | https://lobste.rs/c/fqcxvr | 0 |
| 2020-02-11 14:50:45 | 177 | https://lobste.rs/c/ocynw2 | 0 | https://lobste.rs/c/a8dqyr | 0 |
| 2020-02-11 00:10:23 | 11 | https://lobste.rs/c/yv6pqr | 0 | https://lobste.rs/c/rsr5sx | 0 |
| 2020-02-10 12:25:24 | 41618 | https://lobste.rs/c/3z22it | 1 | https://lobste.rs/c/ibb5rf | 1 |
| 2020-02-06 18:44:02 | 55 | https://lobste.rs/c/khxpv3 | 0 | https://lobste.rs/c/q1yzm3 | 0 |
| 2020-02-01 22:54:48 | 0 | https://lobste.rs/c/ulvxcp | 1 | https://lobste.rs/c/ypiy5w | 1 |
| 2020-01-27 02:46:15 | 0 | https://lobste.rs/c/9kixgx | 1 | https://lobste.rs/c/vwpzp7 | 1 |
| 2020-01-21 21:10:10 | 21 | https://lobste.rs/c/exg3pf | 0 | https://lobste.rs/c/fxyzqm | 0 |
| 2020-01-20 18:44:51 | 3 | https://lobste.rs/c/pd6igu | 0 | https://lobste.rs/c/y15zzn | 0 |
| 2020-01-15 07:25:59 | 48 | https://lobste.rs/c/hbyof0 | 0 | https://lobste.rs/c/numv2o | 0 |
| 2020-01-14 17:57:32 | 19 | https://lobste.rs/c/ivyrwm | 0 | https://lobste.rs/c/lpurtp | 0 |
| 2020-01-10 00:41:14 | 109644 | https://lobste.rs/c/lwkylg | 0 | https://lobste.rs/c/crighu | 0 |
| 2020-01-09 18:09:10 | 47 | https://lobste.rs/c/si5lzc | 0 | https://lobste.rs/c/nv8ac0 | 0 |
| 2020-01-07 04:56:28 | 29 | https://lobste.rs/c/mmgcbp | 0 | https://lobste.rs/c/g73yqv | 0 |
| 2019-12-22 03:36:53 | 0 | https://lobste.rs/c/vccnrk | 0 | https://lobste.rs/c/9aidnq | 0 |
| 2019-12-20 09:15:38 | 959477 | https://lobste.rs/c/hc19sz | 0 | https://lobste.rs/c/gqvavx | 0 |
| 2019-12-18 07:45:04 | 0 | https://lobste.rs/c/qnwgur | 0 | https://lobste.rs/c/2fpzkq | 0 |
| 2019-12-17 01:48:56 | 0 | https://lobste.rs/c/hy5uwp | 0 | https://lobste.rs/c/mxebkd | 0 |
| 2019-12-17 01:48:56 | 0 | https://lobste.rs/c/a5hhuf | 0 | https://lobste.rs/c/hy5uwp | 0 |
| 2019-12-17 01:48:56 | 0 | https://lobste.rs/c/a5hhuf | 0 | https://lobste.rs/c/mxebkd | 0 |
| 2019-12-10 17:26:29 | 0 | https://lobste.rs/c/ptlpsu | 0 | https://lobste.rs/c/u6wvgk | 0 |
| 2019-12-10 16:36:46 | 70 | https://lobste.rs/c/qefkpw | 0 | https://lobste.rs/c/sej2jr | 0 |
| 2019-12-05 21:30:09 | 5 | https://lobste.rs/c/vguwnd | 0 | https://lobste.rs/c/k1i4ba | 0 |
| 2019-12-02 09:18:05 | 502 | https://lobste.rs/c/zhksk9 | 0 | https://lobste.rs/c/pzqekk | 0 |
| 2019-11-28 11:29:03 | 0 | https://lobste.rs/c/czo0ka | 0 | https://lobste.rs/c/0w2ckz | 0 |
| 2019-11-18 20:30:57 | 8051 | https://lobste.rs/c/6lecab | 1 | https://lobste.rs/c/4s11vg | 1 |
| 2019-11-18 19:43:16 | 0 | https://lobste.rs/c/otfwjg | 0 | https://lobste.rs/c/i1dp2d | 0 |
| 2019-11-11 18:30:34 | 1052387 | https://lobste.rs/c/ctzsnj | 0 | https://lobste.rs/c/izgog3 | 0 |
| 2019-11-03 06:55:39 | 109 | https://lobste.rs/c/rb6t89 | 0 | https://lobste.rs/c/ubchdl | 0 |
| 2019-10-24 14:04:43 | 6 | https://lobste.rs/c/r71qjd | 0 | https://lobste.rs/c/s94lvf | 0 |
| 2019-10-17 08:25:27 | 1 | https://lobste.rs/c/yysds3 | 0 | https://lobste.rs/c/qqwflc | 0 |
| 2019-10-12 19:13:06 | 849 | https://lobste.rs/c/3nwbxj | 1 | https://lobste.rs/c/v6lpwo | 1 |
| 2019-10-12 17:00:41 | 3769 | https://lobste.rs/c/rju1gn | 1 | https://lobste.rs/c/xpuh7k | 1 |
| 2019-10-10 01:25:52 | 90 | https://lobste.rs/c/7px0gu | 0 | https://lobste.rs/c/2xjrjn | 0 |
| 2019-10-09 12:06:44 | 5 | https://lobste.rs/c/o8jes4 | 0 | https://lobste.rs/c/gukqmf | 0 |
| 2019-10-08 17:54:28 | 0 | https://lobste.rs/c/zvxykk | 1 | https://lobste.rs/c/ca2isn | 1 |
| 2019-10-06 14:53:30 | 25527 | https://lobste.rs/c/dqlkgu | 0 | https://lobste.rs/c/sber0n | 0 |
| 2019-10-03 05:58:28 | 72 | https://lobste.rs/c/qnw3sv | 0 | https://lobste.rs/c/p70bau | 0 |
| 2019-09-25 23:15:37 | 848796 | https://lobste.rs/c/kgmc3o | 1 | https://lobste.rs/c/aro5jf | 1 |
| 2019-09-23 12:46:00 | 337 | https://lobste.rs/c/j36sq9 | 0 | https://lobste.rs/c/ycjbq1 | 0 |
| 2019-09-17 11:20:15 | 2606 | https://lobste.rs/c/whx89m | 0 | https://lobste.rs/c/zq1k8p | 0 |
| 2019-09-14 01:26:17 | 105 | https://lobste.rs/c/ostvgu | 0 | https://lobste.rs/c/cpwbrh | 0 |
| 2019-09-11 13:26:46 | 40480 | https://lobste.rs/c/6kfrls | 1 | https://lobste.rs/c/cyq0pl | 1 |
| 2019-09-07 21:35:09 | 4 | https://lobste.rs/c/ffbwmx | 1 | https://lobste.rs/c/c2pqno | 1 |
| 2019-09-03 15:40:56 | 0 | https://lobste.rs/c/qdbdv9 | 1 | https://lobste.rs/c/sinevd | 1 |
| 2019-08-29 17:17:08 | 21 | https://lobste.rs/c/yygole | 0 | https://lobste.rs/c/j1oqcu | 0 |
| 2019-08-27 12:17:54 | 0 | https://lobste.rs/c/bzjoue | 1 | https://lobste.rs/c/jl5hth | 1 |
| 2019-08-21 21:24:43 | 1 | https://lobste.rs/c/zebitt | 0 | https://lobste.rs/c/ul4yuy | 0 |
| 2019-08-20 20:24:09 | 1 | https://lobste.rs/c/5gupmj | 1 | https://lobste.rs/c/41xmdp | 1 |
| 2019-08-17 20:53:39 | 61 | https://lobste.rs/c/ahnhmc | 0 | https://lobste.rs/c/xpbsgz | 0 |
| 2019-08-16 04:01:22 | 22 | https://lobste.rs/c/ynocex | 1 | https://lobste.rs/c/ssolrr | 1 |
| 2019-08-16 03:54:38 | 4706 | https://lobste.rs/c/onzmsi | 1 | https://lobste.rs/c/ssolrr | 1 |
| 2019-08-16 03:54:38 | 4684 | https://lobste.rs/c/onzmsi | 1 | https://lobste.rs/c/ynocex | 1 |
| 2019-08-16 00:01:29 | 0 | https://lobste.rs/c/jy5qq7 | 1 | https://lobste.rs/c/9cfhrp | 1 |
| 2019-08-02 19:06:09 | 3398 | https://lobste.rs/c/khw0oc | 1 | https://lobste.rs/c/frhbj1 | 1 |
| 2019-07-29 13:46:41 | 0 | https://lobste.rs/c/qwsctv | 0 | https://lobste.rs/c/vvngzz | 0 |
| 2019-07-26 22:03:34 | 91 | https://lobste.rs/c/zenax6 | 0 | https://lobste.rs/c/y3xjeb | 0 |
| 2019-07-25 13:17:51 | 0 | https://lobste.rs/c/1go5fk | 0 | https://lobste.rs/c/wgtsqk | 0 |
| 2019-07-17 14:33:39 | 1 | https://lobste.rs/c/3janlj | 0 | https://lobste.rs/c/kwz2dj | 0 |
| 2019-07-04 18:55:37 | 985570 | https://lobste.rs/c/mu0qxh | 0 | https://lobste.rs/c/qeklbv | 0 |
| 2019-07-01 13:29:35 | 0 | https://lobste.rs/c/zcst0r | 1 | https://lobste.rs/c/6obtpf | 1 |
| 2019-06-29 06:59:14 | 4543 | https://lobste.rs/c/lt67d0 | 0 | https://lobste.rs/c/i6hgsv | 0 |
| 2019-06-28 10:17:31 | 0 | https://lobste.rs/c/ftj7ef | 1 | https://lobste.rs/c/2hd0qf | 1 |
| 2019-06-28 08:32:54 | 18477 | https://lobste.rs/c/bukpif | 1 | https://lobste.rs/c/2hd0qf | 1 |
| 2019-06-28 08:32:54 | 18477 | https://lobste.rs/c/bukpif | 1 | https://lobste.rs/c/ftj7ef | 1 |
| 2019-06-27 23:00:10 | 535 | https://lobste.rs/c/stbjmt | 0 | https://lobste.rs/c/oqksij | 0 |
| 2019-06-25 15:02:22 | 0 | https://lobste.rs/c/bcxjcd | 1 | https://lobste.rs/c/jrinwm | 1 |
| 2019-06-25 09:46:42 | 8817 | https://lobste.rs/c/bjsso3 | 1 | https://lobste.rs/c/lhc4jf | 1 |
| 2019-06-18 08:32:42 | 59 | https://lobste.rs/c/anpdd9 | 0 | https://lobste.rs/c/7gp8hc | 0 |
| 2019-06-18 00:18:01 | 7 | https://lobste.rs/c/hgulvr | 0 | https://lobste.rs/c/rsy58z | 0 |
| 2019-06-17 16:53:56 | 6155 | https://lobste.rs/c/a8mkip | 1 | https://lobste.rs/c/k6cc77 | 1 |
| 2019-06-10 13:43:33 | 0 | https://lobste.rs/c/z8il9h | 0 | https://lobste.rs/c/plg3jq | 0 |
| 2019-06-09 22:34:05 | 104 | https://lobste.rs/c/zspe22 | 0 | https://lobste.rs/c/uluc5l | 0 |
| 2019-06-07 14:08:46 | 0 | https://lobste.rs/c/ysk2pc | 0 | https://lobste.rs/c/9spziy | 0 |
| 2019-06-05 16:29:03 | 735 | https://lobste.rs/c/o9blqc | 0 | https://lobste.rs/c/kdjkef | 0 |
| 2019-05-31 22:48:58 | 0 | https://lobste.rs/c/dou2ig | 0 | https://lobste.rs/c/0u51xo | 0 |
| 2019-05-31 22:48:58 | 0 | https://lobste.rs/c/imwlta | 0 | https://lobste.rs/c/0u51xo | 0 |
| 2019-05-31 22:48:58 | 0 | https://lobste.rs/c/imwlta | 0 | https://lobste.rs/c/dou2ig | 0 |
| 2019-05-30 17:16:10 | 0 | https://lobste.rs/c/qjvgj4 | 0 | https://lobste.rs/c/tcfplb | 0 |
| 2019-05-16 12:55:46 | 0 | https://lobste.rs/c/plhuxu | 0 | https://lobste.rs/c/ws7wfn | 0 |
| 2019-05-10 17:01:39 | 487 | https://lobste.rs/c/rcafo5 | 0 | https://lobste.rs/c/j0vwup | 0 |
| 2019-05-05 18:08:54 | 4900 | https://lobste.rs/c/zivs6q | 1 | https://lobste.rs/c/jrslx5 | 1 |
| 2019-05-04 17:18:47 | 0 | https://lobste.rs/c/afglna | 0 | https://lobste.rs/c/lh1t6y | 0 |
| 2019-05-03 07:00:55 | 30966 | https://lobste.rs/c/m5jqzu | 1 | https://lobste.rs/c/rcdrdd | 1 |
| 2019-04-23 05:23:41 | 67909 | https://lobste.rs/c/swlt8l | 1 | https://lobste.rs/c/6walhh | 1 |
| 2019-04-22 10:57:50 | 0 | https://lobste.rs/c/8sziwm | 0 | https://lobste.rs/c/coupzg | 0 |
| 2019-04-16 22:00:40 | 1013 | https://lobste.rs/c/zrhnxm | 0 | https://lobste.rs/c/d820xy | 0 |
| 2019-04-11 15:18:06 | 18 | https://lobste.rs/c/3t3iuc | 0 | https://lobste.rs/c/pnw3j7 | 0 |
| 2019-04-07 17:47:53 | 0 | https://lobste.rs/c/qxpvjb | 1 | https://lobste.rs/c/rsq7hw | 1 |
| 2019-04-06 13:27:33 | 0 | https://lobste.rs/c/heajtp | 1 | https://lobste.rs/c/ylm9jj | 1 |
| 2019-04-05 00:54:33 | 0 | https://lobste.rs/c/3edzuf | 1 | https://lobste.rs/c/h953v5 | 1 |
| 2019-04-04 03:37:41 | 90 | https://lobste.rs/c/louju0 | 0 | https://lobste.rs/c/axj20x | 0 |
| 2019-03-31 19:50:41 | 3 | https://lobste.rs/c/qm6yi0 | 0 | https://lobste.rs/c/rccrdp | 0 |
| 2019-03-30 16:26:56 | 980992 | https://lobste.rs/c/pd5pwz | 1 | https://lobste.rs/c/mhsmuh | 1 |
| 2019-03-29 18:46:13 | 0 | https://lobste.rs/c/dfnlyp | 1 | https://lobste.rs/c/sx0qbx | 1 |
| 2019-03-26 10:38:21 | 0 | https://lobste.rs/c/mofkgb | 0 | https://lobste.rs/c/lxvsfk | 0 |
| 2019-03-20 20:56:14 | 9839 | https://lobste.rs/c/pzjwm6 | 0 | https://lobste.rs/c/iucedc | 0 |
| 2019-03-20 15:47:56 | 66 | https://lobste.rs/c/qjtpe3 | 0 | https://lobste.rs/c/j6esxn | 0 |
| 2019-03-17 22:39:01 | 14 | https://lobste.rs/c/uyswfs | 0 | https://lobste.rs/c/csrxll | 0 |
| 2019-03-17 22:38:56 | 59 | https://lobste.rs/c/d5gpcz | 0 | https://lobste.rs/c/csrxll | 0 |
| 2019-03-17 22:38:56 | 45 | https://lobste.rs/c/d5gpcz | 0 | https://lobste.rs/c/uyswfs | 0 |
| 2019-03-12 10:06:09 | 25 | https://lobste.rs/c/aatn2y | 0 | https://lobste.rs/c/rduhvk | 0 |
| 2019-03-11 18:24:02 | 36 | https://lobste.rs/c/ifgsiz | 0 | https://lobste.rs/c/5thyax | 0 |
| 2019-03-10 07:40:22 | 95 | https://lobste.rs/c/i4djs8 | 0 | https://lobste.rs/c/fxmjog | 0 |
| 2019-03-09 15:39:51 | 937255 | https://lobste.rs/c/snivxu | 1 | https://lobste.rs/c/14a92w | 1 |
| 2019-03-05 01:03:03 | 0 | https://lobste.rs/c/0ysmrm | 1 | https://lobste.rs/c/lnzp5o | 1 |
| 2019-02-27 16:24:40 | 0 | https://lobste.rs/c/fe6i8y | 0 | https://lobste.rs/c/4sbkv1 | 0 |
| 2019-02-27 02:23:02 | 86029321 | https://lobste.rs/c/ozhxgz | 1 | https://lobste.rs/c/ssu3fn | 1 |
| 2019-02-26 18:03:52 | 0 | https://lobste.rs/c/vu3f3f | 0 | https://lobste.rs/c/1j6zhl | 0 |
| 2019-02-26 18:03:52 | 0 | https://lobste.rs/c/wcabrr | 0 | https://lobste.rs/c/1j6zhl | 0 |
| 2019-02-26 18:03:52 | 0 | https://lobste.rs/c/wcabrr | 1 | https://lobste.rs/c/vu3f3f | 1 |
| 2019-02-26 18:03:52 | 0 | https://lobste.rs/c/sdcdw8 | 0 | https://lobste.rs/c/1j6zhl | 0 |
| 2019-02-26 18:03:52 | 0 | https://lobste.rs/c/sdcdw8 | 1 | https://lobste.rs/c/vu3f3f | 1 |
| 2019-02-26 18:03:52 | 0 | https://lobste.rs/c/sdcdw8 | 1 | https://lobste.rs/c/wcabrr | 1 |
| 2019-02-26 13:00:08 | 0 | https://lobste.rs/c/lwxdi4 | 0 | https://lobste.rs/c/gjtes1 | 0 |
| 2019-02-14 15:28:13 | 0 | https://lobste.rs/c/kjdbaw | 0 | https://lobste.rs/c/wdlcyg | 0 |
| 2019-02-11 01:47:05 | 0 | https://lobste.rs/c/pzlplk | 1 | https://lobste.rs/c/q4jopt | 1 |
| 2019-02-08 04:15:11 | 0 | https://lobste.rs/c/4cpiyh | 1 | https://lobste.rs/c/wd8wp0 | 1 |
| 2019-02-06 18:30:01 | 30944 | https://lobste.rs/c/rw2eiz | 0 | https://lobste.rs/c/8mp8tq | 0 |
| 2019-02-05 17:52:46 | 4 | https://lobste.rs/c/jsb0fr | 0 | https://lobste.rs/c/c40rh7 | 0 |
| 2019-02-02 07:42:03 | 6 | https://lobste.rs/c/nikkhk | 0 | https://lobste.rs/c/32ihhi | 0 |
| 2019-01-25 18:07:52 | 0 | https://lobste.rs/c/bkiqoo | 0 | https://lobste.rs/c/aeiibj | 0 |
| 2019-01-23 00:00:25 | 1 | https://lobste.rs/c/bzypzk | 1 | https://lobste.rs/c/6jydd5 | 1 |
| 2019-01-22 01:18:11 | 2647 | https://lobste.rs/c/e1gmmy | 1 | https://lobste.rs/c/b5fwyc | 1 |
| 2019-01-20 01:16:55 | 0 | https://lobste.rs/c/ns3cah | 1 | https://lobste.rs/c/a0icrx | 1 |
| 2019-01-16 13:12:01 | 19935 | https://lobste.rs/c/lcmnbx | 0 | https://lobste.rs/c/insetu | 0 |
| 2019-01-16 13:11:51 | 4 | https://lobste.rs/c/9rredb | 0 | https://lobste.rs/c/3vqqm1 | 0 |
| 2019-01-16 13:10:56 | 99 | https://lobste.rs/c/9wjcle | 0 | https://lobste.rs/c/3vqqm1 | 0 |
| 2019-01-16 13:10:56 | 95 | https://lobste.rs/c/9wjcle | 0 | https://lobste.rs/c/9rredb | 0 |
| 2019-01-16 13:10:43 | 20093 | https://lobste.rs/c/me3ytk | 0 | https://lobste.rs/c/insetu | 0 |
| 2019-01-16 13:10:43 | 158 | https://lobste.rs/c/me3ytk | 0 | https://lobste.rs/c/lcmnbx | 0 |
| 2019-01-16 13:10:38 | 117 | https://lobste.rs/c/pdznst | 0 | https://lobste.rs/c/3vqqm1 | 0 |
| 2019-01-16 13:10:38 | 113 | https://lobste.rs/c/pdznst | 0 | https://lobste.rs/c/9rredb | 0 |
| 2019-01-16 13:10:38 | 18 | https://lobste.rs/c/pdznst | 0 | https://lobste.rs/c/9wjcle | 0 |
| 2019-01-16 13:10:34 | 20102 | https://lobste.rs/c/bzbfvq | 0 | https://lobste.rs/c/insetu | 0 |
| 2019-01-16 13:10:34 | 167 | https://lobste.rs/c/bzbfvq | 0 | https://lobste.rs/c/lcmnbx | 0 |
| 2019-01-16 13:10:34 | 9 | https://lobste.rs/c/bzbfvq | 0 | https://lobste.rs/c/me3ytk | 0 |
| 2019-01-07 21:57:25 | 0 | https://lobste.rs/c/y5yt1i | 1 | https://lobste.rs/c/7cagye | 1 |
| 2019-01-07 21:57:25 | 0 | https://lobste.rs/c/bl4j0x | 0 | https://lobste.rs/c/5frcu6 | 0 |
| 2019-01-07 18:24:47 | 0 | https://lobste.rs/c/gpl9it | 1 | https://lobste.rs/c/hk5twz | 1 |
| 2018-12-27 19:30:12 | 7932 | https://lobste.rs/c/abykzg | 1 | https://lobste.rs/c/jpqt6e | 1 |
| 2018-12-25 19:18:53 | 0 | https://lobste.rs/c/wajo3e | 1 | https://lobste.rs/c/k2ybn0 | 1 |
| 2018-12-22 23:00:40 | 0 | https://lobste.rs/c/svvooe | 1 | https://lobste.rs/c/hdn172 | 1 |
| 2018-12-19 12:09:17 | 928 | https://lobste.rs/c/bsifln | 1 | https://lobste.rs/c/9vknch | 1 |
| 2018-12-12 02:30:33 | 8 | https://lobste.rs/c/kh8rcc | 1 | https://lobste.rs/c/de04hl | 1 |
| 2018-12-10 22:01:43 | 1968 | https://lobste.rs/c/qjswyk | 1 | https://lobste.rs/c/dbjcdm | 1 |
| 2018-12-09 18:03:19 | 0 | https://lobste.rs/c/bgbctx | 1 | https://lobste.rs/c/ccqu4n | 1 |
| 2018-12-08 14:00:39 | 1 | https://lobste.rs/c/y7bqwk | 0 | https://lobste.rs/c/zk637w | 0 |
| 2018-12-05 21:00:25 | 0 | https://lobste.rs/c/us0twi | 0 | https://lobste.rs/c/jyspzy | 0 |
| 2018-12-03 16:56:44 | 4393 | https://lobste.rs/c/d3t4nx | 1 | https://lobste.rs/c/o1htij | 1 |
| 2018-11-23 13:59:57 | 4045 | https://lobste.rs/c/vppowv | 0 | https://lobste.rs/c/sspssx | 0 |
| 2018-11-16 15:05:47 | 991697 | https://lobste.rs/c/zvby9s | 0 | https://lobste.rs/c/o3hfmb | 0 |
| 2018-11-12 15:06:45 | 0 | https://lobste.rs/c/gm1quf | 1 | https://lobste.rs/c/xvq4e1 | 1 |
| 2018-11-06 01:32:20 | 0 | https://lobste.rs/c/mabbdv | 0 | https://lobste.rs/c/mgmzks | 0 |
| 2018-11-04 23:18:56 | 0 | https://lobste.rs/c/mkyzci | 0 | https://lobste.rs/c/irzu9a | 0 |
| 2018-11-04 19:26:22 | 0 | https://lobste.rs/c/yweav2 | 0 | https://lobste.rs/c/e3qkfh | 0 |
| 2018-11-03 00:09:22 | 2391 | https://lobste.rs/c/brdx4q | 1 | https://lobste.rs/c/aig34u | 1 |
| 2018-10-29 15:16:12 | 11404 | https://lobste.rs/c/8sfcz8 | 0 | https://lobste.rs/c/rx7zs9 | 0 |
| 2018-10-23 07:45:18 | 0 | https://lobste.rs/c/puuash | 0 | https://lobste.rs/c/acz801 | 0 |
| 2018-10-11 11:23:10 | 0 | https://lobste.rs/c/tlf7wu | 1 | https://lobste.rs/c/8knjwk | 1 |
| 2018-10-10 09:50:28 | 9373 | https://lobste.rs/c/yoy1nb | 0 | https://lobste.rs/c/wusbiz | 0 |
| 2018-10-09 17:49:35 | 0 | https://lobste.rs/c/zcoz6s | 1 | https://lobste.rs/c/jfu66b | 1 |
| 2018-10-09 14:51:13 | 0 | https://lobste.rs/c/poqebq | 1 | https://lobste.rs/c/1m2hbq | 1 |
| 2018-10-09 14:42:55 | 0 | https://lobste.rs/c/1oi2wt | 1 | https://lobste.rs/c/95tiks | 1 |
| 2018-10-08 10:50:45 | 0 | https://lobste.rs/c/nz7rek | 1 | https://lobste.rs/c/neucs7 | 1 |
| 2018-10-08 10:42:41 | 0 | https://lobste.rs/c/f7b5os | 1 | https://lobste.rs/c/qm8qqd | 1 |
| 2018-10-04 16:06:33 | 0 | https://lobste.rs/c/rghnjs | 1 | https://lobste.rs/c/oqy12m | 1 |
| 2018-10-04 15:05:53 | 0 | https://lobste.rs/c/8cnjdg | 1 | https://lobste.rs/c/rgvllz | 1 |
| 2018-10-04 15:05:53 | 0 | https://lobste.rs/c/nj99w2 | 1 | https://lobste.rs/c/8cnjdg | 1 |
| 2018-10-04 15:05:53 | 0 | https://lobste.rs/c/nj99w2 | 1 | https://lobste.rs/c/rgvllz | 1 |
| 2018-10-03 19:44:13 | 21425 | https://lobste.rs/c/x4ji2i | 0 | https://lobste.rs/c/qrgrjp | 0 |
| 2018-10-03 14:14:59 | 0 | https://lobste.rs/c/pgcqqa | 1 | https://lobste.rs/c/mg2ir0 | 1 |
| 2018-10-03 11:26:02 | 0 | https://lobste.rs/c/4mewap | 1 | https://lobste.rs/c/2kzslb | 1 |
| 2018-09-29 02:42:48 | 0 | https://lobste.rs/c/rq56q2 | 1 | https://lobste.rs/c/onzofj | 1 |
| 2018-09-29 02:42:48 | 0 | https://lobste.rs/c/v3irko | 1 | https://lobste.rs/c/nob8w0 | 1 |
| 2018-09-28 22:26:16 | 524 | https://lobste.rs/c/y1c891 | 0 | https://lobste.rs/c/ovp3g7 | 0 |
| 2018-09-28 18:46:07 | 0 | https://lobste.rs/c/ythqxd | 0 | https://lobste.rs/c/c7azcs | 0 |
| 2018-09-28 17:46:25 | 0 | https://lobste.rs/c/q2xdyi | 1 | https://lobste.rs/c/itmzuk | 1 |
| 2018-09-22 15:43:46 | 510 | https://lobste.rs/c/ghwtec | 1 | https://lobste.rs/c/rknzzg | 1 |
| 2018-09-20 15:12:47 | 0 | https://lobste.rs/c/tawaz4 | 1 | https://lobste.rs/c/cnjsgl | 1 |
| 2018-09-19 13:32:01 | 0 | https://lobste.rs/c/m9h5zl | 1 | https://lobste.rs/c/zjrkaq | 1 |
| 2018-09-15 13:19:06 | 61035 | https://lobste.rs/c/78s49z | 0 | https://lobste.rs/c/5y32ts | 0 |
| 2018-09-14 06:38:57 | 0 | https://lobste.rs/c/9atwpm | 0 | https://lobste.rs/c/vgbsxa | 0 |
| 2018-09-12 13:46:19 | 0 | https://lobste.rs/c/ipz4eg | 1 | https://lobste.rs/c/fe688y | 1 |
| 2018-09-12 13:46:19 | 0 | https://lobste.rs/c/0vbhmh | 1 | https://lobste.rs/c/fe688y | 1 |
| 2018-09-12 13:46:19 | 0 | https://lobste.rs/c/0vbhmh | 1 | https://lobste.rs/c/ipz4eg | 1 |
| 2018-09-11 01:43:33 | 0 | https://lobste.rs/c/8o0d2b | 1 | https://lobste.rs/c/j4ktz5 | 1 |
| 2018-08-24 03:07:12 | 0 | https://lobste.rs/c/uwyfsi | 1 | https://lobste.rs/c/cryshv | 1 |
| 2018-08-19 21:41:27 | 0 | https://lobste.rs/c/e3kpf1 | 0 | https://lobste.rs/c/yl77pc | 0 |
| 2018-08-19 19:07:01 | 10102 | https://lobste.rs/c/nizfdd | 0 | https://lobste.rs/c/pitusc | 0 |
| 2018-08-17 23:08:38 | 1883210 | https://lobste.rs/c/wwzrhe | 1 | https://lobste.rs/c/4exmuc | 1 |
| 2018-08-14 19:03:13 | 0 | https://lobste.rs/c/jhqxui | 0 | https://lobste.rs/c/b9rgvq | 0 |
| 2018-08-14 11:43:06 | 0 | https://lobste.rs/c/exttbr | 0 | https://lobste.rs/c/iuird7 | 0 |
| 2018-08-14 11:26:39 | 0 | https://lobste.rs/c/iovvc6 | 1 | https://lobste.rs/c/nzlylx | 1 |
| 2018-08-13 15:50:33 | 0 | https://lobste.rs/c/3cg2dn | 1 | https://lobste.rs/c/qfxahf | 1 |
| 2018-08-13 12:12:36 | 0 | https://lobste.rs/c/gcstdy | 1 | https://lobste.rs/c/ltp5ft | 1 |
| 2018-08-09 14:03:34 | 0 | https://lobste.rs/c/gcli8g | 1 | https://lobste.rs/c/uvfiy0 | 1 |
| 2018-08-08 12:39:58 | 0 | https://lobste.rs/c/s9oykh | 1 | https://lobste.rs/c/lumwez | 1 |
| 2018-08-02 14:34:00 | 0 | https://lobste.rs/c/ironmd | 1 | https://lobste.rs/c/oc8tiy | 1 |
| 2018-07-30 10:20:40 | 0 | https://lobste.rs/c/ow4hzn | 0 | https://lobste.rs/c/bobczn | 0 |
| 2018-07-24 07:18:37 | 0 | https://lobste.rs/c/gyxpfj | 0 | https://lobste.rs/c/eifgfl | 0 |
| 2018-07-19 15:48:24 | 9 | https://lobste.rs/c/v8krhy | 0 | https://lobste.rs/c/qvwu5u | 0 |
| 2018-07-19 12:52:20 | 24 | https://lobste.rs/c/viploj | 0 | https://lobste.rs/c/xh4bs2 | 0 |
| 2018-07-13 09:02:22 | 0 | https://lobste.rs/c/qzgjsh | 0 | https://lobste.rs/c/uu3grs | 0 |
| 2018-07-12 06:36:55 | 0 | https://lobste.rs/c/tw9zkr | 0 | https://lobste.rs/c/ie1xbh | 0 |
| 2018-07-12 06:36:55 | 0 | https://lobste.rs/c/kbd2tf | 0 | https://lobste.rs/c/ie1xbh | 0 |
| 2018-07-12 06:36:55 | 0 | https://lobste.rs/c/kbd2tf | 1 | https://lobste.rs/c/tw9zkr | 1 |
| 2018-07-12 06:36:55 | 0 | https://lobste.rs/c/kmr6qm | 0 | https://lobste.rs/c/ie1xbh | 0 |
| 2018-07-12 06:36:55 | 0 | https://lobste.rs/c/kmr6qm | 1 | https://lobste.rs/c/kbd2tf | 1 |
| 2018-07-12 06:36:55 | 0 | https://lobste.rs/c/kmr6qm | 1 | https://lobste.rs/c/tw9zkr | 1 |
| 2018-07-10 16:54:34 | 17707 | https://lobste.rs/c/v6cutu | 1 | https://lobste.rs/c/bqxcma | 1 |
| 2018-07-09 18:25:49 | 0 | https://lobste.rs/c/k0vtdy | 1 | https://lobste.rs/c/buv9vf | 1 |
| 2018-07-09 18:25:49 | 0 | https://lobste.rs/c/he7wmo | 1 | https://lobste.rs/c/buv9vf | 1 |
| 2018-07-09 18:25:49 | 0 | https://lobste.rs/c/he7wmo | 1 | https://lobste.rs/c/k0vtdy | 1 |
| 2018-07-09 18:25:48 | 1 | https://lobste.rs/c/lqbnxc | 1 | https://lobste.rs/c/buv9vf | 1 |
| 2018-07-09 18:25:48 | 1 | https://lobste.rs/c/lqbnxc | 1 | https://lobste.rs/c/he7wmo | 1 |
| 2018-07-09 18:25:48 | 1 | https://lobste.rs/c/lqbnxc | 1 | https://lobste.rs/c/k0vtdy | 1 |
| 2018-07-01 02:16:31 | 0 | https://lobste.rs/c/zu5bos | 1 | https://lobste.rs/c/nzakuf | 1 |
| 2018-06-30 23:12:50 | 0 | https://lobste.rs/c/36eqa8 | 1 | https://lobste.rs/c/zczqgq | 1 |
| 2018-06-29 07:16:16 | 89 | https://lobste.rs/c/vjqa0k | 0 | https://lobste.rs/c/tseclh | 0 |
| 2018-06-28 14:41:37 | 1 | https://lobste.rs/c/vgfavu | 1 | https://lobste.rs/c/tqrms6 | 0 |
| 2018-06-27 22:19:29 | 71 | https://lobste.rs/c/bamtrm | 0 | https://lobste.rs/c/xm6z6e | 0 |
| 2018-06-25 17:10:51 | 0 | https://lobste.rs/c/ut9zll | 1 | https://lobste.rs/c/tnc4rp | 1 |
| 2018-06-22 15:35:48 | 2 | https://lobste.rs/c/xldq2w | 1 | https://lobste.rs/c/4zlzpv | 1 |
| 2018-06-10 12:43:48 | 8564 | https://lobste.rs/c/bxplai | 1 | https://lobste.rs/c/b02eyt | 1 |
| 2018-06-07 12:03:45 | 0 | https://lobste.rs/c/agymvi | 1 | https://lobste.rs/c/t0iapz | 1 |
| 2018-06-05 17:52:08 | 0 | https://lobste.rs/c/xa6czz | 0 | https://lobste.rs/c/xzxxic | 0 |
| 2018-06-04 08:54:49 | 1 | https://lobste.rs/c/2daube | 1 | https://lobste.rs/c/2pg6ga | 1 |
| 2018-05-29 20:38:34 | 0 | https://lobste.rs/c/k5urao | 0 | https://lobste.rs/c/njdzcr | 0 |
| 2018-05-28 14:58:59 | 0 | https://lobste.rs/c/j6wapb | 0 | https://lobste.rs/c/y3y35r | 0 |
| 2018-05-24 01:20:01 | 2 | https://lobste.rs/c/rcbozd | 1 | https://lobste.rs/c/vprsra | 1 |
| 2018-05-23 12:17:46 | 0 | https://lobste.rs/c/tksamk | 0 | https://lobste.rs/c/yqaqhz | 0 |
| 2018-05-19 03:48:58 | 0 | https://lobste.rs/c/tuwl4c | 0 | https://lobste.rs/c/qihtuk | 0 |
| 2018-05-18 13:12:14 | 5 | https://lobste.rs/c/cigp7u | 0 | https://lobste.rs/c/lq9omn | 0 |
| 2018-05-17 21:27:35 | 0 | https://lobste.rs/c/xee91s | 1 | https://lobste.rs/c/kawrl0 | 1 |
| 2018-05-15 15:00:08 | 3 | https://lobste.rs/c/khcugw | 0 | https://lobste.rs/c/yludnu | 0 |
| 2018-05-10 18:17:07 | 0 | https://lobste.rs/c/jd7kyt | 1 | https://lobste.rs/c/otc9qx | 1 |
| 2018-05-10 07:43:58 | 144 | https://lobste.rs/c/moua0e | 0 | https://lobste.rs/c/ipxzss | 0 |
| 2018-05-10 07:43:58 | 144 | https://lobste.rs/c/oz6yjs | 0 | https://lobste.rs/c/ipxzss | 0 |
| 2018-05-10 07:43:58 | 0 | https://lobste.rs/c/oz6yjs | 1 | https://lobste.rs/c/moua0e | 1 |
| 2018-05-07 21:30:20 | 1 | https://lobste.rs/c/dpw1v2 | 1 | https://lobste.rs/c/a1c6uy | 1 |
| 2018-05-07 12:30:25 | 5 | https://lobste.rs/c/u4tavl | 1 | https://lobste.rs/c/y1oyo3 | 1 |
| 2018-05-06 16:09:13 | 0 | https://lobste.rs/c/h3kpl4 | 0 | https://lobste.rs/c/nq6zhl | 0 |
| 2018-04-26 14:19:05 | 29 | https://lobste.rs/c/akzhye | 0 | https://lobste.rs/c/mgvmvc | 0 |
| 2018-04-23 13:55:15 | 24804 | https://lobste.rs/c/ut02mn | 1 | https://lobste.rs/c/9dyatv | 1 |
| 2018-04-16 14:56:35 | 286 | https://lobste.rs/c/fd17ft | 0 | https://lobste.rs/c/bg2ja4 | 0 |
| 2018-04-16 06:57:43 | 9 | https://lobste.rs/c/uuqum6 | 0 | https://lobste.rs/c/kp82zg | 0 |
| 2018-04-13 23:06:23 | 5 | https://lobste.rs/c/2l5btb | 1 | https://lobste.rs/c/l9xbos | 1 |
| 2018-04-13 12:00:37 | 2 | https://lobste.rs/c/xt7okw | 0 | https://lobste.rs/c/1qnkfc | 0 |
| 2018-04-07 23:19:23 | 0 | https://lobste.rs/c/xvt5bz | 0 | https://lobste.rs/c/64mpbc | 0 |
| 2018-04-07 00:00:21 | 1 | https://lobste.rs/c/n6wsy1 | 1 | https://lobste.rs/c/gv1tn7 | 1 |
| 2018-04-05 21:20:29 | 1600 | https://lobste.rs/c/0mpjee | 1 | https://lobste.rs/c/eqrw3m | 1 |
| 2018-04-03 17:14:40 | 879860 | https://lobste.rs/c/c0uaih | 1 | https://lobste.rs/c/imught | 1 |
| 2018-04-03 11:57:55 | 0 | https://lobste.rs/c/83w73i | 0 | https://lobste.rs/c/n89des | 0 |
| 2018-04-02 15:18:05 | 197 | https://lobste.rs/c/fzditm | 0 | https://lobste.rs/c/dpkvsq | 0 |
| 2018-04-02 13:36:29 | 10 | https://lobste.rs/c/yw8ykc | 0 | https://lobste.rs/c/rh9pge | 0 |
| 2018-04-01 22:44:12 | 538 | https://lobste.rs/c/rwfr6s | 0 | https://lobste.rs/c/lr48fd | 0 |
| 2018-04-01 15:24:37 | 310 | https://lobste.rs/c/jjgq4l | 1 | https://lobste.rs/c/ao9qhj | 1 |
| 2018-04-01 14:48:08 | 3 | https://lobste.rs/c/hzq6zn | 0 | https://lobste.rs/c/uocad3 | 0 |
| 2018-03-23 12:11:58 | 0 | https://lobste.rs/c/r1eykl | 1 | https://lobste.rs/c/0emdnm | 1 |
| 2018-03-18 17:15:55 | 3961 | https://lobste.rs/c/4msnoi | 1 | https://lobste.rs/c/nvq4vp | 1 |
| 2018-03-13 17:56:48 | 1 | https://lobste.rs/c/mrq29h | 1 | https://lobste.rs/c/uceckz | 1 |
| 2018-03-05 00:00:26 | 11 | https://lobste.rs/c/u5srbp | 1 | https://lobste.rs/c/qzbqzt | 1 |
| 2018-02-25 21:33:12 | 0 | https://lobste.rs/c/xrawdh | 0 | https://lobste.rs/c/4skrat | 0 |
| 2018-02-25 21:33:12 | 0 | https://lobste.rs/c/e8ezxt | 0 | https://lobste.rs/c/4skrat | 0 |
| 2018-02-25 21:33:12 | 0 | https://lobste.rs/c/e8ezxt | 1 | https://lobste.rs/c/xrawdh | 1 |
| 2018-02-23 00:09:12 | 0 | https://lobste.rs/c/nxkv4y | 1 | https://lobste.rs/c/6zwyvp | 1 |
| 2018-02-22 14:17:10 | 0 | https://lobste.rs/c/4pjews | 1 | https://lobste.rs/c/frrcrr | 1 |
| 2018-02-09 04:27:31 | 2153176 | https://lobste.rs/c/zpdc5y | 1 | https://lobste.rs/c/n7pa2f | 1 |
| 2018-01-27 00:39:40 | 0 | https://lobste.rs/c/esoaiw | 0 | https://lobste.rs/c/aodamw | 0 |
| 2018-01-17 14:26:42 | 0 | https://lobste.rs/c/qkgit4 | 0 | https://lobste.rs/c/kxudix | 0 |
| 2018-01-09 22:37:14 | 0 | https://lobste.rs/c/mdiwk9 | 1 | https://lobste.rs/c/dfl289 | 1 |
| 2018-01-09 02:58:22 | 0 | https://lobste.rs/c/fjuxsp | 1 | https://lobste.rs/c/eee7pk | 1 |
| 2018-01-07 05:56:17 | 0 | https://lobste.rs/c/c5mpyo | 1 | https://lobste.rs/c/twepst | 1 |
| 2018-01-06 03:28:45 | 0 | https://lobste.rs/c/eyvkke | 0 | https://lobste.rs/c/9bjdtr | 0 |
| 2018-01-03 23:41:45 | 0 | https://lobste.rs/c/fd3irb | 1 | https://lobste.rs/c/ppwzvf | 1 |
| 2018-01-02 12:12:16 | 27 | https://lobste.rs/c/qlxeji | 0 | https://lobste.rs/c/srlfzq | 0 |
| 2017-12-22 22:15:29 | 0 | https://lobste.rs/c/3kqq2e | 1 | https://lobste.rs/c/momg1b | 1 |
| 2017-12-20 12:50:38 | 0 | https://lobste.rs/c/osuepp | 1 | https://lobste.rs/c/z7sijm | 1 |
| 2017-12-07 22:32:33 | 92 | https://lobste.rs/c/ejxk7w | 0 | https://lobste.rs/c/kezmny | 0 |
| 2017-12-04 21:10:13 | 0 | https://lobste.rs/c/vlulx5 | 1 | https://lobste.rs/c/ggl2ej | 1 |
| 2017-12-04 20:42:31 | 11206 | https://lobste.rs/c/ceymp7 | 1 | https://lobste.rs/c/ltjg54 | 1 |
| 2017-11-30 02:41:43 | 0 | https://lobste.rs/c/pwqyhx | 1 | https://lobste.rs/c/f3acls | 1 |
| 2017-11-21 20:54:07 | 0 | https://lobste.rs/c/1ynzv9 | 1 | https://lobste.rs/c/x7kngy | 1 |
| 2017-11-10 20:05:41 | 0 | https://lobste.rs/c/tp34do | 1 | https://lobste.rs/c/gjytaq | 1 |
| 2017-10-28 17:04:54 | 50 | https://lobste.rs/c/cotztj | 1 | https://lobste.rs/c/ef7usc | 1 |
| 2017-10-28 16:58:39 | 4615 | https://lobste.rs/c/cogues | 0 | https://lobste.rs/c/cotztj | 0 |
| 2017-10-28 16:58:39 | 4665 | https://lobste.rs/c/cogues | 1 | https://lobste.rs/c/ef7usc | 1 |
| 2017-10-27 22:39:55 | 0 | https://lobste.rs/c/o167jt | 0 | https://lobste.rs/c/0qtugm | 0 |
| 2017-10-21 19:02:36 | 0 | https://lobste.rs/c/gbsyyq | 1 | https://lobste.rs/c/u2e5vg | 1 |
| 2017-10-20 00:00:22 | 9 | https://lobste.rs/c/kqzrp6 | 1 | https://lobste.rs/c/f0ayfn | 1 |
| 2017-10-18 10:54:12 | 0 | https://lobste.rs/c/jtrl3q | 1 | https://lobste.rs/c/zvftyu | 1 |
| 2017-10-11 12:25:20 | 0 | https://lobste.rs/c/kzkje9 | 0 | https://lobste.rs/c/xh6ctn | 0 |
| 2017-09-28 07:12:27 | 0 | https://lobste.rs/c/g1r4kp | 1 | https://lobste.rs/c/hfjxqq | 1 |
| 2017-09-11 20:20:42 | 22812 | https://lobste.rs/c/4zmiam | 1 | https://lobste.rs/c/tkzbkk | 1 |
| 2017-09-10 17:46:11 | 0 | https://lobste.rs/c/ogwggv | 1 | https://lobste.rs/c/hftzzc | 1 |
| 2017-09-08 03:03:03 | 0 | https://lobste.rs/c/jk6jgg | 1 | https://lobste.rs/c/5nuscw | 1 |
| 2017-08-23 13:30:31 | 0 | https://lobste.rs/c/wmvroi | 0 | https://lobste.rs/c/udtmfm | 0 |
| 2017-08-13 12:31:14 | 0 | https://lobste.rs/c/fvbcxu | 0 | https://lobste.rs/c/azw61e | 0 |
| 2017-08-09 20:07:44 | 0 | https://lobste.rs/c/qgxti7 | 0 | https://lobste.rs/c/8j43pu | 0 |
| 2017-08-04 11:26:31 | 0 | https://lobste.rs/c/2e1avh | 1 | https://lobste.rs/c/mokdlu | 1 |
| 2017-08-03 23:23:26 | 0 | https://lobste.rs/c/9nuqs7 | 1 | https://lobste.rs/c/0s8rpt | 1 |
| 2017-08-03 23:23:26 | 0 | https://lobste.rs/c/x6ctjd | 1 | https://lobste.rs/c/0s8rpt | 1 |
| 2017-08-03 23:23:26 | 0 | https://lobste.rs/c/x6ctjd | 1 | https://lobste.rs/c/9nuqs7 | 1 |
| 2017-08-02 11:26:04 | 125 | https://lobste.rs/c/whd31g | 0 | https://lobste.rs/c/jnx4y4 | 0 |
| 2017-07-28 06:15:14 | 0 | https://lobste.rs/c/z6rucl | 1 | https://lobste.rs/c/6uhknl | 1 |
| 2017-07-23 22:54:30 | 0 | https://lobste.rs/c/dr5ce3 | 1 | https://lobste.rs/c/7uzbyv | 1 |
| 2017-07-12 14:10:56 | 0 | https://lobste.rs/c/hvjbhl | 0 | https://lobste.rs/c/au0uwd | 0 |
| 2017-07-11 23:17:12 | 773290 | https://lobste.rs/c/6tqgbp | 0 | https://lobste.rs/c/ziaauc | 0 |
| 2017-07-11 21:23:12 | 19 | https://lobste.rs/c/zmy9gd | 1 | https://lobste.rs/c/w013fg | 1 |
| 2017-07-09 22:03:01 | 0 | https://lobste.rs/c/kqo6cd | 0 | https://lobste.rs/c/xagjyi | 0 |
| 2017-07-08 22:53:38 | 0 | https://lobste.rs/c/8im3uk | 0 | https://lobste.rs/c/pdp7c9 | 0 |
| 2017-07-04 01:11:21 | 0 | https://lobste.rs/c/soz2az | 1 | https://lobste.rs/c/uvbh2f | 1 |
| 2017-07-03 18:54:37 | 7995 | https://lobste.rs/c/bit291 | 1 | https://lobste.rs/c/t6awb8 | 1 |
| 2017-06-27 09:43:22 | 0 | https://lobste.rs/c/bfe9pj | 1 | https://lobste.rs/c/skqhut | 1 |
| 2017-06-23 16:40:35 | 65 | https://lobste.rs/c/j5o8ri | 0 | https://lobste.rs/c/ecjqjl | 0 |
| 2017-06-23 03:31:07 | 0 | https://lobste.rs/c/wtiaap | 1 | https://lobste.rs/c/uka8hy | 1 |
| 2017-06-06 16:20:19 | 6 | https://lobste.rs/c/5topxb | 0 | https://lobste.rs/c/yer7yl | 0 |
| 2017-06-06 11:52:11 | 0 | https://lobste.rs/c/lhzqvc | 0 | https://lobste.rs/c/mxvsp0 | 0 |
| 2017-05-21 01:41:24 | 0 | https://lobste.rs/c/odpqje | 1 | https://lobste.rs/c/syt0fh | 1 |
| 2017-05-21 01:41:21 | 3 | https://lobste.rs/c/y3a5e9 | 1 | https://lobste.rs/c/odpqje | 1 |
| 2017-05-21 01:41:21 | 3 | https://lobste.rs/c/y3a5e9 | 1 | https://lobste.rs/c/syt0fh | 1 |
| 2017-05-19 07:02:00 | 12 | https://lobste.rs/c/tmhuoo | 0 | https://lobste.rs/c/fowqni | 0 |
| 2017-05-18 21:07:57 | 265 | https://lobste.rs/c/pdbhce | 1 | https://lobste.rs/c/qd8otv | 1 |
| 2017-05-18 06:41:18 | 2 | https://lobste.rs/c/hyzsft | 1 | https://lobste.rs/c/kdb6ig | 1 |
| 2017-05-16 04:29:59 | 43 | https://lobste.rs/c/qb5njs | 0 | https://lobste.rs/c/smof2y | 0 |
| 2017-05-09 04:28:19 | 10 | https://lobste.rs/c/vuixc6 | 0 | https://lobste.rs/c/9mb1jc | 0 |
| 2017-05-04 17:45:20 | 0 | https://lobste.rs/c/jbldby | 1 | https://lobste.rs/c/9nnzto | 1 |
| 2017-05-04 17:45:20 | 0 | https://lobste.rs/c/nqcmau | 1 | https://lobste.rs/c/9nnzto | 1 |
| 2017-05-04 17:45:20 | 0 | https://lobste.rs/c/nqcmau | 1 | https://lobste.rs/c/jbldby | 1 |
| 2017-05-03 04:13:07 | 3 | https://lobste.rs/c/xneoox | 0 | https://lobste.rs/c/yfxnzz | 0 |
| 2017-05-02 04:36:19 | 636 | https://lobste.rs/c/gg9p8e | 1 | https://lobste.rs/c/jqtxlb | 1 |
| 2017-05-01 17:25:19 | 2 | https://lobste.rs/c/jds7by | 0 | https://lobste.rs/c/ivbt1y | 0 |
| 2017-05-01 17:25:10 | 11 | https://lobste.rs/c/rz4mgn | 0 | https://lobste.rs/c/ivbt1y | 0 |
| 2017-05-01 17:25:10 | 9 | https://lobste.rs/c/rz4mgn | 1 | https://lobste.rs/c/jds7by | 1 |
| 2017-04-24 17:45:40 | 7012 | https://lobste.rs/c/5ej5c0 | 1 | https://lobste.rs/c/w2dore | 1 |
| 2017-04-21 12:08:36 | 0 | https://lobste.rs/c/md202l | 1 | https://lobste.rs/c/nd0tzg | 1 |
| 2017-04-21 04:14:44 | 8 | https://lobste.rs/c/hqvx6q | 0 | https://lobste.rs/c/zdarep | 0 |
| 2017-04-20 06:31:40 | 0 | https://lobste.rs/c/6wfr7k | 1 | https://lobste.rs/c/gtonfe | 1 |
| 2017-04-19 14:51:38 | 0 | https://lobste.rs/c/uyf5yg | 1 | https://lobste.rs/c/c1p3dn | 1 |
| 2017-04-14 04:29:38 | 12 | https://lobste.rs/c/tkxzhc | 1 | https://lobste.rs/c/bgngbg | 1 |
| 2017-04-12 15:03:46 | 0 | https://lobste.rs/c/fqi8wr | 1 | https://lobste.rs/c/2ciyxo | 1 |
| 2017-04-11 11:47:45 | 0 | https://lobste.rs/c/jlrpxu | 0 | https://lobste.rs/c/e8xupg | 0 |
| 2017-04-10 09:57:01 | 5643 | https://lobste.rs/c/xto0lu | 0 | https://lobste.rs/c/jksddz | 0 |
| 2017-04-09 08:56:39 | 1 | https://lobste.rs/c/pt1dra | 1 | https://lobste.rs/c/qagcet | 1 |
| 2017-03-20 15:08:53 | 606 | https://lobste.rs/c/tqb4s6 | 0 | https://lobste.rs/c/rk20in | 0 |
| 2017-02-20 18:37:22 | 0 | https://lobste.rs/c/rwatxl | 0 | https://lobste.rs/c/8iyttk | 0 |
| 2017-02-03 23:19:30 | 74 | https://lobste.rs/c/s0m1ih | 0 | https://lobste.rs/c/pb2jvj | 0 |
| 2017-01-27 03:31:53 | 0 | https://lobste.rs/c/cz59me | 1 | https://lobste.rs/c/zhyi9g | 1 |
| 2017-01-25 00:14:35 | 182 | https://lobste.rs/c/zyiaxa | 0 | https://lobste.rs/c/xce19i | 0 |
| 2017-01-19 03:47:47 | 0 | https://lobste.rs/c/ixcfsq | 0 | https://lobste.rs/c/arue4h | 0 |
| 2017-01-06 04:04:21 | 0 | https://lobste.rs/c/bkrh49 | 1 | https://lobste.rs/c/dgvork | 1 |
| 2016-12-30 18:08:10 | 0 | https://lobste.rs/c/lbica3 | 1 | https://lobste.rs/c/kcnlpk | 1 |
| 2016-12-02 14:12:47 | 60 | https://lobste.rs/c/rahyah | 0 | https://lobste.rs/c/l069xo | 0 |
| 2016-12-01 15:55:14 | 0 | https://lobste.rs/c/6pjrth | 0 | https://lobste.rs/c/2bnhr9 | 0 |
| 2016-11-07 19:14:26 | 0 | https://lobste.rs/c/tpvero | 0 | https://lobste.rs/c/s5i6lw | 0 |
| 2016-11-06 01:01:54 | 0 | https://lobste.rs/c/ss4ulq | 1 | https://lobste.rs/c/9i4pqi | 1 |
| 2016-10-10 02:17:00 | 0 | https://lobste.rs/c/qt3yrb | 1 | https://lobste.rs/c/0clrxb | 1 |
| 2016-10-08 18:56:54 | 0 | https://lobste.rs/c/xzuew1 | 0 | https://lobste.rs/c/tz7trb | 0 |
| 2016-09-27 12:19:58 | 0 | https://lobste.rs/c/x9gfya | 0 | https://lobste.rs/c/cafhyv | 0 |
| 2016-09-18 18:09:55 | 1 | https://lobste.rs/c/0enzjt | 1 | https://lobste.rs/c/4jllzq | 1 |
| 2016-08-09 01:56:46 | 10 | https://lobste.rs/c/3g5iox | 0 | https://lobste.rs/c/2er7ya | 0 |
| 2016-08-08 03:01:24 | 0 | https://lobste.rs/c/jvbvux | 0 | https://lobste.rs/c/ipwh2f | 0 |
| 2016-07-28 12:18:43 | 960 | https://lobste.rs/c/i4adht | 0 | https://lobste.rs/c/5t6qao | 0 |
| 2016-06-17 12:28:47 | 0 | https://lobste.rs/c/yfj6qu | 0 | https://lobste.rs/c/xm8mpa | 0 |
| 2016-06-17 12:25:37 | 0 | https://lobste.rs/c/1tu4ko | 1 | https://lobste.rs/c/9n6dgh | 1 |
| 2016-06-16 11:23:45 | 0 | https://lobste.rs/c/wsogmq | 1 | https://lobste.rs/c/tu29cl | 1 |
| 2016-06-10 18:54:32 | 26 | https://lobste.rs/c/yxviwh | 0 | https://lobste.rs/c/g0huep | 0 |
| 2016-06-10 08:15:00 | 0 | https://lobste.rs/c/nbfhnr | 0 | https://lobste.rs/c/jlf1kg | 0 |
| 2016-06-03 16:47:47 | 0 | https://lobste.rs/c/2sjyhu | 1 | https://lobste.rs/c/yeuhqt | 1 |
| 2016-06-03 14:24:24 | 183 | https://lobste.rs/c/km0yjv | 0 | https://lobste.rs/c/toqfsh | 0 |
| 2016-05-03 18:58:23 | 0 | https://lobste.rs/c/nezzyq | 0 | https://lobste.rs/c/gwlol6 | 0 |
| 2016-04-15 16:41:51 | 0 | https://lobste.rs/c/clzlzj | 0 | https://lobste.rs/c/b3lznv | 0 |
| 2016-04-06 15:34:47 | 0 | https://lobste.rs/c/gqkgqv | 1 | https://lobste.rs/c/4bgzos | 1 |
| 2016-04-06 15:34:47 | 0 | https://lobste.rs/c/0tooyw | 1 | https://lobste.rs/c/4bgzos | 1 |
| 2016-04-06 15:34:47 | 0 | https://lobste.rs/c/0tooyw | 1 | https://lobste.rs/c/gqkgqv | 1 |
| 2016-03-01 16:37:27 | 0 | https://lobste.rs/c/yrgbys | 1 | https://lobste.rs/c/jwha9m | 1 |
| 2016-03-01 16:16:44 | 11509 | https://lobste.rs/c/kznfzh | 0 | https://lobste.rs/c/icqza1 | 0 |
| 2016-02-24 22:39:58 | 0 | https://lobste.rs/c/gwjhts | 1 | https://lobste.rs/c/06yoen | 1 |
| 2016-02-21 11:33:53 | 78 | https://lobste.rs/c/hshbap | 0 | https://lobste.rs/c/23bpo7 | 0 |
| 2016-02-10 21:29:01 | 0 | https://lobste.rs/c/a6lj4e | 1 | https://lobste.rs/c/uo1jmc | 1 |
| 2016-02-08 01:08:45 | 14 | https://lobste.rs/c/aq4rkq | 0 | https://lobste.rs/c/t4qm61 | 0 |
| 2016-02-01 20:46:14 | 0 | https://lobste.rs/c/ayczlh | 1 | https://lobste.rs/c/vplx6s | 1 |
| 2015-12-18 21:39:58 | 0 | https://lobste.rs/c/1ketto | 1 | https://lobste.rs/c/3wqnb2 | 1 |
| 2015-12-18 21:39:58 | 0 | https://lobste.rs/c/ot8ax2 | 1 | https://lobste.rs/c/1ketto | 1 |
| 2015-12-18 21:39:58 | 0 | https://lobste.rs/c/ot8ax2 | 1 | https://lobste.rs/c/3wqnb2 | 1 |
| 2015-12-15 15:46:17 | 0 | https://lobste.rs/c/qav1gj | 0 | https://lobste.rs/c/hy0p24 | 0 |
| 2015-12-03 02:18:33 | 0 | https://lobste.rs/c/aanxkt | 0 | https://lobste.rs/c/992xpe | 0 |
| 2015-12-02 20:55:13 | 0 | https://lobste.rs/c/9krioc | 1 | https://lobste.rs/c/8czade | 1 |
| 2015-11-17 01:27:17 | 0 | https://lobste.rs/c/pl6rie | 1 | https://lobste.rs/c/xpc1qc | 1 |
| 2015-11-16 23:46:15 | 767786 | https://lobste.rs/c/ke0udg | 0 | https://lobste.rs/c/b9hn2p | 0 |
| 2015-11-10 17:11:07 | 0 | https://lobste.rs/c/alraka | 1 | https://lobste.rs/c/gxo6uv | 1 |
| 2015-10-30 20:37:09 | 0 | https://lobste.rs/c/23esgy | 0 | https://lobste.rs/c/97zaqz | 0 |
| 2015-10-28 00:09:34 | 0 | https://lobste.rs/c/fujaow | 0 | https://lobste.rs/c/vgok9m | 0 |
| 2015-09-05 13:36:40 | 0 | https://lobste.rs/c/dnnycl | 1 | https://lobste.rs/c/eubklv | 1 |
| 2015-08-08 23:51:12 | 15 | https://lobste.rs/c/roq5n9 | 0 | https://lobste.rs/c/d7mmd9 | 0 |
| 2015-07-20 23:15:47 | 1200 | https://lobste.rs/c/bl8bqy | 0 | https://lobste.rs/c/wbs3qf | 0 |
| 2015-07-14 11:51:52 | 0 | https://lobste.rs/c/06ekge | 1 | https://lobste.rs/c/vdg6rl | 1 |
| 2015-07-06 02:33:00 | 0 | https://lobste.rs/c/hpejhv | 1 | https://lobste.rs/c/p85eff | 1 |
| 2015-06-19 19:32:56 | 68 | https://lobste.rs/c/ytvvpd | 0 | https://lobste.rs/c/gbq335 | 0 |
| 2015-04-28 11:58:37 | 70 | https://lobste.rs/c/3njapw | 0 | https://lobste.rs/c/astrfd | 0 |
| 2015-02-12 22:08:03 | 247 | https://lobste.rs/c/t1pppd | 0 | https://lobste.rs/c/ulov6f | 0 |
| 2015-02-07 22:11:26 | 27 | https://lobste.rs/c/xsdluf | 0 | https://lobste.rs/c/7suqkl | 0 |
| 2015-01-17 22:19:11 | 597 | https://lobste.rs/c/tgmms1 | 1 | https://lobste.rs/c/xf2jtn | 1 |
| 2015-01-03 18:08:39 | 17 | https://lobste.rs/c/sjfdw6 | 0 | https://lobste.rs/c/q0ifnb | 0 |
| 2014-12-25 08:22:38 | 0 | https://lobste.rs/c/46ymta | 0 | https://lobste.rs/c/hdwirb | 0 |
| 2014-11-19 22:57:18 | 90 | https://lobste.rs/c/ayofii | 0 | https://lobste.rs/c/mun05s | 0 |
| 2014-09-25 13:23:17 | 0 | https://lobste.rs/c/u7dpeo | 0 | https://lobste.rs/c/nq92gb | 0 |
| 2014-06-18 03:13:19 | 204 | https://lobste.rs/c/0yfpos | 0 | https://lobste.rs/c/r4rkzb | 0 |
| 2014-06-02 21:27:20 | 916 | https://lobste.rs/c/rvtuzn | 1 | https://lobste.rs/c/pvcqvj | 1 |
| 2014-03-13 18:25:46 | 7 | https://lobste.rs/c/gafk1b | 0 | https://lobste.rs/c/i7fbac | 0 |
| 2014-03-05 02:07:32 | 68 | https://lobste.rs/c/wjq3xm | 0 | https://lobste.rs/c/gn1nxy | 0 |
| 2014-02-19 15:42:36 | 16 | https://lobste.rs/c/ekfcui | 0 | https://lobste.rs/c/wdralf | 0 |
| 2014-02-17 19:09:04 | 0 | https://lobste.rs/c/wh7nya | 1 | https://lobste.rs/c/tvnmqz | 1 |
| 2014-02-14 19:02:16 | 121 | https://lobste.rs/c/evtngf | 0 | https://lobste.rs/c/vt58ce | 0 |
| 2014-02-11 16:56:17 | 10 | https://lobste.rs/c/ncv9vy | 1 | https://lobste.rs/c/eikgcw | 1 |
| 2014-01-21 03:17:27 | 5 | https://lobste.rs/c/nvyocg | 1 | https://lobste.rs/c/cr4ria | 1 |
| 2014-01-16 19:16:56 | 52 | https://lobste.rs/c/04efn2 | 0 | https://lobste.rs/c/7se7bz | 0 |
| 2013-11-09 17:33:50 | 60 | https://lobste.rs/c/wbfvip | 0 | https://lobste.rs/c/2yfjjt | 0 |
| 2013-03-18 17:19:38 | 0 | https://lobste.rs/c/lmo8ou | 1 | https://lobste.rs/c/ceinve | 1 |
| 2012-09-28 05:41:32 | 72 | https://lobste.rs/c/jwokve | 0 | https://lobste.rs/c/bjvdo2 | 0 |
| 2012-09-14 16:47:49 | 0 | https://lobste.rs/c/95oazl | 1 | https://lobste.rs/c/gnorsc | 1 |
| 2012-09-10 04:40:35 | 2 | https://lobste.rs/c/606enk | 0 | https://lobste.rs/c/xqawzi | 0 |
| 2012-09-07 00:13:54 | 1 | https://lobste.rs/c/ly9ily | 1 | https://lobste.rs/c/cols6l | 1 |
| 2012-09-04 00:31:09 | 1 | https://lobste.rs/c/zz8ayq | 0 | https://lobste.rs/c/br2mk5 | 0 |
| 2012-09-03 22:41:08 | 1 | https://lobste.rs/c/we0x7v | 1 | https://lobste.rs/c/vzpypf | 1 |
| 2012-09-03 01:56:40 | 15 | https://lobste.rs/c/hatsyy | 1 | https://lobste.rs/c/fxyraz | 1 |
| 2012-08-17 02:43:20 | 0 | https://lobste.rs/c/b9o5hk | 0 | https://lobste.rs/c/rehx6l | 0 |
+---------------------+----------+----------------------------+---------+----------------------------+---------+
806 rows in set (32.946 sec)