Most active commenters
  • aizk(12)
  • mikedelfino(4)
  • jumploops(3)

←back to thread

WikiTok

(wikitok.vercel.app)
1459 points Group_B | 65 comments | | HN request time: 0.839s | source | bottom
1. aizk ◴[] No.42936923[source]
Hi! I'm the dev here! I built this on a whim at after seeing someone ask for it on twitter. It was 12:30 at night but I couldn't pass down the opportunity to build it.

The code is very simple, there's no backend at all actually, I believe because wikipedia's api is very permissive and you can just make the requests in the frontend. So you just simply request random articles, get some snippets, and the image attached!

I used Claude and cursor do 90% of the heavy lifting, so I am positive there's plenty of room for optimizations. But right now as it stands, it's quite fun to play with, even without anything very sophisticated.

Here is the source code. https://github.com/IsaacGemal/wikitok

replies(18): >>42936962 #>>42936974 #>>42937696 #>>42937871 #>>42937989 #>>42938002 #>>42938007 #>>42938164 #>>42938260 #>>42938330 #>>42939286 #>>42939520 #>>42940031 #>>42940626 #>>42942340 #>>42944933 #>>42945717 #>>42947803 #
2. tomieinlove ◴[] No.42936962[source]
Congrats! Tomie here, this is absolutely great!
3. preciousoo ◴[] No.42936974[source]
I remember seeing that tweet, I thought it was the craziest coincidence ever when I saw this on the front page. I guess it’s not haha
replies(2): >>42937617 #>>42939068 #
4. aizk ◴[] No.42937617[source]
As soon as I saw the tweet, I realized the opportunity was there waiting for me. And also, twitter's algorithm is REALLY good at pairing the right tweets to one another, so many people saw those two tweets side by side, which added to the humor.
5. varjag ◴[] No.42937696[source]
This is great! Thanks for sharing it.
6. mostertoaster ◴[] No.42937871[source]
Wow this is surprisingly addictive :)

Nice job whipping up something so simple, yet elegant, so fast.

This is what I love about LLM tools like cursor, it makes the effort to just try and build something so low, you can just try it one night, and can make cool things that might not have been built otherwise.

7. piloto_ciego ◴[] No.42937989[source]
This is freaking really cool, I’m at work browsing HN instead of doing actual work, but I’ll look into it more later, but the “killer feature” I think would be to add audio narration do this, or a quick summary, I would scroll that all day…

Awesome job!

8. larodi ◴[] No.42938002[source]
Kudos for the anthropological experiment. Indeed makes you wonder what's there about the sliding that makes it so entertaining.

I suggest you add some sort of summary that flows, so to add certain level of animation. Some articles have actual sound and animations to them.

Great inspiration!

replies(1): >>42944251 #
9. bazmattaz ◴[] No.42938007[source]
This is awesome. I can imagine you likely are not interested in building one but this site could hugely benefit from a recommendations algorithm.

For example an algorithm could understand how much a user really enjoys a certain article and then starts sending the users down a rabbit hole of similar and tangential content. Designing, building and maintaining an algorithm like this though is no small feat.

replies(3): >>42939547 #>>42939558 #>>42940976 #
10. andrewmutz ◴[] No.42938164[source]
It would be cool to add an algorithm that learns my interests and suggests relevant articles
11. KeplerBoy ◴[] No.42938260[source]
Love it!

One of the rare website i added to my android homescreen. Maybe someone has a good idea for a nice favicon.

replies(1): >>42939961 #
12. tomashubelbauer ◴[] No.42938330[source]
Shoutout to APIs that do not enforce CORS preventing requests be made from FE without a need for a BE. There's so many toy apps I started building that would have just worked if this was more common, but they have CORS restrictions requiring me to spin up a BE which for many one-off tools and personal tools just isn't worth doing and maintaining. Same with OAuth.
replies(9): >>42938463 #>>42938484 #>>42938836 #>>42939162 #>>42939366 #>>42939679 #>>42939693 #>>42939990 #>>42944599 #
13. aizk ◴[] No.42938463[source]
The only caveat I feel is that the speed of the API is definitely not comparable to something more purpose built for this kind of scale, but overall I'm happy as it works well enough that I don't have to think about it too hard.
replies(2): >>42938559 #>>42949475 #
14. Klonoar ◴[] No.42938484[source]
I kind of miss the era of JSON-P supported APIs. Feels like such a weird little moment in time.
15. mikedelfino ◴[] No.42938559{3}[source]
I think Github Actions could be used for scheduled builds, so that the initial load would have random articles right in. Further requests could then be made in advance so users would not notice any delay from the API.
replies(1): >>42939936 #
16. spencerchubb ◴[] No.42938836[source]
use firebase cloud functions free tier
17. blast ◴[] No.42939068[source]
What was the tweet?
replies(1): >>42939494 #
18. jumploops ◴[] No.42939162[source]
Shameless plug for Magic Loops -- we run code in isolated MicroVMs and students love our lack of CORS enforcement, as the APIs they build can be easily integrated into their hackathon projects :)
replies(2): >>42940172 #>>42943100 #
19. echelon ◴[] No.42939286[source]
Next steps: ingest these offline and process them into quick 30 second videos with the most salient facts. TTS narration, additional images. Generate stock video using the images in the API and perhaps text-to-video. That would be a killer app.

