Прошлый (Previous) >>4410 ➡
Формат смайлов (Smiles requirements) >>122797 ➡
Редактирование профилей (Idol profiles editing) >>123590 ➡
Тред разработки борды (Board development)
82 posts and 43 files omitted
See allkagami can you make this work with kqts pls?
like this
I might try a bit later
now I have a lot of other not yet finished projects
we would like to inform you that at 2019-03-27 12:00 (GMT +2) we will migrate your server kpop.re to another node in order to ensure service stability and quality. Expected downtime is up to 15 minutes.
At 2019-05-16 between 23:00 and 2019-05-17 06:00 (GMT +3) we will upgrade Linux kernel for all Linux VPS and Container VPS nodes to version 2.6.32-042stab137.1. Kernel upgrade is necessary to ensure service security and stability. Due to maintenance all servers in nodes will be rebooted, expect downtime no more than 15 minutes.
Небольшое предложение
Добавить функцию сжатия прикрепленных изображений.
Возможно что-то вроде иконки как на картинке, либо какого-нибудь переключателяЧтобы не грузить 3-5Мб оригиналы и не забивать хостинг
At 2019-12-12 between 23: 00 and 2019-12-13 05:00 (GMT +2) we will upgrade Linux kernel for all Container VPS nodes to version 2.6.32-042stab141.3. Kernel upgrade is necessary to ensure service security and stability. Due to maintenance all servers in listed nodes bellow will be rebooted, expect downtime no more than 15 minutes.
Thanks for keeping up to date
At 2019-12-17 from 22:30 till 23:30 (GMT +3) we will perform routine maintenance in order to avoid RAM module failure. Expect downtime no more than 30 minutes.
At 2019-12-23 between 23:00 and 02:00 (GMT +2) we will perform data center network maintenance, which can lead to short-term (up to 10 minutes) network outage.
We would like to inform you that at 2020-02-20 23:00 (GMT +3) we will migrate your server(s) to another node. Migration is neccesary in order to ensure your service stability and quality. Expected downtime is up to 15 minutes.
We will have small downtime soon.
Created few more domains for kpop-related projects
tisto.re just redirect to tistore's github
kpopnet.dev new home for net.kpop.re
https://api.kpopnet.dev public API
https://github.com/kpopnet github umbrella
We will migrate no another server now. Prepare for downtime until DNS records will be updated.
Migrated.
Борда с русского айпи не работает (ростелеком)
Сделай скриншот
ping kpop.re
в консоли
Если через консоль браузера надо пинговать, то я не ебу как
У тебя почему-то DNS не обновился, хотя уже кучу времени прошло. Наверно кто-то закэшировал.
Попробуй поставить гугловские DNS в настройках соединения - https://www.windowscentral.com/how-change-your-pcs-dns-settings-windows-10#change_dns_settings_windows10
Не помогло
А в /etc/hosts нигде явно не прописан адрес для kpop.re? https://www.howtogeek.com/howto/27350/beginner-geek-how-to-edit-your-hosts-file/
nslookup kpop.re
ещё сделай в консоли
блять, оказалось, что всего-то надо было hosts почистить
Зато узнал о существовании немецкой локализации
когда уже можно будет листать фоточки стрелками ?
2020 -- где НТП ?
five square or horizontal files just barely don't fit into one row, this has been a source of frustration for posters in the past
diff --git a/less/_base.less b/less/_base.less index 8fbec6e8..c7766f72 100644 --- a/less/_base.less +++ b/less/_base.less @@ -1,6 +1,3 @@ -////////////////////////////// -// THIRD-PARTY -////////////////////////////// @import (inline) "node_modules/normalize.css/normalize.css"; @import (inline) "node_modules/font-awesome/css/font-awesome.css"; @@ -950,7 +947,7 @@ body { box-sizing: border-box; min-width: 200px; - max-width: 1000px; + max-width: 1100px; background: @postBG; box-shadow: @postShadow; word-wrap: break-word;
>-//////////////////////////////
>-// THIRD-PARTY
>-//////////////////////////////
my mistake
Oh, you from April na?
Our provider is currently experiencing network issues so there might be problems accessing the site or images.
fixed
Hey kag
I noticed this png of all smiles is sent on first load of a thread or board or all. But I could not find where in the files exactly this is done. I understand that it is used to show each smile in posts via background-position as a background-image.
why I'm bringing this up is mobile data. that smiles.png is 644kB and thus very wasteful for mobile data users on ever pageload where it isn't cached already. would it not be better to serve mobile users the smile pictures individually when needed in a lazy load fashion like images are?
since most smiles are almost never used, the amount of smiles that would need to be loaded individually would need much less mobile data than 644kB right? even if the smiles are loaded as pngs the biggest ones are 11kB so there would have to be over 58 different smiles in the loaded posts (usually last 100) to cost more than the 644kB AllSmiles.png
Also not only mobile data is to be considered but also loading time on mobile. the AllSmiles.png is by far the one thing that makes site load slower.
What do you think, would a mobile only implementation make sense? Would effort be too big?
>I noticed this png of all smiles is sent on first load of a thread or board or all. But I could not find where in the files exactly this is done.
browser downloads it once it encounters smile in the thread via background-image rule in the CSS
>that smiles.png is 644kB and thus very wasteful for mobile data
it's 2.1M for retina users btw (2x version)
>on ever pageload where it isn't cached already
it's being requested only once, then it should be cached forever by the browser (well at least for several months)
>would it not be better to serve mobile users the smile pictures individually
it was done intentionally that way...
there's request/metadata/parsing/etc overhead when you download small images individually
>since most smiles are almost never used
it's possible to remove unused smiles
also maybe split smiles in groups, so you download smiles-part1.png, smiles-part2.png, etc, once you see it
right now it shouldn't be a huge problem...
>AllSmiles.png is by far the one thing that makes site load slower
it doesn't freeze other network requests, you just don't see the smiles until the sprite is loaded, also it happens only once
>where in the files exactly this is done
https://github.com/cutechan/cutechan/blob/master/less/_base.less#L2305
https://github.com/cutechan/cutechan/blob/master/gulpfile.js#L315
>then it should be cached forever by the browser (well at least for several months
oh alright that makes it less of a problem, I didn't know how long it would be cached.
>maybe split smiles in groups, so you download smiles-part1.png, smiles-part2.png, etc, once you see it
this would make sense, just putting the 50 most used smiles in one and less used one in another. You're right if it gets cached that long it wont really matter for browsing but I guess first time users would still benefit.
thanks for showing me
Another thing:
I've just looked a bit into how the post feeds work but on mobile it is not the best experience. whenever you put browser into background and switch to another app and then at some point resume, most posts that were made in the meantime don't show, usually only the very latest post is updated. this leads to a lot of conplete reloads of the page or missed posts.
Do you know why this happens?
sorry for dumb questions btw gotta learn golang a little bit
>put browser into background and switch to another app and then at some point resume, most posts that were made in the meantime don't show, usually only the very latest post is updated
yeah, thread synchronization via websocket is badly written, it requests only for ~5 latest posts after reconnect
need to rewrite it properly...
>gotta learn golang a little bit
I wonder if this behavior still exists in meguca, would be something weird to overlook considering how many features they have...
maybe they are doing something else entirely, I can't really tell
fork was made a long time ago, meguca has changed a lot since then, so it's impossible to merge
fix is not that hard, I'm just don't have enough time for that currently
>I'm just don't have enough time for that currently
don't worry about it, chingu
https://paleonews.live/exclousive/1375-zhuravlev-review
Это фиаско, братан
>Создано: 05 мая 2020
Are deleted posts actually deleted or are they saved somewhere in the db?
they could be saved in backup if it was older than 1 day, otherwise actually deleted
you mean after one day they get deleted for real?
it will be deleted if post deleted was younger than 1 day
do you miss something?
no but it would have been cool to have all posts including deleted ones as a dataset.
*forgot to add:
if you can db.getallposts() and save it in some useful way(.csv or .txt) and upload on an uploadsite I would be very grateful If not it's ok, I will just have to do a little scraper.
I want to use the posts for sentiment analysis and other stuff
what boards do you need?
I can dump
post_id,date,post_body
information
/int/ and /wood/
reply count is not available right? that would be interesting too but I can do that manually later on
>reply count is not available right? that would be interesting too but I can do that manually later on
it's available but you can build such map by yourself, just by searching for ">>\d+" in post body
excellent thank you very much
hey kag, we finally made :smiles: changes. pls accept pull request when you have time
sure, thanks, will do a bit later
what happened?
2 hours downtime because of docker update, service wasn't able to restart itself correctly...
Oct 18 06:57:03 kpop.events systemd[1]: Starting Daily apt upgrade and clean activities... Oct 18 06:57:12 kpop.events systemd[1]: Stopping cutechan service with docker compose... Oct 18 06:57:12 kpop.events systemd[1]: Stopping kpopnet service with docker compose... Oct 18 06:57:14 kpop.events docker-compose[1759187]: Stopping kpopnet_kpopnet_1 ... Oct 18 06:57:14 kpop.events docker-compose[1759186]: Stopping cutechan_cutechan_1 ... Oct 18 06:57:15 kpop.events kernel: veth0037635: renamed from eth0 Oct 18 06:57:15 kpop.events systemd-networkd[693]: veth0a28b98: Lost carrier Oct 18 06:57:15 kpop.events kernel: db: port 2(veth0a28b98) entered disabled state Oct 18 06:57:15 kpop.events kernel: db: port 1(veth7d1226e) entered disabled state Oct 18 06:57:15 kpop.events kernel: device veth7d1226e left promiscuous mode Oct 18 06:57:15 kpop.events kernel: db: port 1(veth7d1226e) entered disabled state Oct 18 06:57:15 kpop.events systemd-udevd[1759138]: vethfce82cd: Failed to get link config: No such device Oct 18 06:57:16 kpop.events docker-compose[1734582]: cutechan_cutechan_1 exited with code 2 Oct 18 06:57:16 kpop.events docker-compose[87257]: kpopnet_kpopnet_1 exited with code 2
oh okay
not a big concern then
done
Добрый день, мистер Кагами. Хотелось бы уточнить, а точнее попросить у вас обновить "Борам". Это возможно?
Что в нём обновить?
Ютуб длл. Или это не поможет? По опросам, многие используют, но без возможности прямой скачки через сам конвертер. Не очень удобно если честно.
Да, надо бы. Пока сам можешь закинуть https://youtube-dl.org/downloads/latest/youtube-dl.exe в
resources\app
Ты меня переоцениваешь. Но я попробую.
Когда на гитхабе обновите примерно?
since vlive added this url format it would be nice for them to also embed
for example
https://www.vlive.tv/post/1-19990273
you can still get the
videoSeq
from embedded json, beware that this url format might not have videos:https://www.vlive.tv/post/1-19758287
seems like the embeds still work the same once you have the
videoSeq
>>508512 ➡{ "postDetail": { "post": { "url": "https://vlive.tv/post/1-19990273", "title": "이런저런💬", "postId": "1-19990273", "officialVideo": { "videoSeq": 224269, "type": "VOD",저런💬",
need to fix https://github.com/cutechan/cutechan/blob/master/go/server/embed.go#L65
did server-nim go down last night?
do you need more bitcoins?
Out of memory: Killed process 3022967 (kpopnetd)
cutechan was fine though. what kind of error did you get?
server was timing out for about 1-2 minutes 2 times at around 02:00 cst
cst is utc-6?
do you mean this one >>574566 ➡ ?
yeah
oh it's called cest
you put me in a deep thought
I see, so you had slow response at 00:51 UTC, but I can see OOM killer at 01:53 UTC and nothing at 00:51
could be coincidence, just some packet drops
glad it wasn't something serious then
Admin, I appreciate whatever you do that allows me to post from vpn, yet the boards isnt overrun by psychos and retarded LEOs wasting tax money trolling those psychos.
40min downtime because ssh updated default HostKeyAlgorithms to prefer ed25519 so sftp couldn't connect because of the different public key fingerprint
node was rebooted because of hardware issue but postgresql wasn't properly started for some reason so 6.5hours downtime
media domain was changed back to up.kpop.re
I will create permanent redirect from store.kpop.events to up.kpop.re soon and eventually dismiss kpop.events domain
please report any issues you encounter
thanks, will add a bit later
>thanks, will add a bit later
we also have some in this thread >>670278 ➡
might be better to add and remove more at once at a (later) time
So what exactly is the problem with missed posts not being fetched on mobile sometimes?
I just looked at it briefly, but shouldn't prepareToSync() be triggered in /ts/connection/state.ts onWindowFocus() if the state is desynced?
iirc backend can return up to 5 missed posts only in websocket handler
that can be fixed by adding request handler to return posts since the last available on the client and do that request after reconnect
6 images per post
For convenience with IVE and LE SSERAFIM. Hope UI won't suck too much.
Could be 7 too because a lot of groups are 7, but better to stop at some point to avoid too many images per post mess.
>For convenience with IVE and LE SSERAFIM.
and now OMG
should this be revisited then? >>440356
for example >>745785 ➡
the 6th thumbnail can also disappear in the reply box
Вопрос который уже очень долгое время интересует всех.
Когда boram обновят?
quite long downtime just now 220713 ~09:00 KST
I can see connection issues to the store host from 02:35 UTC+3 till 04:21 UTC+3, i.e. it wasn't possible to upload images
have you noticed anything else?
whole site was not responding for about 15 minutes, then again for a second time an hour later. you can see the post „back alive“. it happened before and after that
Seems like network connectivity issue on the hosting side, I just experience the issue but with the main site.
They don't have any incidents reported on the status page though
I created ticket to get some info.
kagami plz fix I can't live without this site
small deprivation will make you like it even more though
>Your VPS with is being target of DDoS attacks. It has stopped after since 2,5 hours ago.
>Our system automatically blackholes an IP in case the DDoS is large enough to avoid connectivity issues for other customers.
>The blackhole is being removed once the DDoS has stopped for at least 5 minutes.
Someone is posting pornography in old threads, trying to abuse the site.
Added IUC and bella-fan as moderators to all boards.
A better way is lock old threads.
Hi, I would request that some new smiles to be added
:eunchae_lol: :sana_wut: :winter_finger: (to have it match with )
Thank you for your consideration
And also this one
:isa_wut:
love the winter finger one. :icy_touch:
not a fan of the other ones, they seem kinda blurry