[Home] [Catalog] [Search] [Inbox] [Write PM] [Admin]

We will watch Strike Witches (2008) next Saturday 18:00 UTC [Info] [Countdown]

Last Oekaki@Heyuri post was 1 hour, 29 minutes ago
Last Strange World@Heyuri post was 4 hours, 57 minutes ago ヽ(´ー`)ノ
Filter boards
Flash@Heyuri
File: download.swf
(3641 KB, 550x400)[swfchan]
SWF Embed
I... I think I've managed to made a gott damn working loading screen ヽ(´ー`)ノ
Does it work for you? (´人`)
(it is possible that the loading screen dosen't last long)
Marked for deletion (Old)
>>
manko dechu!
>Does it work for you? (´人`)
if it does, it didn't last long enough to notice :sweat2:
>>
>>2701
Congrats it does! :dance:
A suggestion I can make from personal experience is to use a masking layer so the drawing reveals itself rather than stretch out through the screen. Another fun thing to test is to make a play button show up after it loads (copy and paste the frame and add a play button)

Off-Topic@Heyuri
File: eL1KHW0.jpg
(65 KB, 500x750)[ImgOps]
65 KB
i come to heyuri dot net to masturbate :biggrin:
Marked for deletion (Old)
63 posts omitted. Click Reply to view.
>>
239 KB
>>148049
i dont have much. (;´Д`)
>>
21 KB
キタ━━━(゚∀゚)━━━!!
>>
>>148052
yai is too cute
>>
File: 1639777772929.jpg
(145 KB, 725x1024)[ImgOps]
145 KB
>>
File: pedocum2.jpg
(6517 KB, 3504x4656)[ImgOps]
6517 KB
>>148060
A winrar is you! Sorry it took so long to deliver, I was edging. :blush:

Off-Topic@Heyuri
File: 1596571403571.jpg
(138 KB, 768x1024)[ImgOps]
138 KB
i want to apologize for any pain and suffering i have caused any of you by posting on heyuri dot net :cry:

(USER WAS NOT FORGIVEN FOR MY PAIN AND SUFFERING) banhammer

Marked for deletion (Old)
>>
File: 1744606470163.gif
(1711 KB, 540x540)[ImgOps]
1711 KB
it hurts. It hurts so much.
>>
APOLOGY = REJECTED!!1!1!
>>
Apologize for not posting moar on 3D Girls!! ...but keep it legal plz
>>
>>148015
i apologize. i repent. i don't want to make the mods mad at me again :cry:

Off-Topic@Heyuri
File: ivu_edit.mp4
(15526 KB, 960x720)
15526 KB
small tribute to teh IVU thread, i wouldve made this a reply 2 the original thread but its in autosage :sweat2:
Marked for deletion (Old)
16 posts omitted. Click Reply to view.
>>
キタ━━━(・∀・)━━━!!
Saved!

キタ━━━(・∀・)━━━!!
Nice Job!
>>
Beautiful.
>>
File: heyuri_seal_of-winrarV2.gif
(7762 KB, 552x554)[ImgOps]
7762 KB
EPIK WINRAR!
>>
>>147904
How to make gifs like this :astonish:
>>
File: obi.jpg
(14 KB, 359x300)[ImgOps]
14 KB
>>148054
with love and teh force :biggrin:

Off-Topic@Heyuri
File: photo_2025-06-29_23-41-43.jpg
(721 KB, 2425x2560)[ImgOps]
721 KB
I finished on hdd with cp
Marked for deletion (Old)
1 posts omitted. Click Reply to view.
>>
lol'd
>>
LOL
>>
LOL what was it in before?
>>
File: CUMDD.jpg
(306 KB, 1920x1080)[ImgOps]
306 KB
CUMDD 2PETACUMS
>>
>>148057
DO IT ON A FLOPPY NEXT

Off-Topic@Heyuri
File: mizuki8.jpg
(132 KB, 800x600)[ImgOps]
132 KB
All of you BBS hackers of Heyuri, where have you learnt your Perl? I want to learn Perl to make/modify CGI scripts. First I thought I'd go over the "camel book", but now it seems way too long and detailed for my purposes, and I've been thinking that perhaps some web resource would suit me better.
Marked for deletion (Old)
4 posts omitted. Click Reply to view.
>>
>>147921
>All of you BBS hackers of Heyuri, where have you learnt your Perl?
ah i should have awnserd. trial and error trying to help /cgi/ with new stuff and already knowing programing. i want to learn perl as its kool and openbsd supports it natively fully (there pakage manager was written in perl) and i thought there would be a hand full of jobs maintainng this shit
tho i never used it on openbsd. and setting up web shit for perl sucks, i thought there would be ton of guids to get perl working with nginx or apachie (since it use to run the whole web at one point) but there is nothign and it a pain.

another thing. cgi just means commen gateway interface. and what that means is. user parameters come from std in and html goes std out
so you could write c programs and put them in a cgi bin and have them execute and work. https://learnbchs.org/
>>
why did CGI scripting die off anyway? it seems perfectly serviceable for software like this
>>
>>147988
program in perl and tell me! cgi scripting is not bad. php is still cgi. its the most simplest way to make dynamic pages. but outside of nginx or apachi.
ppl use different web servers with there own way, like go's web server or flask in python or spring boot's web server. each still do read http protocol (witch is still plane text, u can use telnet and see) and put raw text and get raw text out, they just digest it all difrently and its more frame work centric then just using any old language and reading stdin and pumping stdout.aka the frameworks dont think of it as stdin and stdout. shit even lareval a php framwork, its just so far from thinking and using it in a stdin/stdout way that you prob could not consider it to be cgi with how you have to use it

>>
>why did CGI scripting die off anyway? it seems perfectly serviceable for software like this
I don't know teh technicalities, but it seems to have inherent limitations regarding "live" updates and things of that nature

Here's something from teh interwebz circa 2018: https://www.perl.com/article/perl-and-cgi/#why-not-to-use-cgi
So, why did CGI drop from “state of the art” to discouraged by its own maintainers?

There are two big issues with CGI: speed and complexity. Every HTTP request triggers the forking of a new process on the web server, which is costly for server resources. A more efficient and faster way is to use a multi-process daemon which does its forking on startup and maintains a pool of processes to handle requests.

CGI isn’t good at managing the complexity of larger web applications: it has no MVC architecture to help developers separate concerns. This tends to lead to hard-to-maintain programs.

The rise of web frameworks such as Ruby on Rails, and the application servers they run on, have done much to solve both problems. There are many web frameworks written in Perl; among the most popular are Catalyst, Dancer, and Mojolicious.

CGI also contains a security vulnerability which must be coded around to avoid parameter injection.
>>
>>147994
>Every HTTP request triggers the forking of a new process on the web server
look up fastcgi
>it has no MVC architecture
framework issue not a protocol issues. see php and php larevel
>CGI also contains a security vulnerability which must be coded around to avoid parameter injection.
u have to do that anyways in any lang where you want to save and use user data.

it being "slow" or not scalable is quite retarded. take any modern nu web app vs some ol cgi bin, it rapes the nu web app in speed over and over.

now the issue with it being live (or i assume reactive/restful, that is just mixing js with some json end point)cgi can do that. now if you mean websockets, yeah cgi cant really do that and its not really even http to begin with but you can use websocketd and its basically the same as cgi scripting as you read std in and send msg to std out

Off-Topic@Heyuri
File: wiseaufilms34.png
(240 KB, 711x403)[ImgOps]
240 KB
You know what they say... love is blind.
Marked for deletion (Old)
>>
I CAN'T SEE SHIT :love:
>>
File: tumblr_lrvmry3TIR1qg39ewo1_500.gif
(378 KB, 499x260)[Animated GIF][ImgOps]
378 KB
>>
File: 440px-Tommy-Wiseau-1.jpg
(29 KB, 440x581)[ImgOps]
29 KB
i did not ban evade it's not true it's bullshit i did not ban evade i did naaaawt (`Д´)

