Viewing profile — cxam
cxam
HN member- Joined
- Sat, Jul 04, 2015, 8:58 AM UTC
- HN karma
- 64
- Public activity
- 27 items
- HN profile
- View on Hacker News ↗
About cxam
No profile information was provided.
Recent public activity
-
comment
Comment #24551537
This has a nice UI, well done on launching! I made something similar but never really thought of monitising it. The focus was on the tagging/annotating for power users with keyboar…
-
comment
Comment #23968143
I've had to locally override some JS on the client-side and hoped their backend validation was a lot more sane. The frontend validation logic was limiting the TLD to minimum of two…
-
comment
Comment #23313713
If you're working with Python projects and Virtualenv then this is a great alias to have (assuming you call it venv ): alias venv=". venv/bin/activate" Just cd to a project root an…
-
comment
Comment #23281507
If you're comparing this to a normal DB, the biggest worry should be that it's not ACID compliant. Definitely something to consider if your data is important. The limitations for K…
-
comment
Comment #23280325
If by application database you mean to the level of an RDBMS then no. It's a key-value data store. You get your CRUD operations, expiry, key listing and the ability to do paginatio…
-
comment
Comment #23278770
> That said, I know how I'd manage multiple projects via NX, and knew the rules to effectively maintain this project for the foreseeable future. I believe NX is aiming to bring in …
-
comment
Comment #23278456
This is great! I've always been interested in video related products and services and you've done a pretty good job on getting the annotations overlay the video. > I switched away …
-
comment
Comment #23278331
I built something similar that might work depending on your use case and doesn't require installing an extension. Check out https://tagx.io/ However, it doesn't overlay any annotat…
-
comment
Comment #23278156
Caddy, specifically v2 ( https://caddyserver.com/v2 ) I've been using Caddy v2 all through beta/RC and glad it's finally stable with a proper release. I moved away from using nginx…
-
comment
Comment #23277874
Cloudflare Workers and their KV service ( https://www.cloudflare.com/products/workers-kv/ ) is great. I built a side project ( https://tagx.io/ ) completely on their services from …
-
comment
Comment #22351296
It did cross my mind when I released it. I'd like to refactor the code and bring in more tests to make it "contributor friendly" first. Feedback has been great so far and I'll be i…
-
comment
Comment #22351212
Great, I think this is something I'd like to bake into the next release.
-
comment
Comment #22344432
Great, glad this worked well for you. I agree with your point on the visual feedback. Depending on which tab you have active, it will always show the newly created tag on the list …
-
comment
Comment #22341147
Thanks for the feedback pknight. I'll address the points as follow: (1) While watching it would be great to press a button to generate timestamps This is already possible using hot…
-
comment
Comment #22339279
These are pretty good use cases, thanks! I hadn't thought of it in a political context, I can definitely see it work there considering the lengthy footage.
-
comment
Comment #22338756
Yea, that's always the issue. An extension would be ideal for desktop users and was considering that as a feature, however, for this initial release, I didn't want to alienate any …
-
comment
Comment #22338654
This is the same tagged video I shared in my previous post but without the need for any server-side requests and you can amend yourself: https://tagx.io/video/youtube/7-31KgImGgU/5…
-
comment
Comment #22335204
The idea behind TAGX.io was to make it easier to share highlights of our football (soccer) video recordings. We have been recording and uploading our games to YouTube over the year…
- story
-
comment
Comment #17270777
I built something similar that would make the deletion process seamless. The uploaded files are stored in memory and never hit the disk. They then get automatically deleted when th…
-
comment
Comment #16908416
I built this to make it easier to link users to certain parts of YouTube videos and have it auto skip each part without having to give timestamps. Hopefully others will find it use…
- story
-
comment
Comment #16908191
https://passed.pw/ - Mobile-friendly random password generator seeded based on your mouse or touch positions for better randomness. Just wanted something simple to generate passwor…
-
comment
Comment #9830722
Thanks for the feedback and link, much appreciated. Since the application is fully client-side, anyone could download the site and run it locally without any issues. Maybe making t…
-
comment
Comment #9830583
The issue is that your jQuery library is loaded over http and fails since it's a different protocol from the main site. More info regarding this here: https://developer.mozilla.org…