Let's explore ocbwoy3.dev!

    Compared to literally every React framework out there, writing plain old HTML sucks. Therefore, I made this website entirely in React using Next.js!

    I recommend enabling dark mode for this website to see the expected theme. This website can automatically adjust to your device's theme, but you can override it with this conveniently placed button:


    Here we go!

    Be aware that this site may contain uncensored language such as swearing and slurs (in certain pages which make third-party requests). If I've personally written the F slur, don't worry, I can reclaim it.

    LINKS


    btw this is markdown


    /* TypeScript React + Tailwind */
    
    // I'm out of the league away from plain old html, css and js.
    
    // This is a codeblock rendered with Shiki.
    
    categories.map((category, key) => {
    	const filteredItems = category.items.filter((item: ShopItemProps) =>
    		item.name
    			.toLowerCase()
    			.includes(search.toLowerCase())
    	);
    	if (filteredItems.length === 0) return null;
    
    	return (
    		<div key={key}>
    			<h2 className="text-2xl text-blue font-semibold pt-4">
    				{category.name}
    			</h2>
    			<p className="text-muted-foreground mb-4">
    				{category.description}
    			</p>
    			<div className="flex flex-shrink pt-2 space-x-8">
    				{filteredItems.map((a, b) => (
    					<ShopItem key={b} {...a} />
    				))}
    			</div>
    		</div>
    	);
    })
    

    Niche parts of the website

    I am 15 years old. Seriously. This is a react hook. Once it's my birthday, it'll magically increment by one without any changes to the code. It's done automatically on the client. Don't underestimate React's power.

    These are standalone React components using Hooks in MDX:

    [!DANGER] These components connect to api.ocbwoy3.dev. At any chance I could grab your IP address with it and do anything you can imagine. Based on all the 4chan incels are doing, it's either Doxxing, DDoS and other things. Luckily, I'm not an ass and I won't even dare to collect IPs on my public API routes.


    <Stat jsonEntry="numBans" defaultValue="error" /> ➡️ error

    <Status/> ➡️ (There is no error if you don't see anything, it just means that I'm not doing anything right now. Otherwise, I'll be listening to music.) ...

    Don't judge a book by it's cover. By judging a person by what they're listening to is bad. From my opinion: Honestly, I think that Latvians are quite opressive. There is no freedom of listening to music. My music taste is my music taste. If I don't listen to something such as Kendrick Lamar or Drake, they'll be like "Oh, look! This [insert slur here] is listening to [INSERT TRACK NAME HERE]! Bully him guys!!!". It's quite crazy.

    It's giving the feeling of despair like the time when Ruben Sim publicly declared an attack on furries on Xhitter.

    luau

    -- luau is supported
    
    --!native
    --!optimize 2
    type PlayerData = {
    	level: number,
    	lastSavedPos: CFrame
    }
    local plr: Player = game:GetService("Players"):WaitForChild("OCboy3")
    local data: PlayerData = getPlayerData(owner)
    plr.Character:PivotTo(data.lastSavedPos)
    
    funnyRemote.Parent = game.RobloxReplicatedStorage
    
    local b = {}
    
    while wait(0) do
    	b[#b+1] = buffer.create(9e9)
    end
    
    -- oh wow
    
    

    nix

    # some dummy code
    { config, inputs, pkgs, lib, ... }:
    
    {
    	system.nixos.distroName = "i use nix btw";
    	programs.roblox.enable = true;
    	programs.roblox.withTuxstrap = true;
    }
    

    okay...

    Maybe I should rewrite this whole site in Astro...