GNU social JP
  • FAQ
  • Login
GNU social JPは日本のGNU socialサーバーです。
Usage/ToS/admin/test/Pleroma FE
  • Public

    • Public
    • Network
    • Groups
    • Featured
    • Popular
    • People

Notices by Chris Trottier (atomicpoet@calckey.social), page 5

  1. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Friday, 23-Jun-2023 12:09:47 JST Chris Trottier Chris Trottier
    • Shadow :verified: :meowcoffeespitting:

    @Shadow@social.everythingbagel.me I don’t know. #Meta’s app hasn’t been built yet.

    In conversation Friday, 23-Jun-2023 12:09:47 JST from calckey.social permalink
  2. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Friday, 23-Jun-2023 12:02:12 JST Chris Trottier Chris Trottier

    It’s highly likely that Meta will build search for the Fediverse. That is, if Google doesn’t do it first.

    In conversation Friday, 23-Jun-2023 12:02:12 JST from calckey.social permalink
  3. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Friday, 23-Jun-2023 09:23:52 JST Chris Trottier Chris Trottier

    Maybe the best intro to software development I’ve ever encountered was something Apple made in the 1980s.

    It was called HyperCard.

    The concept was so simple almost anyone could do it. You had a series of cards, and you linked them.

    You could build lots of things with HyperCard: tell stories, store recipes, make games.

    In fact, HyperCard apparently inspired the World Wide Web.

    https://en.wikipedia.org/wiki/HyperCard

    In conversation Friday, 23-Jun-2023 09:23:52 JST from calckey.social permalink

    Attachments

    1. Domain not in remote thumbnail source whitelist: upload.wikimedia.org
      HyperCard
      HyperCard is a software application and development kit for Apple Macintosh and Apple IIGS computers. It is among the first successful hypermedia systems predating the World Wide Web. HyperCard combines a flat-file database with a graphical, flexible, user-modifiable interface. HyperCard includes a built-in programming language called HyperTalk for manipulating data and the user interface. This combination of features – a database with simple form layout, flexible support for graphics, and ease of programming – suits HyperCard for many different projects such as rapid application development of applications and databases, interactive applications with no database requirements, command and control systems, and many examples in the demoscene. HyperCard was originally released in 1987 for $49.95 and was included free with all new Macs sold afterwards. It was withdrawn from sale in March 2004, having received its final update in 1998 upon the return of Steve Jobs to Apple. HyperCard was not ported to Mac OS X, but can run in the Classic Environment on versions of Mac OS X that support it. Overview...
  4. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Friday, 23-Jun-2023 09:12:55 JST Chris Trottier Chris Trottier
    in reply to
    • Gen X-Wing
    • Free

    @breadbin@bitbang.social The UI/UX specialist for #Calckey is @freeplay.

    In conversation Friday, 23-Jun-2023 09:12:55 JST from gnusocial.jp permalink
  5. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Friday, 23-Jun-2023 09:07:16 JST Chris Trottier Chris Trottier

    Hey, since I'm sharing some silly code today, how about something in COBOL?
    IDENTIFICATION DIVISION. PROGRAM-ID. RIDICULOUS-SENTENCE-GENERATOR. DATA DIVISION. WORKING-STORAGE SECTION. 01 NOUNS. 05 NOUN OCCURS 5 TIMES INDEXED BY I. 10 NOUN-WORD PIC X(10) VALUE ' '. 01 ADJECTIVES. 05 ADJECTIVE OCCURS 5 TIMES INDEXED BY J. 10 ADJECTIVE-WORD PIC X(10) VALUE ' '. 01 VERBS. 05 VERB OCCURS 5 TIMES INDEXED BY K. 10 VERB-WORD PIC X(10) VALUE ' '. 01 ADVERBS. 05 ADVERB OCCURS 5 TIMES INDEXED BY L. 10 ADVERB-WORD PIC X(10) VALUE ' '. 01 RIDICULOUS-SENTENCE PIC X(80). PROCEDURE DIVISION. PERFORM INITIALIZE-WORDS PERFORM GENERATE-SENTENCE DISPLAY RIDICULOUS-SENTENCE STOP RUN. INITIALIZE-WORDS. MOVE 'cat' TO NOUN-WORD(1) MOVE 'banana' TO NOUN-WORD(2) MOVE 'elephant' TO NOUN-WORD(3) MOVE 'spoon' TO NOUN-WORD(4) MOVE 'zombie' TO NOUN-WORD(5) MOVE 'green' TO ADJECTIVE-WORD(1) MOVE 'crazy' TO ADJECTIVE-WORD(2) MOVE 'giant' TO ADJECTIVE-WORD(3) MOVE 'silly' TO ADJECTIVE-WORD(4) MOVE 'sparkling' TO ADJECTIVE-WORD(5) MOVE 'jumps' TO VERB-WORD(1) MOVE 'eats' TO VERB-WORD(2) MOVE 'sleeps' TO VERB-WORD(3) MOVE 'laughs' TO VERB-WORD(4) MOVE 'dances' TO VERB-WORD(5) MOVE 'quickly' TO ADVERB-WORD(1) MOVE 'happily' TO ADVERB-WORD(2) MOVE 'slowly' TO ADVERB-WORD(3) MOVE 'loudly' TO ADVERB-WORD(4) MOVE 'strangely' TO ADVERB-WORD(5). GENERATE-SENTENCE. MOVE SPACE TO RIDICULOUS-SENTENCE PERFORM RANDOMIZE-WORDS MOVE NOUN-WORD(I) TO RIDICULOUS-SENTENCE ADD 10 TO I MOVE ADJECTIVE-WORD(J) TO RIDICULOUS-SENTENCE ADD 10 TO J MOVE VERB-WORD(K) TO RIDICULOUS-SENTENCE ADD 10 TO K MOVE ADVERB-WORD(L) TO RIDICULOUS-SENTENCE ADD 10 TO L. RANDOMIZE-WORDS. COMPUTE I = FUNCTION RANDOM(5) + 1 COMPUTE J = FUNCTION RANDOM(5) + 1 COMPUTE K = FUNCTION RANDOM(5) + 1 COMPUTE L = FUNCTION RANDOM(5) + 1.
    Grace Hopper would be proud 😊

    In conversation Friday, 23-Jun-2023 09:07:16 JST from calckey.social permalink
  6. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Friday, 23-Jun-2023 09:00:49 JST Chris Trottier Chris Trottier

    Coding is software development. But not all software development is coding.

    Everyone who's worked on a software development team knows this.

    Before you code, you have to model out what it is that will be coded. You have to define what it is the software will do.

    When you arrive at one screen, what happens next? How do you expect humans to behave when they see something in your app? Will they even behave in ways you intend?

    And funny enough, it's people who code that often can't answer these questions.

    It's not because coders don't know but it's because they've been operating under a certain mental paradigm for so long, it's hard to get them out of it. That's entirely expected because what makes coders good at what they do is that they follow their own logic for how to execute a function.

    But where product dev, UI/UX, QA, documentation, and bug testing come into play is in trying to understand additional paradigms. Namely, what happens when someone does something unexpected? How do we account for the unexpected?

    That's all software development. Every experienced coder I talk to knows this They are more than happy to have that discussion, and are incredibly grateful that another pair of eyeballs considers this for them.

    Because trust me, it's never just about coding.

    In conversation Friday, 23-Jun-2023 09:00:49 JST from calckey.social permalink
  7. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Friday, 23-Jun-2023 09:00:46 JST Chris Trottier Chris Trottier
    in reply to
    • Tim Chambers
    • steve mookie kong

    @mookie@trouble.social @tchambers@indieweb.social Naturally. Sometimes software development is software art and not software engineering.

    In conversation Friday, 23-Jun-2023 09:00:46 JST from calckey.social permalink
  8. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Friday, 23-Jun-2023 08:55:14 JST Chris Trottier Chris Trottier

    For 20 years, I've worked in the software industry. Rarely do I code.

    The coding I've done is somewhat laughable too. The languages I know are BASIC, HTML, CSS, JavaScript, Markdown, and a bunch of stuff nobody cares about.

    For example, here's a LOLCODE demo:
    HOW IZ I fetch_rss_feed YR feed_url I HAS A result I HAS A feed_json BTW Fetch the RSS feed using HTTP GET request result R "HTTP GET" feed_url MKAY BTW Parse the RSS feed into JSON feed_json R "PARSE RSS" result MKAY BTW Create an ActivityStream object I HAS A activity_stream activity_stream R {"@context": "https://www.w3.org/ns/activitystreams", "type": "OrderedCollection", "items": []} MKAY BTW Convert RSS items to ActivityStream items I IZ 0 IM IN YR item LOOP I HAS A item item R feed_json["items"][I] MKAY BTW Extract relevant data from RSS item I HAS A title I HAS A content I HAS A published title R item["title"] MKAY content R item["content"] MKAY published R item["published"] MKAY BTW Create an ActivityStream item I HAS A activity_item activity_item R {"@context": "https://www.w3.org/ns/activitystreams", "type": "Article", "name": title, "content": content, "published": published} MKAY BTW Add the ActivityStream item to the collection activity_stream["items"] R activity_stream["items"] AN activity_item MKAY I R I SUM OF 1 AN 1 MKAY IM OUTTA YR item LOOP BTW Return the ActivityStream object FOUND YR activity_stream MKAY IF U SAY SO BTW Example usage: I HAS A feed_url feed_url R "https://example.com/rss_feed.xml" MKAY I HAS A activity_stream activity_stream R fetch_rss_feed(feed_url) MKAY BTW Print the ActivityStream JSON VISIBLE activity_stream
    None of this is useful. It's actually quite frivolous. Any "serious" coder reading this is probably rolling their eyes.

    I've never coded professionally. I only do it for fun.

    The only reason I started coding is because I couldn't afford games for my Commodore 64, and I thought that if I could make them up, I'd have more games. This was entirely my motivation for learning BASIC.

    Coding has given me insight into how apps are made, and whether or not something is doable. And that has helped me in my work.

    I appreciate coding, but it certainly isn't my specialty.

    In conversation Friday, 23-Jun-2023 08:55:14 JST from calckey.social permalink

    Attachments



  9. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Friday, 23-Jun-2023 06:52:51 JST Chris Trottier Chris Trottier

    Now FediDB lists 1,883,211 accounts on #Lemmy.

    We must take this statistic with a grain of salt.

    Still, these are accounts. They might be bot accounts, spam accounts, or perfectly legit accounts. All FediDB lists is the presence of accounts.

    And that still means something.

    In conversation Friday, 23-Jun-2023 06:52:51 JST from calckey.social permalink

    Attachments


    1. https://bunnyt1c.s3.us-east-005.backblazeb2.com/calckeysoc/84393305-7f19-427d-b383-436ea7a9bcd9.png
  10. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Thursday, 22-Jun-2023 06:08:47 JST Chris Trottier Chris Trottier

    FediDB is now reporting 1.2 million Lemmy accounts.

    I am skeptical regarding the accuracy of this count, but I definitely want it to be true.

    If it is true, it's the second server software to register more than 1 million accounts.

    In conversation Thursday, 22-Jun-2023 06:08:47 JST from calckey.social permalink

    Attachments


    1. https://bunnyt1c.s3.us-east-005.backblazeb2.com/calckeysoc/9e2bb529-c363-4d14-9cbe-6ba83b06ff9c.png
  11. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Tuesday, 20-Jun-2023 20:18:06 JST Chris Trottier Chris Trottier

    Didn't think this would happen, but #Lemmy is now the 2nd most popular server software on the #Fediverse and is on the verge of cracking 400,000 accounts.

    I'm actually shocked that it blew past #Misskey so quickly because the Misskey migration took three months to hit 300,000 accounts.

    With all the drama happening elsewhere on the Fediverse, it important to remember that this is the biggest growth we've experienced in six months!

    In conversation Tuesday, 20-Jun-2023 20:18:06 JST from calckey.social permalink

    Attachments


    1. https://bunnyt1c.s3.us-east-005.backblazeb2.com/calckeysoc/3ea8a980-01d3-467b-85c3-32a8723fdd36.png
  12. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Tuesday, 20-Jun-2023 17:47:31 JST Chris Trottier Chris Trottier
    • Tim Chambers

    Yet another question people are asking me: "How can I, a common person, help hasten the demise of #Meta through #ActivityPub?"

    Again, I want to re-emphasize this. #Fediblock is not an all-purpose tool. It's useful as a hammer. But in this scenario, we don't just need a hammer. We need drills, pliers, saws, and blowtorches.

    That said, we must protect communities that choose to defederate from Meta. Which means that if those servers don't want to receive messages from any Meta-owned services, we must not only be respectful of that, we should make damn sure that those servers are quarantined from Meta. So much of the success of fighting Meta will require safe spaces from Meta.

    The next thing we need is lots and lots of nodes. Currently, we only have ~25,000 nodes on the Fediverse but we need more. Preferably, these nodes should be small, agile, and well-moderated. If you have the finances and/or skill to run a node, it's important that you do so. To compete with Meta, we need to build scale -- and the easiest way to build scale is by adding more nodes to the Fediverse.

    What will also be key is lobby servers. These will be servers specifically set up for migrants from Meta-owned services to help onboard them towards the rest of the Fediverse. To run such a lobby server, they need to be welcoming, moderated well, and free of the elitists and gatekeepers that poison so much of the Fediverse currently.

    How to get people from Meta to try out the rest of the Fediverse? We need people willing to be ambassadors on #P92 who are ready and willing to evangelize the rest of the Fediverse. Folks like @tchambers@indieweb.social are very good at this on Twitter, and I have no doubt that we can do the same with P92. Except this time we'll have the benefit of federation already happening 😉

    Now if there's one thing I've learned about the growth of the Fediverse it's that bad corporate decisions pay dividends. We've already experienced waves of migration from Tumblr, Twitter, and Reddit. And I have no doubt that it's only a matter of time before Meta makes another corporate mistake -- as they tend to do.

    In which case, we need to strike fast. When another Cambridge Analytica happens, we need to remind everyone on Meta about the lobby servers that are on standby, and ready to take them on. Unlike previous migrations, let's not be unprepared for this. Let's be especially prepared since Meta plans to join the Fediverse.

    Finally, we need more devs. Specifically, we need devs willing to build innovative server and client software that takes aim at Meta. And to do that, we need to support the devs that currently exist -- show evergreen devs pondering whether they should invest here that we, as a community, are appreciative of our current devs.

    If you like #Mastodon, #Calckey, #Kbin, #Friendica, etc., it's important that you open up your hearts as well as your wallets and fund the next stage of Fediverse development.

    This will take a lot of work. But if you want to fight Meta, challenge their dominance of social media, this is what must be done.

    Personally, I'm hyped about the future of the Fediverse -- regardless of whether Meta eventually lives to tell the tale.

    In conversation Tuesday, 20-Jun-2023 17:47:31 JST from calckey.social permalink
  13. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Thursday, 15-Jun-2023 10:09:13 JST Chris Trottier Chris Trottier

    Someone on #Bluesky just asked for a #Calckey invite code.

    Maybe we should start giving out invite codes 🤔

    In conversation Thursday, 15-Jun-2023 10:09:13 JST from calckey.social permalink

    Attachments


    1. https://bunnyt1c.s3.us-east-005.backblazeb2.com/calckeysoc/webpublic-a9c89c00-075e-4bd9-9cf3-8ce20d4a5b65.webp
  14. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Friday, 09-Jun-2023 01:35:26 JST Chris Trottier Chris Trottier

    I appreciate the patience of everyone who’s waited for calckey.social to come back online. This has been a difficult few days. We were already discussing much needed changes, and then the mother of all outages happened.

    I’m still monitoring.

    RE: https://atomicpoet.org/objects/c66dc09a-7bb2-4aba-a149-1831358746ac

    In conversation Friday, 09-Jun-2023 01:35:26 JST from calckey.social permalink

    Attachments


  15. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Monday, 05-Jun-2023 03:56:10 JST Chris Trottier Chris Trottier
    • Social Media News

    Elon Musk is mocking the #CBC for returning to #Twitter.

    And you know what?

    They deserve all the mockery in the world.

    Few journalists have a spine. They keep kowtowing to Twitter even though Elon Musk loathes journalism, and openly voices disdain for it.

    So of course, Elon Musk mocks the Press -- they don't stand up for themselves.

    And quite frankly, if they're not willing to stand up for themselves, how can any of them hold Elon Musk accountable?

    https://twitter.com/elonmusk/status/1656118002499325954

    @socialmedianews@venera.social

    In conversation Monday, 05-Jun-2023 03:56:10 JST from calckey.social permalink

    Attachments


    1. https://bunnyt1c.s3.us-east-005.backblazeb2.com/calckeysoc/657f2fd7-b0a6-420a-a1c5-896f3ff92bf6.png

  16. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Sunday, 04-Jun-2023 12:23:42 JST Chris Trottier Chris Trottier

    People need to consider this from an Asian perspective.

    Traditionally, one of the most popular countries in terms of Mastodon usage has been Japan. But this is changing fast.

    Between January to now, Misskey alone jumped from 75,000 to 325,000 accounts.

    In terms of accounts, misskey.io has now overtaken mastodon.online, one of Mastodon's flagship servers run by Mastodon gGmbh itself.

    In terms of posts sent per month, not only has misskey.io overtaken mastodon.social, it's got double the volume. Which means that despite mastodon.social having 6x more accounts, misskey.io sends 2x more posts that mastodon.social.

    We can clearly see that much of #ActivityPub has moved to *key apps.

    RE: https://soc.outrnat.nl/notes/9figjzqjs958jtxo

    In conversation Sunday, 04-Jun-2023 12:23:42 JST from calckey.social permalink

    Attachments

    1. Misskey.io
      Misskey.io は、地球で生まれた分散マイクロブログSNSです。Fediverse(様々なSNSで構成される宇宙)の中に存在するため、他のSNSと相互に繋がっています。 暫し都会の喧騒から離れて、新しいインターネットにダイブしてみませんか。 お問い合わせはこちらhttps://go.misskey.io/support Powered by Misskey
    2. Domain not in remote thumbnail source whitelist: soc.outrnat.nl
      防空識別區ᴏᴜᴛᴇʀɴᴀᴛɪᴏɴᴀʟ:adm1::adm2: (@adiz)
      @atomicpoet@calckey.social Personally, I don't think the growth of ActivityPub has moved towards the *key apps. While there is definitely, definitely huge growth in this "segment" of Fediverse software, Mastodon is still the "big show in town" and probably isn't really losing any noticeable portion of its user-base over to alternatives like Misskey, Calckey, Akkoma, etc.. BlueSky is kinda "in fad" right now, but I feel that a lot of that is waning. It's similar to how Nostr arrived on the scene, had a lot of interest and momentum, and even vocal support from people like Jack Dorsey...only to sort of slow to a halt after a few weeks. Nobody is really talking about Nostr anymore (at least, not like they had been). It was a fad and the fad hyped out. I don't mean to say that BlueSky won't *become* popular once its polished and matured and not half-backed and widely accessible to the public...but, it's not there, yet. And, I suspect a very similar phenomena with whatever Meta decides to offer, whenever it's offered. All that being said, BlueSky or "Barcelona", let's not forget that this will primarily, if not exclusively, affect Mastodon (not the wider Fediverse). The average Mastodon user is not an enthusiastic Mastodon user. The average Mastodon user doesn't love the Fediverse nor evangelize decentralized, FLOSS, community networking. ---The average Mastodon user feels "forced out", or that they're living in temporary exile from the the centralized, corporate, petty, ideologically-liberal, pseudo-academic, smarmy, Western establishment curated garden they and their cliques once ruled over. As soon as some alternative comes 'round offering them a sense of that again, there they will flock. The rest of the Fediverse will remain.
  17. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Saturday, 03-Jun-2023 17:26:31 JST Chris Trottier Chris Trottier
    in reply to

    What the May slowdown in #Mastodon sign-ups proves once and for all: making mastodon.social the default server does not grow Mastodon.

    In fact, it may have hindered growth.

    With Mastodon gGmbh now favouring their own server, other server admins are less motivated to provide horizontal scale for Mastodon.

    Some of them, like home.social, might even be shutting down.

    In conversation Saturday, 03-Jun-2023 17:26:31 JST from calckey.social permalink
  18. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Saturday, 03-Jun-2023 10:25:35 JST Chris Trottier Chris Trottier

    Was just at a self-checkout and the machine prompted me for a tip.

    Nope, I’m not tipping. I did all the work here.

    And you, the drug store, laid off all the staff for whom the tip would benefit.

    In conversation Saturday, 03-Jun-2023 10:25:35 JST from calckey.social permalink
  19. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Saturday, 03-Jun-2023 05:33:48 JST Chris Trottier Chris Trottier
    • dansup

    If you want the most accurate stats on the #Fediverse, then @dansup@mastodon.social's https://fedidb.org really is the best stats tracker for the Fediverse.

    How do I know this?

    Well, let's take #Calckey for a moment.

    The federation-info only lists 3,470 Calckey users and does not count the biggest Calckey server, which is calckey.social. And calckey.social has over 2,000 accounts. That's a pretty big server to miss.

    And now let's consider fediverse.observer. They report a drop in Calckey users despite there being a big increase in sign-ups for May on calckey.social alone. Even more befuddling, they report 0 comments from Calckey. This is not possible. I'm seeing comments on Calckey daily.

    https://fedidb.org reports an accurate count, which is that Calckey has over 9,000 accounts spread over 315 servers.

    In conversation Saturday, 03-Jun-2023 05:33:48 JST from calckey.social permalink

    Attachments

    1. No result found on File_thumbnail lookup.
      FediDB - Developer Tools for ActivityPub
      Developer Tools for ActivityPub
  20. Embed this notice
    Chris Trottier (atomicpoet@calckey.social)'s status on Saturday, 03-Jun-2023 02:51:46 JST Chris Trottier Chris Trottier

    Yes, there's slowdown in #Mastodon sign-ups. My conjecture for why it's happening:

    1. #Bluesky became the hotness and sucked the oxygen out of the room
    2. People are awaiting #Barcelona to see what #Meta has to offer
    3. There hasn't been a big Mastodon release in a long, long time -- which dulls curiosity about the product
    4. Growth of #ActivityPub has moved more towards *key apps (#Misskey, #Calckey, etc.)

    RE: https://fosstodon.org/users/AkaSci/statuses/110474354119248731

    In conversation Saturday, 03-Jun-2023 02:51:46 JST from calckey.social permalink

    Attachments

    1. Domain not in remote thumbnail source whitelist: cdn.fosstodon.org
      AkaSci 🛰️ (@AkaSci@fosstodon.org)
      from AkaSci 🛰️
      Attached: 1 image A bit of a slowdown in accounts growth on Mastodon in May, after a stellar April. Let's keep encouraging our friends and acquaintances to join Mastodon. If you still post on twitter, then adding a link to your Mastodon account would be helpful. Also, let's address the issues that keep major orgs from moving to the Fediverse. @atomicpoet@calckey.social Data source: @mastodonusercount@mastodon.social #Mastodon #Fediverse
  • After
  • Before

User actions

    Chris Trottier

    Chris Trottier

    Here for casual chat.For official calckey.social business, talk to @admin@calckey.social.

    Tags
    • (None)

    Following 0

      Followers 0

        Groups 0

          Statistics

          User ID
          116582
          Member since
          3 May 2023
          Notices
          468
          Daily average
          1

          Feeds

          • Atom
          • Help
          • About
          • FAQ
          • TOS
          • Privacy
          • Source
          • Version
          • Contact

          GNU social JP is a social network, courtesy of GNU social JP管理人. It runs on GNU social, version 2.0.2-dev, available under the GNU Affero General Public License.

          Creative Commons Attribution 3.0 All GNU social JP content and data are available under the Creative Commons Attribution 3.0 license.