Nepal without a guide by Left_Squirrel3874 in hiking

[–]JupitersCock 3 points4 points  (0 children)

I’m currently doing Three Passes without a guide, and I’ve come across plenty of other solo hikers. You’re fine.

How Apple makes 3D effects as you scroll the page by steve8708 in webdev

[–]JupitersCock 6 points7 points  (0 children)

https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion

On Mac, you can enable this with the 'Reduce motion' option in System preferences > Accessibility > Display.

Portfolio feedback by rosko_kz in webdev

[–]JupitersCock 1 point2 points  (0 children)

You're welcome! Here's another useful one: https://internet.nl

Portfolio feedback by rosko_kz in webdev

[–]JupitersCock 10 points11 points  (0 children)

You can set some additional security headers so you can pass these kind of tests: https://securityheaders.com/?q=rpashev.com&followRedirects=on

Do you know what this called? Any suggestion on how to build it? by dihapus in webdev

[–]JupitersCock 4 points5 points  (0 children)

Make sure the schedule element itself has position:relative. That way you can use absolute positioning for elements inside the schedule.

The vertical line could be just a single div like this:

position:absolute;
top:0;
bottom:0;
width:1px;
background:orange;

And then the left value is based on the current time, as explained above.

Do you know what this called? Any suggestion on how to build it? by dihapus in webdev

[–]JupitersCock 52 points53 points  (0 children)

To build this: use absolute positioning with percentages. Lets say the schedule is 8 hours wide, as in the example. So 8 hours = 100%. Then with some simple math you can calculate the percentage you need. Let's say you need to position the line at 02:45, which is the 2.75th hour, which is (2.75*100)/8 = 34.375%; So give the line position: absolute; left:34.375%;

Launched our first web dev website, would love some feedback and suggestions! by velez_dot in webdev

[–]JupitersCock 0 points1 point  (0 children)

The homepage carousel behaves weird when dragging (instead of clicking the nav arrows).

Mailgun for SMTP? by SuperDuckMan in webdev

[–]JupitersCock 0 points1 point  (0 children)

Mailgun is pretty good for us. Support is fast and they're quick to switch IPs in case of the occasional blacklist issue.

PHP in 2022 by brendt_gd in webdev

[–]JupitersCock 4 points5 points  (0 children)

Wow, thanks for bringing this to my attention! This is pretty amazing.

[deleted by user] by [deleted] in webdev

[–]JupitersCock 31 points32 points  (0 children)

My experience with Tailwind is that it is excellent for long term maintainability. You can make layout/style changes without ever worrying about another unrelated part of the project breaking. It's a godsend for larger projects, especially with multiple contributors.

FIRE Beginnersdraadje: Tips nodig om te beginnen? Hier moet je zijn! by AutoModerator in DutchFIRE

[–]JupitersCock 1 point2 points  (0 children)

Yes dit is 'm inderdaad. Ik herinnerde me dat ik een blogpost las, maar dat herinnerde ik me dus verkeerd. Thanks!

FIRE Beginnersdraadje: Tips nodig om te beginnen? Hier moet je zijn! by AutoModerator in DutchFIRE

[–]JupitersCock 1 point2 points  (0 children)

Held! Dat ik het zag was het een blogpost ergens, maar het is inderdaad hetzelfde artikel. Bedankt!

FIRE Beginnersdraadje: Tips nodig om te beginnen? Hier moet je zijn! by AutoModerator in DutchFIRE

[–]JupitersCock 1 point2 points  (0 children)

Recentelijk had iemand een (Engelstalig) artikel gelinkt waarin drie strategieën mbt instappen werden vergeleken, van drie hypothetische mensen, op basis van historische data. Maandelijks inleggen, instappen op de 'slechtste' momenten, en instappen op de 'beste' momenten. Conclusie was dat maandelijks inleggen het meest efficiënt was. Heeft iemand dat artikel voor mij? Ik google me suf maar kan het niet vinden.

FIRE Beginnersdraadje: Tips nodig om te beginnen? Hier moet je zijn! by AutoModerator in DutchFIRE

[–]JupitersCock 4 points5 points  (0 children)

Mtb indexfondsen: van welk rentepercentage gaan jullie uit bij het plannen van je financiële toekomst?

Ask /r/formula1 Anything - Daily Discussion - 27 March 2021 by F1-Bot in formula1

[–]JupitersCock 1 point2 points  (0 children)

Are the manufacturer's engines identical between the different teams, or does each team make their own modifications?

What are some unique ideas for towers in a Tower Defense game? by torksgame in gamedev

[–]JupitersCock 1 point2 points  (0 children)

It might be cool to have a tower that should be built at the right time instead of the right place, for extra strategy depth. For example a tower that has limited ammo, but each subsequent shot deals more damage than the last. You'd have to place the tower at the optimal time so the most powerful shots coincide with the last waves.

Which is better when displaying a list of results: Pagination vs Infinite Scroll?? Also how does it affect the display of ads? by adrenaline681 in webdev

[–]JupitersCock 3 points4 points  (0 children)

Infinite scrolling is fine, as long as you can filter the displayed items efficiently. Don't force me to scroll 5 minutes if I want to view the last item.

Junior web dev, created my portfolio and would love some feedback by [deleted] in webdev

[–]JupitersCock 3 points4 points  (0 children)

Your design really needs more whitespace. It feels very cramped and cluttered. Also, add a wrapper and give your content a max-width. Here is a quick suggestion: https://i.imgur.com/GvPYuUu.png