Skip to content

Commit

Permalink
just did some ramblings
Browse files Browse the repository at this point in the history
was gonna make a blog post but then i didnt because i need to read up a bit more on the subject
  • Loading branch information
Moosyu committed Oct 2, 2024
1 parent 06c0207 commit 67f312c
Show file tree
Hide file tree
Showing 4 changed files with 117 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/pages/blog/sites_destined.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ th, td {
}
</style>

in about a day [cohost](https://cohost.org/) is going read only so i wanted to talk about sites, specifically social media websites that are destined to collapse and die off in a year. contrary to the stereotype of the terminally online website making people loving to use these shitty knock off twitters and tumblrs, i actually kind of hate how all these social media sites keep getting made. i cant see how the solution to twitter doing shitty things like deleting accounts after they are become inactive, deleting billions of tweets is creating a new site that will just end up another black hole for content as it eventually gets shut down.
in about a day [cohost](https://cohost.org/) is going read only so i wanted to talk about sites, specifically social media websites that are destined to collapse and die off in a year. contrary to the stereotype of the terminally online website making people loving to use these shitty knock off twitters and tumblrs, i actually kind of hate how all these social media sites keep getting made. i cant see how the solution to twitter doing shitty things like deleting accounts after they are become inactive, deleting billions of tweets is creating a new site that will just end up another black hole for content as it eventually gets shut down.

the main reason these sites fail is due to not having enough money (shocker i know), but they dont make enough money because they somehow believe that a social media site without ads could sustain itself, that will never work. i will cut off a finger the day i see a social media sustain itself without selling their users data or showing them copious amounts of ads. the only way that will work is if in the distant future storage costs like a dollar per terabyte. for an example how how much it costs to run one of these social medias here is cohosts net profit from the past four months:

Expand Down
18 changes: 18 additions & 0 deletions src/pages/guides/satisfying_vscode.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: "getting smooth vscode cursor"
date: 2024-10-02
---

![example](https://i.imgur.com/rgUPQNR.gif)

i know a lot of people dont like these smooth movement things because it steals your ram but whats the point of having 16gb of ram if im only ever using 2% of it. the people saying this are all losers who hate rainbows and will never whimsically run through a field.

to turn on the smooth cursor youre going to need to press ctrl + shift + p and type "open settings" and press "open settings (ui).

![](https://i.imgur.com/kpbO3Xc.png)

in there, search for "cursor smooth caret animation" and turn that on

![](https://i.imgur.com/I6tf5we.png)

thats it.
6 changes: 3 additions & 3 deletions src/pages/inspirations.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ title: inspirations

[annas archive {they still trying to burn down the library of alexandria 2000 years later}](https://annas-archive.org/)

[sizeof {its so massive and reaching i feel like an explorer reading searching through it}](https://sizeof.cat/)

[devastatia {one of the only blogs i keep up with, im not gonna say that i agree with all of their opinions but at least they have actual opinions to share}](https://devastatia.com/)

[manu {the other blog i like to keep up with, i found him from an interview he did with devastatia in june and while not as off the rails as devastatia hes still a very interesting person and a his site often links other very interesting blogs leading to some sort of never ending rabbit hole}](https://manuelmoreale.com/)

[onzecki {sent me a really well thought out and detailed email about making my site not run like shit which helped my situation quite a lot}](https://onz.ee/)
[onzecki {sent me a really well thought out and detailed email about making my site not run like shit which helped my situation quite a lot}](https://onz.ee/)

[superpredator {mind bending images beyond human comprehension. thats all i can say, you have to see it for yourself.}](https://superpredator.zone/)
96 changes: 95 additions & 1 deletion src/pages/ramblings/2024.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,117 @@ title: "untitled unmastered"
side_nav_img: "/assets/cancer.jpg"
---

{% set prismCss %} {% include "../../css/prismTheme.css" %} {% endset %}
<style>
.ttf-button {
background-color: blue;
}
{{ prismCss | cssmin | safe }}
</style>

<p style="text-align: right;"> <a style="color: white;" href="javascript: document.body.scrollIntoView(false);">scroll to bottom</a></p>

# 2024

## 02/10/24

i tried [ai dungeon](https://aidungeon.com/) to try to fulfil my ai dungeons and dragons dreams and its even worse than janitor ai what is this shit, like it looks better but bruh i only get 100 turns go fuck yourself.

## 02/10/24

i just had to take the train and holy shit i hate the train so much, legit i got so unlucky with my seating or something because there was a loud ass group of girls playing pop music right behind me, a old guy trying to tell me about how motorbiking on the side walk is super dangerous and shit and telling me to never do that and a little boy kept throwing a soccer ball at me for some reason. i just wanted to relax jesus christ.

## 02/10/24

ran this and apparently there are 43930 words on my site right now its so over chat ive written half a novel

```js
const puppeteer = require('puppeteer');

async function countWords(url) {
const browser = await puppeteer.launch();
const page = await browser.newPage();

await page.goto(url);

const wordCount = await page.evaluate(() => {
const text = document.body.innerText || '';
return text.split(/\s+/).filter(word => word.length > 0).length;
});

await browser.close();
return wordCount;
}

async function totalWordCount(urls) {
let totalWords = 0;

for (let url of urls) {
const words = await countWords(url);
console.log(`word count for ${url}: ${words}`);
totalWords += words;
}

console.log(`total word count: ${totalWords}`);
}

const urls = [
'https://moosyu.nekoweb.org/pages/blog/11ty_cool/',
'https://moosyu.nekoweb.org/pages/blog/bad_ideas/',
'https://moosyu.nekoweb.org/pages/blog/breakcore/',
'https://moosyu.nekoweb.org/pages/blog/dni/',
'https://moosyu.nekoweb.org/pages/blog/grammar/',
'https://moosyu.nekoweb.org/pages/blog/indie_web_gripes/',
'https://moosyu.nekoweb.org/pages/blog/junji_ito/',
'https://moosyu.nekoweb.org/pages/blog/linux/',
'https://moosyu.nekoweb.org/pages/blog/manga_hate/',
'https://moosyu.nekoweb.org/pages/blog/peak_web_design/',
'https://moosyu.nekoweb.org/pages/blog/post_rock/',
'https://moosyu.nekoweb.org/pages/blog/sites_destined/',
'https://moosyu.nekoweb.org/',
'https://moosyu.nekoweb.org/pages/blog/',
'https://moosyu.nekoweb.org/pages/guides/',
'https://moosyu.nekoweb.org/pages/links/',
'https://moosyu.nekoweb.org/pages/reviews/',
'https://moosyu.nekoweb.org/pages/reviews/comics/',
'https://moosyu.nekoweb.org/pages/reviews/comics/1/',
'https://moosyu.nekoweb.org/pages/reviews/comics/2/',
'https://moosyu.nekoweb.org/pages/reviews/comics/3/',
'https://moosyu.nekoweb.org/pages/reviews/comics/4/',
'https://moosyu.nekoweb.org/pages/reviews/favourites/',
'https://moosyu.nekoweb.org/pages/reviews/games/',
'https://moosyu.nekoweb.org/pages/reviews/games/1/',
'https://moosyu.nekoweb.org/pages/reviews/music/',
'https://moosyu.nekoweb.org/pages/reviews/music/1/',
'https://moosyu.nekoweb.org/pages/reviews/music/2/',
'https://moosyu.nekoweb.org/pages/reviews/tv/',
'https://moosyu.nekoweb.org/pages/reviews/tv/1/',
'https://moosyu.nekoweb.org/pages/guides/awesomewm_scaling/',
'https://moosyu.nekoweb.org/pages/guides/awesomewm_stardew/',
'https://moosyu.nekoweb.org/pages/guides/bash_webp_jpg/',
'https://moosyu.nekoweb.org/pages/guides/brave_ads_newtab/',
'https://moosyu.nekoweb.org/pages/guides/elements_css_nekoweb/',
'https://moosyu.nekoweb.org/pages/guides/imgur_live_server/',
'https://moosyu.nekoweb.org/pages/guides/markdown-it-katex/',
'https://moosyu.nekoweb.org/pages/guides/runelite/',
'https://moosyu.nekoweb.org/pages/guides/xfce_trans/',
'https://moosyu.nekoweb.org/404.html',
'https://moosyu.nekoweb.org/pages/mods/',
'https://moosyu.nekoweb.org/pages/inspirations/',
'https://moosyu.nekoweb.org/pages/ramblings/',
'https://moosyu.nekoweb.org/pages/ramblings/2024/'
];

totalWordCount(urls);
```

## 01/10/24

someone had issues with their site and asked for help in some neocities discord thing and i looked inside and holy shit it had like 500 errors no wonder it doesnt work it was the craziest shit ive ever seen. also if you have leaks for the new sound by geordie greep send it im greeping out right now help me.

## 01/10/24

i tried out that ai fantasy world bot thing again and i just asked it to pick my stats for me randomly and it starts me out as a furry and i instantly it kills off my entire wolf pack and i get raped by the first guy i saw what the fuck is this i swear to god i did not say anything at all sexual bruh i was getting ready to fight.
i tried out that ai fantasy world bot thing again and i just asked it to pick my stats for me randomly and it starts me out as a furry and i instantly it kills off my entire wolf pack and i get raped by the first guy i saw what the fuck is this i swear to god i did not say anything at all sexual bruh i was getting ready to fight. like im fine with people jacking off to whatever they want as long as its not hurting anyone but like why does the entire site have such a cool idea but then its just all porn.

![](https://imgur.com/2RMCle2.png)

Expand Down

0 comments on commit 67f312c

Please sign in to comment.