Skip to content

Instantly share code, notes, and snippets.

Awesome AI SaaS Collection

This repository contains a curated list of AI-powered Software-as-a-Service (SaaS) solutions and AI-related projects available online. The collection spans a wide variety of categories including:

  • AI content generation tools
  • Natural language processing services
  • Computer vision applications
  • Conversational AI platforms
  • AI-powered analytics solutions
  • Business intelligence tools

Open Source Games Collection

This repository contains a curated list of open source games and game-related projects available on GitHub. The collection spans a wide variety of categories including:

  • Classic text adventures
  • Educational games
  • Retro 8-bit platform games
  • Browser-based games
  • Indie game projects
  • GameJam submissions
@lkunxyz
lkunxyz / AwsomePlayStation.md
Last active May 16, 2025 03:37
AwsomePlayStation.md
-module(multi_try).
-export([dothese/1]).
dothese(FuncArray) ->
Me = self(),
lists:foreach(fun(F) -> spawn(fun() -> F(Me) end) end, FuncArray),
spawn(fun() -> timer:sleep(1000), Me ! timeout end),
Result = get_result("",length(FuncArray)),
io:format("result: ~p~n", [Result]).