Accueil > Notes > @b_b - Seenthis
http://www.seenthis.net/people/b_b
Articles
-
How_To Hide ubuntu_pro Updates in Ubuntu 24.04 LTS
24 décembre 2024, par OMG ! Ubuntu ! (@omgubuntu)#How_To Hide #ubuntu_pro Updates in Ubuntu 24.04 LTS
▻https://www.omgubuntu.co.uk/2024/12/disable-ubuntu-pro-updates-in-software-updaterUbuntu Pro is an optional security feature that Ubuntu LTS users can enrol in to get critical updates for more than 25,000 packages that would otherwise sit unpatched. If you use Ubuntu 24.04 LTS you will have seen Ubuntu Pro security updates in Software Updater (or when running apt commands). And you will have noticed you can’t install those updates without having an Ubuntu Pro subscription. Businesses, or those with fleets of machines to manage, need to pay for an Ubuntu Pro/ESM plan, but Ubuntu Pro is entirely free for home users (on up to 5 computers) so the only […] You’re reading How to Hide Ubuntu Pro Updates in Ubuntu 24.04 LTS, a blog post from OMG! Ubuntu. Do not reproduce elsewhere without (...)
-
Full-bleed layout with modern CSS ❝Use modern CSS and a few lines of code to create a full-bleed…
2 décembre 2024, par b_b (@b_b)#Full-bleed layout with modern #CSS
Use modern CSS and a few lines of code to create a full-bleed layout.
Full-bleed? It’s when an element needs to bleed outside the main container and extend to the edge of the page.html {
container-type: inline-size;
}
main {
--w: 600px; /* the max-width */
--m: 1em; /* margin on small screen */
margin-inline: max( var(--m),(100cqw - var(--w))/2);
}
.full-bleed {
margin-inline: min(-1*var(--m),(var(--w) - 100cqw)/2);
} -
Free HTML Templates Download - HTML Codex
2 décembre 2024, par b_b (@b_b)Free #HTML #Templates Download - HTML Codex
▻https://htmlcodex.com/template167+ Free HTML Website Templates. All of our templates are built using the latest web technologies including HTML5, CSS3, and Bootstrap framework
Ça peut toujours servir...
-
Announcing the Pre-Release of the PHP Installer for Extensions (PIE) — The PHP Foundation —…
19 novembre 2024, par b_b (@b_b)Announcing the Pre-Release of the #PHP Installer for #Extensions (PIE) — The PHP Foundation — Supporting, Advancing, and Developing the PHP Language
▻https://thephp.foundation/blog/2024/11/19/pie-pre-releaseWith PIE, the process of managing PHP extensions becomes more streamlined. Extensions are distributed via #Packagist just like regular PHP packages! It makes the installation and update process quite familiar if you already use #Composer.
wow...
-
3D parallax effect on hover
23 octobre 2024, par b_b (@b_b)#3D #parallax effect on #hover
▻https://css-tip.com/3d-parallax-effectUn petit effet « wow ! »
img {
--s: 300px; /* the image size */
width: var(--s);
aspect-ratio: 1;
box-sizing: border-box;
padding-inline: calc(var(--s)/10) 0;
object-fit: cover;
border-radius: 20px;
transform: perspective(350px) rotateY(calc(var(--_i,1)*10deg));
transition: .5s;
}
img:hover {
--_i: -1;
padding-inline: 0 calc(var(--s)/10);
}#css