From c2d46da747c4901c7fd7821c0fde715dd6bbf3a1 Mon Sep 17 00:00:00 2001 From: nathansmith117 Date: Wed, 12 Mar 2025 08:07:18 -0600 Subject: Working on tv corner --- anime_and_cartoon_room.html | 61 ------ blahajRoom.html | 85 -------- cgi-bin/blahaj_list.cgi | 123 ------------ cgi-bin/submit_blahaj_info.cgi | 114 ----------- images/antinft.gif | Bin 0 -> 1669 bytes images/blahaj_background.jpg | Bin 60196 -> 0 bytes images/concepts_of_a_plan.jpg | Bin 0 -> 106012 bytes index.html | 9 +- linuxRoom.html | 427 ----------------------------------------- linux_room.html | 427 +++++++++++++++++++++++++++++++++++++++++ submit_blahaj_info.html | 49 ----- tv_corner.html | 151 +++++++++++++++ 12 files changed, 583 insertions(+), 863 deletions(-) delete mode 100644 anime_and_cartoon_room.html delete mode 100644 blahajRoom.html delete mode 100755 cgi-bin/blahaj_list.cgi delete mode 100755 cgi-bin/submit_blahaj_info.cgi create mode 100644 images/antinft.gif delete mode 100644 images/blahaj_background.jpg create mode 100644 images/concepts_of_a_plan.jpg delete mode 100644 linuxRoom.html create mode 100644 linux_room.html delete mode 100644 submit_blahaj_info.html create mode 100644 tv_corner.html diff --git a/anime_and_cartoon_room.html b/anime_and_cartoon_room.html deleted file mode 100644 index 7314bc8..0000000 --- a/anime_and_cartoon_room.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - Anime and cartoon room - - - - - - -
- - - - - - - - - - - - -
-

Why watch dweeb shit when there are useful things to do?

-

- Because fuck you, dweeb shit is the best way to waste time! -

-
-

Back to main page

-
-

Where do I watch X show?

-

- You pirate it! For simple dumdum streaming for non techy people check out - wcostream. To learn - more about pirating check out - freemediaheckyeah. If you - want to have more optinos, get HD or at least not the 240p shit, not have to wait - for it to buffer... you need to torrent. -

-

-
- - diff --git a/blahajRoom.html b/blahajRoom.html deleted file mode 100644 index dbac348..0000000 --- a/blahajRoom.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - Blahaj room - - - - - - -
-

Blahaj!!!!

- - - - - - - - - - - - - -
-

!!!USER SUBMITTED BLAHAJ LIST HERE!!!

-

If you don't have a blahaj BUY ONE NOW!!

-

