Show newer

I think im going to make a balkenbrij nut-fried rice tonight with dinner. Never tried it in a rice before, not even scrapple, but I have high hopes.

@freemo Ok I'm really jealous of this nyan cat set of emotes right now

Wow just hit 6K followers! That's a whole 1,500 new followers in about a week, was just a few days ago I passed the 5K mark.

I am overwhelmed and happy to have so many new followers and I look forward to hearing everyone's insights and opinions in the future!

:nyancat_rainbow:​​​​:nyancat_rainbow:​​​​:nyancat_rainbow:​​:nyancat_rainbow:​​​​:nyancat_rainbow:​​​​:nyancat_rainbow:​​​​:nyancat_body:​​​​:nyancat_face:
🎉🎉🎉🎉🎉🎉🎉🎉🎉

One good thing is in QOTO instance, the number of political posts have been very very little. And I am really liking it!

Show thread

A beautiful terracotta temple lying unknown and uncared for in Sonamukhi, Bankura, West Bengal blog.yantrajaal.com/2019/11/sr

I borrowed this one from codewars

Snail Sort
Given an n x n array, return the array elements arranged from outermost elements to the middle element, traveling clockwise.

array = [[1,2,3],
[4,5,6],
[7,8,9]]
snail(array) #=> [1,2,3,6,9,8,7,4,5]
For better understanding, please follow the numbers of the next array consecutively:

array = [[1,2,3],
[8,9,4],
[7,6,5]]
snail(array) #=> [1,2,3,4,5,6,7,8,9]
This image will illustrate things more clearly:

NOTE: The idea is not sort the elements from the lowest value to the highest; the idea is to traverse the 2-d array in a clockwise snailshell pattern.

Teachers dont always have their priorities straight, some do though. Either way lol.

Server Info

After an upgrade to the QOTO services all services are now up and running again. Downtime was ~5 minutes.

The following qoto services were updated:

NextCloud - cloud.qoto.org

GitLab - git.qoto.org

GitLab pages (including user hosted pages) - https://*.qoto.io

FunkWhale - audio.qoto.org

PeerTube - video.qoto.org

Discourse - discourse.qoto.org

Hello world! I think social media attracts people because we want to be heard, and to feel that we are significant. A platform like this allows one's words to be shared, even for an instant, across time and space. I suppose this toot is exactly that. A cry to the cosmos. A scream that expresses my existence. So it goes. So, hello world!

Python Solution 

def snail_sort(matrix):
new_list = []

while matrix:
new_list.extend(matrix.pop(0))
if not matrix:
continue

for i in range(len(matrix)):
new_list.append(matrix[i].pop())
if not matrix:
break
if not matrix:
continue

new_list.extend(reversed(matrix.pop()))
if not matrix:
continue

for i in range(len(matrix) - 1, -1, -1):
new_list.append(matrix[i].pop(0))
if not matrix:
break
return new_list

MATRIX = [
[1, 2, 3, 4, 5],
[16, 17, 18, 19, 6],
[15, 24, 25, 20, 7],
[14, 23, 22, 21, 8],
[13, 12, 11, 10, 9],
]

snail_sort(MATRIX)

Show thread

Server Info

All services except for the main qoto mastodon instance will expiernce some brief downtime in about an hour as i upgrade the servers.

Shouldnt be more than 5 minutes but there will likely be a DNS update that may take a bit longer to refresh for some people locally.

Holy criminies. The instance has seen over a **thousand** new users this week and its only half way through the week.

What a week!

I find it interesting how the spike always appears to come as 2 seperate waves when we get spikes of new users. The first one when they pour into the fediverse, then a second spike when new users not on QOTO decide to switch to our instance. We must be doing something right :)

Hey users. Dont forget we have a moderator election going on for the next 2 weeks. Dont forget to nominate yourself or another user in the election.

You can nominate users here: discourse.qoto.org/t/nominatio

3,912 accounts
+2 in the last hour
+241 in the last day
+1,052 in the last week

Will you be nominating someone in the upcoming moderator election?

:nes_fire: Important Announcement :nes_fire:

Today we are beginning a nomination for next moderator 🎉

Basically it works like this, any one of you can nominate someone from QOTO. The only restriction is the person you nominate must be active for at least the last month. You can even nominate yourself, but it usually looks better if you can get one or more people to nominate you, symbolically speaking.

The moderators will then select the finalists which if there is more than one person then the community can vote on them.

So for the next 2 weeks I will be taking nominations for the moderator position, and they can discuss their views as a potential moderator. Then we can pick who lines u with QOTO Ideals,

**Want to nominate simeone?**

Follow this link and pst your nomination: discourse.qoto.org/t/nominatio

Show older
Qoto Mastodon

QOTO: Question Others to Teach Ourselves
An inclusive, Academic Freedom, instance
All cultures welcome.
Hate speech and harassment strictly forbidden.