HackerTrans
トップ新着トレンドコメント過去質問紹介求人

budafish

no profile record

投稿

Automated Integration from Eero into PiHole

amishbhadeshia.co.uk
1 ポイント·投稿者 budafish·3 年前·0 コメント

Ask HN: How do you optimise your outlook workflow?

2 ポイント·投稿者 budafish·4 年前·2 コメント

Ask HN: How do I start learning about lower level compiled languages?

30 ポイント·投稿者 budafish·4 年前·33 コメント

コメント

budafish
·2 年前·議論
I use Linking. It's quite good and actually being developed.

https://linkding.link/
budafish
·2 年前·議論
See this for an explanation - https://github.com/satwikkansal/wtfpython?tab=readme-ov-file...

> all([]) returns True since the iterable is empty.
budafish
·3 年前·議論
Also if you didn't want to do a hx-confirm, you could pop up a separate modal on button press. And then when the delete is pressed in the modal use a hx-target to update the specific row.
budafish
·3 年前·議論
There are a lot of words the author used to simply say, "I'm going to start my pet project, which I also believe is going to fail very soon for a number of reasons"

Not much actual good content here.
budafish
·3 年前·議論
http://www.amishbhadeshia.co.uk

Blog about tech banking and consulting
budafish
·3 年前·議論
Thank you for this. I had no idea this series existed! It's exactly the level of info I want when picking up a new topic!

And bonus is my local library stocks many of them!
budafish
·4 年前·議論
HTMX has a complimentary framework like alpinejs called Hyperscript [0]. (On second thought not exactly like alpine..)

[0]: https://hyperscript.org/
budafish
·4 年前·議論
also

    @net use Z: \\administrators
Would achieve the same effect :)
budafish
·4 年前·議論
The real image loads faster for me than the fake one. So I just click the first picture and it's correct.
budafish
·4 年前·議論
Is that by using that radarr watchlist integration?
budafish
·4 年前·議論
I use materialistic also, but as far as I'm aware that hasn't been an update to the app in years. In addition I believe the materialistic app listing on Google Play is also been removed.

Do you have some updated version that I'm unaware of?
budafish
·4 年前·議論
100% agree. Made me feel a bit nauseous.
budafish
·4 年前·議論
Wait. Is this true? As in they have laws they just don't enforce them?
budafish
·4 年前·議論
I have a blog post on setting up a Hugo + Netlify blog on my own blog.

https://www.amishbhadeshia.co.uk/posts/setting-up-a-new-blog...
budafish
·5 年前·議論
Use the integrated logging handler. That's all you need.
budafish
·5 年前·議論
Some time ago I was trying to transition to platform to help me capture my own personal notes and organise my knowledge. BookStack was a good front runner, but I think the lack of mobile editing along with the hassle of upgrades made me end up using Notion.

Now by all means notion isn't perfect at all, but for me who just wanted to start writing notes it seems the right choice at the time.

I would like to switch to BookStack as it looks great and is a great product, but the one issue that worries me is when it comes to upgrades and migrations. Generally I found when upgrading database based platforms I end up messing up hugely causing myself a huge headache, and then eventually not upgrading at all. For example I used Monica CRM, and totally botched the upgrades eventually just closing it down and using Google contacts instead.

If there was an easy way to solve for that I'd definitely be on board with self-hosting it myself. But at the moment I just don't have the time to resolve upgrade issues :(
budafish
·5 年前·議論
(on mobile) You could use Nimssequence iterators

[x.name for x in someList if x.age > 5]

Is the same as:

x.filterIt(it.age > 5).mapIt(it.name)

In a way it reads better.