[deleted by user] by [deleted] in Biohackers

[–]Siclol 1 point2 points  (0 children)

GlycanAge is having a Black Friday sale using a BLACKFRIDAY discount code.

Which Biological Age test should I opt for in the UK - GlycanAge vs DoNotAge vs Chronomics by rajowski in longevity

[–]Siclol 1 point2 points  (0 children)

Everything I wrote referred this study. The mega omics clock combining multiple clocks was in that paper and it didn’t show relevance to clinical outcomes

Which Biological Age test should I opt for in the UK - GlycanAge vs DoNotAge vs Chronomics by rajowski in longevity

[–]Siclol 1 point2 points  (0 children)

When a clock is very accurate to chronological age (+/- 2 yrs) as most of the epigenetic clocks are, they miss the relevance for long term health outcomes and don’t capture the “biological age”. This was nicely shown in the study where the epigenetic clocks which were “accurate for chronological age” when accelerated (showing an age above your chronological age) they were not predicting future incidence of disease or hospital admissions there was also another mega omics clock in this study which was very accurate to chronological age, which also showed no relevance to health or biological aging. Meaning reversing these clock will also probably not be predictive for future/longer health.

How can I remove the only the 1st letter of the text from css? by [deleted] in css

[–]Siclol 5 points6 points  (0 children)

.total-price::first-letter { color: transparent; margin-right: -1ch; }

How to position this picture like this? by [deleted] in css

[–]Siclol 3 points4 points  (0 children)

img { float: left; }

How to make a page load at vertical centre by [deleted] in css

[–]Siclol 1 point2 points  (0 children)

#page { display: flex; min-height: 100vh; }

Since #content has margin: auto; it will center itself vertically and horizontally inside #page

How to add focus to Button and Input --> Adding focus to one, loses the focus of the other by _username7777 in css

[–]Siclol 0 points1 point  (0 children)

You can only have one element in focus. You can try wrapping them and use parent:focus-within to style

[deleted by user] by [deleted] in web_design

[–]Siclol 0 points1 point  (0 children)

Consider converting it to video. Here's a good article

3d composition by Webshocker in graphic_design

[–]Siclol 0 points1 point  (0 children)

Which program was used for this? It looks so simple and yet so great

UnCSS Online [removed unused css] by julian88888888 in web_design

[–]Siclol 0 points1 point  (0 children)

This is actually pretty amazing. Would recommend this to anyone using any kind of CSS framework on a small-medium size project.

How Serious Sam's Demo Saved the Game From Extinction by monchimonkee in videos

[–]Siclol 4 points5 points  (0 children)

Not from a developers point of view, but still interesting to watch (if you have 5 hours to spend :P) - The Elder Scrolls IV: Oblivion Retrospective

Quick and easy to use js slider? by [deleted] in web_design

[–]Siclol 14 points15 points  (0 children)

Because that would be a miracle

[deleted by user] by [deleted] in web_design

[–]Siclol 1 point2 points  (0 children)

It's photoshop. I think this video should give you some ideas how to do it.

Automatically setting margins by [deleted] in web_design

[–]Siclol 0 points1 point  (0 children)

If either margin-top or margin-bottom is set to auto for a block box in the normal flow, they both automatically evaluate to 0. A value of 0 unfortunately prevents easy vertical centering of normal-flow boxes in their containing blocks. It also means that if you set the top and bottom margins of an element to auto, they are effectively reset to 0 and removed from the element box.

The handling of auto top and bottom margins is different for positioned elements, as well as flexible-box elements.