merge back #20

Merged
joshuafhiggins merged 15 commits from main into dev 2025-07-04 04:39:50 +00:00
3 changed files with 25 additions and 31 deletions
Showing only changes of commit 29cebc99c6 - Show all commits

View File

@@ -2,8 +2,6 @@
title: "Prank Suite"
image: "featured-image.png"
---
*[Formally, Weeb Detector](https://www.youtube.com/embed/grI_YSRRoBY) was a prank I made to use on my brother, since he started watching anime. He deserved this punishment fully. I made a video on how to set it up and a code walk-through aswell.*
NOTE: This software can be used maliciously. I am no way responsible for the use of this software and encourage its use in good faith.
## Features
@@ -12,10 +10,6 @@ NOTE: This software can be used maliciously. I am no way responsible for the use
- Trigger HTML popups
- Remotely play sounds
- Remotely change the user's wallpaper
## Changes since Weeb Detector
- Trigger HTML popups
- Remotely play sounds
- UI Redesign for ease of pranking
- Ability to transfer files for all pranks

View File

@@ -1,6 +1,6 @@
a {
text-decoration: none;
color: var(--accent-color);
color: var(--body-text-color);
&:hover {
color: var(--accent-color-darker);

View File

@@ -18,30 +18,30 @@
<section class="section-description">{{ .Content }}</section>
</div>
{{- $image := partialCached "helper/image" (dict "Context" . "Type" "section") .RelPermalink "section" -}}
{{ if $image.exists }}
<div class="section-image">
{{ if $image.resource }}
{{- $Permalink := $image.resource.RelPermalink -}}
{{- $Width := $image.resource.Width -}}
{{- $Height := $image.resource.Height -}}
{{- if (default true .Page.Site.Params.imageProcessing.cover.enabled) -}}
{{- $thumbnail := $image.resource.Fill "120x120" -}}
{{- $Permalink = $thumbnail.RelPermalink -}}
{{- $Width = $thumbnail.Width -}}
{{- $Height = $thumbnail.Height -}}
{{- end -}}
<img src="{{ $Permalink }}"
width="{{ $Width }}"
height="{{ $Height }}"
loading="lazy">
{{ else }}
<img src="{{ $image.permalink }}" loading="lazy" />
{{ end }}
</div>
{{ end }}
<!-- {{- $image := partialCached "helper/image" (dict "Context" . "Type" "section") .RelPermalink "section" -}}-->
<!-- {{ if $image.exists }}-->
<!-- <div class="section-image">-->
<!-- {{ if $image.resource }}-->
<!-- {{- $Permalink := $image.resource.RelPermalink -}}-->
<!-- {{- $Width := $image.resource.Width -}}-->
<!-- {{- $Height := $image.resource.Height -}}-->
<!-- -->
<!-- {{- if (default true .Page.Site.Params.imageProcessing.cover.enabled) -}}-->
<!-- {{- $thumbnail := $image.resource.Fill "120x120" -}}-->
<!-- {{- $Permalink = $thumbnail.RelPermalink -}}-->
<!-- {{- $Width = $thumbnail.Width -}}-->
<!-- {{- $Height = $thumbnail.Height -}}-->
<!-- {{- end -}}-->
<!-- -->
<!-- <img src="{{ $Permalink }}" -->
<!-- width="{{ $Width }}"-->
<!-- height="{{ $Height }}" -->
<!-- loading="lazy">-->
<!-- {{ else }}-->
<!-- <img src="{{ $image.permalink }}" loading="lazy" />-->
<!-- {{ end }}-->
<!-- </div>-->
<!-- {{ end }}-->
</div>
</header>