[READ-ONLY] Mirror of https://github.com/flo-bit/bluesky-visualizers. visualizing bluesky live data in different ways flo-bit.dev/bluesky-visualizers/
bluesky svelte visualizations
0

Configure Feed

Select the types of activity you want to include in your feed.

update readme, add license

Florian (Nov 30, 2024, 12:48 PM +0100) 2ac5f51a 4dea866b

+43 -9
+21
LICENSE
··· 1 + MIT License Copyright (c) 2024 flo-bit 2 + 3 + Permission is hereby granted, free of 4 + charge, to any person obtaining a copy of this software and associated 5 + documentation files (the "Software"), to deal in the Software without 6 + restriction, including without limitation the rights to use, copy, modify, merge, 7 + publish, distribute, sublicense, and/or sell copies of the Software, and to 8 + permit persons to whom the Software is furnished to do so, subject to the 9 + following conditions: 10 + 11 + The above copyright notice and this permission notice 12 + (including the next paragraph) shall be included in all copies or substantial 13 + portions of the Software. 14 + 15 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF 16 + ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO 18 + EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 19 + OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20 + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 + THE SOFTWARE.
+19 -7
README.md
··· 1 1 # bluesky visualizers 2 2 3 - collection of visualizations for bluesky, using the bluesky api, tailwind, svelte and pixijs. 3 + collection of visualizations for bluesky, using the bluesky api, tailwind, svelte, pixijs, three.js and threlte. 4 4 5 5 [trending hashtags](https://flo-bit.dev/bluesky-visualizers/trending) 6 - 7 - <img width="400" alt="trending" src="https://github.com/user-attachments/assets/b980de13-8168-4f5e-b00e-d6331fec3127"> 8 - 9 6 [wordcloud](https://flo-bit.dev/bluesky-visualizers/wordcloud) 7 + [particles](https://flo-bit.dev/bluesky-visualizers/particles) 8 + [3d connections](https://flo-bit.dev/bluesky-visualizers/connections-3d) 9 + [butterflies](https://flo-bit.dev/bluesky-visualizers/butterflies) 10 + [emotion analysis](https://flo-bit.dev/bluesky-visualizers/emotions) 10 11 11 - <img width="1207" alt="wordcloud" src="https://github.com/user-attachments/assets/9e359deb-2c8b-4af6-be2c-b4b34e90f840"> 12 + ## run locally 12 13 13 - [particles](https://flo-bit.dev/bluesky-visualizers/particles) 14 + clone repo 15 + ``` 16 + git clone https://github.com/flo-bit/bluesky-visualizers.git 17 + ``` 14 18 15 - <img width="1324" alt="particles" src="https://github.com/user-attachments/assets/c7d2eb68-5ea9-4a7c-9de5-a807d4f7131b"> 19 + install dependencies 20 + ``` 21 + npm install 22 + ``` 23 + 24 + run dev server 25 + ``` 26 + npm run dev 27 + ```
+3 -2
package.json
··· 55 55 "svelte-relative-time": "^0.0.6", 56 56 "three": "^0.170.0", 57 57 "uber-noise": "^0.2.2" 58 - } 59 - } 58 + }, 59 + "license": "MIT" 60 + }