o hai mod ( ´ω`)
>>
File: xvq1jpocwfa01.png
(302 KB, 1080x604)[ImgOps]
302 KB
Anonymous enters teh imageboard.

Anonymous: Hi.

Kaguya: Can I help you?

Anonymous: (removing sunglasses) Yeah, can I have a dozen lolis, please?

Kaguya: Oh hi, Anonymous, I didn’t know it was you. Here you go.

Anonymous: That’s me! How much is it?

Kaguya: It’ll be eighteen internets.

Anonymous: Here you go, keep the change. Hi hachikuji!

Kaguya: You’re my favorite poster.

Anonymous: Thanks a lot, bye!

Kaguya: Bye bye!
>>
File: 121.png
(318 KB, 1600x1200)[ImgOps]
318 KB
An internet business

Off-Topic@Heyuri
7844 KB
Marked for deletion (Old)
15 posts omitted. Click Reply to view.
>>
>>147854
i am not surprised that the show attracts a bunch of weirdos due to its popularity.
>>
File: savefrom-18674.mp4
(1766 KB, 480x854)
1766 KB
Has anyone been to a convention and seen someone in a Digital Circus costume?
>>
>>147896
this is cute! :biggrin:
>>
>>147938
now its blank! :astonish:
>>
i went back to watch all the episodes because of this thread. :biggrin:

Anime/Manga@Heyuri
File: 128826637_p0.png
(3718 KB, 2048x2732)[ImgOps]
3718 KB
After watching a few spring season shows, I think mono is my favorite. It is an adaptation of another work by Yuru Camp mangaka. There is a similar vibe, but in my opinion the girls are much, much cuter!
Marked for deletion (Old)
32 posts omitted. Click Reply to view.
>>
>>4689
I agree. The episodes where the mangaka had the least screentime were the most enjoyable.
>>
>>4528
i dropped mono and started watching aharen san s1 :nyaoo:
>>
>>4703
As much as I love Aharen-san, Monogatari Series is literally the best anime.
>>
>>4708
Oh, I'm an idiot, i forgot the thread was about something JUST called "Mono."
>>
>>4709
mono is a dumb name anyway i dont even know what it refers to

Anime/Manga@Heyuri
File: 770.jpg
(59 KB, 640x480)[ImgOps]
59 KB
As a n00b like me who didn't watch TTGL when it was airing at its peak i can't help but catch a major case of FOMO looking at them. Anyone who was around at that time how was the attention it got?
Marked for deletion (Old)
7 posts omitted. Click Reply to view.
>>
ttgl was inescapable if you were in any circles that were into anime

and a handful of more normal audiences might have referenced shit like Kamina's shades or ROW ROW FIGHT DA POWAH

honestly, it's still a fucking great show so like go watch it anyway
maybe not quite as 11/10 perfect as I thought it was all those years ago, but fuck man, even among the sort who were like "lol Getter Robo ripoff" - you could do much worse than ripoff something as cool as Getter and do it well :cool:
it is an 8/10 at its worst (apart from the one episode where everything is off model and backgrounds were too much effort to draw :biggrin: )
>>
>>4554
Not really. TTGL blew CG out of the water when it came to exposure. CG only really became popular in anime circles in Season 2. When the last episode of Season 1 of CG aired, everyone on /a/ was talking about how hot they thought post-skip Nia was.
>>
File: 1736327073564.jpg
(133 KB, 800x1143)[ImgOps]
133 KB
>>4548
it's one of those things that if you missed the boat, then the show only has itself to stand on. I missed the hype and tried watching it later multiple times. It's shounenshit. I don't know what else to tell you; I'm not going to worship something just because people in 2007 liked it
>>
Gabage show. They literally killed off every cool dude.
>>
>>4710
Except ONE, that is.

Off-Topic@Heyuri
File: 1748461707360.png
(417 KB, 749x749)[ImgOps]
417 KB
PLEASE PLEASE PLEASE boot up your machine and seed coolier.net oeakakis 4 me!!!
i downloaded 691.7M already!!!
Marked for deletion (Old)
>>
pwease...

Off-Topic@Heyuri
File: 1751070956211.jpg
(192 KB, 1000x616)[ImgOps]
192 KB
キタ━━━(゚∀゚)━━━!!
Marked for deletion (Old)
>>
DON'T LAUGH, I WAS BORN WITH THESE PIXELS
>>
LOL @ pixels
>>
it was censored not for being a cock
but for the violence they had enacted upon it ( ´ω`)

