From 7a35fd5bcaf3c80f71c25c03b4ab1780089b9aa0 Mon Sep 17 00:00:00 2001 From: Arnav Bhatt Date: Tue, 8 Nov 2022 22:44:58 +0530 Subject: paypal article --- articles/paypal-sucks.md | 14 +++ data/about.html | 70 +++++++++++++ data/assets/images/logo.png | Bin 0 -> 6231 bytes data/assets/images/paypal-is-dumb.png | Bin 0 -> 17697 bytes data/contact.html | 37 +++++++ data/favicon.ico | Bin 0 -> 21662 bytes data/softwares.html | 34 ++++++ data/style.css | 190 ++++++++++++++++++++++++++++++++++ 8 files changed, 345 insertions(+) create mode 100644 articles/paypal-sucks.md create mode 100755 data/about.html create mode 100755 data/assets/images/logo.png create mode 100644 data/assets/images/paypal-is-dumb.png create mode 100755 data/contact.html create mode 100755 data/favicon.ico create mode 100755 data/softwares.html create mode 100755 data/style.css diff --git a/articles/paypal-sucks.md b/articles/paypal-sucks.md new file mode 100644 index 0000000..e4cedba --- /dev/null +++ b/articles/paypal-sucks.md @@ -0,0 +1,14 @@ +Paypal sucks + +So on previous saturday, I was supposed to make payment for my VPS (hosted by Hetzner) where I host this website, private Matrix server and private VPN. However, while trying to do so I faced this dumb issue: +![screenshot](assets/images/paypal-is-dumb.png) + +...and this started a 3 days worth of constant arguement with bank as well as Paypal. +Basically I was facing this error above even though I already enabled the option for international transaction for my debit card. So I contacted Paypal and they were telling me that they have no issues on their side and it was probably from the card issuer (aka bank) that was causing the problem while the bank was telling me my debit card was already capable for international transaction. I also tried 2 other debit cards capable for international transaction and all of them faced same issue. This despair continued for 3 more days until I somehow successfully made payment through Paypal. I still have no idea if the problem earlier was from the bank or from Paypal. + +## Necessity of Paypal +The reason why I am dependent on Paypal as I don't currently possess a credit card (as if I trust any website to just give off my card information anyway) nor I could do an international wire transfer as it would be very expensive to do so here. For context, doing a 10 Euro (around 817.69 Indian Rupees) transfer to someone would actually cost me around 21 euros after including taxes! (or around 1700 Indian Rupees) +Hence why I found Paypal to be quite appealing as I can easily do international transaction without too much additional cost just by using my debit card. However, my experience with Paypal is not going great either if I am being honest. + +;tags:rant software +;description:I hate the antichrist I hate the antichrist I hate the antichrist diff --git a/data/about.html b/data/about.html new file mode 100755 index 0000000..de7dd63 --- /dev/null +++ b/data/about.html @@ -0,0 +1,70 @@ + + + + + + + + + + + Ghativega - About + + + + + + +
+ +
+

Introduction

+

Hi there. My name is Arnav Bhatt and I go by the internet alias as arnavbhatt288.
I am 18 years old and a self-taught programmer with C language being my current expertise while also exploring other programming languages to learn.

+
+ +

Career

+

Currently a student in a college pursuing for Bachelor of Technology in Computer Science. On my free time I mainly contribute to open source projects but also occassionally create my own projects as well.

+
+ +

Contributions

+ + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionContributions
ReactOSOpen source Windows XP/2003 clone written completely from scratchTranslations, MSGINA Shutdown/Logoff dialog box overhaul, SYSDM Environment dialog box overhaul
HaikuOpen source spiritual successor to BeOSPorted softwares to Haiku
postmarketOSLinux distro for phones and other mobile devicesPorted pmOS to Samsung Galaxy Grand 2
+
+ +
+ + + + diff --git a/data/assets/images/logo.png b/data/assets/images/logo.png new file mode 100755 index 0000000..d4e80cd Binary files /dev/null and b/data/assets/images/logo.png differ diff --git a/data/assets/images/paypal-is-dumb.png b/data/assets/images/paypal-is-dumb.png new file mode 100644 index 0000000..1cd429c Binary files /dev/null and b/data/assets/images/paypal-is-dumb.png differ diff --git a/data/contact.html b/data/contact.html new file mode 100755 index 0000000..1fae131 --- /dev/null +++ b/data/contact.html @@ -0,0 +1,37 @@ + + + + + + + + + + + Ghativega - Contact + + + + + + +
+ +
+