Bonus: come up with a heuristic or model to filter out or de-rank universally uninteresting articles.

20. egonschiele ◴[] No.42939366[source]
nit: same-origin policy is the restriction. CORS isn't the restriction, it's the thing that helps you. CORS is the solution, not the problem.
replies(2): >>42946764 #>>42949446 #
21. aizk ◴[] No.42939494{3}[source]
https://x.com/rauchg/status/1886807959340245137
22. aizk ◴[] No.42939547[source]
I would not be surprised if Claude + Openai's reasoning models could develop a simple rudimentary algorithm that would work. Of course it wouldn't be as sophisticated as something like TikTok and would require a lot of fine tuning, but it's definitely possible.
replies(1): >>42941174 #
23. Aeolun ◴[] No.42939558[source]
You are joking right?
replies(1): >>42940113 #
24. tasuki ◴[] No.42939679[source]
There's many services to solve this pain point. I've used https://allorigins.win/ in the past.
replies(3): >>42940663 #>>42946388 #>>42959729 #
25. qudat ◴[] No.42939693[source]
Many platforms can enable proxying through their service to avoid CORS issues: https://pico.sh/pgs#proxy-to-another-service
26. aizk ◴[] No.42939936{4}[source]
Do you have any examples of that I can look at as a reference? I'm used to github actions just being my CI/CD build step checking tool.
replies(2): >>42942098 #>>42945694 #
27. aizk ◴[] No.42939961[source]
I added a dark wikipedia logo as the favicon, which should be good for now.
28. nathansherburn ◴[] No.42939990[source]
A great way to get around this is with an edge function from deno deploy.
29. rererereferred ◴[] No.42940031[source]
Very nice! I wonder if it would be possible to see articles related to a topic. Maybe using the hubs as a starting point and then following the related links in each article?
30. smus ◴[] No.42940113{3}[source]
why would it be a joke?
replies(1): >>42940862 #
31. aizk ◴[] No.42940172{3}[source]
Tell me more?
replies(1): >>42942253 #
32. aizk ◴[] No.42940626[source]
Not to plug myself too shamelessly, but here's my resume if anyone is interested :) https://www.aizk.sh/Isaac's%20Resume.pdf
replies(1): >>42947296 #
33. aizk ◴[] No.42940663{3}[source]
Oh this looks neat!
replies(1): >>42946732 #
34. airstrike ◴[] No.42940862{4}[source]
echo chambers bad
replies(2): >>42941664 #>>42946147 #
35. t_mann ◴[] No.42940976[source]
+ keeping it in the front end with local storage
36. singpolyma3 ◴[] No.42941174{3}[source]
Or even use an LLM directly "user liked articles with these titles, what others might they like"
37. gessha ◴[] No.42941664{5}[source]
Personalization is not inherently bad and I believe personal feeds can be engineered in a way that doesn’t result in echo chambers but in communities.

The problem is capital incentives are not aligned with making these interfaces which is why we have the feeds we have today on Facebook, Twitter, etc. I look forward to the innovations happening on bring-your-own-algo Bluesky.

As a side note, I’m currently building a personalized Hacker News service. I might throw it at Show HN once it gets closer to completion.

38. mikedelfino ◴[] No.42942098{5}[source]
I attempted to implement the schedule trigger [1] on GitHub Actions as an example, but it is not being triggered as I expected. It needs more digging if you're so inclined.

Aside from that, the whole gist is that the initial data can be injected into the static files during the build step, or even saved as separate JSON files that the app can load instead of reaching out to the API. As long as you're willing to refresh the static data from time to time, of course.

I created a basic example at https://schedbuild.pages.dev/ with a rough, manual implementation of a build step. Frameworks like Next.js offer a more sophisticated approach that can render the entire HTML, allowing users to load the static page with the initial data already rendered without Javascript, and subsequent interactions taking over from there more seamlessly.

If the Github Actions schedule feature is ever sorted out, in my opinion it's a reasonable alternative to setting up a backend just for this.

[1] https://docs.github.com/en/actions/writing-workflows/choosin...

replies(2): >>42943078 #>>42945687 #
39. jumploops ◴[] No.42942253{4}[source]
We built an LLM-based no-code "all-code" tool for non-developers to automate their daily tasks.

Counterintuitively, it's been picking up steam among student developers and professional devs due to how fast you can spin up API endpoints.

We're currently working to build on this momentum, and are now shifting focus to existing devs.

tl;dr - we use LLMs to create APIs that are run in Firecracker-based MicroVMs

