import { NextSeo } from "next-seo";
import Layout from "../components/Layout";
import Content from "../components/Content";
import Link from "../components/Link";
import CodeBlock from "../components/CodeBlock/CodeBlock";
import { styled, theme } from "../lib/styles/stitches.config";
import type { ReactElement } from "react";
import backgroundImg from "../public/static/images/zip/bg.jpg";
const Background = styled("main", {
display: "flex",
width: "100%",
minHeight: "450px",
padding: "1.5em 0",
justifyContent: "center",
alignItems: "center",
backgroundImage: `url(${backgroundImg.src})`,
backgroundRepeat: "repeat",
backgroundPosition: "center",
});
const Container = styled("div", {
maxWidth: theme.sizes.maxLayoutWidth,
margin: "0 auto",
display: "block",
});
const Zip = () => {
return (
<>
sundar@
google:
~${" "}
mv /root
/stable_products_that_people_rely_on/
googledomains.zip /tmp/
sundar@
google:
~${" "}
crontab{" "}
-l
# TODO(someone else): make super duper sure this only deletes actual zip files and *NOT* the sketchy domains
ending with file extensions released by us & purchased on our registrar (which i just yeeted btw cuz i'm
bored & also my evil superpowers are fueled by my reckless disregard for the greater good of the internet).
- xoxo sundar <3 @monthlyrm{" "}
-f /tmp/
*.zip
sundar@
google:
~${" "}
reboot 0
>
);
};
// disable layout's default styles so the wallpaper component can go edge-to-edge:
Zip.getLayout = (page: ReactElement) => {
return (
{page}
);
};
export default Zip;