Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Commit

Permalink
Rename files for consistency and update project settings.
Browse files Browse the repository at this point in the history
Updated file names to follow a consistent naming convention, improving readability and organization. Enhanced the project settings for better package management and code documentation. Simplified dependencies in requirements.txt by removing unused libraries.
  • Loading branch information
DefinetlyNotAI committed Sep 11, 2024
1 parent 58ce654 commit a76a476
Show file tree
Hide file tree
Showing 14 changed files with 36 additions and 10 deletions.
8 changes: 7 additions & 1 deletion .idea/Pwn-Bot.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions Blot/wip.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
const width = 500; // Width of our canvas
const height = 500; // Height of our canvas

setDocDimensions(width, height);

// Head
const headRadius = 20;
const headPosition = [width / 2, height * 0.75]; // Position the head towards the top center
drawLines(bt.circle(headPosition, headRadius));

// Torso
const torsoRadius = 40;
const torsoPosition = [width / 2, height * 0.5]; // Position the torso below the head
drawLines(bt.circle(torsoPosition, torsoRadius));

// Spine
drawLines([
[[headPosition[0], headPosition[1] + headRadius], [torsoPosition[0], torsoPosition[1] - torsoRadius]]
]);

// Arms
const armLength = 100;
drawLines([
[[headPosition[0] - armLength, headPosition[1]], [headPosition[0], headPosition[1]]],
[[headPosition[0] + armLength, headPosition[1]], [headPosition[0], headPosition[1]]]
]);

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
11 changes: 2 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
psutil~=5.9.8
WMI~=1.5.1
tqdm~=4.66.4
pathlib~=1.0.1
colorlog~=6.8.2
discord~=2.3.2
discord.py~=2.4.0
requests~=2.32.3
DateTime~=5.5
opencv-python~=4.10.0.84
dlib~=19.24.5
imutils~=0.5.4
numpy~=1.26.4
geocoder~=1.38.1
pathlib~=1.0.1

0 comments on commit a76a476

Please sign in to comment.