40. rzz3 ◴[] No.42942340[source]
This is super super cool. I’ll tell you the single barrier to me actually using this regularly—it needs an algorithm. It would be so cool (and a good learning project) to even build the simplest of recommendation algorithms behind it based on my likes, dislikes, bookmarks, and whether I click “read more”.
41. jahsome ◴[] No.42943078{6}[source]
in lieu of a cron server, I use scheduled jobs without any issues for a few production workloads on azure devops (AKA gh actions 0.1).
replies(1): >>42945705 #
42. e12e ◴[] No.42943100{3}[source]
https://magicloops.dev/ ?
replies(1): >>42943802 #
43. jumploops ◴[] No.42943802{4}[source]
That’s it!
44. viraptor ◴[] No.42944251[source]
> Indeed makes you wonder what's there about the sliding that makes it so entertaining.

Check out "skinner box" - the fact that you may get something interesting or may not is more exciting than just getting something good. They're lootboxes of information/entertainment.

replies(1): >>42945908 #
45. anon3459 ◴[] No.42944599[source]
Using nextjs with a serverless function acting as a proxy is pretty simple
replies(1): >>42945530 #
46. INTPenis ◴[] No.42944933[source]
I just wanna say I love it. So simple, but so cool. You've taken a popular idea and done something interesting and intellectual out of it. good job.
47. Liquidor ◴[] No.42945530{3}[source]
Don't you mean Node.js ? I don't see why you would use a full Next.js framework for just a reverse proxy.
48. ◴[] No.42945687{6}[source]
49. mikedelfino ◴[] No.42945694{5}[source]
Edit to the other comment: the cron job wasn't being triggered at first, but turns out it's just slightly delayed. The example has been updated hourly since then.

You can use a schedule trigger [1] on GitHub Actions.

The whole gist is that the initial data can be injected into the static files during the build step, or even saved as separate JSON files that the app can load instead of reaching out to the API. As long as you're willing to refresh the static data from time to time, of course.

I created a basic example at https://schedbuild.pages.dev/ with a rough, manual implementation of a build step. Frameworks like Next.js offer a more sophisticated approach that can render the entire HTML, allowing users to load the static page with the initial data already rendered without Javascript, and subsequent interactions taking over from there more seamlessly.

In my opinion this is a reasonable alternative to setting up a backend just for this.

[1] https://docs.github.com/en/actions/writing-workflows/choosin...

50. mikedelfino ◴[] No.42945705{7}[source]
You're right. I just checked the example project now and it's been updated hourly since then. It's just slightly delayed.
51. b3n ◴[] No.42945717[source]
Nice! I made WikTok[1] in the past, but your version looks much better. :-)

[1] https://wiktok.org/

52. larodi ◴[] No.42945908{3}[source]
It’s lottery indeed, you are right.
53. matsemann ◴[] No.42946147{5}[source]
Why is it bad if it learns that I like to read about medieval fortresses, and that it should skip showing me rocket ships, for instance?
54. swyx ◴[] No.42946388{3}[source]
this ol' one as well https://github.com/Rob--W/cors-anywhere
55. ahoka ◴[] No.42946732{4}[source]
Neet, if you want to leak your users' credentials in a XSS attack.
replies(2): >>42947601 #>>42968560 #
56. ahoka ◴[] No.42946764{3}[source]
Yes, exactly. People who want to "disable" it have no idea how the web works. Developers have all kinds of misconceptions about what it is, I even heard someone saying it disallows backends to call their API.
57. Narciss ◴[] No.42947296[source]
This is far from a shameless plug, you built the thing! V nice love the idea.
replies(1): >>42968595 #
58. pooper ◴[] No.42947601{5}[source]
I would only use something like this that requires absolutely no authentication. For example, I had a one page app that showed me instantly when the next shuttle(s) were scheduled for my stop. Instead of having to click through multiple steps, this allowed me to see it in one step. As far as I know, I was the only user for this thing I built and put up on gitlab pages. I don't know exactly because I didn't bother to track who visited the page.
replies(1): >>42959741 #
59. hemant1041 ◴[] No.42947803[source]
Great job!
60. bawolff ◴[] No.42949446{3}[source]
And in particular CORS is the region you can read the wikkpedia api cross origin (unless you are doing jsonp, but hopefully they are using CORS because it is better in every way)
61. bawolff ◴[] No.42949475{3}[source]
Could you just preload the next few entries before the user swipes?
62. reynaldi ◴[] No.42959729{3}[source]
These services are called CORS proxies! I recently made an updated list of the currently working free ones here: https://gist.github.com/reynaldichernando/eab9c4e31e30677f17...

Do note that these proxies are for testing only, and they are heavily rate limited.

For production use case, you might consider using Corsfix (https://corsfix.com)

(I am affiliated with Corsfix)

63. reynaldi ◴[] No.42959741{6}[source]
This is the way to go, you wouldn't want to use a CORS proxy for something authenticated/with credentials (e.g. API key). But for public unauthenticated request, they work just fine.
64. aizk ◴[] No.42968560{5}[source]
Oh that explains why it's not a popular architecture.
65. aizk ◴[] No.42968595{3}[source]
I think tomorrow I'm going to write a detailed blog of exactly what I did building out WikiTok. One last little bit of info on this subject (and at the end of it I'll say that I'm open to work or whatever).