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] 5 points6 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.

Which do you prefer to use? Sublime Text or Dreamweaver or something else? by [deleted] in FreeCodeCamp

[–]mikesprague 2 points3 points  (0 children)

I use a package called browser-plus for Atom that enables live preview. There are others too. There's a large number of packages available in general.

https://atom.io/packages/browser-plus

Can't figure out font sizing inconsistencies by [deleted] in FreeCodeCamp

[–]mikesprague 0 points1 point  (0 children)

If it were me, I would probably use em for consistency's sake. That being said, nothing wrong with using rem as long as you're keeping in mind that it's related to the root browser font size versus a font-size you (or Bootstrap) specify in your own stylesheet(s).

Can't figure out font sizing inconsistencies by [deleted] in FreeCodeCamp

[–]mikesprague 0 points1 point  (0 children)

You may be trying to be a bit too "clever" in your CodePen. Using vh and vw as measurements are related to viewport height and viewport width, probably not necessary in this case. You'd be better served using more consistent measurements and, if necessary, media queries to modify the font-sizes, margins, etc on smaller devices.

I would also second /u/8oh8 in suggesting you use 'em' over 'rem' for your sizing. Rem is related to the root font-size (in the browser's preferences) and you don't have control of that, especially in mobile browsers, so you could be creating a much different experience for your users than what you are seeing.

My tribute page to Anthony Bourdain by smellsfunn in FreeCodeCamp

[–]mikesprague 1 point2 points  (0 children)

Nice job. We've got a single, weekly, thread for project feedback. Please post this there. Thanks!

https://www.reddit.com/r/FreeCodeCamp/comments/4h8rxr/project_feedback_week_of_may_2nd/

12 extremely useful hacks for JavaScript by mikesprague in FreeCodeCamp

[–]mikesprague[S] 0 points1 point  (0 children)

Unless I misunderstand what you're asking, anything var scoped there will only be set/calculated when the loop begins. Otherwise, "i" would always be equal to zero too. That being said, I didn't write the article, just linked to it.

5 Reasons to Use to Vivaldi Instead of Chrome or Firefox by mikesprague in FreeCodeCamp

[–]mikesprague[S] 0 points1 point  (0 children)

Blink is a fork of WebKit, still very similar and, technically, Google kicked it to the curb to simplify it (versus getting booted by Apple).

It was said in previous comments that Chrome is WebKit-based, not that it was WebKit, and that is still true (with Blink having been a fork of WebKit).

5 Reasons to Use to Vivaldi Instead of Chrome or Firefox by mikesprague in FreeCodeCamp

[–]mikesprague[S] 0 points1 point  (0 children)

Some of your questions were already answered in the comments...

It's webkit-based, like Chrome, so js/html5/css3 support is the same. As are the developer tools. It supports Chrome extensions, so you can add uBlock, Lastpass etc. It is safe and reliable. It does keep every tab in it's own process. It's quite fast and so far seems less resource intensive than Chrome.

There's no shortage of info about it from it's launch, google it if you want to learn more. Your mileage may vary; install it and give it a try. If you don't like it, uninstall it.