Off-Topic@Heyuri
File: 1751236346191194.jpg
(69 KB, 1000x548)[ImgOps]
69 KB
Why is it that every White person or non Indian person for that matter that gets into Hinduism is extremely weird? i get that converting to a foreign religion is usually done by those who are on the outskirts of whatever society they are currently a member of but Hinduism consistently seems to attract the most insane people
Marked for deletion (Old)
>>
i would not touch anything indian with a stick
>>
They don't want to POO in teh LOO any longer. :biggrin:
>>
same observation here
>>
I've seen more white people into Buddhism than Hinduism, but yes, Westerners are interested in Eastern religions. One reason is that they misunderstand the dharmic religions and feel they have "less rules" or be "more tolerant" than the Abrahamic religions. But this is not always the case, and I think many are sincerely seeking spirituality. They rightly see that Evangelical Christianity is the McDonald's of religion and because of its widespread influence, mistakenly believe all Christianity must be similarly bereft of wisdom so they go looking for it in the East.
>>
File: canigetuhhh.jpg
(41 KB, 640x640)
41 KB
>>147983
or must be*

2D Cute@Heyuri
95 KB
キタ━━━(゚∀゚)━━━!!
>>
32 KB
キタ━━━(゚∀゚)━━━!!
>>
49 KB
キタ━━━(゚∀゚)━━━!!