Contact

+

Matrix: arnav@ghativega.in/arnavbhatt288@reactos.org
Email: arnavbhatt288 (at) ghativega (dot) in
ReactOS Forums/Mattermost: @arnavbhatt288
Telegram: @durbuddhi

+

I respond fastest to Matrix and Email messages so that might be your safest bet. However, keep in mind that it might even take days to respond to you, so be patient.

+
+ + + + diff --git a/data/favicon.ico b/data/favicon.ico new file mode 100755 index 0000000..fc19112 Binary files /dev/null and b/data/favicon.ico differ diff --git a/data/softwares.html b/data/softwares.html new file mode 100755 index 0000000..7eefbe2 --- /dev/null +++ b/data/softwares.html @@ -0,0 +1,34 @@ + + + + + + + + + + + Ghativega - Softwares + + + + + + +
+
+

Coming Soon

+
+ + + + diff --git a/data/style.css b/data/style.css new file mode 100755 index 0000000..6e3ad39 --- /dev/null +++ b/data/style.css @@ -0,0 +1,190 @@ +/* Stylesheet for website. Copyright 2022 Arnav Bhatt */ + +html { + position: relative; + min-height: 100%; +} + +a { + color: #4388b3; + display: inline; +} + +body { + color: #ffffff; + background: #111; + font-family: "Lucida Console", "Courier New", monospace; + margin: 0; + padding: 0; +} + +.footer { + position: absolute; + bottom: 0; + background: #323030; + color: #bdbdbd; + width: 100%; +} + +.footer p { + font-size: 14px; + padding: 0 5px; +} + +main { + padding: 0 3%; + padding-bottom: 42px; +} + +.blog-content { + max-width: 1024px; + margin: 1em auto; + padding: 0 8%; + padding-bottom: 42px; +} + +.blog-content .footer { + left: 0; +} + +.logo { + text-align: center; +} + +.navbar, .blog { + text-align: center; + list-style-type: none; + margin: 0; + padding: 0; + overflow: hidden +} + +.blog { + text-align: left; +} + +.blog li { + display: block; + margin: 11px 0; +} + +.blog li:not(:last-child) { + margin-bottom: 2.5em; +} + +.blog li a , .softwares li a { + display: inline-block; + background-color: #ffffff; + border-style: solid; + border-color: #ffffff; + color: #111; + font-size: 18.72px; + letter-spacing: 8px; + padding: 9px 18px; + text-align: center; + text-indent: 4px; + text-decoration: none; + text-transform: uppercase; + width: fit-content; +} + +.blog li a:hover, .softwares li a:hover { + background-color: #4274b5; + border-color: #4274b5; + color: #111; +} + +.navbar .active { + background-color: #ffffff; + color: #111; + font-size: 17px; +} + +.navbar li { + display: inline-block; +} + +.navbar li a { + display: inline-block; + border-style: solid; + border-width: 2px; + color: #ffffff; + font-size: 18px; + letter-spacing: 4px; + margin: 0 12px; + padding: 9px 15px; + text-align: center; + text-indent: 2px; + text-decoration: none; + text-transform: uppercase; + width: fit-content; +} + +.navbar li a:hover:not(.active) { + background-color: #ffffff; + border-color: #ffffff; + color: #111; +} + +.softwares { + list-style-type: none; + text-align: center; +} + +.softwares img { + vertical-align: middle; + margin-bottom: 12px; +} + +.softwares li +{ + display: inline-block; +} + +p { + font-size: 18px; +} + +table { + border-collapse: collapse; + width: 80%; +} + +h2, h3 { + display: block; + background-color: #ffffff; + border-style: solid; + border-color: #ffffff; + color: #111; + font-weight: 400; + letter-spacing: 8px; + padding: 9px 18px; + text-align: center; + text-indent: 4px; + text-decoration: none; + text-transform: uppercase; + width: fit-content; +} + +th, td { + text-align: left; + padding: 10px; + border-style: solid; + border-width: 2px; + border-color: #ffffff; +} + +th { + background-color: #ffffff; + color: #111; + font-weight: 400; + letter-spacing: 4px; + text-align: center; + text-indent: 2px; + text-transform: uppercase; +} + +/* Janky way to set color the right borders of two heading cells */ +#border-special { + border-right-color: #111; +} -- cgit v1.2.3