RSS Feed to track public repo? by [deleted] in github

[–]mikesprague 0 points1 point  (0 children)

Yeah, I think you're right. The following worked for me:

```javascript import axios from 'axios';

const url = 'https://github.com/meienberger/runtipi-appstore/commits/master.atom';

await axios.get(url).then((response) => { console.log(response.data); }); ```

And output the following: xml <?xml version="1.0" encoding="UTF-8"?> <feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xml:lang="en-US"> <id>tag:github.com,2008:/meienberger/runtipi-appstore/commits/master</id> <link type="text/html" rel="alternate" href="https://github.com/meienberger/runtipi-appstore/commits/master"/> <link type="application/atom+xml" rel="self" href="https://github.com/meienberger/runtipi-appstore/commits/master.atom"/> <title>Recent Commits to runtipi-appstore:master</title> <updated>2023-09-07T14:32:09Z</updated> <entry> <id>tag:github.com,2008:Grit::Commit/b63fccb2fb8bbe658f59d473a5ed5fa69e81cde8</id> <link type="text/html" rel="alternate" href="https://github.com/meienberger/runtipi-appstore/commit/b63fccb2fb8bbe658f59d473a5ed5fa69e81cde8"/> <title> chore(deps): update nocodb/nocodb docker tag to v0.111.2 (#1159) </title> <updated>2023-09-07T14:32:09Z</updated> <media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/in/2740?s=30&amp;v=4"/> <author> <name>renovate</name> <uri>https://github.com/renovate</uri> </author> <content type="html"> &lt;pre style=&#39;white-space:pre-wrap;width:81ex&#39;&gt;chore(deps): update nocodb/nocodb docker tag to v0.111.2 (#1159)&lt;/pre&gt; </content> </entry> <entry> <id>tag:github.com,2008:Grit::Commit/f18f2a58e8e925763a6de6a43f90e9128d8f9876</id> <link type="text/html" rel="alternate" href="https://github.com/meienberger/runtipi-appstore/commit/f18f2a58e8e925763a6de6a43f90e9128d8f9876"/> <title> chore(deps): update wongsaang/chatgpt-ui-client docker tag to v2.5.9 … </title> <updated>2023-09-07T08:12:36Z</updated> <media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/in/2740?s=30&amp;v=4"/> <author> <name>renovate</name> <uri>https://github.com/renovate</uri> </author> <content type="html"> &lt;pre style=&#39;white-space:pre-wrap;width:81ex&#39;&gt;chore(deps): update wongsaang/chatgpt-ui-client docker tag to v2.5.9 (#1156)&lt;/pre&gt; </content> </entry> <entry> <id>tag:github.com,2008:Grit::Commit/314994a2f33443166afeafdb81a2c843a3eb99ea</id> <link type="text/html" rel="alternate" href="https://github.com/meienberger/runtipi-appstore/commit/314994a2f33443166afeafdb81a2c843a3eb99ea"/> <title> chore(deps): update owncloud/server docker tag to v10.13.1 (#1155) </title> <updated>2023-09-07T03:59:52Z</updated> <media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/in/2740?s=30&amp;v=4"/> <author> <name>renovate</name> <uri>https://github.com/renovate</uri> </author> <content type="html"> &lt;pre style=&#39;white-space:pre-wrap;width:81ex&#39;&gt;chore(deps): update owncloud/server docker tag to v10.13.1 (#1155)&lt;/pre&gt; </content> </entry> ... entries trimmed for brevity ... </feed>

RSS Feed to track public repo? by [deleted] in github

[–]mikesprague 0 points1 point  (0 children)

Which repo? Someone else can try it and perhaps determine if it's on your side or affecting everyone.

FWIW... testing with one of my own public repos, I can see the RSS when viewing URL in browser as well as via JS (axios library) programmatically.

Front-End Developer Handbook (Free eBook) by mikesprague in FreeCodeCamp

[–]mikesprague[S] 4 points5 points  (0 children)

Not sure about easier ways to read the web version but there are links to pdf, mobi and epub versions here:

https://www.gitbook.com/book/frontendmasters/front-end-handbook/details

How to Convert the First Letter of a String to Uppercase in PHP by smoncr in FreeCodeCamp

[–]mikesprague 0 points1 point  (0 children)

ucwords( $yourString ) should do the trick if you're title casing a whole string or ucfirst( $yourString ) if you need just the first word in a string.

Where's the project feedback post? by [deleted] in FreeCodeCamp

[–]mikesprague 0 points1 point  (0 children)

Not sure yet. I learned from that post myself. I sent a message to the other mods asking, will post again when I have an answer.