Anime/Manga@Heyuri
File: mnh.jpg
(84 KB, 560x840)[ImgOps]
84 KB
We will watch Midori no Hibi (2004) the next Saturday (28th), starting 18:00 UTC

Join from here when the time comes: https://cytu.be/r/heyuri

In this show we have a overpowered high school delinquent waking up to find his right hand as a sentient being, and a girl no less! It's a R+ rated shounen, so you can expect at least some eroi actions :nyaoo-closedeyes:

For newcomers, you can find the detailed information and our previous streams from here: https://wiki.heyuri.net/index.php?title=Heyuri_Cytube
Heyuri's rules apply in the CyTube channel.

Also please fill our nominations page where we pick these shows from: https://cgi.heyuri.net/nominate/ - you must log in at least once every 4~ months to keep your votes intact!
Marked for deletion (Old)
23 posts omitted. Click Reply to view.
>>
72 KB
キタ━━━(゚∀゚)━━━!!
>>
146 KB
Now that should be all
>>
File: tegaki1751142243111.png
(73 KB, 400x400)[ImgOps]
73 KB
>her head should've EXPLODED from the sudden pressure of holding his weight
well here you go, artistic liberties taken :cool:
>>
>>4651
lol missed it. maybe next time
>>
ofc i hade to be busy on funni movie night... sucks man :cry:

2D Ero@Heyuri
File: 4269656.gif
(3273 KB, 1000x563)[ImgOps]
3273 KB
キタ━━━(゚∀゚)━━━!!

Off-Topic@Heyuri
File: mrd_cirno-petscii.png
(3 KB, 384x272)[ImgOps]
3 KB
was fucking around with Petmate, an editor for making C64 PETSCII art
https://nurpax.github.io/petmate/
and I re-drew some pictures with it

give it a shot!

black background is the easiest since you can't change that color per-cell, but you have options
Marked for deletion (Old)
7 posts omitted. Click Reply to view.
>>
File: New Screen.png
(6 KB, 384x272)[ImgOps]
6 KB
lol heyuri
>>
File: lolheyuri.png
(2 KB, 320x200)[ImgOps]
2 KB
キタ━━━(゚∀゚)━━━!!
>>
>>147907
ヽ(´∇`)ノ
>>
I discovered you can use custom tiles by using the "bitmap editor" (゚ー゚)
>>
File: New Screen(1).png
(29 KB, 768x544)[ImgOps]
29 KB

Off-Topic@Heyuri
455 KB
Does this disqualify me from being a virgin?
Marked for deletion (Old)
5 posts omitted. Click Reply to view.
>>
I've noticed that the less i fap, the more often i have these dreams.
I did not touch my dick for 7 days and starting from day 2 i've had lewd dreams almost every day.
Try it :nyaoo:
>>
A few nights ago I had dream where some dumb bint was in my bed and I manhandled her, but nothing else. But then later on I went outside and there was a giant open field full of people fucking, including a "spent bitch pile" where the girls just lied there used up. :sweat2:
>>
I've been having sex dreams involving 2D girls often for teh past year or so. It must be doutei kami-sama's blessing for not betraying 2D :nyaoo-closedeyes:
I had a good haarem sekkusu just this night too, but I can't recall details...
>>
>>147905
But I can't stop touching my PENIS :blush: I need someone to keep me in chastity. :blush:
>>
266 KB
>>147874
>>147875
>>147898
So... No consensus?
>>147900
It was Lilly from Katawa Shoujo, it is odd as i like Rin more.

Off-Topic@Heyuri
1897 KB
ヽ(´ー`)ノPost your favorite music from video games or whatever.
Marked for deletion (Old)
5 posts omitted. Click Reply to view.
>>
>>
23892 KB
i share mine
now it's your turn (´・ω・`)
>>
>>
https://www.youtube.com/watch?v=aT3z4k1BlDg&list=PLA7E90B6A7F3A3750

