Repository: kencx/startpage
Branch: master
Commit: e43602181f23
Files: 4
Total size: 5.4 KB
Directory structure:
gitextract_k1s_4qin/
├── LICENSE
├── README.md
├── index.html
└── style.css
================================================
FILE CONTENTS
================================================
================================================
FILE: LICENSE
================================================
MIT License
Copyright (c) [2021] [kennethcheo]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================
FILE: README.md
================================================
# Startpage
[Live Preview](https://kencx.github.io/startpage/)
Feel free to fork and make your own changes!
- Font: Fira Code
- Colorscheme: Gruvbox Dark
- Cat Gif: [Here](https://twitter.com/avogado6/status/1165595520967954432?s=19)

================================================
FILE: index.html
================================================
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>~/startpage</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<div class="left-container">
<div class="gif">
<img src="cat.gif" />
</div>
</div>
<div class="right-container">
<div class="head">
<p>> cd ~/<span class="blinking">_</span></p>
</div>
<div class="bookmarks">
<div class="category">
<div class="links">
<li class="title">work</li>
<li><a href="https://gmail.com">gmail</a></li>
<li><a href="https://outlook.office.com">outlook</a></li>
<li><a href="https://linkedin.com">linkedin</a></li>
<li><a href="https://vim.rtorr.com/">vim</a></li>
</div>
</div>
<div class="category">
<div class="links">
<li class="title">dev</li>
<li><a href="https://github.com/">github</a></li>
<li><a href="https://lobste.rs/">lobste.rs</a></li>
<li><a href="https://mankier.com/">mankier</a></li>
<li><a href="https://devdocs.io/">devdocs</a></li>
</div>
</div>
<div class="category">
<div class="links">
<li class="title"><a style="color: #EADBB2" href="https://reddit.com">reddit</a></li>
<li><a href="https://reddit.com/r/programming/">programming</a></li>
<li><a href="https://reddit.com/r/selfhosted/">selfhosted</a></li>
<li><a href="https://reddit.com/r/unixporn/">unixporn</a></li>
<li><a href="https://reddit.com/r/mechanicalkeyboards/">mk</a></li>
</div>
</div>
<div class="category">
<div class="links">
<li class="title">play</li>
<li><a href="https://monkeytype.com/">monkeytype</a></li>
<li><a href="https://youtube.com/">youtube</a></li>
<li><a href="https://twitch.tv/">twitch</a></li>
<li><a href="https://netflix.com/">netflix</a></li>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
================================================
FILE: style.css
================================================
:root {
--color-bg: #282828;
--color-fg: #EADBB2;
--color-link: #8F9191;
--color-link-visited: #668F8B;
--color-link-hover: #FA7921 ;
}
html, body {
background: var(--color-bg);
color: var(--color-fg);
font-family: "Fira Code";
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
.container {
display: grid;
grid-template-columns: 1fr 460px 600px 1fr;
grid-template-areas:
". left right .";
column-gap: 80px;
justify-items: center;
align-items: center;
min-height: 100%;
}
.left-container {
grid-area: left;
aspect-ratio: 1/1;
}
.right-container {
grid-area: right;
height: 50%;
width: 100%;
}
.gif img {
max-width: 100%;
max-height: 100%;
}
.head {
display: flex;
flex-direction: column;
align-items: center;
font-size: 40px;
padding-top: 60px;
}
.category {
display: flex;
flex-direction: column;
width: 180px;
}
.bookmarks {
display: flex;
justify-content: center;
}
.links {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 20px;
padding-bottom: 20px;
}
.title {
font-size: 20px;
}
li {
font-size: 16px;
list-style-type: none;
padding: 5px
}
a:link {
text-decoration: none;
color: var(--color-link);
}
a:visited {
color: var(--color-link-visited);
}
a:hover {
color: var(--color-link-hover);
}
.blinking {
animation: opacity 1s ease-in-out infinite;
opacity: 1;
}
@keyframes opacity {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
gitextract_k1s_4qin/ ├── LICENSE ├── README.md ├── index.html └── style.css
Condensed preview — 4 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (6K chars).
[
{
"path": "LICENSE",
"chars": 1072,
"preview": "MIT License\n\nCopyright (c) [2021] [kennethcheo]\n\nPermission is hereby granted, free of charge, to any person obtaining a"
},
{
"path": "README.md",
"chars": 267,
"preview": "# Startpage\n\n[Live Preview](https://kencx.github.io/startpage/)\n\nFeel free to fork and make your own changes!\n\n- Font: F"
},
{
"path": "index.html",
"chars": 2652,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n <meta charset=\"UTF-8\">\n <title>~/startpage</title>\n <link rel=\"styles"
},
{
"path": "style.css",
"chars": 1533,
"preview": ":root {\n --color-bg: #282828;\n --color-fg: #EADBB2;\n --color-link: #8F9191;\n --color-link-visited: #668F8B;\n"
}
]
About this extraction
This page contains the full source code of the kencx/startpage GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 4 files (5.4 KB), approximately 1.5k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.