- Look here to find your blahaj today!. It will improve your life (: -

-
-

Reasons why blahaj is bad ass:

-
    -
  • Blahaj is a shark
  • -
  • Blahaj is light blue
  • -
  • Blahaj is the perfect cuddle size for everyone
  • -
  • Blahaj also works very well as a pillow
  • -
  • Blahaj is soft
  • -
  • Blahaj is perfect for pictures with a cat or doggo
  • -
  • Blahaj is inclusive and a great comrade to the lgbtq+ community
  • -
  • There is too many reasons to list here
  • -
- -

Reasons why blahaj isn't bad bass:

-

- There is none. Blahaj is the best 30 american bucks you can ever spend on ANYTHING! -

- Blahaj hate crime -
-

Back to main page

-
- - - - - -
-

Spam

- Blahaj go spinny - DIE BLAHAJ! - Blahaj getting washed - Blahaj jump scare -
- -
- - diff --git a/cgi-bin/blahaj_list.cgi b/cgi-bin/blahaj_list.cgi deleted file mode 100755 index e6bbc85..0000000 --- a/cgi-bin/blahaj_list.cgi +++ /dev/null @@ -1,123 +0,0 @@ -#!/usr/bin/env python - -import cgi -import json - -from bs4 import BeautifulSoup - -# Worse code here. Prepare your eyes for this monster. -# Its almost as bad as programming anything in php or even worse javascript. - -print('Content-Type: text/html') - -# Mode for letting peope inject stuff. -form = cgi.FieldStorage() -unsafe_mode = form.getvalue("unsafe_mode") == "on" - -# Hehehe -def check_for_injection(value): - if bool(BeautifulSoup(value, "html.parser").find()) and not unsafe_mode: - return """ - This silly silly tried to hack this website lmao. - Click to see the website with the hack - """ - - return value - -def create_blahaj_tables(): - try: - tables_html = """ -

Blahaj list!!!!!

- - - - -
-

Submit yours here if you haven't already!

-

Back to blahaj room

-
-
- """ - - with open("blahaj_info.json", "r") as fp: - blahaj_list = json.load(fp) - - for blahaj in blahaj_list[::-1]: - current_table = """ - - - - - - - - -
- -

put_name_here

-

Date submitted: put_date_here

-
-

put_info_here

-
- """ - - current_table = current_table.replace("put_name_here", check_for_injection(blahaj["name"])) - current_table = current_table.replace("put_info_here", check_for_injection(blahaj["info"])) - current_table = current_table.replace("put_date_here", check_for_injection(blahaj["date"])) - - tables_html += current_table - - return tables_html - - except FileNotFoundError: # No blahaj's yet - return """ - - - - -
-

No blahaj's found ):

-

Yours could be first tho :3

-

Submit yours here

-
- """ - -html_text = """ - - - - - hehehe - - - - - -
- thing_to_replace -
- - - -""" - -tables = create_blahaj_tables() -html_text = html_text.replace("thing_to_replace", tables) - -print(html_text) diff --git a/cgi-bin/submit_blahaj_info.cgi b/cgi-bin/submit_blahaj_info.cgi deleted file mode 100755 index 4c2e1b6..0000000 --- a/cgi-bin/submit_blahaj_info.cgi +++ /dev/null @@ -1,114 +0,0 @@ -#!/usr/bin/env python - -import cgi -import json -import datetime - -# Get the information given and dump it into a file. -def handle_fields(): - form = cgi.FieldStorage() - - blahaj_name = form.getvalue("blahaj_name") - blahaj_info = form.getvalue("blahaj_info") - - if blahaj_name == None: - return "Blahaj name is required" - - if blahaj_info == None: - blahaj_info = "" - - blahaj_list = [] - - # Get existing data. - try: - with open("blahaj_info.json", "r") as fp: - blahaj_list = json.load(fp) - except FileNotFoundError: - pass - - date = datetime.datetime.now() - blahaj_entry = {"name": blahaj_name, "info": blahaj_info, "date": date.strftime("%B, %d %Y")} - - # Already been added. - for blahaj in blahaj_list: - if blahaj["name"] == blahaj_entry["name"] and blahaj["info"] == blahaj_entry["info"]: - return "Already exists" - - # Dump new data. - with open("blahaj_info.json", "w") as fp: - blahaj_list.append(blahaj_entry) - json.dump(blahaj_list, fp) - - return "submitted" - -def display_context(fields_reponse): - print('Content-Type: text/html') - - html_text = """ - - - - - hehehe - - - - - -
- - - - -
- thing_to_replace -
-
- - - - """ - - # Place html tags in the "thing_to_replace" spot - replace_text = "" - - if fields_reponse == "Blahaj name is required": - replace_text = """ -

Blahaj name required

-

Go back

- """ - elif fields_reponse == "Already exists": - replace_text = """ -

Blahaj already added

-

Go back

- """ - elif fields_reponse == "submitted": - replace_text = """ -

Blahaj submitted!

- yippee! -

See it in the list!

- """ - - html_text = html_text.replace("thing_to_replace", replace_text) - - print(html_text) - - -fields_reponse = handle_fields() -display_context(fields_reponse) diff --git a/images/antinft.gif b/images/antinft.gif new file mode 100644 index 0000000..1a4caf0 Binary files /dev/null and b/images/antinft.gif differ diff --git a/images/blahaj_background.jpg b/images/blahaj_background.jpg deleted file mode 100644 index f6e9208..0000000 Binary files a/images/blahaj_background.jpg and /dev/null differ diff --git a/images/concepts_of_a_plan.jpg b/images/concepts_of_a_plan.jpg new file mode 100644 index 0000000..fce6709 Binary files /dev/null and b/images/concepts_of_a_plan.jpg differ diff --git a/index.html b/index.html index 4ade58d..944e9a8 100644 --- a/index.html +++ b/index.html @@ -41,8 +41,8 @@ table { one day have to learn the hard way they were wrong. My reason for existing is to explore the world around me and continue the nonstop journy of learning and finding new things. I try to avoid anything that disrupts the journy, requires closing off my - mind and handing it over to someone... If you have a problem with that you can go fuck - yourself! + mind and handing it over to someone... If you have a problem with that you can go fuck + yourself!

Some of my interests and hobbies:

@@ -61,9 +61,9 @@ table { @@ -72,6 +72,7 @@ table { powered by sdf keep the web free bi pride + This is an Anti-NFT Site need moar coffee XD diff --git a/linuxRoom.html b/linuxRoom.html deleted file mode 100644 index a46df77..0000000 --- a/linuxRoom.html +++ /dev/null @@ -1,427 +0,0 @@ - - - - - The linux room - - - - - - -
- Tux the penguin flying - - - - - - - - - - - - -
-

My current setup

- -
-

Dotfiles

-

This is a repo for my dotfiles and its kind of fucked up. - Some configs have there own repos because I didn't think ahead lmao. -

-
-

Back to main page

-
- - - - - -
-

Why linux

-

- I have always liked being able to customize, mod, and poke inside different things. - Computers are machines for us to play around with and use how we see fit yet the only thing - the big tech companies want to do it lock everything up and it disgusts me. - Fuck google, fuck microsoft, fuck apple, and fuck all the other evil tech companies!!! - Its time for the open source revolution and seize them all and open source the entire world!!! - Without linux or any other unix life would be much much worse. Linux is my safe place - from all the shit in the world. -

- Window kills kittens -
- - - - - - - - - - - - - - - - - -
-

Fedora xfce

-

- Fedora been my go to for quite a while though I sometimes switch desktops lmao. - I have tried the gnome version but it doesn't really fit me so most - of the time I have used the kde spin though recently kde just haven't - been feeling the same. It has been feeling buggy and have been fighting - with nvidia drivers. After running xfce on my second computer for a while - I grew to really like it and started using it on my main and it have been - running much better then kde. -

-
-

Setting up fedora

-

- Fedora has a little extra setup you wouldn't see in something like linux mint though - it isn't that bad. -

-

Packages

-

- You can speed up dnf by adding these to /etc/dnf/dnf.conf
- - max_parallel_downloads=20
- fastestmirror=True -
-

- The default repos have lots of stuff but you might want an app that isn't in it like steam. - I know the gnome version has a enable 3rd party repos button that does everything I listed here - but I am on the xfce version and also had to do this on the kde verison. -

-
    -
  • - Setup rpm fusion to get more packages in dnf with the - resources here -
  • -
  • - Install flatpak if not already there using "sudo dnf install flatpak" then add - flathub - to get some cool apps! -
  • -
- -

Multimedia

-

- By default fedora doesn't have many codecs and you need to install them yourself. - Without them many media files will not work and lots of youtube videos will not be able to play. - The fedora docs use to show how to install them but they removed it from their page - and instead shows a new version which installs some stuff but not everything. - I do both of them to make sure I get all the codecs I need. -

-
    -
  • Update your system with sudo dnf upgrade
  • -
  • Install the new packages with sudo dnf group install multimedia
  • -
  • - Install the old ones with these three commands in a row: -
      -
    • sudo dnf install gstreamer1-plugins-{bad-\*,good-\*,base} gstreamer1-plugin-openh264 gstreamer1-libav --exclude=gstreamer1-plugins-bad-free-devel
    • -
    • sudo dnf install lame\* --exclude=lame-devel
    • -
    • sudo dnf swap ffmpeg-free ffmpeg --allowerasing
    • -
    -
  • -
- -

Nvidia drivers

-

- Nvidia isn't the best on linux and I like AMD much more though I am stuck with nvidia for now. - For xfce there are some extra settings to enable it but it works great once that is done. - You will need rpm fusion first before you can install the drivers. -

-
    -
  • - Follow the fedora docs on nvidia - here -
  • -
  • - Also look at the rpmfusion docs on nvidia - here -
  • -
  • - Follow the archwiki on nvidia in lightdm - here. -
  • -
  • - For multi monitor refresh rate issues add these to your /etc/environment
    - - CLUTTER_DEFAULT_FPS=<refresh rate of your sync monitor>
    - __GL_SYNC_DISPLAY_DEVICE=<monitor to sync to> -
    -

    - Then open your nvidia settings, go to OpenGL Settings and turn off "Allow Flipping". -
  • -
-
-

xfce settings in fedora

-

- By default xfce is a very plain desktop and looks kind of old and shitty - (like this website), but it can look and feel great with some work! -

-
    -
  • Install nicer icons with sudo dnf install papirus-icon-theme papirus-icon-theme-dark then set them as your icon theme
  • -
  • - Install a better theme. Some good ones are: - -
  • -
  • - The default menu is alright but I like whisker menu more. -
      -
    • Install it with sudo dnf install xfce4-whiskermenu-plugin
    • -
    • Go into the panel settings to remove the old one and change it to whisker menu.
    • -
    -
  • -
  • - Enable clipman as one of the startup apps for a kde like clipboard. -
  • -
  • - Make some nicer keybinds: -
      -
    • I like to bind the xfce4-popup-whiskermenu command to shift-super. - You can't bind things to just super in xfce. It will break other shortcuts.
    • -
    • Bind "super+v" to xfce4-clipman-history to make it feel more like the kde clipboard
    • -
    -
  • -
  • - Make new windows show up at the mouse by going into the "Window ManagerTweaks" "Placement" tab, - turning the minimum size all the way up and chaning the place windows position to under the mouse pointer. -
  • -
-
-

Rofi in xfce

- The default xfce appfinder been causing me issues lately so I decided to switch to rofi. -

- To make rofi work with my workflow I like to add some binds for it: -
    -
  • Bind rofi -show drun -icon-theme "Papirus-Dark" -show-icons to super+d
  • -
  • Bind rofi -show run to super+r
  • -
- There is much more I could use rofi for but this is all I need. -
-

Useful things in fedora

- Fedora doesn't have "update-grub" so instead you have to use these:
- - sudo grub2-mkconfig -o /etc/grub2.cfg
- sudo grub2-mkconfig -o /etc/grub2-efi.cfg -
-
- - - - - - - - - - - - - - - - - - - - - -
-

icecat

-

- I use to use firefox but switched to librewolf because - mozilla is evil as fuck. - If you don't know librewolf it its the ungoogled-chromium of firefox. Than I switched from librewolf to icecat. -

- The builtin plugins are decent. Librejs and its other contend blocking plugins are way more annoying - than something like umatrix but I am giving them a fair chance knowing that umatrix might not have - much of a future even if its still quite functional still. I still like to install ublock even with - everything that comes builtin. -

-

Settings

-

- The clipboard doesn't work in icecat by default so go into about:config and change - dom.event.clipboardevents.enabled to true. -

-

Search engines

-

- The best search engine is searx. - Finding instances can be annoying because a lot of time the engine you want to use - gets blocked. -

-
-

Claws mail

-

- I have used thunderbird in the past though like I said before - mozilla is evil as fuck. - I have some gmail accounts and haven't gotten them to work in claws yet though I am working on - moving everything away from gmail because fuck google!! Though my other accounts work in it just fine. - Its a quite basic mail client so you often have to play around with different things to get accounts to work. - Also tried evolution but it was too bloated but not nearly as bad as thunderbird. -

-
-

lite-xl

-

- I started using lite-xl because I wanted a editor that was simple but very configurable. - Neovim and kate were my two favorite editors and lite-xl is kind of a mix of the two. - It uses lua for its config files and has some really cool things like: a project structure - to make it fit better for coding, support for all the major languages and lsp plugins. -

- -

lite-xl config

-

- I have my config on a repo here here. - On different screen sizes lite-xl may look bad and to fix it you need to set the LITE_SCALE environment variable. -

- - My config has buttons for quickly opening a terminal and file explore in the current directory. - It doesn't know what your defaults are for those apps so to set them just change the varibles - in the "init.lua" file. -

-
-

mpv

-

- I switched to mpv because vlc was acting weird with audio sometimes when watching anime and nothing - in this world is worse then something getting in the way of anime time! Just like lite-xl and neovim - mpv uses lua for its config files and is really simple by default. It also can play youtube videos - or other online streams just by giving it a url.

- - The only thing I did to config mine was install plugins for a nicer interface - and mpris yet - it has its own repo when it - could just be in the dotfiles repo. Like I said, my dotfiles are kind of fucked up. -

-
-

Liferea

-

- Feed readers are one of those things I use on and off. A lot like mail clients feed readers - tend to be very bloated. Liferea is my favorite but - it has always had issues with nvidia drivers until I found out a trick.

- If liferea has issues add this to your /etc/environment and reboot
- WEBKIT_DISABLE_DMABUF_RENDERER=1 - -

- Some cool tricks: -

-
    -
  • - Get - this plugin to find feeds easier. -
  • -
  • - You can turn youtube channels into rss feeds with - https://www.youtube.com/feeds/videos.xml?channel_id={channel_id}
    - This can be done for all your subscriptions with - - this script -
  • -
  • - You can drag and drop youtube urls from your feed reader into mpv so you can keep up with - your subscriptions without even touching youtube's website. -
  • -
-
- - - - - - - - - - - - - - - - - -
-

Alacritty

-

- I only started using it very recently because I been using kitty for a long time. - I switched to alacritty because ssh in kitty is fucked up and I found out that - alacritty now has a option for toml files for the config. The yml files was - one of the biggest things keeping me away from alacritty.

- You can find my config on the - dotfiles repo. -

-
-

zsh

-

- zsh is pretty cool though I been playing with fish a bit and been thinking of switching to that. - zsh has lots of cool things like vi keys and is somewhat compatable with bash to.

- - For my zsh config to work you need powerline and nerd fonts which can be installed with: -

-
    -
  • sudo dnf install powerline
  • -
  • - Download a nerd font from the nerd fonts site. - Personal I use hack font and configured neovim with it. -
  • -
-
-

Neovim

-

- I been using neovim for quite a while and have added a lot to my config. Onetime in the middle - of the night I thought my neovim config was trying to kill me because of the pain I caused it - by doing a bad job programming it. It looked like a flat snake head that was tired and pissed off.
- I don't use neovim for programming things much anymore and prefer graphical editors - for that now but I still use neovim sometimes.

- - You can find my neovim config (the one that tried to kill me) - here. -

-
-

Emacs

-

- Don't use emacs. Its stupido. -

-
-
- - diff --git a/linux_room.html b/linux_room.html new file mode 100644 index 0000000..a46df77 --- /dev/null +++ b/linux_room.html @@ -0,0 +1,427 @@ + + + + + The linux room + + + + + + +
+ Tux the penguin flying + + + + + + + + + + + + +
+

My current setup

+ +
+

Dotfiles

+

This is a repo for my dotfiles and its kind of fucked up. + Some configs have there own repos because I didn't think ahead lmao. +

+
+

Back to main page

+
+ + + + + +
+

Why linux

+

+ I have always liked being able to customize, mod, and poke inside different things. + Computers are machines for us to play around with and use how we see fit yet the only thing + the big tech companies want to do it lock everything up and it disgusts me. + Fuck google, fuck microsoft, fuck apple, and fuck all the other evil tech companies!!! + Its time for the open source revolution and seize them all and open source the entire world!!! + Without linux or any other unix life would be much much worse. Linux is my safe place + from all the shit in the world. +

+ Window kills kittens +
+ + + + + + + + + + + + + + + + + +
+

Fedora xfce

+

+ Fedora been my go to for quite a while though I sometimes switch desktops lmao. + I have tried the gnome version but it doesn't really fit me so most + of the time I have used the kde spin though recently kde just haven't + been feeling the same. It has been feeling buggy and have been fighting + with nvidia drivers. After running xfce on my second computer for a while + I grew to really like it and started using it on my main and it have been + running much better then kde. +

+
+

Setting up fedora

+

+ Fedora has a little extra setup you wouldn't see in something like linux mint though + it isn't that bad. +

+

Packages

+

+ You can speed up dnf by adding these to /etc/dnf/dnf.conf
+ + max_parallel_downloads=20
+ fastestmirror=True +
+

+ The default repos have lots of stuff but you might want an app that isn't in it like steam. + I know the gnome version has a enable 3rd party repos button that does everything I listed here + but I am on the xfce version and also had to do this on the kde verison. +

+
    +
  • + Setup rpm fusion to get more packages in dnf with the + resources here +
  • +
  • + Install flatpak if not already there using "sudo dnf install flatpak" then add + flathub + to get some cool apps! +
  • +
+ +

Multimedia

+

+ By default fedora doesn't have many codecs and you need to install them yourself. + Without them many media files will not work and lots of youtube videos will not be able to play. + The fedora docs use to show how to install them but they removed it from their page + and instead shows a new version which installs some stuff but not everything. + I do both of them to make sure I get all the codecs I need. +

+
    +
  • Update your system with sudo dnf upgrade
  • +
  • Install the new packages with sudo dnf group install multimedia
  • +
  • + Install the old ones with these three commands in a row: +
      +
    • sudo dnf install gstreamer1-plugins-{bad-\*,good-\*,base} gstreamer1-plugin-openh264 gstreamer1-libav --exclude=gstreamer1-plugins-bad-free-devel
    • +
    • sudo dnf install lame\* --exclude=lame-devel
    • +
    • sudo dnf swap ffmpeg-free ffmpeg --allowerasing
    • +
    +
  • +
+ +

Nvidia drivers

+

+ Nvidia isn't the best on linux and I like AMD much more though I am stuck with nvidia for now. + For xfce there are some extra settings to enable it but it works great once that is done. + You will need rpm fusion first before you can install the drivers. +

+
    +
  • + Follow the fedora docs on nvidia + here +
  • +
  • + Also look at the rpmfusion docs on nvidia + here +
  • +
  • + Follow the archwiki on nvidia in lightdm + here. +
  • +
  • + For multi monitor refresh rate issues add these to your /etc/environment
    + + CLUTTER_DEFAULT_FPS=<refresh rate of your sync monitor>
    + __GL_SYNC_DISPLAY_DEVICE=<monitor to sync to> +
    +

    + Then open your nvidia settings, go to OpenGL Settings and turn off "Allow Flipping". +
  • +
+
+

xfce settings in fedora

+

+ By default xfce is a very plain desktop and looks kind of old and shitty + (like this website), but it can look and feel great with some work! +

+
    +
  • Install nicer icons with sudo dnf install papirus-icon-theme papirus-icon-theme-dark then set them as your icon theme
  • +
  • + Install a better theme. Some good ones are: + +
  • +
  • + The default menu is alright but I like whisker menu more. +
      +
    • Install it with sudo dnf install xfce4-whiskermenu-plugin
    • +
    • Go into the panel settings to remove the old one and change it to whisker menu.
    • +
    +
  • +
  • + Enable clipman as one of the startup apps for a kde like clipboard. +
  • +
  • + Make some nicer keybinds: +
      +
    • I like to bind the xfce4-popup-whiskermenu command to shift-super. + You can't bind things to just super in xfce. It will break other shortcuts.
    • +
    • Bind "super+v" to xfce4-clipman-history to make it feel more like the kde clipboard
    • +
    +
  • +
  • + Make new windows show up at the mouse by going into the "Window ManagerTweaks" "Placement" tab, + turning the minimum size all the way up and chaning the place windows position to under the mouse pointer. +
  • +
+
+

Rofi in xfce

+ The default xfce appfinder been causing me issues lately so I decided to switch to rofi. +

+ To make rofi work with my workflow I like to add some binds for it: +
    +
  • Bind rofi -show drun -icon-theme "Papirus-Dark" -show-icons to super+d
  • +
  • Bind rofi -show run to super+r
  • +
+ There is much more I could use rofi for but this is all I need. +
+

Useful things in fedora

+ Fedora doesn't have "update-grub" so instead you have to use these:
+ + sudo grub2-mkconfig -o /etc/grub2.cfg
+ sudo grub2-mkconfig -o /etc/grub2-efi.cfg +
+
+ + + + + + + + + + + + + + + + + + + + + +
+

icecat

+

+ I use to use firefox but switched to librewolf because + mozilla is evil as fuck. + If you don't know librewolf it its the ungoogled-chromium of firefox. Than I switched from librewolf to icecat. +

+ The builtin plugins are decent. Librejs and its other contend blocking plugins are way more annoying + than something like umatrix but I am giving them a fair chance knowing that umatrix might not have + much of a future even if its still quite functional still. I still like to install ublock even with + everything that comes builtin. +

+

Settings

+

+ The clipboard doesn't work in icecat by default so go into about:config and change + dom.event.clipboardevents.enabled to true. +

+

Search engines

+

+ The best search engine is searx. + Finding instances can be annoying because a lot of time the engine you want to use + gets blocked. +

+
+

Claws mail

+

+ I have used thunderbird in the past though like I said before + mozilla is evil as fuck. + I have some gmail accounts and haven't gotten them to work in claws yet though I am working on + moving everything away from gmail because fuck google!! Though my other accounts work in it just fine. + Its a quite basic mail client so you often have to play around with different things to get accounts to work. + Also tried evolution but it was too bloated but not nearly as bad as thunderbird. +

+
+

lite-xl

+

+ I started using lite-xl because I wanted a editor that was simple but very configurable. + Neovim and kate were my two favorite editors and lite-xl is kind of a mix of the two. + It uses lua for its config files and has some really cool things like: a project structure + to make it fit better for coding, support for all the major languages and lsp plugins. +

+ +

lite-xl config

+

+ I have my config on a repo here here. + On different screen sizes lite-xl may look bad and to fix it you need to set the LITE_SCALE environment variable. +

+ + My config has buttons for quickly opening a terminal and file explore in the current directory. + It doesn't know what your defaults are for those apps so to set them just change the varibles + in the "init.lua" file. +

+
+

mpv

+

+ I switched to mpv because vlc was acting weird with audio sometimes when watching anime and nothing + in this world is worse then something getting in the way of anime time! Just like lite-xl and neovim + mpv uses lua for its config files and is really simple by default. It also can play youtube videos + or other online streams just by giving it a url.

+ + The only thing I did to config mine was install plugins for a nicer interface + and mpris yet + it has its own repo when it + could just be in the dotfiles repo. Like I said, my dotfiles are kind of fucked up. +

+
+

Liferea

+

+ Feed readers are one of those things I use on and off. A lot like mail clients feed readers + tend to be very bloated. Liferea is my favorite but + it has always had issues with nvidia drivers until I found out a trick.

+ If liferea has issues add this to your /etc/environment and reboot
+ WEBKIT_DISABLE_DMABUF_RENDERER=1 + +

+ Some cool tricks: +

+
    +
  • + Get + this plugin to find feeds easier. +
  • +
  • + You can turn youtube channels into rss feeds with + https://www.youtube.com/feeds/videos.xml?channel_id={channel_id}
    + This can be done for all your subscriptions with + + this script +
  • +
  • + You can drag and drop youtube urls from your feed reader into mpv so you can keep up with + your subscriptions without even touching youtube's website. +
  • +
+
+ + + + + + + + + + + + + + + + + +
+

Alacritty

+

+ I only started using it very recently because I been using kitty for a long time. + I switched to alacritty because ssh in kitty is fucked up and I found out that + alacritty now has a option for toml files for the config. The yml files was + one of the biggest things keeping me away from alacritty.

+ You can find my config on the + dotfiles repo. +

+
+

zsh

+

+ zsh is pretty cool though I been playing with fish a bit and been thinking of switching to that. + zsh has lots of cool things like vi keys and is somewhat compatable with bash to.

+ + For my zsh config to work you need powerline and nerd fonts which can be installed with: +

+
    +
  • sudo dnf install powerline
  • +
  • + Download a nerd font from the nerd fonts site. + Personal I use hack font and configured neovim with it. +
  • +
+
+

Neovim

+

+ I been using neovim for quite a while and have added a lot to my config. Onetime in the middle + of the night I thought my neovim config was trying to kill me because of the pain I caused it + by doing a bad job programming it. It looked like a flat snake head that was tired and pissed off.
+ I don't use neovim for programming things much anymore and prefer graphical editors + for that now but I still use neovim sometimes.

+ + You can find my neovim config (the one that tried to kill me) + here. +

+
+

Emacs

+

+ Don't use emacs. Its stupido. +

+
+
+ + diff --git a/submit_blahaj_info.html b/submit_blahaj_info.html deleted file mode 100644 index 377a81c..0000000 --- a/submit_blahaj_info.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - - Submit your blahaj! - - - - - - -
-

Submit your blahaj!

- - - - - -
-
- The name of your blahaj - -

- Tell us about your blahaj - -

It has a max character count of 512 characters

-
- -
-
-
- - diff --git a/tv_corner.html b/tv_corner.html new file mode 100644 index 0000000..562dc3d --- /dev/null +++ b/tv_corner.html @@ -0,0 +1,151 @@ + + + + + Tv corner + + + + + + +
+ + + + + + + + + + + + +
+

Why watch dweeb shit when there are useful things to do?

+

+ Because fuck you, dweeb shit is the best way to waste time! +

+
+

Back to main page

+
+

Where do I watch X show?

+

+ You pirate it! For simple dumdum streaming for non techy people check out + wcostream. To learn + more about pirating check out + freemediaheckyeah. If you + want to have more optinos, get HD or at least not the 240p shit, not have to wait + for it to buffer... you need to torrent. +

+ Torrenting sites are popular websites for hackers to fake. Don't trust your search engine. + Here is a list of torrenting sites. +

    +
  • The pirate bay. + The old trusty torrenting site.
  • +
  • nyaa. The anime torrenting site.
  • +
  • + EZTV Torrent and + EZTV. I don't know why + these are two seprate sites tbh. +
  • +
  • rarbg
  • +
  • torlock. + The site gets shut down a lot and was even torlock2 for a while.
  • +
+

+

+ + + + + + + + + + + + + + +
+

Favorites

+ +
+

Cartoons

+ +

Xavier: Renegade Angel

+

+ Its a show without characters to relate to, any sort of coherent plot, anything for the brain to lach onto... + Everything you watch as an outside eavesdropping on someones trip. Each episode is different from each other + with a big ass money wrench thrown into any patterns you might see. Its the text book example of an unlinear + story. When you really watch get off your phone you will find meaning in all the layers and everything + will make sense only for you to learn it was all for nothing. Well anyways his show was removed from Adult + Swim for being too weird so thats within itself a reason to watch this show. +

+ +

Moral Orel

+

+ Just a sweet little claymation about a good little child that likes to go to church. Could NEVER + have a deep dark plot that will make even the strongest of us cry, right??? No way could a show sooo + very innocent ever be removed from Adult Swim for being too dark. +

+ +

Futurama

+

+ I first watched this show when I was ~6 years old. Bender was always my favorite character and formed the + backbone of my morals and view on humanity. When getting ready for church I always saw my dad watching either + Futurama or monke evolution documentary. It was no fair. I had to wear uncomfy clothes and go + to boring old person building while my dad got to instead watch Futurama and silly monke show. When I asked my mom + she always said "dad has to go work to make money". When we came back he was still at home. Now that I am an adult + I stay home to watch Futurama and silly monke show instead of going to church. Thats why you should show your + children Futurama at a young age. Look at me, I watched it at 6 and I turned out fine. +

+ +

Venture Bros

+

+ One day I realized I am a lot like Dr.Venture. He is a INTP, a scientist that puts his + work above the value of human life and creates weird ass shit, likes prog rock and has + a record collection I approve of, is a single dad and terrible father... I am not a dad but + if I was I would be a single dad who is a terrible father just like Dr.Venture. Either that + or the gay dad with an ex wife that turned lesbian and a kid in special ed who when harrassed + by christians looks them in the eyes for the first and last time and says "fuck you faggot". +

+ +

South Park

+

+ While I do think some of the shows written on this did a much better job on writing and mixing it + with good humor those shows are S tier. South Park is still A tier. Even if I can pick at their + writing style all I want its still way better than anything disney ever put out, plus the real + reason most of us watch South Park is for its sense of humnor. You may say South Park sucks and + is stupido but you watch it anyways. You also say mcdonalds is gross but you eat there anyways. + You know who you are. Also Wendy is my favorite character. Anyone who beats up Cartman has + my respect. +

+
+

Anime

+
+
+ + -- cgit v1.2.3