the Cho Ren Sha soundtrack kicks ass :cool:
stages 3, 4, and 0 are my favorites
>>
>>147877
I love you anon :3

Off-Topic@Heyuri
186 KB
I woke up and my hand is sonic teh hedgehog (;´Д`)
Marked for deletion (Old)
>>
File: 7734.swf
(4622 KB, 480x360)[swfchan]
SWF Embed
Sonic hand loves you
He's blue for you
https://www.youtube.com/watch?v=pXMWQoUbtrc
>>
sonic no hibi :astonish:

Delete post: []
[0] [1] [2] [3] [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] [37] [38] [39] [40] [41] [42] [43] [44] [45] [46] [47] [48] [49] [50] [51] [52] [53] [54] [55] [56] [57] [58] [59] [60] [61] [62] [63] [64] [65] [66] [67] [68] [69] [70] [71] [72] [73] [74] [75] [76] [77] [78] [79] [80] [81] [82] [83] [84] [85] [86] [87] [88] [89] [90] [91] [92] [93] [94] [95] [96] [97] [98] [99] [100] [101] [102] [103] [104] [105] [106] [107] [108] [109] [110] [111] [112] [113] [114] [115] [116] [117] [118] [119] [120] [121] [122] [123] [124] [125] [126] [127] [128] [129] [130] [131] [132] [133] [134] [135] [136] [137] [138] [139] [140] [141] [142] [143] [144] [145] [146] [147] [148] [149] [150] [151] [152] [153] [154] [155] [156] [157] [158] [159] [160] [161] [162] [163] [164] [165] [166] [167] [168] [169] [170] [171] [172] [173] [174] [175] [176] [177] [178] [179] [180] [181] [182] [183] [184] [185] [186] [187] [188] [189] [190] [191] [192] [193] [194] [195] [196] [197] [198] [199] [200] [201] [202] [203] [204] [205] [206] [207] [208] [209] [210] [211] [212] [213] [214] [215] [216] [217] [218] [219] [220] [221] [222] [223] [224] [225] [226] [227] [228] [229] [230] [231] [232] [233] [234] [235] [236] [237] [238] [239] [240] [241] [242] [243] [244] [245] [246] [247] [248] [249] [250] [251] [252] [253] [254] [255] [256] [257] [258] [259] [260] [261] [262] [263] [264] [265] [266] [267] [268] [269] [270] [271] [272] [273] [274] [275] [276] [277] [278] [279] [280] [281] [282] [283] [284] [285] [286] [287] [288] [289] [290] [291] [292] [293] [294] [295] [296] [297] [298] [299] [300] [301] [302] [303] [304] [305] [306] [307] [308] [309] [310] [311] [312] [313] [314] [315] [316] [317] [318] [319] [320] [321] [322] [323] [324] [325] [326] [327] [328] [329] [330] [331] [332] [333] [334] [335] [336] [337] [338] [339] [340] [341] [342] [343] [344] [345] [346] [347] [348] [349] [350] [351] [352] [353] [354] [355] [356] [357] [358] [359] [360] [361] [362] [363] [364] [365] [366] [367] [368] [369] [370] [371] [372] [373] [374] [375] [376] [377] [378] [379] [380] [381] [382] [383] [384] [385] [386] [387] [388] [389] [390] [391] [392] [393] [394] [395] [396] [397] [398] [399] [400] [401] [402] [403] [404] [405] [406] [407] [408] [409] [410] [411] [412] [413] [414] [415] [416] [417] [418] [419] [420] [421] [422] [423] [424] [425] [426] [427] [428] [429] [430] [431] [432] [433] [434] [435] [436] [437] [438] [439] [440] [441] [442] [443] [444] [445] [446] [447] [448] [449] [450] [451] [452] [453] [454] [455] [456] [457] [458] [459] [460] [461] [462] [463] [464] [465] [466] [467] [468] [469] [470] [471] [472] [473] [474] [475] [476] [477] [478] [479] [480] [481] [482] [483] [484] [485] [486] [487] [488] [489] [490] [491] [492] [493] [494] [495] [496] [497] [498] [499] [500] [501] [502] [503] [504] [505] [506] [507] [508] [509] [510] [511] [512] [513] [514] [515] [516] [517] [518]