[ b / jp / o / q / sw / lounge ] [ cgi ] [ up ] [ wiki ]
[Home] [Search] [RSS feed] [Inbox] [Write PM] [Catalog] [Admin]
[Return]
Posting mode: Reply
[]
(for deletion, 8 chars max)
  • Allowed file types are: GIF, JPG, JPEG, PNG, BMP, WEBM, MP4
  • Maximum file size allowed is 9000 KB.
  • Images greater than 200 * 200 pixels will be thumbnailed.
boku

  • 2024/04/26 - Neomenu came back from 2021
  • 2024/04/26 - Museum@Heyuri has been launched
  • 2024/02/27 - Anime nominations and their votings will be held on this table from now on.
  • 2024/01/29 - Try out some extra CSS files: Link


Want your site's banner shown here too? Read this thread and contact me.

File: U GONNA GET FIXED.jpg
(113 KB, 427x640) ImgOps
113 KB
...well, actually this is only some of it sweat2

Needs doing
- fix deferer's ampersand bug (currently, links that contain "&" characters get b0rked)
- restore proper file download button functionality (should open save dialog box with the original filename instead of just opening the image)
- fix BBCode Reference link so the window opens in new window/tab instead of replacing current page and wiping ur post (was fixed in the past, but got reverted at some point)
- add CSS to break filenames when they're too long to fit the browser viewport
- fix "Marked for deletion (old)" so it appears on all threads that are past the bump limit (currently 7 days I think?) instead of only 1 month old threads
- restore imageboard source/credits links at bottom of index (they currently only appear when viewing threads)
- update Strange World script to latest version of translated ksphp+

Optional quests
- Needs moar emotes and kaomoji! (additional: upgrade BBCode Reference page to better suit having a bajillion emotes - more responsive layout, categories, etc.)
- make BBCode Reference use whatever the hell the settings and quick reply windows use to make it appear in a floating window (like how it used to be pre-kokonotsuba)
- bring back option to disable quote tooltip (the annoying thing that appears whenever you highlight text)
- bring back strikethrough, underline, and code BBCode
- bring back sage/noko/fortune checkboxes
- bring back "Switch Form Position" feature (kokonotsuba used to have it but it vanished at some point)
- bring back "users can vote for multiple items" option on /vote/ ("users can vote multiple times" can stay gone)
- bring back classic PENIS and VAGINA wordfilters, maybe some others
- bring back optional "Neo Menu" board links
- bring back some kind of report feature
- bring back "Currently _ unique users on this board."
- bring back Heyuri archive/museum
- bring back Heyuri wiki (HHS)
- make 2ちゃん an offical Heyuri service, or make a Heyuri-specific instance just for us
- longposts needs moar "Comment too long. Click reply to view the full text" on the index
- make vote script use UTF-8 to prevent non-Latin character b0rkage (if u send me teh code, I'll attempt it - I've done it for other scripts in the past)
- move Heyuri IRC back to Rizon (the IRC is mainly useful when Heyuri is down, which usually means the servers are down... so hosting it on our servers is teh st00pid!)

