[ kaitensushi ] [ lounge / arcade / kawaii / kitchen / tunes / culture / silicon ] [ otaku ] [ yakuza ] [ hell ] [ ? / chat ] [ lewd / uboa ] [ x ]

/yakuza/ - site meta-discussion

the sun never sets on the sushichan global crime syndicate
Name
Email
Subject
Comment
File
Embed
Password (For file deletion.)

• Files Supported: webm, swf, flv, mkv, mp4, torrent, 7z, zip, pdf, epub, & mobi.
• Embeds Supported: youtube, vimeo, dailymotion, metacafe, & vocaroo.
• Max. post size is 10MB / 4 files.

Remember to keep it cozy!

Captchas didn't work. Sticking to janitors while we try to think of something else.

File: 1589821999911.jpg (42.35 KB, 960x128, samachan.jpg)

 No.776[Reply]

Update: New /otaku/ board with landing sticky for Samachan users at >>>/otaku/

Hello sushis, I have a proposal I want to run by you. I have been in discussion with a group of users from the recently shuttered Samachan, who are looking for a new place to live. They were a fairly comfy site with just two boards, and they are in talks with me over how they might adapt to living here without disrupting our own culture too much. I think with the addition of a single board, the rest of their content could probably fit into the existing boards.

I wanted to run this by the userbase to see if there are objections or concerns, and have a conversation about these, before giving them an answer. As a condition of coming here they would be expected to use polite language and follow the rules. Currently the planning group is just a few users, with the rest of them scattered and out of contact with each other.

Samachan.org on Wayback Machine: https://web.archive.org/web/20200323151839/https://samachan.org/

Following is our email exchange, split between posts. Please give it a read before commenting.
56 posts and 11 image replies omitted. Click reply to view.

 No.838

>>836
Hey Seisatsu, just wanted to give an honest thank you for keeping these websites alive. Small sites like this provide something large sites can't and I'm glad some people put in the effort to keep them afloat.

 No.839

>>836
thank you <333

 No.840

>>811
Compared to last month, its pretty active now.
Its fun.

 No.841

File: 1590513538745.jpg (46.92 KB, 589x589, 1570518753267.jpg)

>>836
From one oldroll to another, you da real MVP!

 No.842

File: 1590632511498.jpg (106.39 KB, 618x416, Bunter.jpg)

>>832
Thanks for that link Seisatsu.
I for one welcome your new overlords.
Seriously, it's nice to see generosity.
Love you all.



File: 1571952911571.jpg (104.04 KB, 750x747, IMG_20191024_224921_816.jpg)

 No.748[Reply]

Hi!

It looks like you block posting from TOR.

I can understand the reason, but, I think that it's a little bit unethical. TOR is a perfect way to pass through government firewalls and keep the path of your journey on the web in secret from ISPs, server owners , government and others.

Maybe we could find a way to allow people to use TOR and enjoy such a cozy board at the same time, please?
4 posts omitted. Click reply to view.

 No.757

I'm also here to complain regarding tor. I'm not sure what/how you've implemented tor blocking but I was able to make 2 posts yesterday via tor before getting "tor posting is disabled". Also I was able to make one post here like two/three weeks ago via tor and when I attempted to make another one I got the tor is disabled message. So, whatever you implemented in order to block tor posting, it's not working correctly and I'm not seeing much spam currently. I'd also like to bring lainchan as an example, if they get spammed by a bot/malicious user they disable tor posting for a short period of time. Alternatively use a (LIBRE, FREE AS IN FREEDOM) captcha like 8kun or whatever >>755 suggested, I don't post on kohlchan so I don't know how their captcha works. PLS SEI, PLS ITAEME ;7;

P.S.
This post was made through tor, check the IP if you don't believe me Sei.

 No.758

Just to make my point I'm posting again with the same tor node

 No.759

I wonder if I can make a third post, well even if I can I'll stop now. You can clearly see that I'm posting through tor.

 No.760

>>757
What we have right now uses a DNSBL blocklist, which isn't perfect. However since we've just enabled captchas to fight CP spam that was still getting through, I am willing to give this a try. Proxy blocking is now disabled. If this causes problems though or ends up getting abused I'll turn it right back on again.

 No.769

Unfortunately, the captcha system appears to be broken; I can't make a new thread as an admin with it enabled. This software is really showing its age. I had to revert my earlier changes.



