Найден корректный robots.txt
Файл управления сканированием сайта роботами
?
Robots.txt указывает поисковым роботам, какие страницы сканировать, а какие — нет. Ошибки в файле могут случайно закрыть важные разделы от индексации.
Robots.txt настроен корректно. Размер файла: 10773 байт. Загружен за: 0сек.
Проверяемая страница не запрещена в robots.txt.
Показать содержимое robots.txt
# As a condition of accessing this website, you agree to abide by the following
# content signals:
# (a) If a Content-Signal = yes, you may collect content for the corresponding
# use.
# (b) If a Content-Signal = no, you may not collect content for the
# corresponding use.
# (c) If the website operator does not include a Content-Signal for a
# corresponding use, the website operator neither grants nor restricts
# permission via Content-Signal with respect to the corresponding use.
# The content signals and their meanings are:
# search: building a search index and providing search results (e.g., returning
# hyperlinks and short excerpts from your website's contents). Search does not
# include providing AI-generated search summaries.
# ai-input: inputting content into one or more AI models (e.g., retrieval
# augmented generation, grounding, or other real-time taking of content for
# generative AI search answers).
# ai-train: training or fine-tuning AI models.
# use: how AI systems may consume the content (immediate, reference, or full).
# ANY RESTRICTIONS EXPRESSED VIA CONTENT SIGNALS ARE EXPRESS RESERVATIONS OF
# RIGHTS UNDER ARTICLE 4 OF THE EUROPEAN UNION DIRECTIVE 2019/790 ON COPYRIGHT
# AND RELATED RIGHTS IN THE DIGITAL SINGLE MARKET.
# BEGIN Cloudflare Managed content
User-agent: *
Content-Signal: search=yes,ai-train=no,use=reference
Allow: /
User-agent: Amazonbot
Disallow: /
User-agent: Applebot-Extended
Disallow: /
User-agent: Bytespider
Disallow: /
User-agent: CCBot
Disallow: /
User-agent: ClaudeBot
Disallow: /
User-agent: CloudflareBrowserRenderingCrawler
Disallow: /
User-agent: Google-Extended
Disallow: /
User-agent: GPTBot
Disallow: /
User-agent: meta-externalagent
Disallow: /
# END Cloudflare Managed Content
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Filip Jerzy Pizło</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
line-height: 1.7;
color: #2d3748;
background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #ffecd2 100%);
background-attachment: fixed;
min-height: 100vh;
padding: 1rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2.5rem;
background: rgba(255, 255, 255, 0.97);
min-height: calc(100vh - 2rem);
border-radius: 24px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
}
nav {
border-bottom: 3px solid transparent;
border-image: linear-gradient(90deg, #667eea, #f093fb, #f5576c) 1;
padding-bottom: 1.25rem;
margin-bottom: 2.5rem;
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
nav a {
color: #4a5568;
text-decoration: none;
margin-right: 1.5rem;
font-weight: 600;
padding: 0.5rem 1rem;
border-radius: 50px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
nav a:hover {
color: #fff;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
h1 {
font-size: 2.75rem;
margin-bottom: 1.5rem;
color: #1a202c;
font-weight: 800;
background: linear-gradient(135deg, #667eea 0%, #f5576c 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: -0.02em;
}
h2 {
font-size: 2rem;
margin: 2.5rem 0 1rem;
color: #2d3748;
font-weight: 700;
position: relative;
padding-left: 1rem;
}
h2::before {
content: '';
position: absolute;
left: 0;
top: 0.3rem;
bottom: 0.3rem;
width: 4px;
background: linear-gradient(180deg, #667eea 0%, #f093fb 100%);
border-radius: 2px;
}
h3 {
font-size: 1.5rem;
margin: 2rem 0 0.75rem;
color: #4a5568;
font-weight: 600;
}
p {
margin-bottom: 1.25rem;
line-height: 1.8;
color: #4a5568;
}
a {
color: #667eea;
text-decoration: none;
transition: all 0.2s ease;
font-weight: 500;
}
a:hover {
color: #764ba2;
text-decoration: underline;
text-underline-offset: 3px;
}
ul, ol {
margin: 1.25rem 0 1.25rem 2rem;
}
li {
margin-bottom: 0.75rem;
position: relative;
}
li::marker {
color: #667eea;
}
code {
background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
padding: 0.25rem 0.5rem;
border-radius: 6px;
font-family: 'JetBrains Mono', 'Monaco', 'Menlo', monospace;
font-size: 0.9em;
color: #764ba2;
border: 1px solid rgba(102, 126, 234, 0.2);
}
pre {
background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
color: #f7fafc;
padding: 1.5rem;
border-radius: 12px;
overflow-x: auto;
margin: 1.5rem 0;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
}
pre code {
background: none;
padding: 0;
color: #f7fafc;
border: none;
}
blockquote {
border-left: 4px solid #667eea;
padding: 1rem 1.5rem;
margin: 1.5rem 0;
color: #4a5568;
font-style: italic;
background: linear-gradient(90deg, rgba(102, 126, 234, 0.1) 0%, transparent 100%);
border-radius: 0 12px 12px 0;
}
hr {
border: none;
height: 3px;
background: linear-gradient(90deg, #667eea, #f093fb, #f5576c, transparent);
margin: 3rem 0;
border-radius: 2px;
}
img {
max-width: 100%;
height: auto;
border-radius: 12px;
}
/* Index page with author photo */
.author-section {
display: flex;
gap: 3rem;
align-items: flex-start;
flex-wrap: wrap;
}
.author-photo {
flex: 0 0 450px;
}
.author-photo img {
width: 100%;
border-radius: 16px;
box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.5);
transition: all 0.4s ease;
}
.author-photo img:hover {
transform: scale(1.02) rotate(1deg);
box-shadow: 0 30px 60px rgba(102, 126, 234, 0.4);
}
.author-content {
flex: 1;
min-width: 300px;
}
/* Photo gallery */
.gallery-header {
margin-bottom: 2rem;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 2rem;
}
.gallery-item {
cursor: pointer;
overflow: hidden;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
aspect-ratio: 4/3;
background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
position: relative;
}
.gallery-item::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
opacity: 0;
transition: opacity 0.3s ease;
}
.gallery-item:hover {
transform: translateY(-8px) scale(1.02);
box-shadow: 0 20px 40px rgba(102, 126, 234, 0.25);
}
.gallery-item:hover::after {
opacity: 1;
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gallery-item:hover img {
transform: scale(1.1);
}
/* Lightbox */
.lightbox {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(26, 32, 44, 0.98);
z-index: 1000;
cursor: pointer;
backdrop-filter: blur(10px);
}
.lightbox.active {
display: flex;
align-items: center;
justify-content: center;
}
.lightbox img {
max-width: 95%;
max-height: 95%;
object-fit: contain;
box-shadow: 0 0 60px rgba(102, 126, 234, 0.3);
border-radius: 8px;
margin: auto;
display: block;
}
#lightbox-loading {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-size: 1.2rem;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}
#lightbox-loading.visible {
opacity: 1;
}
/* Resources page */
.resource-list {
list-style: none;
margin-left: 0;
}
.resource-list li {
padding: 1.25rem;
background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
border-radius: 12px;
margin-bottom: 0.75rem;
display: flex;
align-items: center;
gap: 1rem;
transition: all 0.3s ease;
border: 1px solid rgba(102, 126, 234, 0.1);
}
.resource-list li:hover {
transform: translateX(8px);
background: linear-gradient(135deg, #fff 0%, #f7fafc 100%);
box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
border-color: rgba(102, 126, 234, 0.3);
}
.resource-list li::before {
content: "📄";
font-size: 1.75rem;
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
@media (max-width: 768px) {
body {
padding: 0.5rem;
}
.container {
padding: 1.5rem;
border-radius: 16px;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.5rem;
}
nav {
justify-content: center;
}
nav a {
margin-right: 0.5rem;
padding: 0.4rem 0.8rem;
font-size: 0.9rem;
}
.author-section {
flex-direction: column;
}
.author-photo {
flex: 0 0 auto;
width: 100%;
max-width: 450px;
margin: 0 auto;
}
.gallery-grid {
grid-template-columns: 1fr;
gap: 1rem;
}
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Selection styling */
::selection {
background-color: #667eea;
color: white;
}
</style>
</head>
<body>
<div class="container">
<nav>
<a href="index.html" style="font-weight:bold">Home</a>
<a href="papers.html">Papers</a>
<a href="resume.html">Resume</a>
<a href="photos.html">Photos</a>
</nav>
<div class="author-section">
<div class="author-photo">
<img src="images/author-1x.jpg"
srcset="images/author-1x.jpg 1x, images/author-2x.jpg 2x"
sizes="450px"
alt="Author photo">
</div>
<div class="author-content">
<h1>Filip Jerzy Pizło</h1>
<p>I like to design and implement programming languages.</p>
<p>I'm the Director of Programmability and Data Model at Roblox. Previously, I worked at Epic Games (Senior Director of Language Engineering) and Apple (Manager of the JavaScriptCore Team).</p>
<p>Some of my top accomplishments:</p>
<ul>
<li>Inventor of <a href="https://fil-c.org/">Fil-C</a></li>
<li>Architect of a <a href="https://webkit.org/blog/10308/speculation-in-javascriptcore/">lot of JavaScriptCore's optimizations</a></li>
</ul>
<p>Cool recent stuff:</p>
<ul>
<li><a href="https://zef-lang.dev/">Zef</a> programming language</li>
<li><a href="https://yoshell.ai/">Yosh</a>, the AI bash fork</li>
</ul>
<p>I post a lot as <a href="https://x.com/filpizlo">@filpizlo on X</a>.</p>
<p>I usually go by "Phil" when speaking English.</p>
</div>
</div>
</div>
</body>
</html>