Food for thought / miscellaneous
- Heyuri's holy grail: restoring /all/, or finding an adequete replacement (some kind of RSS feed? notifications API? porting the old /all/ code to work with kokonotsuba? needs moar research...)
- Heyuri boards were once commonly referred to as their actual titles instead of the board directory, just as the Japanese do (i.e. Off-Topic instead of /b/, Overboard instead of /all/, etc.). Might be worth going back to that
- let's brainstorm ideas for neat new boards/features/whatevers, there's a lot of kewl scripts out there...
- don't leave sticky threads up for more than 24 hours, they are activity killers!
- someone who is not kaguya or kuz should make an official Heyuri refuge/shelter bulletin board in case poop hits teh fan or kaguya suddenly disappears in a tragic boating accident
- Heyuri Remix... I doubt it will get used much and we don't really need moar discussion boards, but I'd like to see it given a real chance (it was never linked outside of once or twice on Strange World - most Heyuri users didn't even know it existed...)
- Heyuri PO Box: would u host it? It's pretty much complete, except that I'd rly liek to make it use hashed passwords instead of storing them in plaintext... I can try doing it myself, but it would be better if somebody who knows what they're doing did it (^^;
>>
File: Yoko.jpg
(8 KB, 180x171) ImgOps
8 KB
Okino Yoko has arrived and she is here to stay. What might she have planned for today?
>>
File: wow!.png
(12 KB, 166x166) ImgOps
12 KB
>>61287
Oh! We can use her big head as a mallet!
>>
You have some seriously unrealistic expectations if you expect to just hand out a 50 page list of things that "need to be done" and expect a single man with no programming experience in high school can fix it all
>>
>>61289
We will see that
>>
>>61289
You have some seriously unrealistic(ly low) expectations of Heyuri! biggrin

Anywayz: kaguya asked me for a list of stuff to work on, I'm always around to help, and basic HTML/CSS tinkering isn't exactly "programming" - most of these tasks are liek 5 mins of changing variables and minor tinkering, and even the slightly more advanced stuff (like updating board software) is stuff that kaguya has done before

And don't forget that Heyuri's founder and former admin/developer was 16-17 during his run - many great admins and webmasters of internet past were teenagers, so being teh youngz0rs is no excuse!!!

HEYURI WILL RISE!
>> 12 KB
testing the dereferrer's ampersand bug: https://ayashii.net/bbs.php?c=58&d=30&p=3543&d=30

PENIS

VAGINA

Can you elaborate on what the filename thing is. Is it when you're uploading a file or when you're reading posts with a long filename?
>>
also the penis and vagina filter was removed because people were complaining that it was messing up their "serious" roleplay, iirc
>>
on 4chan or on here O_O
>>
>>61298
on gurochan, which uses kokonotsuba software
>>
>>61296
Ampersand bug seems to be resolved (w00t!), but the download button doesn't work yet. I think I may have discovered why:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attributes
>download
>Causes the browser to treat the linked URL as a download. Can be used with or without a value:
>Note:
>download only works for same-origin URLs, or the blob: and data: schemes.

So because our images are now stored on kncdn.org and not heyuri.net (this has been the case since around the end of 2021), the "download" attributes for the download button elements (which have existed this whole time) don't work dark

>Can you elaborate on what the filename thing is. Is it when you're uploading a file or when you're reading posts with a long filename?
I meant reading posts with long file names, yeah. Basically, when you hover over filenames on a lower resolution/small window size, they can cause the page width to expand beyond the browser viewport - this makes a horizontal scrollbar for the whole page suddenly appear/disappear, which is a little annoying and janky

All it needs is something like "word-break: break-word" on the .filesize class, which from my testing seems to solve the issue

>>61297
>also the penis and vagina filter was removed because people were complaining that it was messing up their "serious" roleplay, iirc
Dude, that's freaking hilarious LOL. Restore it on gurochan too! biggrin
>>
kaguya please petition the mozilla devs to fix this annoyance
>>
On the ban page, dates are displayed in a confusing yyyy/dd/mm format that isn't used anywhere else on the site (or Earth!)
>>
Does anyone else get a bug where you make a post on a board, close the tab that's on that board, then when you open a tab and go to that board's index again your post is not visible and you have to ctrl+F5 to see it?
>>
>>61314
Yep, especially on /o/ for some reason, but it happens on the other boards too. It freaks me out every time - for that split second I always think that my post failed or I'm B& or something dark

I'm a complete n00b in this area so I could be talking out of my an00s, but I believe it started around the time we switched to doing moar caching to improve performance.
We should summon kuz for his wisdoms on the matter - anyone got a loli or a trap to sacrifice? unsure
>>
File: chinko_gun.jpg
(86 KB, 620x666) ImgOps
86 KB
I am slowly working through The List, but here is a loli about to sacrifice a pen0rz to call kuz on the caching matter
>>
File: 1635967351359.jpg
(758 KB, 1400x1048) ImgOps
758 KB
and a loli on request
>>
>>61316
i dont knowe

and you dont need to hard refresh, just refresh once

its not a big problem
>>
File: 47823.png
(616 KB, 800x800) ImgOps
616 KB
Here is the aftermath of the effort to summon a kuz... It was worth it!
>>
im just here for the dead lolis
>>
>- bring back strikethrough, underline, and code BBCode

test 1

test 2


[ruby]test 3[/ruby]

test 4



test 5


[rt]test 6[/rt]

[rp]test 7[/rp]

test 8

 test 9
>>
Prevent kkwm dragging text on window move
https://github.com/KolymaNET/kokonotsuba-js/pull/4
>>
>>61416
o nice thx, how can I contact you?
>>
>>61417
It's only one line of code sweat
>>
>>61418
glare1

If you are l33t with JS and interested, maybe you can still help with some small stuff I need to figure out for /f/ later. I don't have any high expectations from volunteers really
>>
File: m4st3r h4xx0r.gif
(3095 KB, 450x258) ImgOps
3095 KB
>bring back option to disable quote tooltip (the annoying thing that appears whenever you highlight text)
https://github.com/KolymaNET/kokonotsuba-js/pull/5
>The IRC channel is now on irc.kolyma.net - NOT on irc.kolyma.org
Contact page on https://heyuri.net/index.php?p=contact still refers to .org.

>>61419
Tried sending an email, but >Message rejected under suspicion of SPAM.
I'm hesitant to post my email publicly. Can't promise the world since I'm just a hobby neet n00b, but if the /f/ tasks are relatively simple I might be able to help.
>>
>>61429
you should contact kaguya on irc instead of email
>>
>>61430
Tor Proxy is banned cry
>>
File: 61429 WINS.jpg
(60 KB, 600x696) ImgOps
60 KB
>>61429
>https://github.com/KolymaNET/kokonotsuba-js/pull/5
U WIN!!1 biggrin
(Updates from KNCDN don't immediately take effect as they are being cached, though it probably be here by the time you are reading this)

>Tried sending an email, but >Message rejected under suspicion of SPAM
try this: kagvya@protonmail.com

>/f/ tasks
I guess they aren't too complex, we pretty much already have a /f/ software ready but needs moar ruffle. Integrating ruffle itself seems easy enough, but it needs to have an option to be disabled as well.
I will set up a non-public flash testing board later on and we can see what else it needs
>>
>>61417
>https://github.com/KolymaNET/kokonotsuba-js/pull/5
I barely notice this, but for some reason, when "quote tooltip" is disabled it also doesn't let us get the post number like ">>61417" by clicking on "No.61429" on your post.
>>
>>61463
ah I'm fired... dark
Didn't check they shared the same module, I put up a PR for a fix to disable a specific function instead of the entire module already. Quote text (not post number, but quoting selected text in addition) doesn't work unless you use the quote tooltip, but that was how it was previously.
>>
what do the little heyuri stars next to people's names mean?
>>
>>61510
It means they have KolymaVIP
see https://vipcode.kolyma.org/
>Optional icon to enable
>>
>>61510
That mens user owns a vipcode, which is a now antiquated feature since kaguya removed kaptcha

It could be in the past, that you can buy a pincode which allows you to bypass captchas by making them dissapear. You still can, but its useless on Heyuri
>>
>>61512
I always see it more like a gesture to show you that have supported Heyuri by helping covering the server costs of Kolyma, not a extra thing to bypass the kaptcha. I don't think anyone actually has any trouble solving kaptcha that they would spend money to bypass it anyways
>>
>fix deferer's ampersand bug (currently, links that contain "&" characters get b0rked)
Done!

>- restore proper file download button functionality (should open save dialog box with the original filename instead of just opening the image)
Done!

>- fix BBCode Reference link so the window opens in new window/tab instead of replacing current page and wiping ur post (was fixed in the past, but got reverted at some point)
Done!

>- add CSS to break filenames when they're too long to fit the browser viewport
Done!

>- fix "Marked for deletion (old)" so it appears on all threads that are past the bump limit (currently 7 days I think?) instead of only 1 month old threads
Dev werk, feel free to ask on Github by making an issue.

>- restore imageboard source/credits links at bottom of index (they currently only appear when viewing threads)
Done!

>- update Strange World script to latest version of translated ksphp+
Done!

>- Needs moar emotes and kaomoji! (additional: upgrade BBCode Reference page to better suit having a bajillion emotes - more responsive layout, categories, etc.)
Done!

>- make BBCode Reference use whatever the hell the settings and quick reply windows use to make it appear in a floating window (like how it used to be pre-kokonotsuba)
Alternative JS was created by a user.

>- bring back option to disable quote tooltip (the annoying thing that appears whenever you highlight text)
Done!

>- bring back strikethrough, underline, and code BBCode
Done!

>- bring back sage/noko/fortune checkboxes
I don't think this is a good idea, kuz removed them on purpose too. Perhaps it should be optional JS on settings?

>- bring back "Switch Form Position" feature (kokonotsuba used to have it but it vanished at some point)
There is an issue for this on GitHub.

>- bring back "users can vote for multiple items" option on /vote/ ("users can vote multiple times" can stay gone)
Done!

>- bring back classic PENIS and VAGINA wordfilters, maybe some others
Done!

>- bring back optional "Neo Menu" board links
I am not sure how..

>- bring back some kind of report feature
I don't think we really need this.

>- bring back "Currently _ unique users on this board."
I made an issue on GitHub for this

>- bring back Heyuri archive/museum
Done! Somewhat. I can't get it to open threads...

>- bring back Heyuri wiki (HHS)
Done!

>- make 2ちゃん an offical Heyuri service, or make a Heyuri-specific instance just for us
Done! R7/8 are enforced.

>- longposts needs moar "Comment too long. Click reply to view the full text" on the index
We can make an issue for this on GitHub, but u figured out a way by CSS.

>- make vote script use UTF-8 to prevent non-Latin character b0rkage (if u send me teh code, I'll attempt it - I've done it for other scripts in the past)
Done! Thanks!

>- move Heyuri IRC back to Rizon (the IRC is mainly useful when Heyuri is down, which usually means the servers are down... so hosting it on our servers is teh st00pid!)
I don't want to draw attention to our IRC, but A. IRC is on a different server B. Rizon channel is still there too

>- Heyuri's holy grail: restoring /all/, or finding an adequete replacement (some kind of RSS feed? notifications API? porting the old /all/ code to work with kokonotsuba? needs moar research...)
There is an issue for this on GitHub. I rly want it too, especially a notifications API would be pretty cool.

>- Heyuri boards were once commonly referred to as their actual titles instead of the board directory, just as the Japanese do (i.e. Off-Topic instead of /b/, Overboard instead of /all/, etc.). Might be worth going back to that
I am doing this by myself lately. You do it too and other users will eventually pick up.

>- let's brainstorm ideas for neat new boards/features/whatevers, there's a lot of kewl scripts out there...
Thanks for that!

>- don't leave sticky threads up for more than 24 hours, they are activity killers!
Agreed

>- someone who is not kaguya or kuz should make an official Heyuri refuge/shelter bulletin board in case poop hits teh fan or kaguya suddenly disappears in a tragic boating accident
I don't have any relationships with yandere girls (;_;) but dew it anyways

>- Heyuri Remix... I doubt it will get used much and we don't really need moar discussion boards, but I'd like to see it given a real chance (it was never linked outside of once or twice on Strange World - most Heyuri users didn't even know it existed...)
I can't run CGI scripts...

>- Heyuri PO Box: would u host it? It's pretty much complete, except that I'd rly liek to make it use hashed passwords instead of storing them in plaintext... I can try doing it myself, but it would be better if somebody who knows what they're doing did it (^^;
...but u can!

------
I started writing this last year, saved in some txt file and forgot about it until just now sweat2
It's a bit scaring a whole year has passed since...
>>
ZOMG that's a lot of Done!'s astonish

We've done a surprisingly good job this past year... HEYURI DID RISE! biggrin
>>
The OC archive page is broken, if anyone knew this already I apologize.
>>
>>63937
I forgot about that page tongue

Here, I also added some Heyuri-tans: https://www.heyuri.net/index.php?p=oc

I remember there was another thread for 2021 stuff, but it was saved on archive.today which only saves thumbnails so I didn't include it.
>>
>- fix "Marked for deletion (old)" so it appears on all threads that are past the bump limit (currently 7 days I think?) instead of only 1 month old threads
Done!

>- bring back "Currently _ unique users on this board."
Done!

>- move Heyuri IRC back to Rizon (the IRC is mainly useful when Heyuri is down, which usually means the servers are down... so hosting it on our servers is teh st00pid!)
Done!


Delete Post: []
Password:
First[0] Last