File: 1561656980952.jpg (251.43 KB, 1413x1060, s.jpg)

 No.741[Reply]

I want to use [code][/code] tags.

 No.742

Me too

 No.744

I suppose I could try to find out how Lainchan does it.

 No.747

It turns out there's already a feature like this I just had to enable. It doesn't have highlighting though.

#####################
# Dennis MUD        #
# telnet.py         #
# Copyright 2018    #
# Michael D. Reiley #
#####################

# **********
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# **********

# Parts of codebase borrowed from https://github.com/TKeesh/WebSocketChat

import traceback

from twisted.internet import protocol
from twisted.protocols.basic import LineReceiver

# Read the motd file.
try:
    with open("motd.telnet.txt") as f:
        motd = f.read()
except:
    motd = None


class ServerProtocol(LineReceiver):
    def __init__(self, factory):
        self.factory = factory
        self.peer = None

    def connectionMade(self):
        p = self.transport.getPeer()
        self.peer = p.host + ':' + str(p.port)
        self.factory.register(self)
        print("Client connected: {0}".format(self.peer))
        if motd:
            self.factory.communicate(self.peer, motd.encode('utf-8'))

    def connectionLost(self, reason):
        self.factory.unregister(self)
        print("Client disconnected: {0}".format(self.peer))
Post too long. Click here to view the full text.

 No.753

>>747
look at highlight.js

 No.761

>>753
That might be doable.

Edit: I tried, but uncovered two issues.
1) vichan's code tags replace certain characters with html escape codes.
2) The expand post button for posts that are too long breaks the highlighting.

Might take another go at this later, but it's going to require modifications to vichan which isn't very fun.

Alternatively I may investigate upgrading us to Lainchan's vichan fork which is better maintained.



File: 1479848875205.png (2.45 MB, 800x800, 1457723690464.png)

 No.197[Reply]

What ever happened to the sushichan stickers thing?
From the archive: https://archive.sushigirl.us/lounge/res/964.html

Is someone going to put this back into action? Sushichan stickers seemed like a neat idea.
68 posts and 31 image replies omitted. Click reply to view.

 No.376

File: 1490522023037.jpg (68.98 KB, 534x954, IMAG0182.jpg)

>>336
well, thanks! they made my journal look a bit nicer.

 No.377

File: 1490555802408.jpg (284.52 KB, 1170x2080, ups.jpg)

>>349
your sticker is great! thank you!

 No.412

File: 1493343427366.jpg (146.03 KB, 1000x1000, 1445649396608.jpg)

Just got 2 of each, I'm excited!

 No.672

File: 1527531042151.jpg (675.17 KB, 4608x3456, Netbook Sushigirl small.jpg)

uwu

 No.743

Will get myself one.



File: 1508488906528.png (141.36 KB, 1024x1024, 1482058593385.png)

 No.606[Reply]

There is a secret /pepe/ board for some reason, but is pepe still comfy or something we want to be associated with? Does it matter actually?
18 posts and 3 image replies omitted. Click reply to view.

 No.684


 No.723

>>606
pepe is a reddit meme for black dragon rolls on4chan.

Please no

 No.724

>Seisatsu
you're not that seisatsu are you?

 No.734

>>724
There is only one Seisatsu.

 No.740

>>606
>but is pepe still comfy or something we want to be associated with? Does it matter actually?
I am aware this post is old.
It really doesn't matter, stop asking people how to think.



File: 1480820175413.jpg (42.73 KB, 960x540, 15107387_1260272867328739_….jpg)

 No.225[Reply]

We want to restart the wildcard board! Suggest monthly wildcard topics in this thread.

Picture Unrelated.
27 posts and 6 image replies omitted. Click reply to view.

 No.688

>>647
http://aurorachan.net/ has something like this. I don't really hang out there so I don't know how active it is, but you could give it a shot. I don't think an /rp/ board is really right for this site.

>(non-lewd)

Lol, good luck maintaining that.

 No.713

>>647
I like this idea. I thought up something similar a while back but it involved customized avatars assembled dress-up style over basic templates for each reaction and also it was going to be a live board because I smoke way too much pot

 No.714

>>647
Reminds me of the last time I went to /tea/. Someone there was mad because someone else was also posting pictures of lain.

 No.722

