sunfmin | 3 years ago | on: Maud: A Rust macro for writing HTML
sunfmin's comments
sunfmin | 3 years ago | on: Show HN: A Full-Stack Web Framework for Go
sunfmin | 3 years ago | on: I fell in love with low-JS
It also integrate heavy duty UI component library like Vuetify, So you can use it easily in Go code.
It even go further to have presets that help you easily build Admin UI with much flexibility. https://docs.goplaid.dev/samples/presets-detail-page-cards/c...
sunfmin | 11 years ago | on: Go package: fanout – make writing parallel code even easier
sunfmin | 11 years ago | on: Go package: fanout – make writing parallel code even easier
sunfmin | 11 years ago | on: Go package: fanout – make writing parallel code even easier
sunfmin | 11 years ago | on: Go package: fanout – make writing parallel code even easier
I have quite a few use cases myself:
1. Say there is a article on the web, that contains dozens of images embed in the html. Which I want to crawl the article, and Also the images, and put the image into S3 for faster serve. I can use the fanout concurrency pattern to put upload all the images simultaneously to S3 to make it faster.
2. Say I have 20 mysql node sharded data, I want to fetch top 50 latest created data from all of them, and sort it to and show it to user after.
sunfmin | 13 years ago | on: Hood: A transactional, database-agnostic ORM for Go
hd.Where("name = ?", name).Where("category = ?", category)
So that you can do conditional where easily, for example: hd = hd.Where("name = ?", name)
if category != "" {
hd = hd.Where("category = ?", category)
}
But It doesn't seem to support this?sunfmin | 14 years ago | on: Basecamp Next