mirror of
https://github.com/tanrax/RSSPAPER.git
synced 2025-01-31 00:16:02 -05:00
973 lines
51 KiB
HTML
973 lines
51 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<title>RSSPAPER</title>
|
||
<!-- 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">
|
||
<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">
|
||
<meta name="generator" content="RSSPAPER">
|
||
<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;
|
||
--height-img: 10rem;
|
||
}
|
||
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;
|
||
}
|
||
|
||
.article__header-img > a > img {
|
||
height: var(--height-img);
|
||
object-position: center;
|
||
object-fit: contain;
|
||
}
|
||
.article__random-background {
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
</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 {
|
||
height: var(--height-img);
|
||
}
|
||
|
||
.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;
|
||
|
||
}
|
||
.feed__article:nth-child(1) .article__header {
|
||
display: flex;
|
||
flex-direction: column;
|
||
height: 100%;
|
||
}
|
||
.feed__article:nth-child(1) .article__header-img {
|
||
height: 100%;
|
||
}
|
||
</style>
|
||
<!-- End CSS -->
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<header class="header">
|
||
<h1 class="title">RSSPAPER</h1>
|
||
<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">
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://vlctechhub.org/events/como-se-hacen-posible-los-micro-y-nano-pagos-sobre-blockchain-60f90794a62a">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="https://vlctechhub.org/">VLCTechHub Feed</a> <span class="article__date">30 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://www.muylinux.com/2021/07/29/heroic-games-launcher-1-9/">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="https://www.muylinux.com">MuyLinux</a> <span class="article__date">29 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="http://neofronteras.com/?p=7525">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<a target="_blank" href="http://neofronteras.com/?p=7525">Ven disco protolunar</a>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="http://neofronteras.com">NeoFronteras</a> <span class="article__date">29 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="http://neofronteras.com/?p=7523">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<a target="_blank" href="http://neofronteras.com/?p=7523">Más predicciones de plegamientos</a>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="http://neofronteras.com">NeoFronteras</a> <span class="article__date">29 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="http://neofronteras.com/?p=7520">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<a target="_blank" href="http://neofronteras.com/?p=7520">Actualidad astronómica: el kiosco del astrónomo</a>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="http://neofronteras.com">NeoFronteras</a> <span class="article__date">29 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://www.ochobitshacenunbyte.com/2021/07/29/como-utilizar-efibootmgr-para-manejar-el-menu-de-uefi/">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="https://www.ochobitshacenunbyte.com">ochobitshacenunbyte</a> <span class="article__date">29 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://www.muylinux.com/2021/07/29/audacity-telemetria-spyware/">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="https://www.muylinux.com">MuyLinux</a> <span class="article__date">29 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://blog.elhacker.net/2021/07/blackmatter-y-lockbit-20-novedades-evolucion-mundo-ransomware.html">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<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>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://au-agenda.com/no-te-metas-politica-rico-tour/">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<a target="_blank" href="https://au-agenda.com/no-te-metas-politica-rico-tour/">No te metas en política. Qué rico Tour</a>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="https://au-agenda.com">AU Agenda</a> <span class="article__date">29 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="http://www.fsf.org/news/fsf-job-opportunity-operations-assistant-1">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<a target="_blank" href="http://www.fsf.org/news/fsf-job-opportunity-operations-assistant-1">FSF job opportunity: Operations assistant</a>
|
||
</h1>
|
||
<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>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://www.ochobitshacenunbyte.com/2021/07/28/como-migrar-centos-8-a-rocky-linux-8/">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="https://www.ochobitshacenunbyte.com">ochobitshacenunbyte</a> <span class="article__date">28 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://blog.elhacker.net/2021/07/supuesta-filtracion-4-billones-de.html">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<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>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://github.blog/2021-07-28-new-code-scanning-integrations-open-source-security-tools/">
|
||
|
||
<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">
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="https://github.blog">The GitHub Blog</a> <span class="article__date">28 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://www.muylinux.com/2021/07/28/pulseaudio-15/">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="https://www.muylinux.com">MuyLinux</a> <span class="article__date">28 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://blog.elhacker.net/2021/07/vulnerabilidades-en-el-router-de-fibra-HGU-Askey-Movistar.html">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<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>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://au-agenda.com/ccccinema-destiu-2021-nos-reimos-europa/">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="https://au-agenda.com">AU Agenda</a> <span class="article__date">28 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://blog.elhacker.net/2021/07/actualizaciones-de-seguridad-de-apple-para-iOS-i.html">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<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>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://evilmartians.com/chronicles/introducing-anycable-javascript-and-typescript-client">
|
||
|
||
<img loading="lazy" src="https://cdn.evilmartians.com/front/blocks/common/images/social-5e5bfff.png" alt="Introducing JavaScript and TypeScript client for AnyCable">
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<a target="_blank" href="https://evilmartians.com/chronicles/introducing-anycable-javascript-and-typescript-client">Introducing JavaScript and TypeScript client for AnyCable</a>
|
||
</h1>
|
||
<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>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://www.muylinux.com/2021/07/27/kde-plasma-5-23-mejoraras/">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="https://www.muylinux.com">MuyLinux</a> <span class="article__date">27 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://www.muylinux.com/2021/07/27/zidoo-m6-mini-pc-arm-5g/">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="https://www.muylinux.com">MuyLinux</a> <span class="article__date">27 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://github.blog/2021-07-27-github-developer-rights-fellowship-stanford-law-school/">
|
||
|
||
<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">
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="https://github.blog">The GitHub Blog</a> <span class="article__date">27 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="http://ishadeed.com/article/thinking-about-the-cut-out-effect/">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<a target="_blank" href="http://ishadeed.com/article/thinking-about-the-cut-out-effect/">Thinking About The Cut-Out Effect: CSS or SVG?</a>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="http://ishadeed.com/">Ahmad Shadeed Blog</a> <span class="article__date">27 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://blog.elhacker.net/2021/07/diferencias-gpus-nvidia-rtx-vs-gtx.html">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<a target="_blank" href="https://blog.elhacker.net/2021/07/diferencias-gpus-nvidia-rtx-vs-gtx.html">Diferencias GPUs NVIDIA RTX vs GTX</a>
|
||
</h1>
|
||
<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>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://www.monkeyuser.com/2021/fill-in-the-gaps/">
|
||
|
||
<img loading="lazy" src="https://www.monkeyuser.com/assets/images/2021/222-fill-in-the-gaps.png" alt="Fill in the gaps">
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<a target="_blank" href="https://www.monkeyuser.com/2021/fill-in-the-gaps/">Fill in the gaps</a>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="https://www.monkeyuser.com">MonkeyUser</a> <span class="article__date">27 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://www.ochobitshacenunbyte.com/2021/07/26/echando-un-vistazo-a-rocky-linux/">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<a target="_blank" href="https://www.ochobitshacenunbyte.com/2021/07/26/echando-un-vistazo-a-rocky-linux/">Echando un vistazo a Rocky Linux</a>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="https://www.ochobitshacenunbyte.com">ochobitshacenunbyte</a> <span class="article__date">26 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://www.muylinux.com/2021/07/26/cbl-mariner-microsoft-linux/">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="https://www.muylinux.com">MuyLinux</a> <span class="article__date">26 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://blog.elhacker.net/2021/07/tutorial-manual-clonar-disco-duro-hdd-o-unidad-ssd-con-CloneZilla.html">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<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>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://evilmartians.com/chronicles/accessible-design-from-the-get-go">
|
||
|
||
<img loading="lazy" src="https://cdn.evilmartians.com/front/blocks/common/images/social-5e5bfff.png" alt="Accessible design from the get-go">
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<a target="_blank" href="https://evilmartians.com/chronicles/accessible-design-from-the-get-go">Accessible design from the get-go</a>
|
||
</h1>
|
||
<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>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://www.cinestudiodor.es/2021/07/otraronda.html">
|
||
|
||
<img loading="lazy" src="https://1.bp.blogspot.com/-7xs-0YUAxq0/YPIItZv3-oI/AAAAAAAABfo/E8cO51HP8PQitAezDNhJwGJv3YrqdLBqwCLcBGAsYHQ/w640-h640/otraronda_.jpg" alt="OTRA RONDA">
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<a target="_blank" href="https://www.cinestudiodor.es/2021/07/otraronda.html">OTRA RONDA</a>
|
||
</h1>
|
||
<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>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://www.cinestudiodor.es/2021/07/firstcow.html">
|
||
|
||
<img loading="lazy" src="https://1.bp.blogspot.com/-UdGwv_qMt8Q/YPIDG8MWHrI/AAAAAAAABfg/TpI0P_Vuosg5qdlkdyrg4qjfpEog4gJhgCLcBGAsYHQ/w640-h640/firstcow_.jpg" alt="FIRST COW">
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<a target="_blank" href="https://www.cinestudiodor.es/2021/07/firstcow.html">FIRST COW</a>
|
||
</h1>
|
||
<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>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://www.cinestudiodor.es/2021/07/vacaciones.html">
|
||
|
||
<img loading="lazy" src="https://1.bp.blogspot.com/-iRJsbD1ZnL0/YPyg2afVS7I/AAAAAAAABf0/MjZNXUajldQ7gucXdqGIDt9VThkPrN40ACLcBGAsYHQ/w640-h640/vacaciones2021_c.jpg" alt="VACACIONES">
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<a target="_blank" href="https://www.cinestudiodor.es/2021/07/vacaciones.html">VACACIONES</a>
|
||
</h1>
|
||
<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>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://blog.elhacker.net/2021/07/nuevo-ataque-petitpotam-permite-hackear-dominios-sistemas-windows.html">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<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>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://blog.elhacker.net/2021/07/quien-es-shalev-hulio-el-militar-responsable-pegasus-spyware-israel.html">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<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>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://www.freebsd.org/news/newsflash/#2021-07-24:1">
|
||
|
||
<img loading="lazy" src="https://www.FreeBSD.org/logo/logo-full.png" alt="
|
||
|
||
|
||
April-June 2021 Status Report
|
||
">
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<a target="_blank" href="https://www.freebsd.org/news/newsflash/#2021-07-24:1">
|
||
|
||
|
||
April-June 2021 Status Report
|
||
</a>
|
||
</h1>
|
||
<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>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://www.muylinux.com/2021/07/23/firewalld-1-0/">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="https://www.muylinux.com">MuyLinux</a> <span class="article__date">23 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://workchronicles.com/anonymous-employee-survey/">
|
||
|
||
<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">
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<a target="_blank" href="https://workchronicles.com/anonymous-employee-survey/">Anonymous Employee Survey</a>
|
||
</h1>
|
||
<h2 class="article__feed"><a target="_blank" href="https://workchronicles.com">Work Chronicles</a> <span class="article__date">23 07 2021</span></h2>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<a target="_blank" href="https://www.clojuriststogether.org/news/q3-2021-survey-results/">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<a target="_blank" href="https://www.clojuriststogether.org/news/q3-2021-survey-results/">Q3 2021 Survey Results</a>
|
||
</h1>
|
||
<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>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
<article class="feed__article article">
|
||
<header class="article__header">
|
||
<p class="article__header-img">
|
||
<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">
|
||
|
||
<canvas class="article__random-background"></canvas>
|
||
|
||
</a>
|
||
</p>
|
||
<div class="article__titles">
|
||
<h1 class="article__title">
|
||
<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>
|
||
</h1>
|
||
<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>
|
||
</div>
|
||
</header>
|
||
</article>
|
||
|
||
</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>
|