/guro/
It's such an uncomfy topic that it will make the rest of the boards like, super-dee-diddly-uper comfy and cozy like when I'd have a couple cigarettes and listen to my neighbor scream at his wife(?)'s kids. Good times.

 No.739

>>1888
I think it should only be mentioned if it is necessary or contributes to the post, while mentioning it for attention shouldn't.
Didn't the "TITS OR GTFO" meme originally mean that your sex doesn't matter on the internet?



File: 1535211216248.jpg (129.16 KB, 648x906, 1484367199166.jpg)

 No.689[Reply]

Out of interest, what kind of hardware does this site run on? $45 seems honestly a bit steep for a site of this caliber.
6 posts omitted. Click reply to view.

 No.703

>>700
>I get the impression a lot of these VPS providers are quick to shut down machines by customers that didn't purchase DDoS protection, when they're the target of one.
I lost a dedicated server that way.

>>702
It was instantaneous, I didn't even have to reboot.

 No.705

With RamNode, can you use your own OS, or do you have to use some image they provide? I was thinking about doing a web project of my own and I found a good LAMP stack bundle thing so I'd rather do that than whatever Linux distro a VPS host might provide.

 No.706

>>705
Not sure, you should email them. I'm just using Debian.

 No.708

>>705
OpenVZ is limited to a selection of Linux distros. With a KVM instance you can upload your own ISO to install whatever you want.

 No.735

Update: We moved servers a few months ago due to a virus infection on the previous server, as well as a need for upgrades that couldn't be done in place, and I have consolidated stuff so that we're only costing $13 per month now. I haven't needed any donations for a while.



File: 1536002591790.gif (104.09 KB, 320x471, 1446565333040.gif)

 No.693[Reply]

>make an attempt at posting in >>>/lounge/3944
>Your request looks automated; Post discarded.
Pardon my french, but what the fuck? I'm pretty sure my consciousness haven't been uploaded to the botnet cloud yet.

 No.727

The site still keeps thinking I'm a bot. It's fucking annoying.

 No.728

>>727
On further experimentation, is this related to how old the tabs are? My habits of hoarding tabs and keeping the PC on means I can end up with tabs that have been opened days ago, ctrl+F5'ing the offending page seems to remove the bot whine.

 No.729

beep boop

 No.733

>>693
Sorry for the super late reply. I believe there is a time-based anti-spam mechanism, so refreshing the tabs should fix the issue. I'm not sure what the rationale behind that is, only STI would know.



File: 1545177157068.png (17.83 KB, 500x250, Oekaki.png)

 No.726[Reply]

I cant upload a picture on Android Chrome. I can choose what file I want but its not uploading, no matter what wifi I am using.
This sucks bigtime, because phone posting in bed is the comfiest.

 No.732

That is odd. I'll have to try uploading from a few different mobile browsers. I don't know how I would fix such a thing though.



File: 1538435491804.jpg (17.03 KB, 414x300, Flask.JPG)

 No.711[Reply]

Would anyone be interested in me hosting a copy of the Uboachan Dream World MUD specifically for sushichan users? We could call it Sushi World or something silly like that. If you haven't checked it out yet, it's a multiplayer text adventure engine I wrote over the past week where the users create all of the content with in-game commands. You can explore and make worlds with friends and it's probably also good for roleplaying.

There's an instance running at http://dream.uboachan.net/ already.

 No.712

I think it's best to share to Uboachan one. There might not be enough users to make it worthwhile otherwise.

 No.715

Thy Dungeonman, very nice

 No.716

File: 1540786156160.png (179.35 KB, 2032x2254, publicdomainq-0009066vfupb….png)

I never played a MUD before, so I'll try out the one on Ubaochan and see how it works. Thanks for the head up!

 No.730

That sounds fun. I'd be down for it.

 No.731

File: 1550331004573.jpg (122.13 KB, 800x534, 1521342701317.jpg)

I think we're fine joining uboa. I'm enjoying it anyway.



Delete Post [ ]
[1] [2] [3] [4] [5] [6]
| Catalog
[ kaitensushi ] [ lounge / arcade / kawaii / kitchen / tunes / culture / silicon ] [ otaku ] [ yakuza ] [ hell ] [ ? / chat ] [ lewd / uboa ] [ x ]