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

Posting mode: Reply

(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 200 * 200 pixels will be thumbnailed.



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


File: osuwari_mashimaro.jpg
(81 KB, 360x311)[ImgOps]
81 KB
Ichigo Mashimaro shimeji (window sitters) used to exist, but do they still exist? I searched all over the internet and can't find any other traces of them.
https://desuarchive.org/a/thread/14309674/#q14310761
https://desuarchive.org/a/thread/281833510/#q281834268
There's supposedly an Ana shimeji in the above thread but 7zip can't open the rar.
>>
30 KB
キタ━━━(゚∀゚)━━━!!
>>
i really want the nobue one!!!1!! (;´Д`)
>>
>There's supposedly an Ana shimeji in the above thread but 7zip can't open the rar.
You fell for one of teh oldest tricks - rename the file to .jpg instead of .rar
>>
File: ana window sitter.jpg
(1950 KB, 155x239)[ImgOps]
1950 KB
>>155428
Is the trick that it's actually just a 30 KB jpg on top of 1.9 MB of garbage data that can't be extracted?
>>
kawaii~!:biggrin:
>>
>>155422
does anyone have these? the links in desuarchive r ded :cry:
>>
Do they still make software like this? For Linux? I love Ichigo Mashimaro but I'll take having any loli sitting on my desktop. :nyaoo2:
>>
>Do they still make software like this?
like most kewl things, the age of dedicated otaku software is behind us

>For Linux
if u can get legacy java running...
https://github.com/estenv/linux-shimeji (I dunno how shimeji works, I suppose you import them like ghosts of ukagaka?)
>>
File: CUTE GIRLS ON HEYURI?!.png
(47 KB, 850x320)[ImgOps]
47 KB
seems someone actually archived teh IM rapidshit link but teh .rar is broken, i know desubuddy was a thing but teh links for it are dead now as well, HOWEVER macopix still works just fien :cool:
>>
File: me.jpg
(51 KB, 640x480)[ImgOps]
51 KB
>>155516
I don't know how I would do that. But would it be possible to make this in Python? Could just have ChatGPT write a script that places a transparent .png or .gif in the corner of the screen.

Does anyone have an that would be good for that?
>>
>>155564
have an image that would be good for that*
>>
1951 KB
Okay, I found one that I'd like to use. Although I think having this on my desktop all the time would be a little... distracting. :nosebleed: So if you guys have anything that's moar cute and less horny, pls post. :happy:

I'm going to ask teh LLM for a script and report back with results.
>>
File: shimeji2-2025-09-15_11.53.16.mp4
(746 KB, 1366x768)
746 KB
It fukken works! :iyahoo: I had to install a bunch of python modules but it wasn't hard to get working. The script is:

import sys
from PyQt5 import QtWidgets, QtGui, QtCore

class DesktopPet(QtWidgets.QLabel):
    def __init__(self, gif_path):
        super().__init__()

        # Load animated GIF
        self.movie = QtGui.QMovie(gif_path, QtCore.QByteArray(), self)
        self.setMovie(self.movie)
        self.movie.start()

        # Remove window frame, stay on top
        self.setWindowFlags(
            QtCore.Qt.FramelessWindowHint |
            QtCore.Qt.WindowStaysOnTopHint |
            QtCore.Qt.SubWindow
        )
        # Transparent background
        self.setAttribute(QtCore.Qt.WA_TranslucentBackground, True)

        # Resize to GIF size
        self.resize(self.movie.currentPixmap().size())

        # Place bottom-right
        screen = QtWidgets.QApplication.primaryScreen().geometry()
        x = screen.width() - self.width() - 20
        y = screen.height() - self.height() - 50
        self.move(x, y)

if __name__ == "__main__":
    app = QtWidgets.QApplication(sys.argv)
    pet = DesktopPet(sys.argv[1])
    pet.show()
    sys.exit(app.exec_())


Hopefully some of you guys can figure out how to improve it. :cool:
>>
Had teh bot add the ability to drag her around, and right click to quit. I should have just added that from teh start, my bad. :sweat2:

Now imagine, if we have someone here dedicated enough at art to make a few animations, we could make a Heyuri-tan one!! We could have it so that she squirms around when we click and move her, and an animation of her eating a snack when you right click > feed. :nyaoo:

import sys
from PyQt5 import QtWidgets, QtGui, QtCore

class DesktopPet(QtWidgets.QLabel):
    def __init__(self, gif_path):
        super().__init__()

        # Load animated GIF
        self.movie = QtGui.QMovie(gif_path, QtCore.QByteArray(), self)
        self.setMovie(self.movie)
        self.movie.start()

        # Frameless, transparent, always on top
        self.setWindowFlags(
            QtCore.Qt.FramelessWindowHint |
            QtCore.Qt.WindowStaysOnTopHint |
            QtCore.Qt.SubWindow
        )
        self.setAttribute(QtCore.Qt.WA_TranslucentBackground, True)

        # Resize to GIF size
        self.resize(self.movie.currentPixmap().size())

        # Place bottom-right by default
        screen = QtWidgets.QApplication.primaryScreen().geometry()
        x = screen.width() - self.width() - 20
        y = screen.height() - self.height() - 50
        self.move(x, y)

        # For dragging
        self.dragging = False
        self.offset = QtCore.QPoint()

        # Build context menu
        self.menu = QtWidgets.QMenu()
        quit_action = self.menu.addAction("Quit")
        quit_action.triggered.connect(QtWidgets.qApp.quit)

    def mousePressEvent(self, event):
        if event.button() == QtCore.Qt.LeftButton:
            self.dragging = True
            self.offset = event.globalPos() - self.frameGeometry().topLeft()
        elif event.button() == QtCore.Qt.RightButton:
            self.menu.exec_(event.globalPos())

    def mouseMoveEvent(self, event):
        if self.dragging:
            self.move(event.globalPos() - self.offset)

    def mouseReleaseEvent(self, event):
        if event.button() == QtCore.Qt.LeftButton:
            self.dragging = False


if __name__ == "__main__":
    app = QtWidgets.QApplication(sys.argv)
    pet = DesktopPet(sys.argv[1])
    pet.show()
    sys.exit(app.exec_())
>>
>>155567
i want something cute AND horny!
>>155569
i did something similar with a picture of my waifu, unfortunately its not a gif and since its still a window it means i could potentially move it by mistake (also i think wayland doesnt allow qt to make windows stay on top by default). My idea was to have different animations play at random and having her move around, for example running across the desktop, allowing you to grab her, sleeping on a window frame, etc... No idea if it's even possible with qt
>>155570
>we could make a Heyuri-tan one
I tried that too! unfortunately the animation sucked balls ( ´,_ゝ`)
>>
Desktop window sitters / desktop pets are easy to make in Godot. ヽ(´ー`)ノ
>>
>I tried that too! unfortunately the animation sucked balls ( ´,_ゝ`)
Yeah the rough part is making the graphics. takes a lot of effort.
>>
This .gif (credit to artist Saiguchi Otoufu) works great for it, they just float around on your screen and don't take up too much space. :nyaoo-closedeyes:

I tried extracting the Anna images out of the .exe but they're .bmp images and I don't know how to use them. They're all pictures of her face and I can't see the stool she sits on. Not sure how that works.

>>155574
>unfortunately the animation sucked balls
There are people who are good at drawing here. If there's enough interest, a nice anon might volunteer their skills. ヽ(´∇`)ノ
>>
File: mypet.gif
(72 KB, 243x197)[ImgOps]
72 KB
>>155579
goddamn file didn't attach -_-
>>
Testing emojis hold on.
:angry::astonish::biggrin::closed-eyes::closed-eyes2::cool::cry::dark::dizzy::drool::glare::glare1::glare2::happy::huh::nosebleed::nyaoo::nyaoo2::nyaoo-closedeyes::ph34r::rolleyes::sad::smile::sweat::sweat2::sweat3::unsure::wink::x3::xd::xp::blush::mask::dance::dance2:
>>
I think it would be nice to have the heyuri sitter notify you of new threads as well and things like that. Is there some sort of size limit to the graphics or something? I guess you can't just load up an animation and scale it up and down like a media viewing program
>>
I'm making some further improvements to teh eroi masturbation version. In teh next version when you click her, she will display a random lewd message. :blush: I am also going to pack the files into an executable, so you just have to click it instead of opening terminal to run it.

I need your help with something though, can anyone provide me with an audio clip of a loli saying "Onii-chan"? Preferably in a soft, hushed tone to suggest lasciviousness and passion. Little moan and squealing sound effects would also be nice. I will have these clips play with the dialogue boxes.
>>
>>155625
I resized teh masturbating LOLi down to 210x210 pixels, I wouldn't want it much bigger than that, or she'll take up too much space on teh screen.

I'm just teh Anon slopping this thing together with ChatGPT. I guess I could try to ask ChatGPT to make her notify us of new threads, maybe using a cute sound (perhaps I could use AI to generate an anime girl saying "A new thread!" or something) but I don't know if it would work. Teh chatbot seems pretty good at coding, but if anything goes wrong I don't know anything about coding to be able fix it. :dizzy:
>>
>>155627
I understand. I can contribute some drawings but I can't code either.
>>
>>155630
Please do, I would love for this to be a collaborative effort! :mona2: And when you submit your artwork, let me know what name I should credit you as, unless you wish to remain anonymous. I will add an option to display credits with right-click.
>>
>>155627
if you run into any issues i could try and look at the code to fix it, actually just post the code once it's done so anyone can improve it or add features
>>
File: shimeji2-2025-09-15_18.25.40.mp4
(612 KB, 372x326)
612 KB
>>155638
Thanks for the offer to help. I'm really lost right now, and I'm going to take a break from working on this for right now. :cry:

I ran into problems just attempting to make it into an executable file that can be run by double clicking it, so I think trying to make a program that would alert us to new posts would be too complex for GPT-san and I, since I have zero knowledge of programming and am just mindlessly following his instructions. At this point I'm so lost that I have no idea which version of the code and the errors I should even show you...

I have uploaded the latest working version on up.heyuri.net if anyone is interested. You just run it by typing "python3 mypet.py mypet.gif" into the terminal.
>>
Why not use shimeji-ee? There's a bunch of forks of it on github too. https://kilkakon.com/shimeji/
Then you could find a shimeji that looks really close to heyuri-tan like yotsuba and edit it. https://www.pixiv.net/en/tags/%E3%81%97%E3%82%81%E3%81%98/artworks?order=date
>>
>>155521
if you mean on the wayback machine it was "archived" in 2021 after rapidshit shutdown in 2015, and the .rar that downloads is 8 bytes of data


Delete post: []