-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Archive Bot
committed
Jan 12, 2025
0 parents
commit 2b1e776
Showing
402 changed files
with
64,794 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: zulip-archive workflow | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
paths: [streams.yaml] | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '*/30 * * * *' | ||
|
||
jobs: | ||
gh-pages: | ||
runs-on: ubuntu-latest | ||
name: Publish to GitHub Pages | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Run archive | ||
id: archive | ||
uses: zulip/zulip-archive@master | ||
with: | ||
zuliprc: ${{ secrets.zuliprc }} | ||
# Using the GitHub Token that is provided automatically by GitHub Actions | ||
# (no setup needed). | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
delete_history: true | ||
archive_branch: main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
.Python | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
share/python-wheels/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
MANIFEST | ||
|
||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
*.manifest | ||
*.spec | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.nox/ | ||
.coverage | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*.cover | ||
*.py,cover | ||
.hypothesis/ | ||
.pytest_cache/ | ||
cover/ | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Django stuff: | ||
*.log | ||
local_settings.py | ||
db.sqlite3 | ||
db.sqlite3-journal | ||
|
||
# Flask stuff: | ||
instance/ | ||
.webassets-cache | ||
|
||
# Scrapy stuff: | ||
.scrapy | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# PyBuilder | ||
.pybuilder/ | ||
target/ | ||
|
||
# Jupyter Notebook | ||
.ipynb_checkpoints | ||
|
||
# IPython | ||
profile_default/ | ||
ipython_config.py | ||
|
||
# pyenv | ||
# For a library or package, you might want to ignore these files since the code is | ||
# intended to run in multiple environments; otherwise, check them in: | ||
# .python-version | ||
|
||
# pipenv | ||
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. | ||
# However, in case of collaboration, if having platform-specific dependencies or dependencies | ||
# having no cross-platform support, pipenv may install dependencies that don't work, or not | ||
# install all needed dependencies. | ||
#Pipfile.lock | ||
|
||
# poetry | ||
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. | ||
# This is especially recommended for binary packages to ensure reproducibility, and is more | ||
# commonly ignored for libraries. | ||
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control | ||
#poetry.lock | ||
|
||
# pdm | ||
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. | ||
#pdm.lock | ||
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it | ||
# in version control. | ||
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control | ||
.pdm.toml | ||
.pdm-python | ||
.pdm-build/ | ||
|
||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm | ||
__pypackages__/ | ||
|
||
# Celery stuff | ||
celerybeat-schedule | ||
celerybeat.pid | ||
|
||
# SageMath parsed files | ||
*.sage.py | ||
|
||
# Environments | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
|
||
# Spyder project settings | ||
.spyderproject | ||
.spyproject | ||
|
||
# Rope project settings | ||
.ropeproject | ||
|
||
# mkdocs documentation | ||
/site | ||
|
||
# mypy | ||
.mypy_cache/ | ||
.dmypy.json | ||
dmypy.json | ||
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
# pytype static type analyzer | ||
.pytype/ | ||
|
||
# Cython debug symbols | ||
cython_debug/ | ||
|
||
# PyCharm | ||
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can | ||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore | ||
# and can be added to the global gitignore or merged into this file. For a more nuclear | ||
# option (not recommended) you can uncomment the following to ignore the entire idea folder. | ||
#.idea/ |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
changelog.zulip-archive.lorebooks.wiki |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Zulip chat archives for Changelog.com | ||
|
||
This repository holds the chat archives for Changelog Media's Zulip Cloud | ||
organization containing all the public channels' messages, maintained as | ||
a community effort and is not affliated with the Changelog team.[^1] | ||
|
||
[^1]: if you like to take over the maintenance of this repo, just reach out to @ajhalili2006 | ||
on Zulip or email `[email protected]`. | ||
|
||
## Behind the scenes | ||
|
||
The `zulip-archive` workflow uses a dedicated service account under the email | ||
address `[email protected]` (it's a generic bot by the | ||
way) instead of using my personal account there for calling Zulip APIs. | ||
|
||
As a Community Lorebooks-hosted project, the HTML generated archive is accessible at | ||
<https://changelog.zulip-archive.lorebooks.wiki> via GitHub Pages. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<html> | ||
<head><meta charset="utf-8"><title>Zulip Chat Archive</title></head> | ||
<hr> | ||
|
||
<h2>Streams:</h2> | ||
|
||
<ul> | ||
<li> <a href="stream/453512-general/index.html">general</a> (51 topics) </li> | ||
|
||
<li> <a href="stream/454981-homelab/index.html">homelab</a> (20 topics) </li> | ||
|
||
<li> <a href="stream/456580-shipit/index.html">shipit</a> (18 topics) </li> | ||
|
||
<li> <a href="stream/455613-friends/index.html">friends</a> (17 topics) </li> | ||
|
||
<li> <a href="stream/456187-interviews/index.html">interviews</a> (16 topics) </li> | ||
|
||
<li> <a href="stream/456003-practicalai/index.html">practicalai</a> (15 topics) </li> | ||
|
||
<li> <a href="stream/455709-gotime/index.html">gotime</a> (13 topics) </li> | ||
|
||
<li> <a href="stream/456196-jsparty/index.html">jsparty</a> (13 topics) </li> | ||
|
||
<li> <a href="stream/459184-bookclub/index.html">bookclub</a> (9 topics) </li> | ||
|
||
<li> <a href="stream/455097-kaizen/index.html">kaizen</a> (9 topics) </li> | ||
|
||
<li> <a href="stream/457248-applenerds/index.html">applenerds</a> (4 topics) </li> | ||
|
||
<li> <a href="stream/453573-games/index.html">games</a> (4 topics) </li> | ||
</ul> | ||
|
||
<hr><p>Last updated: Jan 12 2025 at 09:13 UTC</p> | ||
</html> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | ||
<!-- Powered by https://github.com/pigs-will-fly/py-xml-sitemap-writer --> | ||
<!-- 197 urls --> | ||
<sitemap><loc>http://changelog.zulip-archive.lorebooks.wiki/sitemap-001-pages.xml.gz</loc></sitemap> | ||
</sitemapindex> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<html> | ||
<head><meta charset="utf-8"><title>Zulip Chat Archive</title></head> | ||
<h2> Stream: <a href="http://changelog.zulip-archive.lorebooks.wiki/stream/453512-general/index.html">general</a></h2> | ||
<hr> | ||
|
||
<h3>Topics:</h3> | ||
|
||
<ul> | ||
<li> <a href="topic/WordPress.20Drama.html">WordPress Drama</a> (179 messages, latest: Jan 11 2025 at 19:39) </li> | ||
<li> <a href="topic/new.20episodes.html">new episodes</a> (135 messages, latest: Jan 10 2025 at 19:03) </li> | ||
<li> <a href="topic/Ghostty.20is.20now.20v1.2E0.20.28and.20Open.20Source.20to.20all.29.html">Ghostty is now v1.0 (and Open Source to all)</a> (17 messages, latest: Jan 09 2025 at 14:08) </li> | ||
<li> <a href="topic/What.20trending.20tech.20are.20you.20most.20bullish.20on.3F.html">What trending tech are you most bullish on?</a> (71 messages, latest: Jan 04 2025 at 20:57) </li> | ||
<li> <a href="topic/BBQ.21.21.21.html">BBQ!!!</a> (61 messages, latest: Jan 02 2025 at 18:43) </li> | ||
<li> <a href="topic/Happy.202025.21.20.E2.9C.A8.html">Happy 2025! ✨</a> (5 messages, latest: Jan 01 2025 at 06:12) </li> | ||
<li> <a href="topic/No.20one.20seems.20to.20know.20about.20Zulip.html">No one seems to know about Zulip</a> (87 messages, latest: Dec 30 2024 at 21:41) </li> | ||
<li> <a href="topic/Where.20do.20you.20blog.3F.html">Where do you blog?</a> (12 messages, latest: Dec 27 2024 at 13:51) </li> | ||
<li> <a href="topic/TIL.20disaster.20girl.20real.20story.html">TIL disaster girl real story</a> (3 messages, latest: Dec 23 2024 at 23:42) </li> | ||
<li> <a href="topic/Looking.20for.20Job.html">Looking for Job</a> (1 message, latest: Dec 20 2024 at 13:49) </li> | ||
<li> <a href="topic/Zulip.20updates.html">Zulip updates</a> (4 messages, latest: Dec 18 2024 at 07:35) </li> | ||
<li> <a href="topic/A.20new.20era.20for.20the.20Changelog.20Podcast.20Universe.html">A new era for the Changelog Podcast Universe</a> (25 messages, latest: Dec 17 2024 at 14:56) </li> | ||
<li> <a href="topic/Leave.20us.20a.20voicemail.20for.20this.20year.27s.20state.20of.20the.20.22log.22.21.html">Leave us a voicemail for this year's state of the "log"!</a> (11 messages, latest: Dec 16 2024 at 20:59) </li> | ||
<li> <a href="topic/Mastodon.3F.html">Mastodon?</a> (14 messages, latest: Dec 16 2024 at 20:50) </li> | ||
<li> <a href="topic/nominations.20for.20interviewees.html">nominations for interviewees</a> (13 messages, latest: Dec 15 2024 at 16:27) </li> | ||
<li> <a href="topic/Manifesting.20solved.20problems.html">Manifesting solved problems</a> (7 messages, latest: Dec 11 2024 at 21:00) </li> | ||
<li> <a href="topic/Automating.20the.20pain.20away.20.28avoid.20using.20jira.20with.20LLMs.29.20.23blog.html">Automating the pain away (avoid using jira with LLMs) #blog</a> (7 messages, latest: Dec 05 2024 at 14:45) </li> | ||
<li> <a href="topic/Deno.20pronunciation.html">Deno pronunciation</a> (2 messages, latest: Dec 01 2024 at 01:22) </li> | ||
<li> <a href="topic/Elixir.3A.20why.20is.20it.20so.20underrated.3F.html">Elixir: why is it so underrated?</a> (22 messages, latest: Nov 27 2024 at 21:11) </li> | ||
<li> <a href="topic/Lessons.20learned.20adding.20OpenTelemetry.20to.20a.20Go.20CLI.20.23blogging.html">Lessons learned adding OpenTelemetry to a Go CLI #blogging</a> (2 messages, latest: Nov 23 2024 at 22:59) </li> | ||
<li> <a href="topic/.E2.9C.94.20PostgreSQL.20or.20Postgres.3F.3F.html">✔ PostgreSQL or Postgres??</a> (13 messages, latest: Nov 21 2024 at 21:13) </li> | ||
<li> <a href="topic/read-later.20setup.html">read-later setup</a> (20 messages, latest: Nov 21 2024 at 04:22) </li> | ||
<li> <a href="topic/Where.20to.20share.20interesting.20blog.20posts.3F.20.23blogging.20alternative.html">Where to share interesting blog posts? #blogging alternative</a> (16 messages, latest: Nov 18 2024 at 21:23) </li> | ||
<li> <a href="topic/private.20google.20analytics.3F.html">private google analytics?</a> (15 messages, latest: Nov 18 2024 at 06:10) </li> | ||
<li> <a href="topic/ShipIt.20rules.html">ShipIt rules</a> (3 messages, latest: Nov 10 2024 at 15:34) </li> | ||
<li> <a href="topic/Year-end.20merch.20sale.html">Year-end merch sale</a> (1 message, latest: Nov 07 2024 at 17:02) </li> | ||
<li> <a href="topic/a.20new.20domain.20for.20prospective.20interviewees.html">a new domain for prospective interviewees</a> (2 messages, latest: Nov 06 2024 at 00:18) </li> | ||
<li> <a href="topic/ergonomics.20wins.html">ergonomics wins</a> (95 messages, latest: Nov 05 2024 at 18:02) </li> | ||
<li> <a href="topic/hytradboi.3A.20what.20is.20the.20point.20of.20an.20online.20conference.3F.html">hytradboi: what is the point of an online conference?</a> (1 message, latest: Oct 31 2024 at 20:44) </li> | ||
<li> <a href="topic/Incident.20Horror.20Stories.html">Incident Horror Stories</a> (7 messages, latest: Oct 31 2024 at 16:55) </li> | ||
<li> <a href="topic/Fresh.20off.20GitHub.20Universe.202024.3A.20Hack.20Club.20High.20Seas.html">Fresh off GitHub Universe 2024: Hack Club High Seas</a> (2 messages, latest: Oct 31 2024 at 08:40) </li> | ||
<li> <a href="topic/introduce.20yourself.21.html">introduce yourself!</a> (63 messages, latest: Oct 30 2024 at 03:04) </li> | ||
<li> <a href="topic/do.20we.20need.20a.20silicon.20valley.20channel.3F.html">do we need a silicon valley channel?</a> (1 message, latest: Oct 29 2024 at 21:56) </li> | ||
<li> <a href="topic/web-public.20channels.html">web-public channels</a> (14 messages, latest: Oct 27 2024 at 06:18) </li> | ||
<li> <a href="topic/.5Bmeta.5D.20episode.20transcripts.20related.20questions.html">[meta] episode transcripts related questions</a> (2 messages, latest: Oct 26 2024 at 12:49) </li> | ||
<li> <a href="topic/.2Eio.20domains.html">.io domains</a> (15 messages, latest: Oct 24 2024 at 16:06) </li> | ||
<li> <a href="topic/Ladybird.20On.20Swift.20vs.20Rust.html">Ladybird On Swift vs Rust</a> (7 messages, latest: Oct 23 2024 at 11:16) </li> | ||
<li> <a href="topic/Deno.202.html">Deno 2</a> (6 messages, latest: Oct 17 2024 at 02:41) </li> | ||
<li> <a href="topic/new.20channels.html">new channels</a> (19 messages, latest: Oct 12 2024 at 03:52) </li> | ||
<li> <a href="topic/Tuomas.20Artman.20on.20localfirst.2Efm.html">Tuomas Artman on localfirst.fm</a> (4 messages, latest: Oct 03 2024 at 18:02) </li> | ||
<li> <a href="topic/keyboard.20shortcuts.20.28Zulip.29.html">keyboard shortcuts (Zulip)</a> (13 messages, latest: Oct 01 2024 at 00:44) </li> | ||
<li> <a href="topic/Bobiverse.html">Bobiverse</a> (1 message, latest: Sep 28 2024 at 19:19) </li> | ||
<li> <a href="topic/Is.20this.20cool.3F.20y.2Fn.3F.html">Is this cool? y/n?</a> (76 messages, latest: Sep 28 2024 at 18:00) </li> | ||
<li> <a href="topic/auth.20.28zulip.29.html">auth (zulip)</a> (4 messages, latest: Sep 28 2024 at 14:49) </li> | ||
<li> <a href="topic/previews.20of.20websites.html">previews of websites</a> (7 messages, latest: Sep 25 2024 at 22:52) </li> | ||
<li> <a href="topic/desktop.20app.20.28Zulip.29.html">desktop app (Zulip)</a> (20 messages, latest: Sep 25 2024 at 18:31) </li> | ||
<li> <a href="topic/pocketcasts.20transcripts.html">pocketcasts transcripts</a> (5 messages, latest: Sep 25 2024 at 14:52) </li> | ||
<li> <a href="topic/Mobile.20usage.html">Mobile usage</a> (14 messages, latest: Sep 22 2024 at 22:00) </li> | ||
<li> <a href="topic/Atari.207800.2B.20announcement.20trailer.html">Atari 7800+ announcement trailer</a> (6 messages, latest: Sep 19 2024 at 20:36) </li> | ||
<li> <a href="topic/Speaking.20of.20the.20Microsoft.20Sculpt.20Keyboard.2E.2E.2E.html">Speaking of the Microsoft Sculpt Keyboard...</a> (2 messages, latest: Sep 17 2024 at 15:48) </li> | ||
<li> <a href="topic/.E2.9C.94.20why.27s.20this.20called.20night.20mode.2E.2E.2E.20.F0.9F.98.85.html">✔ why's this called night mode... 😅</a> (5 messages, latest: Sep 10 2024 at 13:44) </li> | ||
</ul> | ||
|
||
<hr><p>Last updated: Jan 12 2025 at 09:13 UTC</p> | ||
</html> |
Oops, something went wrong.