@puniko
I'm infinitely confused.
Oh well. I'll try Mr PC later and then Mrs.Tablet.
Any Browser recommends ?
Notices by aoikurayami@mk.absturztau.be
-
Embed this notice
aoikurayami@mk.absturztau.be's status on Tuesday, 10-Jan-2023 23:36:34 JST aoikurayami -
Embed this notice
aoikurayami@mk.absturztau.be's status on Tuesday, 10-Jan-2023 01:38:34 JST aoikurayami @puniko
Did you.. change something ?
#Misskey s Chronic tl is broken 4 me since days
All 5 #android devices throw this in my face.
I just arrived home and my wifi here is no better...
Distraught error gurly everywhere.
(When I left on the 16th I had nil errors like this
I'm using #Opera... as always.
#Firefox also throws this error on android)
#Calckey and #mastodon instance load fine 4 me... -
Embed this notice
aoikurayami@mk.absturztau.be's status on Thursday, 05-Jan-2023 15:20:36 JST aoikurayami @puniko
Dang where did you find this :blobcatthinking: -
Embed this notice
aoikurayami@mk.absturztau.be's status on Friday, 30-Dec-2022 16:14:37 JST aoikurayami @puniko
Btw, why does https://nitter.net/digi148/with_replies
perform so differently from nitter.absturztau.be ?
Aren't they.. all the #same ? -
Embed this notice
aoikurayami@mk.absturztau.be's status on Thursday, 29-Dec-2022 06:56:43 JST aoikurayami @puniko
Yes.
It worked,yesterday tho :blobcatthinkingeyes:In conversation from mk.absturztau.be permalink -
Embed this notice
aoikurayami@mk.absturztau.be's status on Thursday, 29-Dec-2022 06:17:45 JST aoikurayami @puniko
I'm showing you a user profile rendered by your nitter instance.
(I usually can access it no problem)
Phone reboot didn't change anything.
Guess I'll start my pc to see if it works thereIn conversation from mk.absturztau.be permalink -
Embed this notice
aoikurayami@mk.absturztau.be's status on Thursday, 29-Dec-2022 06:11:39 JST aoikurayami @puniko
:blobcatthinking: Wats diz ?In conversation from mk.absturztau.be permalink Attachments
-
Embed this notice
aoikurayami@mk.absturztau.be's status on Tuesday, 20-Dec-2022 03:14:49 JST aoikurayami @Nezchan@wandering.shop
Well #artstation has seasoned industry pros.
They need to do somethingIn conversation from mk.absturztau.be permalink -
Embed this notice
aoikurayami@mk.absturztau.be's status on Thursday, 15-Dec-2022 03:40:43 JST aoikurayami @puniko
Wafullooo ?
RE: https://social.troll.academy/users/psy/statuses/109513476990429668In conversation from mk.absturztau.be permalink Attachments
-
Embed this notice
aoikurayami@mk.absturztau.be's status on Wednesday, 14-Dec-2022 20:59:31 JST aoikurayami @puniko Who is dee ?
REINdeeR ?In conversation from mk.absturztau.be permalink -
Embed this notice
aoikurayami@mk.absturztau.be's status on Tuesday, 13-Dec-2022 06:04:56 JST aoikurayami @puniko
Thank goodnyaess
I thought I was loosing it :ameowsipzoom:In conversation from mk.absturztau.be permalink -
Embed this notice
aoikurayami@mk.absturztau.be's status on Tuesday, 13-Dec-2022 05:49:21 JST aoikurayami @puniko
I see. That is something elmo could consider too
BTW:
tis "nya" thing.
I'm not hallucinating ?
I find em in all my post without even trying
nyaaa ?!In conversation from mk.absturztau.be permalink -
Embed this notice
aoikurayami@mk.absturztau.be's status on Tuesday, 13-Dec-2022 05:47:36 JST aoikurayami Btw @puniko
Is it true that a username on any given #instance becomes shredded for #eternity when said user delets said account ?
I read things along that vein b4 I tossed my old one.
That is. Interesting.In conversation from mk.absturztau.be permalink -
Embed this notice
aoikurayami@mk.absturztau.be's status on Monday, 12-Dec-2022 23:49:08 JST aoikurayami @puniko I think I see what the issue is tho.
In the rss your "posts" are called "notes" etc.
Maybe I'll mend the code.
Could be fun.In conversation from mk.absturztau.be permalink -
Embed this notice
aoikurayami@mk.absturztau.be's status on Monday, 12-Dec-2022 23:45:23 JST aoikurayami @puniko Well. I have one more widget thing that is more general and will require my user id.
Let's see how it goes.In conversation from mk.absturztau.be permalink -
Embed this notice
aoikurayami@mk.absturztau.be's status on Monday, 12-Dec-2022 23:42:12 JST aoikurayami @puniko
Thats sad.
Do you know html \js widgets that work for misskey ?
(Soapbox also fails btw)
Whats code grabbing ?In conversation from mk.absturztau.be permalink -
Embed this notice
aoikurayami@mk.absturztau.be's status on Monday, 12-Dec-2022 23:39:38 JST aoikurayami @puniko
Is your instances #rss configured differently somehow ?
This code works with other instances, but refuses to work with mk.absturztau.be
_____
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="./style.css">
<body>
<!-- partial:index.partial.html -->
<!-- partial -->
<script>
const userFeed = 'https://mk.absturztau.be/@aoikurayami.rss';
const wrapper = document.body;
const tootHTML = (description, date, url) => `
<article>
<a href="${url}">?</a> | <time>${date}</time>____________
<div>${description}</div>
</article>`;
const formatToots = (domContent, container) => {
[...domContent.querySelectorAll('item')].map(item => {
const $toot = el => item.querySelector(el).textContent;
const description = $toot('description')
const url = $toot('guid')
const date = $toot('pubDate')
container.innerHTML = container.innerHTML + tootHTML(description, date, url)
});
};
const parser = new DOMParser();
fetch(userFeed)
.then(response => {
if (response.status >= 400) {
return <p>No toots available at the moment</p>
}
return response.text();
})
.then(response => formatToots(parser.parseFromString(response, "application/xml"), wrapper));
</script>
</body>
<div id="myTimeline" class="mastodon-timeline mastodon-timeline-light"></div>
</div>In conversation from mk.absturztau.be permalink Attachments
-
Embed this notice
aoikurayami@mk.absturztau.be's status on Monday, 12-Dec-2022 22:59:18 JST aoikurayami @puniko
Ah I see.
I thought it kept the server from resizing (similar for how pixiv does it I think) or tampering with uploaded images.
Thanks!
PS:
I might ask lots of da questions.
I be like that ヾ(。>﹏<。)ノ゙✧*In conversation from mk.absturztau.be permalink -
Embed this notice
aoikurayami@mk.absturztau.be's status on Monday, 12-Dec-2022 22:55:57 JST aoikurayami @puniko
Hi.
What does "keep original image" when uploading here do ?In conversation from mk.absturztau.be permalink