aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby <[email protected]>2023-07-13 16:22:38 -0400
committerBobby <[email protected]>2023-07-13 16:22:38 -0400
commit0016ebebabc2783fb9363646c9beb99172ba19e2 (patch)
tree723c3e74cdcaa78946297b5e5865714a50988762
parentc9c0ee4e963e79910dd347c8adc4418ae818690a (diff)
downloadthatcomputerscientist-0016ebebabc2783fb9363646c9beb99172ba19e2.tar.xz
thatcomputerscientist-0016ebebabc2783fb9363646c9beb99172ba19e2.zip
More branding updates
-rw-r--r--README.md8
-rw-r--r--middleware/globalmetamiddleware.py2
-rw-r--r--templates/userpages/home.html2
-rw-r--r--templates/userpages/partials/base.html4
-rw-r--r--users/forms.py2
5 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index 4fdd8106..b225fb1a 100644
--- a/README.md
+++ b/README.md
@@ -1,14 +1,14 @@
-# That Computer Scientist
+# Shifoo (Previously _That Computer Scientist_)
Source Code for my Personal Website.
-- Visit [thatcomputerscientist.com](https://thatcomputerscientist.com) to take a look at the current build.
+- Visit [shi.foo](https://shi.foo) to take a look at the current build.
- Visit [preview.thatcomputerscientist.com](https://preview.thatcomputerscientist.com) to see a instant live deployment of changes whenever I start changing something on my local machine. (_Availability of this server is not guaranteed as it is only active whenever I am working on the project_. Also, sometimes I keep the project loaded in my code editor, while being idle or doing something else – the link is viewable during this time as well.)
## Screenshot
-![Live Screenshot](https://thatcomputerscientist.com/ignis/screenshot)
+![Live Screenshot](https://shi.foo/ignis/screenshot)
-> <sub><sup>_Screenshot served live from [thatcomputerscientist.com](https://thatcomputerscientist.com)'s server. For efficiency purposes, the screenshot is taken once per build and is served from the server's cache. The screenshot is updated whenever I push changes to this repository. Screenshots will generally be updated within 20 seconds after all GitHub Actions Workflows have completed._</sup></sub>
+> <sub><sup>_Screenshot served live from [shi.foo](https://shi.foo)'s server. For efficiency purposes, the screenshot is taken once per build and is served from the server's cache. The screenshot is updated whenever I push changes to this repository. Screenshots will generally be updated within 20 seconds after all GitHub Actions Workflows have completed._</sup></sub>
## Specifications
- Server: [Nginx](https://www.nginx.com/)
diff --git a/middleware/globalmetamiddleware.py b/middleware/globalmetamiddleware.py
index 841b8bf1..6908d570 100644
--- a/middleware/globalmetamiddleware.py
+++ b/middleware/globalmetamiddleware.py
@@ -7,7 +7,7 @@ class GlobalMetaMiddleware:
def __call__(self, request):
request.meta = {
# Default General Meta Tags
- 'description': 'Welcome to the home of That Computer Scientist. I am Kumar Priyansh. This is my personal website where I share all of my thoughts, ideas, and experiences.',
+ 'description': 'Welcome to the home of Shifoo. I am Kumar Priyansh. This is my personal website where I share all of my thoughts, ideas, and experiences.',
'image': 'https://shi.foo/static/images/logo/logo.png',
'url': '{}://{}{}'.format(request.scheme, request.get_host(), request.path),
diff --git a/templates/userpages/home.html b/templates/userpages/home.html
index 0daa5d9c..68a13b2c 100644
--- a/templates/userpages/home.html
+++ b/templates/userpages/home.html
@@ -2,7 +2,7 @@
<div class="main">
<section>
<h2 style="margin-bottom:8px;">Welcome to {{ username }}'s {{ title }}</h2>
- <small>Powered by That Computer Scientist – &copy; 2022</small>
+ <small>Powered by Shifoo – &copy; 2022</small>
</section>
</div>
{% endblock %}
diff --git a/templates/userpages/partials/base.html b/templates/userpages/partials/base.html
index 051dd3c4..11c94cf1 100644
--- a/templates/userpages/partials/base.html
+++ b/templates/userpages/partials/base.html
@@ -7,9 +7,9 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
- content="Welcome to the home of That Computer Scientist. I am Kumar Priyansh. This is my personal website where I share all of my thoughts, ideas, and experiences."
+ content="Welcome to the home of Shifoo. I am Kumar Priyansh. This is my personal website where I share all of my thoughts, ideas, and experiences."
/>
- <title>{{ username }}'s {{ title }} | That Computer Scientist </title>
+ <title>{{ username }}'s {{ title }} | Shifoo </title>
<link preload rel="stylesheet" href="{% static 'css/main.css' %}" />
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'images/favicons/apple-touch-icon.png' %}">
<link rel="icon" type="image/png" sizes="32x32" href="{% static 'images/favicons/favicon-32x32.png' %}">
diff --git a/users/forms.py b/users/forms.py
index a78b26f5..e618cec8 100644
--- a/users/forms.py
+++ b/users/forms.py
@@ -102,7 +102,7 @@ class RegisterForm(forms.Form):
'domain': request.get_host(),
})
message = strip_tags(message)
- # send_mail(subject, message, 'That Computer Scientist <' + settings.EMAIL_HOST_USER + '>', [user.email], fail_silently=False)
+ # send_mail(subject, message, 'Shifoo <' + settings.EMAIL_HOST_USER + '>', [user.email], fail_silently=False)
if (send_email(sender='[email protected]', sender_name='Shifoo', recipient=user.email, subject=subject, body_html=message, body_text=message)):
return user
else: