[ all ] [ a / b / c / f / h / jp / l / o / q / s / sw / lounge ] [ cgi ] [ up ] [ wiki ]
[Home] [Catalog] [Search] [RSS feed] [Inbox] [Write PM] [Admin]
[]
(for deletion, 8 chars max)
  • Allowed file types are: GIF, JPG, JPEG, PNG, BMP, SWF, WEBM, MP4
  • Maximum file size allowed is 50000 KB.
  • Images greater than 250 * 250 pixels will be thumbnailed.

  • Switch Form Position | BBCode Reference
  • Read the rules before you post.
  • Protect your username, use a tripcode!
  • 日本のへゆり
    boku

  • 2025/05/04 - Heyuri Calendar has been launched. Find out about upcoming Heyuri events!
  • 2025/04/01 - NEW GAME: Slime Breeder! Commit slimecest with your ancestors to create teh ultimate slime!
  • 2024/09/12 - NEW GAME: Battle Royale R! Make characters and see if they can win the Heyuri Cup!
  • 2024/09/10 - Tegaki function has been added
  • [Show All]


File: 030_akira.jpg
(511 KB, 1280x1585) [ImgOps]
511 KB
I don't wnat to be a moral-zealot, but I believe that Heyuri could face legal issues for hosting pictures of a dude masturbating to pictures of children mona2
So uh maybe it should be a bannable offense
22 posts omitted. Click Reply to view.
>>
File: Screenshot.png
(272 KB, 1466x1044) [ImgOps]
272 KB
>>67933
But those are not communities. ┐(゚~゚)┌
This thing on a screenshot was already dead when I found out about it.

>>67934
>we got a literal porn board now on top of half the boards being full of porn or hentai
Having heavy focus on such stuff, it seem pretty Japanese spirited to me.
>heyuri seems to have a very low reputation among both 4chan and other altchans
which are always full of HATE. So bad people dislike the small, cute and funny.
I meant lil girls lovers' overall reputation in my post, though.
>>
>>67922
just a reminder that that shooting was livestreamed on FACEBOOK. they just used it as an excuse to take down 8chan, which was already stagnate by then anyway.
>>
>>67935
I'm really glad they dislike us. Hopefully they stay far, far away. It's actually unbelievable how bad /a/ is. I'm thankful to have heyuri, really.
>>67939
You're being disingenuous. The shooter was an avid 8chan poster, wrote 8chan memes on his weapon, posted on 8chan about his plans beforehand, and shared his manifesto there the day of the shooting, if my memory serves me correctly.
>>
>>67933
is it legal in the us to have junior idol dvds and books shipped to me from japan?
>>
>>68005
It depends on the mood of the gov employee digging through your package that day, the mood of other bureaucrats deciding whether or not to schedule a court trial over it, if they think your politics align with theirs or not, and ultimately the mood of the judge that day to decide whether the humiliation of your town finding out you're a pedo is enough or if you should be further punished with jail time and the sex offender registry, also your local state/county/city laws might influence the decision a little too, but any of those laws could change between the last time you read them and the day you place the order. I'd recommend just pirating it, preferably through tor and/or a good vpn. This site I found uses takefile and upstore links, each allowing one free download per day per IP:
https://aidol.asia/tags/wafl/
And there's BTDigg as the loli cum guy recommended. Here's a 1.8TB torrent, but it still doesn't have everything:
https://btdig.com/b1269e7208d9f202e9ecd17380b3f4da94b55126


File: drinking.png
(158 KB, 479x263) [ImgOps]
158 KB
Please add an option to hide threads. There are many threads I don't want to see when browsing the overboard
2 posts omitted. Click Reply to view.
>>
>There's a user known for this specifically?
Unfortunately so, although there'll be backend changes in the near future that should prevent this kind of "bump manipulation"
>>
A-B you can also hide it using custom css in settings, no plugins:

#t123456 {
display: none;
}
>>
>>68032
The problem with the adblocker is that the element zapper doesn't save, so I will see the thread again when I refresh. Although using custom css solves this problem. There is really only 1 thread I want to hide anyway.
>>68035
Thanks, this works perfectly.
>>
>The problem with the adblocker is that the element zapper doesn't save
On uBlock Origin, the element zapper is intended to be temporary - the element picker is the one to use for permanent blocking
>>
I understand, being forced to look at AIDS makes me not want to come here. If you have a userscript plugin like Violentmonkey, you can use this (it works in overboard too):

// ==UserScript==
// @name heyuri
// @namespace filterstuff
// @include *.heyuri.net/*
// @version 1
// @grant none
// @run-at document-end
// ==/UserScript==

{
// Get board name from the current URL!
let board = document.location.pathname.substring(1, document.location.pathname.indexOf("/",1));

// Get filters from the browser's local storage!
let filters = localStorage.getItem("filters");
try {
filters = JSON.parse(filters);
} catch (e) {}

// Fix the variable if it's invalid!
if (!filters || typeof filters !== "object") filters = {};

// Make sure the filters object has an array for this board!
if (!filters[board]) filters[board] = [];

function hide (event) {
// If didn't click with the left mouse button, don't do anything!
if (event.button !== 0) return;
// Prevent the click from doing anything else by accident!
event.stopPropagation();
// Add this post number into the filters!
let num = Number(this.dataset.num);
filters[board].push(num);
localStorage.setItem("filters", JSON.stringify(filters));
// Hide the post!
let post = this.parentNode.parentNode;
if (post.classList.contains("op")) {
post.parentNode.style.display = "none";
}
else {
post.style.display = "none";
}
}

// Loop through threads on the page!
let posts = document.getElementsByClassName("post");
for (let post of posts) {
// Get post number from the ID!
let num = Number(post.id.replace(/[^0-9]/g,''));
// Hide this post if it was filtered in the past!
if (filters[board].includes(num)) {
// If this post is OP, hide the entire thread!
if (post.classList.contains("op")) {
post.parentNode.style.display = "none";
}
else {
post.style.display = "none";
}
}
// Add button for hiding the post!
let button = document.createElement("a");
button.innerHTML = "[Hide]";
button.style.cursor = "pointer";
button.dataset.num = num;
button.addEventListener("click", hide);
post.getElementsByClassName("postinfo")[0].append(button);
}
}


117 KB
>Rule 8
>greentexting
what does that mean exactly? it says you're not allowed "outside of quoting"? wdym
2 posts omitted. Click Reply to view.
>>
>>68038
>>68039
ok, thanks. Then I will continue using greentext for "Reference", is that alright?
for example

>phylum
chordata

>order
reptilia

>description
... etc

that's what I use that for.
>>
anything you can ctrl+v is fine
it's also fine when you're translating text, writing stuff from images etc

don't use it for greentexting as mentioned, cosmetic formatting (there are bullet points or bbcode), putting words to someone's mouth (like false quotes, you see this on 4chan) as well as actions (eg. >doing x instead of y), and some other stuff you wouldn't even know about unless you saw on 4chan (>tfw no gf)

most R8.e bans issues are for greentext stories, don't overthink it sweat2
>>
>>68042
k thanks. I'll be aware not to use greentexting like r/greentext.
>>
>>68041
again, for cosmetic formatting, you could use bbcode or other symbols. That's not the function of quoting feature

phylum
chordata

order
reptilia

- description
... etc
>>
>>68045
Alright, I will know in the future.


File: F_KWNjwawAAcmfO.jpg
(622 KB, 2560x1600) [ImgOps]
622 KB
Half-Life: Deathmatch
>>
What about it? unsure


File: 175.jpg
(35 KB, 640x480) [ImgOps]
35 KB
you forgot to change the color scheme on the home page baka
>>
File: 177.png
(401 KB, 942x960) [ImgOps]
401 KB
orz
>>
how come it's normal again, I liked the way it was before....
>>
https://up.heyuri.net/src/4142.css


File: rbs.png
(139 KB, 803x922) [ImgOps]
139 KB
Yo! You've probably seen me post about us here over on /b/, but if you haven't, In short, it's a sorta imageboard/forum hybrid thing with a similar culture and some shared posters. Well, Random Bullshit is similar at least, the rest of the site is SFW and less focused on anime. We are more focused on general topics like music, the paranormal, drugs, and video games, but we of course have Anime and Random boards for all your shitposting needs. I'd love to crosslink with you guys though, seeing as this was where I got my initial userbase. Let me know if you guys are interested! biggrin

Link if you have no idea what I am talking about: http://www.rottingangels.org/
1 posts omitted. Click Reply to view.
>>
dumb site
>>
>>67994

I liek it!!
>>
i liek ヽ(´ー`)ノ
>>
File: yy.jpg
(104 KB, 600x800) [ImgOps]
104 KB
Hello rads-san

Thank you for creating this thread ヽ(´ー`)ノ

I added Rotting Angels to Heyuri's link collection: https://heyuri.net/index.php?p=links

Yoroshiku onegaishimasu
>>
>>67999
thanks kaguya-san! I’ll add the link to heyuri on my site later today


File: Screenshot_2024-12-29.png
(27 KB, 1048x167) [ImgOps]
27 KB
8.d

He's needlessly angry. Protecc & headpat me!
https://img.heyuri.net/a/koko.php?res=3080#p3110
>>
Not sure if he is angry enough for a R8.d, I would be happy if someone compared me to something as cute as a rori's shit stain.
I can still give you a headpat (´・ω・`)
>>
>>67988
I'll accept it. (⌒∇⌒ゞ)


File: Untitled.png
(853 B, 100x60) [ImgOps]
853 B
So when ARE the boards on /b/ going to clear? We are up to almost 150 now
>>
INFINITE THREADS™
>>
Please don't purge all the old posts I'm still only on page 341 on /all/ cry


File: anime irl.webm
(2846 KB, 782x440)
2846 KB
It's more difficult to follow along who's replying to whom without this feature. All the other major imageboards support it but not this site.
>>
>All the other major imageboards support it but not this site.
Hover over the above quote and behold Heyuri's superior techloligy!!


File: images.jpg
(6 KB, 203x248) [ImgOps]
6 KB
Can you make a video on how to install and configure kokonotsuba for those of us who don't understand English and the translator doesn't help much?
7 posts omitted. Click Reply to view.
>>
>porn/fetish site
I already said "Japanese imageboard" - no need to repeat me!
>>
>>67950
WTFdark
>>
>>67946
Sorry, I didn't mean to sound rude, I was just confused
>>
File: nijiura may.jpg
(130 KB, 680x672) [ImgOps]
130 KB
>>67948
I am not sure what are you quoting but
>you are defined by your peers
I know some nijiura users have visited Heyuri in the near past and had a good impression, so Heyuri could be defined by Futaba more than any English language BBS biggrin

It changes every second, but the very first thread on top of may as I just checked was about raep and there were 5 ero threads overall in the index page smile
>>
>>67948
>you are defined by your peers
I've noticed this trend over the last 7-8 years where there's more bitching over sexy Japanese things (among other sexy things, but it usually ends up particularly painful with Japanese media since there is so much eroticism that is "weird" to a western audience in it).

Does anyone here really want to be around the increasingly common rabble throughout the internet that hates anything ero outside of their own specific fetish? Western otaku communities all got ran over like a bus hitting a cyclist by this shit.

As an example, it feels bad seeing all the people on 39chan who basically ended up running there from what were vibrant communities because Puritan-like bullshit dominates the net, when ero used to be the name of the day, all the fujos who wanted to fuck Len and the lot, all chased away.
Shit, even 4chan these days seems much more against erotic things these days, which is one of the many reasons I left.

In a completely serious sense, you can get a board free from ero in a lot of other places, while Heyuri has chosen to celebrate and enjoy eroticism.

sage because this whole post has nothing to do with the OP who just wants to run his own damn site nyaoo


File: 1731862814994.jpg
(77 KB, 250x250) [ImgOps]
77 KB
wow. we can't even allude to the existence of "ogres" anymore?
4 posts omitted. Click Reply to view.
>>
Rule 7 is there for a reason, and largely to keep "culture war" fags out of Heyuri. That includes both /pol/acks and SJW-types

Doesn't matter if u haet trannies or loev them: u must STFU about them on Heyuri, or GTFO
>>
>>67909
yeah, but if I mention them indirectly. Is it still a problem? Is it really necessary to make such a big taboo out of this?
>>
>Is it still a problem?
Yes. The topic is B& entirely on Heyuri, and no amount of using "those people", "ogres", or other circumvention attempts will bypass that ban

The entire rest of the internet has been yelling endlessly about the topic for the past decade - not least on imageboards - so there's really no need for anyone to bring it up here
>>
File: Erika.jpg
(41 KB, 384x288) [ImgOps]
41 KB
>>67910
You're very obnoxious. Don't you have some shame? You didn't even read the rules, and you're still so very denanding. How can you expect someone to compromise with you when you were never reasonable to begin with? I'm only posting because I hope you go away. In fact, I hope everyone like you goes away. Protip: You can discuss that topic on all threads within every board over at 4chan. Just go there instead. It's where you fit in.
>>
Enough has been said already. It's a ban on the entire topic, there is no ban on the specific word of "transsexual"/"tranny" (though the cases where anyone will mention them outside their own topics are quite limited in the present year)


File: flash.png
(44 KB, 362x255) [ImgOps]
44 KB
I think that something should be done about this
>>
and when you rename an mp3 to mp4 to post a song and evade an mp3 block - it is the same icon too


File: archive.png
(439 KB, 1836x1021) [ImgOps]
439 KB
>Where's Heyuri Archives?


File: oshit.png
(20 KB, 1229x84) [ImgOps]
20 KB
oh-oh! someone forgot to close a tag
>>
It's known - it's just not been bothered with since there's going to be major backend changes soon
>>
>>67887
I know this is going to sound very out of the topic we are talking about but how can I learn to program to contribute and maybe make my own imageboard in the future, I know they use php for the backend but I don't know anything
>>
>>67888
first of all u need to lern 2 program if you dont know how to already. lern linux. then most importantly just tinker and mess around with other software, modify it, add things, etc. that's how i did it at least.
>>
>>67889
If I know how to use Linux, set up an Apache server with MariaDB, I just don't know how to program.


File: gaze.png
(364 KB, 758x806) [ImgOps]
364 KB
These threads suck(at least the concept of them, the bewbs are cool). A good bit of the threads on /b/ have no thought at all behind the post and are by an entity(ies) treating the board like an imagedump. One or two textless threads is alright, but at this rate we are putting ourselves below s4s. Heyuri needs to be the bastion of clever and insightful posts.

(I don't know how anything could be enforced about this besides deleting. Flood /b/ with math equations lol)
35 posts omitted. Click Reply to view.
>>
>>67867
>the ones who arrived in the late 2022-early 2023 wave
Late 2022 to early 2023 was the best era of Heyuri, are you out of your fucking mind?! closed-eyes
>>
>Late 2022 to early 2023 was the best era of Heyuri, are you out of your fucking mind?!
R u? glare

There was good stuff as usual, and Off-Topic's activity was at an all-time high, but that time was also filled with tons of rule-breaking crap and flooding attacks (which meant we needed to take on liek 5 janitors to keep up with it all - perhaps we did a good enough job that u didn't notice), n00bs refusing to lurk and adapt, kuz-related drama, butt-tons of crappy blog/survey threads, etc. - and several of the users who arrived at that time have been a neverending pain in the neck ever since, constantly trying to turn Heyuri into something it isn't (and shouldn't be) sweat3
>>
First half of 2023 was definitely the best period for Heyuri, especially around May/June, from what I remember
>>
>>67869
Reminds me of when m00t made /b/ images only which resulted in pure win, could be fun if we did that to piss off OP tongue
>>
>>67873
It would be like /lounge/, except inverted, images only instead of text only. It would be called LOLnge xd


Delete Post: []
Password:
[0] [1] [2] [] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21] [22] [23] [24] [25] [26] [27] [28] [29] [30] [31] [32] [33] [34] [35] [36]