Live data from Hacker News

Ask HN: What are some tools / libraries you built yourself?

news.ycombinator.com

591–600 of 617 posts

Re: Ask HN: What are some tools / libraries you built yourself?

#591

Earlier quoted context omitted.

Awesome, thanks! Let me know if you have any feedback/feature ideas.

I don't make videos, but I'd recon that someone who makes long videos, doesn't have time to look at the result of all of the cuts. Maybe a separate time line with just the cuts that you can fast forward through and see/hear if there's anything you still want.

That's an interesting idea! Right now it lets you preview either the original file, or with the silence cut out (and you can quickly toggle between those). I guess this could be a third state, to only play back the cuts.

For my own workflow I usually play back the recording with the silence cut out, and tweak as I go. (The new version I'm working on has the ability to manually cut/keep parts of the timeline). It's way faster than what I used to do, which was play it back while making the cuts as I went. I'm not sure I'd personally want to listen back to only the cuts because it'd be easy to lose my place, but I could see how someone could want to do that.

Re: Ask HN: What are some tools / libraries you built yourself?

#592
post #569

Earlier quoted context omitted.

I have thought about gamification, but I wasn't sure how you could verify the picture of the fish people posted was the actual fish. At best, people would play against themselves, just a collections game. Do you mean a made-up fantasy lore? Or actual background on the fish? What kind of stats?

I'm not a big sushi person, but stats could be stuff like freshness, juiciness, visual attractiveness, price, etc. Doesn't have to be that accurate but I think it'll add some appeal to the Torodex. Lore could be just a description, if there's any history to this specific dish, what it's made of and how it's made, etc. and yeah could add some jokes / fantasy lore just to spice it up. Mainly I'm hoping these sushis are…

Yeah, I know what you're going for. Kinda like there's a "spirit" character that thematically represents the fish.

Re: Ask HN: What are some tools / libraries you built yourself?

#593

• https://webhook.site - for testing webhooks, evolved into a SaaS for building workflows from http requests and emails • https://instadj.com - simple app for making youtube playlists, wanted a simple app for playing music at parties (example: https://instadj.com/wam ) Both are open source.

Can you add a feature to instadj? Basically copy songs from an existing youtube playlist, and then modify/add to it.

Re: Ask HN: What are some tools / libraries you built yourself?

#594

Wearable computer (on-body Linux) with audial calendar reminders and "normal" hand-strapped "desktop" https://github.com/andrey-utkin/wearable-computer/wiki TODO list and personal project tracker - like TaskWarrior but SQL-accessible https://github.com/andrey-utkin/taskdb/wiki sqlhub.net - Access to public datasets in form via PostgreSQL server https://github.com/sqlhub-net/sqlhub-net/wiki

you mention "text message to miband 3" - did you, by chance, make MiBand hackable?

I used an existing open source python codebase. See https://github.com/andrey-utkin/MiBand3

Re: Ask HN: What are some tools / libraries you built yourself?

#595

Earlier quoted context omitted.

This is cool! I used Phabricator ( https://www.phacility.com/phabricator ) in the past, which I really liked, and this seems to have many of the same features. I think your landing page could be clearer though. If I hadn't had used better tools than GH in the past, I don't think I'd understand what I was considering signing up for.

Thanks! I agree that I suck at marketing and would love to hand that job off to somebody with more skill. :)

I'm by no means an expert - only a beginner when it comes to this - but I'm happy to help if I can :)

Just let me know!

Re: Ask HN: What are some tools / libraries you built yourself?

#596

Earlier quoted context omitted.

Thanks! I agree that I suck at marketing and would love to hand that job off to somebody with more skill. :)

I'm by no means an expert - only a beginner when it comes to this - but I'm happy to help if I can :) Just let me know!

Drop me a line at piotr@reviewable.io and we'll chat!

Re: Ask HN: What are some tools / libraries you built yourself?

#597
post #136

Early 2017, I built Listen Notes [1] , so I can search podcast episodes by keywords and listen to individual podcast episodes without subscribing to the entire podcast. A few years ago, most podcast apps assume you wanted to subscribe to podcasts first then listen. Maybe I’m not a typical podcast listener. I don’t like subscribing to podcasts. I just want to listen to individual episodes then move on. Similar to cons…

I'm curious to know if you thought about building the capability of searching through the audio itself - did you run into transcription costs being a limitation?

Re: Ask HN: What are some tools / libraries you built yourself?

#600
post #256

Earlier quoted context omitted.

Very nice! I'd ditch pg-promise in a heartbeat for something simpler. I kinda dislike the tagged template literal helpers magic. I'd be more comfortable with explicit references to substituted arguments. Though it seems like I can just use the unsafe api all the time for that. The rest of the API is very nice, .stream, .cursor, notify support, all that.

Thanks! I'm curious - What's the reason you don't like the tagged template literal? It's those that give you implicit safe parameters and let's you avoid doing parameter counting when writing queries.

I don't like the sql() helpers part, and that they try to guess whether I want a helper for insert or update, based on some regexes and that helpers for different things all are sql(something) while doing very different things.

https://github.com/porsager/postgres/blob/master/lib/index.j...

I also tend to compose queries out of smaller static parts dynamically, and tagged syntax does seem to make that hard.

Patterns like:

    let params = {};
    let conds = ['TRUE']
    if (some_user_input) {
      conds.push('a = $test');
      params.test = some_user_input;
    }

    db.query(`
       SELECT cols, ... FROM xxx
       WHERE abc AND ${conds.join(' AND ')}
    `, params);
Not having a way to compose tagged literals and not having named parameters, only $1 just made it hard to port any of my existing projects based on pg-promise to your library.

I use named parameters, so I don't do parameter counting. Connector does that for me, when rewriting the parameters to native postgresql syntax.

Post reply on HN