2021-07-06 15:58:27 +00:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
2021-07-18 22:12:12 +00:00
< title > RSSPAPER< / title >
2021-07-18 22:08:57 +00:00
<!-- PWA -->
< link rel = "manifest" href = "static/manifest.json" / >
<!-- ios support -->
< link rel = "apple-touch-icon" href = "static/img/icons/default.png" / >
< link rel = "apple-touch-icon" href = "static/img/icons/default.png" / >
< link rel = "apple-touch-icon" href = "static/img/icons/default.png" / >
< link rel = "apple-touch-icon" href = "static/img/icons/default.png" / >
< link rel = "apple-touch-icon" href = "static/img/icons/default.png" / >
< link rel = "apple-touch-icon" href = "static/img/icons/default.png" / >
< link rel = "apple-touch-icon" href = "static/img/icons/default.png" / >
< link rel = "apple-touch-icon" href = "static/img/icons/default.png" / >
< meta name = "apple-mobile-web-app-status-bar" content = "#fff" / >
< meta name = "theme-color" content = "#db4938" / >
<!-- End PWA -->
< link rel = "icon" type = "image/png" href = "static/img/icons/default.png" >
2021-07-06 15:58:27 +00:00
< meta name = "theme-color" content = "#3c790a" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, shrink-to-fit=no" >
< meta name = "author" content = "Tu nombre" >
2021-07-18 22:12:12 +00:00
< meta name = "generator" content = "RSSPAPER" >
2021-07-06 15:58:27 +00:00
< meta name = "description" content = "My news" >
< meta property = "og:image" content = "img/screenshot.png" >
< meta property = "og:title" content = "The Rock" >
< meta property = "og:type" content = "website" >
<!-- Normalize -->
< link rel = "stylesheet" type = "text/css" href = "https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" >
<!-- End Normalize -->
<!-- Fonts -->
< link rel = "preconnect" href = "https://fonts.googleapis.com" >
< link rel = "preconnect" href = "https://fonts.gstatic.com" crossorigin >
< link href = "https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,400;0,700;1,400&display=swap" rel = "stylesheet" >
<!-- End Fonts -->
<!-- CSS -->
< style >
/* Global */
:root {
--color-black: black;
--color-gray: gray;
2021-07-06 22:46:13 +00:00
--height-img: 10rem;
2021-07-06 15:58:27 +00:00
}
body {
margin: 0;
padding: 0;
font-family: 'Newsreader', serif;
color: var(--color-black);
}
img {
object-fit: cover;
object-position: center;
}
img, video, iframe {
width: 100%;
}
a {
color: var(--color-black);
text-decoration: none;
}
pre {
overflow-x: auto;
}
.container {
max-width: 62rem;
margin: 0 auto;
padding: 1rem;
}
.header {
margin-bottom: 2rem;
}
.title {
text-align: center;
font-size: 4rem;
font-weight: normal;
margin-bottom: 0;
margin-top: 1rem;
}
.subtitle {
display: flex;
justify-content: center;
align-items: center;
margin-top: -1rem;
font-weight: normal;
font-size: 1.5rem;
}
.subtitle__separator {
font-size: 3rem;
font-weight: bold;
}
.separator {
border: 0;
background: var(--color-black);
height: 1px;
}
.footer__text {
text-align: center;
padding: 1rem 0;
}
.footer__link {
font-weight: bold;
}
.footer__heard {
display: inline-block;
margin-left: .3rem;
}
.article__title, .article__feed {
font-weight: normal;
}
2021-07-18 11:17:47 +00:00
2021-07-06 22:46:13 +00:00
.article__header-img > a > img {
height: var(--height-img);
object-position: center;
object-fit: contain;
}
.article__random-background {
2021-07-18 11:17:47 +00:00
height: 100%;
2021-07-06 22:46:13 +00:00
width: 100%;
}
2021-07-06 15:58:27 +00:00
< / style >
< style media = "all and (max-width: 600px)" >
/* Mobile */
< / style >
< style media = "all and (min-width: 601px)" >
/* Desktop */
.main {
display: grid;
grid-gap: 1rem;
grid-template-columns: repeat(12, 1fr);
}
/* First column. */
.feed__article:nth-child(3n-2){
grid-column: 9 / 13;
}
/* Second column */
.feed__article:nth-child(3n+2){
grid-column: 1 / 5;
}
/* Third column */
.feed__article:nth-child(3n+3) {
grid-column: 5 / 9;
}
.article__title {
font-size: 1.5rem;
}
.article__feed {
font-size: 1rem;
}
.article__date {
font-size: .9rem;
color: var(--color-gray);
}
.feed__article:nth-child(1) .article__title {
font-size: 2rem;
}
.feed__article:nth-child(1) .article__feed {
font-size: 1rem;
}
.feed__article:nth-child(1) {
grid-column: 1 / 9;
grid-row: 1 / 4;
text-align: center;
}
.feed__article:nth-child(2) {
grid-column: 9 / 13;
grid-row: 1 / 2;
}
.feed__article:nth-child(3) {
grid-column: 9 / 13;
grid-row: 2 / 3;
}
.feed__article:nth-child(4) {
grid-column: 9 / 13;
grid-row: 3 / 4;
}
.feed__article:nth-child(2) .article__header,
.feed__article:nth-child(3) .article__header,
.feed__article:nth-child(4) .article__header
{
display: flex;
justify-content: space-between;
flex-direction: row-reverse;
grid-gap: 1rem;
}
.article__header > p {
margin: 0;
}
.article__header-img > img {
2021-07-06 22:46:13 +00:00
height: var(--height-img);
2021-07-06 15:58:27 +00:00
}
.feed__article:nth-child(1) .article__header-img > img,
.feed__article:nth-child(2) .article__header-img > img,
.feed__article:nth-child(3) .article__header-img > img,
.feed__article:nth-child(4) .article__header-img > img
{
height: initial;
}
.feed__article:nth-child(2) .article__titles,
.feed__article:nth-child(3) .article__titles,
.feed__article:nth-child(4) .article__titles,
.feed__article:nth-child(2) .article__header-img,
.feed__article:nth-child(3) .article__header-img,
.feed__article:nth-child(4) .article__header-img
{
width: 50%;
}
.feed__article:nth-child(2) .article__title,
.feed__article:nth-child(3) .article__title,
.feed__article:nth-child(4) .article__title
{
font-size: 1.2rem;
}
.feed__article:nth-child(2) .article__feed,
.feed__article:nth-child(3) .article__feed,
.feed__article:nth-child(4) .article__feed
{
font-size: 1rem;
}
.article__main {
position: fixed;
left: -100%;
top: 0;
bottom: 0;
overflow-y: auto;
}
2021-07-18 11:17:47 +00:00
.feed__article:nth-child(1) .article__header {
display: flex;
flex-direction: column;
height: 100%;
}
.feed__article:nth-child(1) .article__header-img {
height: 100%;
2021-07-06 22:46:13 +00:00
}
2021-07-06 15:58:27 +00:00
< / style >
<!-- End CSS -->
< / head >
< body >
< div class = "container" >
< header class = "header" >
2021-07-18 22:12:12 +00:00
< h1 class = "title" > RSSPAPER< / h1 >
2021-07-06 15:58:27 +00:00
< h2 class = "subtitle" > < span class = "subtitle__separator" > ~< / span > < span class = "subtitle__text" > My static generate newspaper< / span > < span class = "subtitle__separator" > ~< / span > < / h2 >
< hr class = "separator" >
< / header >
< main class = "main" >
2021-07-18 11:33:24 +00:00
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://vlctechhub.org/events/como-se-hacen-posible-los-micro-y-nano-pagos-sobre-blockchain-60f90794a62a" >
2021-07-18 11:33:24 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://vlctechhub.org/events/como-se-hacen-posible-los-micro-y-nano-pagos-sobre-blockchain-60f90794a62a" > Jueves 29 de julio | Como se hacen posible los Micro y Nano pagos sobre Blockchain por @avalBit< / a >
2021-07-18 11:33:24 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://vlctechhub.org/" > VLCTechHub Feed< / a > < span class = "article__date" > 30 07 2021< / span > < / h2 >
2021-07-18 11:33:24 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.muylinux.com/2021/07/29/heroic-games-launcher-1-9/" >
2021-07-18 11:33:24 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.muylinux.com/2021/07/29/heroic-games-launcher-1-9/" > Nueva versión de Heroic Games Launcher, el cliente de Epic Games Store para Linux< / a >
2021-07-18 11:33:24 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://www.muylinux.com" > MuyLinux< / a > < span class = "article__date" > 29 07 2021< / span > < / h2 >
2021-07-18 11:33:24 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "http://neofronteras.com/?p=7525" >
2021-07-18 11:33:24 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "http://neofronteras.com/?p=7525" > Ven disco protolunar< / a >
2021-07-18 11:33:24 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "http://neofronteras.com" > NeoFronteras< / a > < span class = "article__date" > 29 07 2021< / span > < / h2 >
2021-07-18 11:33:24 +00:00
< / div >
< / header >
2021-07-18 22:08:57 +00:00
< / article >
2021-07-19 22:28:39 +00:00
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "http://neofronteras.com/?p=7523" >
2021-07-19 22:28:39 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "http://neofronteras.com/?p=7523" > Más predicciones de plegamientos< / a >
2021-07-19 22:28:39 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "http://neofronteras.com" > NeoFronteras< / a > < span class = "article__date" > 29 07 2021< / span > < / h2 >
2021-07-19 22:28:39 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "http://neofronteras.com/?p=7520" >
2021-07-19 22:28:39 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "http://neofronteras.com/?p=7520" > Actualidad astronómica: el kiosco del astrónomo< / a >
2021-07-19 22:28:39 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "http://neofronteras.com" > NeoFronteras< / a > < span class = "article__date" > 29 07 2021< / span > < / h2 >
2021-07-19 22:28:39 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.ochobitshacenunbyte.com/2021/07/29/como-utilizar-efibootmgr-para-manejar-el-menu-de-uefi/" >
2021-07-19 22:28:39 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.ochobitshacenunbyte.com/2021/07/29/como-utilizar-efibootmgr-para-manejar-el-menu-de-uefi/" > Cómo utilizar efibootmgr para manejar el menú de UEFI< / a >
2021-07-19 22:28:39 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://www.ochobitshacenunbyte.com" > ochobitshacenunbyte< / a > < span class = "article__date" > 29 07 2021< / span > < / h2 >
2021-07-19 22:28:39 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.muylinux.com/2021/07/29/audacity-telemetria-spyware/" >
2021-07-19 22:28:39 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.muylinux.com/2021/07/29/audacity-telemetria-spyware/" > Audacity implementa su telemetría y… no, no es ‘ spyware’ < / a >
2021-07-19 22:28:39 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://www.muylinux.com" > MuyLinux< / a > < span class = "article__date" > 29 07 2021< / span > < / h2 >
2021-07-19 22:28:39 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/blackmatter-y-lockbit-20-novedades-evolucion-mundo-ransomware.html" >
2021-07-19 22:28:39 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/blackmatter-y-lockbit-20-novedades-evolucion-mundo-ransomware.html" > BlackMatter y LockBit 2.0: novedades en el mundo del ransomware< / a >
2021-07-19 22:28:39 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://blog.elhacker.net/" > Blog elhacker.NET< / a > < span class = "article__date" > 29 07 2021< / span > < / h2 >
2021-07-19 22:28:39 +00:00
< / div >
< / header >
< / article >
2021-07-18 22:08:57 +00:00
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://au-agenda.com/no-te-metas-politica-rico-tour/" >
2021-07-18 22:08:57 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://au-agenda.com/no-te-metas-politica-rico-tour/" > No te metas en política. Qué rico Tour< / a >
2021-07-18 22:08:57 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://au-agenda.com" > AU Agenda< / a > < span class = "article__date" > 29 07 2021< / span > < / h2 >
2021-07-18 22:08:57 +00:00
< / div >
< / header >
2021-07-18 11:33:24 +00:00
< / article >
2021-07-19 22:28:39 +00:00
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "http://www.fsf.org/news/fsf-job-opportunity-operations-assistant-1" >
2021-07-18 10:52:33 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "http://www.fsf.org/news/fsf-job-opportunity-operations-assistant-1" > FSF job opportunity: Operations assistant< / a >
2021-07-18 22:08:57 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "http://www.fsf.org/news/aggregator" > FSF News< / a > < span class = "article__date" > 28 07 2021< / span > < / h2 >
2021-07-18 22:08:57 +00:00
< / div >
< / header >
2021-07-18 10:52:33 +00:00
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.ochobitshacenunbyte.com/2021/07/28/como-migrar-centos-8-a-rocky-linux-8/" >
2021-07-18 10:52:33 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.ochobitshacenunbyte.com/2021/07/28/como-migrar-centos-8-a-rocky-linux-8/" > Cómo migrar Centos 8 a Rocky Linux 8< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://www.ochobitshacenunbyte.com" > ochobitshacenunbyte< / a > < span class = "article__date" > 28 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
2021-07-19 22:28:39 +00:00
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/supuesta-filtracion-4-billones-de.html" >
2021-07-18 10:52:33 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/supuesta-filtracion-4-billones-de.html" > Supuesta filtración 4 billones de teléfonos de ClubHouse< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://blog.elhacker.net/" > Blog elhacker.NET< / a > < span class = "article__date" > 28 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://github.blog/2021-07-28-new-code-scanning-integrations-open-source-security-tools/" >
2021-07-18 10:52:33 +00:00
2021-07-29 23:53:12 +00:00
< img loading = "lazy" src = "https://github.blog/wp-content/uploads/2019/01/cropped-github-favicon-512.png?fit=32%2C32" alt = "15+ new code scanning integrations with open source security tools" >
2021-07-18 10:52:33 +00:00
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://github.blog/2021-07-28-new-code-scanning-integrations-open-source-security-tools/" > 15+ new code scanning integrations with open source security tools< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://github.blog" > The GitHub Blog< / a > < span class = "article__date" > 28 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.muylinux.com/2021/07/28/pulseaudio-15/" >
2021-07-18 10:52:33 +00:00
2021-07-29 23:53:12 +00:00
< canvas class = "article__random-background" > < / canvas >
2021-07-18 10:52:33 +00:00
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.muylinux.com/2021/07/28/pulseaudio-15/" > PulseAudio 15 mejora el soporte de Bluetooth y empieza a desechar X11< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://www.muylinux.com" > MuyLinux< / a > < span class = "article__date" > 28 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/vulnerabilidades-en-el-router-de-fibra-HGU-Askey-Movistar.html" >
2021-07-18 10:52:33 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/vulnerabilidades-en-el-router-de-fibra-HGU-Askey-Movistar.html" > Vulnerabilidades en el router de fibra HGU Askey de Movistar< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://blog.elhacker.net/" > Blog elhacker.NET< / a > < span class = "article__date" > 28 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://au-agenda.com/ccccinema-destiu-2021-nos-reimos-europa/" >
2021-07-18 10:52:33 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://au-agenda.com/ccccinema-destiu-2021-nos-reimos-europa/" > CCCCinema d’ Estiu 2021: ¿De qué nos reímos en Europa?< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://au-agenda.com" > AU Agenda< / a > < span class = "article__date" > 28 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/actualizaciones-de-seguridad-de-apple-para-iOS-i.html" >
2021-07-18 10:52:33 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/actualizaciones-de-seguridad-de-apple-para-iOS-i.html" > Actualizaciones de seguridad de Apple para iOS, iPadOS y macOS< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://blog.elhacker.net/" > Blog elhacker.NET< / a > < span class = "article__date" > 28 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
2021-07-06 22:46:13 +00:00
< article class = "feed__article article" >
2021-07-06 15:58:27 +00:00
< header class = "article__header" >
2021-07-06 22:46:13 +00:00
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://evilmartians.com/chronicles/introducing-anycable-javascript-and-typescript-client" >
2021-07-06 22:46:13 +00:00
2021-07-29 23:53:12 +00:00
< img loading = "lazy" src = "https://cdn.evilmartians.com/front/blocks/common/images/social-5e5bfff.png" alt = "Introducing JavaScript and TypeScript client for AnyCable" >
2021-07-06 22:46:13 +00:00
< / a >
< / p >
2021-07-06 15:58:27 +00:00
< div class = "article__titles" >
2021-07-06 22:46:13 +00:00
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://evilmartians.com/chronicles/introducing-anycable-javascript-and-typescript-client" > Introducing JavaScript and TypeScript client for AnyCable< / a >
2021-07-06 22:46:13 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://evilmartians.com/chronicles" > Martian Chronicles, Evil Martians’ team blog< / a > < span class = "article__date" > 28 07 2021< / span > < / h2 >
2021-07-06 15:58:27 +00:00
< / div >
< / header >
2021-07-18 10:52:33 +00:00
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.muylinux.com/2021/07/27/kde-plasma-5-23-mejoraras/" >
2021-07-18 10:52:33 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.muylinux.com/2021/07/27/kde-plasma-5-23-mejoraras/" > KDE Plasma 5.23 mejorará la gestión de energía y el menú de inicio< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://www.muylinux.com" > MuyLinux< / a > < span class = "article__date" > 27 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.muylinux.com/2021/07/27/zidoo-m6-mini-pc-arm-5g/" >
2021-07-18 10:52:33 +00:00
2021-07-29 23:53:12 +00:00
< canvas class = "article__random-background" > < / canvas >
2021-07-18 10:52:33 +00:00
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.muylinux.com/2021/07/27/zidoo-m6-mini-pc-arm-5g/" > Zidoo M6 es un mini-PC ARM con Linux que cuenta con soporte para 5G< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://www.muylinux.com" > MuyLinux< / a > < span class = "article__date" > 27 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://github.blog/2021-07-27-github-developer-rights-fellowship-stanford-law-school/" >
2021-07-18 10:52:33 +00:00
2021-07-29 23:53:12 +00:00
< img loading = "lazy" src = "https://github.blog/wp-content/uploads/2019/01/cropped-github-favicon-512.png?fit=32%2C32" alt = "Standing up for developers: the GitHub Developer Rights Fellowship at Stanford Law School" >
2021-07-18 10:52:33 +00:00
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://github.blog/2021-07-27-github-developer-rights-fellowship-stanford-law-school/" > Standing up for developers: the GitHub Developer Rights Fellowship at Stanford Law School< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://github.blog" > The GitHub Blog< / a > < span class = "article__date" > 27 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "http://ishadeed.com/article/thinking-about-the-cut-out-effect/" >
2021-07-18 10:52:33 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "http://ishadeed.com/article/thinking-about-the-cut-out-effect/" > Thinking About The Cut-Out Effect: CSS or SVG?< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "http://ishadeed.com/" > Ahmad Shadeed Blog< / a > < span class = "article__date" > 27 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/diferencias-gpus-nvidia-rtx-vs-gtx.html" >
2021-07-18 10:52:33 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/diferencias-gpus-nvidia-rtx-vs-gtx.html" > Diferencias GPUs NVIDIA RTX vs GTX< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://blog.elhacker.net/" > Blog elhacker.NET< / a > < span class = "article__date" > 27 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.monkeyuser.com/2021/fill-in-the-gaps/" >
2021-07-18 10:52:33 +00:00
2021-07-29 23:53:12 +00:00
< img loading = "lazy" src = "https://www.monkeyuser.com/assets/images/2021/222-fill-in-the-gaps.png" alt = "Fill in the gaps" >
2021-07-18 10:52:33 +00:00
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.monkeyuser.com/2021/fill-in-the-gaps/" > Fill in the gaps< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://www.monkeyuser.com" > MonkeyUser< / a > < span class = "article__date" > 27 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.ochobitshacenunbyte.com/2021/07/26/echando-un-vistazo-a-rocky-linux/" >
2021-07-18 10:52:33 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.ochobitshacenunbyte.com/2021/07/26/echando-un-vistazo-a-rocky-linux/" > Echando un vistazo a Rocky Linux< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://www.ochobitshacenunbyte.com" > ochobitshacenunbyte< / a > < span class = "article__date" > 26 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.muylinux.com/2021/07/26/cbl-mariner-microsoft-linux/" >
2021-07-18 10:52:33 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.muylinux.com/2021/07/26/cbl-mariner-microsoft-linux/" > Microsoft refuerza su apuesta por Linux con CBL-Mariner< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://www.muylinux.com" > MuyLinux< / a > < span class = "article__date" > 26 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/tutorial-manual-clonar-disco-duro-hdd-o-unidad-ssd-con-CloneZilla.html" >
2021-07-18 10:52:33 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/tutorial-manual-clonar-disco-duro-hdd-o-unidad-ssd-con-CloneZilla.html" > Clonar Disco Duro HDD o Unidad SSD con CloneZilla< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://blog.elhacker.net/" > Blog elhacker.NET< / a > < span class = "article__date" > 26 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://evilmartians.com/chronicles/accessible-design-from-the-get-go" >
2021-07-18 10:52:33 +00:00
2021-07-29 23:53:12 +00:00
< img loading = "lazy" src = "https://cdn.evilmartians.com/front/blocks/common/images/social-5e5bfff.png" alt = "Accessible design from the get-go" >
2021-07-18 10:52:33 +00:00
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://evilmartians.com/chronicles/accessible-design-from-the-get-go" > Accessible design from the get-go< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://evilmartians.com/chronicles" > Martian Chronicles, Evil Martians’ team blog< / a > < span class = "article__date" > 26 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.cinestudiodor.es/2021/07/otraronda.html" >
2021-07-18 10:52:33 +00:00
2021-07-29 23:53:12 +00:00
< img loading = "lazy" src = "https://1.bp.blogspot.com/-7xs-0YUAxq0/YPIItZv3-oI/AAAAAAAABfo/E8cO51HP8PQitAezDNhJwGJv3YrqdLBqwCLcBGAsYHQ/w640-h640/otraronda_.jpg" alt = "OTRA RONDA" >
2021-07-18 10:52:33 +00:00
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.cinestudiodor.es/2021/07/otraronda.html" > OTRA RONDA< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://www.cinestudiodor.es/" > Cinestudio d' Or< / a > < span class = "article__date" > 25 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.cinestudiodor.es/2021/07/firstcow.html" >
2021-07-18 10:52:33 +00:00
2021-07-29 23:53:12 +00:00
< img loading = "lazy" src = "https://1.bp.blogspot.com/-UdGwv_qMt8Q/YPIDG8MWHrI/AAAAAAAABfg/TpI0P_Vuosg5qdlkdyrg4qjfpEog4gJhgCLcBGAsYHQ/w640-h640/firstcow_.jpg" alt = "FIRST COW" >
2021-07-18 10:52:33 +00:00
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.cinestudiodor.es/2021/07/firstcow.html" > FIRST COW< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://www.cinestudiodor.es/" > Cinestudio d' Or< / a > < span class = "article__date" > 25 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.cinestudiodor.es/2021/07/vacaciones.html" >
2021-07-18 10:52:33 +00:00
2021-07-29 23:53:12 +00:00
< img loading = "lazy" src = "https://1.bp.blogspot.com/-iRJsbD1ZnL0/YPyg2afVS7I/AAAAAAAABf0/MjZNXUajldQ7gucXdqGIDt9VThkPrN40ACLcBGAsYHQ/w640-h640/vacaciones2021_c.jpg" alt = "VACACIONES" >
2021-07-18 10:52:33 +00:00
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.cinestudiodor.es/2021/07/vacaciones.html" > VACACIONES< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://www.cinestudiodor.es/" > Cinestudio d' Or< / a > < span class = "article__date" > 24 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/nuevo-ataque-petitpotam-permite-hackear-dominios-sistemas-windows.html" >
2021-07-18 10:52:33 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/nuevo-ataque-petitpotam-permite-hackear-dominios-sistemas-windows.html" > Nuevo ataque PetitPotam permite hackear dominios de sistemas Windows < / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://blog.elhacker.net/" > Blog elhacker.NET< / a > < span class = "article__date" > 24 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/quien-es-shalev-hulio-el-militar-responsable-pegasus-spyware-israel.html" >
2021-07-18 10:52:33 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/quien-es-shalev-hulio-el-militar-responsable-pegasus-spyware-israel.html" > Quién es Shalev Hulio, el militar responsable de Pegasus< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://blog.elhacker.net/" > Blog elhacker.NET< / a > < span class = "article__date" > 24 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.freebsd.org/news/newsflash/#2021-07-24:1" >
2021-07-18 10:52:33 +00:00
2021-07-29 23:53:12 +00:00
< img loading = "lazy" src = "https://www.FreeBSD.org/logo/logo-full.png" alt = "
April-June 2021 Status Report
">
2021-07-18 10:52:33 +00:00
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.freebsd.org/news/newsflash/#2021-07-24:1" >
April-June 2021 Status Report
< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://www.FreeBSD.org/news/" > FreeBSD News Flash< / a > < span class = "article__date" > 24 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.muylinux.com/2021/07/23/firewalld-1-0/" >
2021-07-18 10:52:33 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.muylinux.com/2021/07/23/firewalld-1-0/" > firewalld 1.0: primera versión mayor del popular cortafuegos para Linux< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://www.muylinux.com" > MuyLinux< / a > < span class = "article__date" > 23 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://workchronicles.com/anonymous-employee-survey/" >
2021-07-18 10:52:33 +00:00
2021-07-29 23:53:12 +00:00
< img loading = "lazy" src = "https://i0.wp.com/workchronicles.com/wp-content/uploads/2020/07/cropped-workchronicles-site-icon-1.png?fit=32%2C32&ssl=1" alt = "Anonymous Employee Survey" >
2021-07-18 10:52:33 +00:00
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://workchronicles.com/anonymous-employee-survey/" > Anonymous Employee Survey< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://workchronicles.com" > Work Chronicles< / a > < span class = "article__date" > 23 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.clojuriststogether.org/news/q3-2021-survey-results/" >
2021-07-18 10:52:33 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://www.clojuriststogether.org/news/q3-2021-survey-results/" > Q3 2021 Survey Results< / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://www.clojuriststogether.org/news/" > News on Clojurists Together< / a > < span class = "article__date" > 23 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
< article class = "feed__article article" >
< header class = "article__header" >
< p class = "article__header-img" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/el-97-de-los-emails-dominios-es-que-usan-los-funcionarios-espana-vulnerables-suplantacion-identidad-phishing.html" >
2021-07-18 10:52:33 +00:00
< canvas class = "article__random-background" > < / canvas >
< / a >
< / p >
< div class = "article__titles" >
< h1 class = "article__title" >
2021-07-29 23:53:12 +00:00
< a target = "_blank" href = "https://blog.elhacker.net/2021/07/el-97-de-los-emails-dominios-es-que-usan-los-funcionarios-espana-vulnerables-suplantacion-identidad-phishing.html" > El 97% de los emails que usan los funcionarios Españoles está desprotegido frente a robos de identidad < / a >
2021-07-18 10:52:33 +00:00
< / h1 >
2021-07-29 23:53:12 +00:00
< h2 class = "article__feed" > < a target = "_blank" href = "https://blog.elhacker.net/" > Blog elhacker.NET< / a > < span class = "article__date" > 23 07 2021< / span > < / h2 >
2021-07-18 10:52:33 +00:00
< / div >
< / header >
< / article >
2021-07-06 15:58:27 +00:00
< / main >
< / div >
< footer class = "footer" >
< hr class = "separator" >
< p class = "footer__text" >
Generated with < a class = "footer__link" href = "https://github.com/tanrax/RSSpaper" > RSSpaper< / a > and a lot of < span class = "footer__heard" > ❤️< / span > ️
< / p >
< / footer >
< / body >
< / html >