Tootfinder

Opt-in global Mastodon full text search. Join the index!

No exact results. Similar results found.
@netzschleuder@social.skewed.de
2025-09-01 21:00:14

dbpedia_country: Person-Country Affiliations (DBpedia, 2016)
A bipartite network of the affiliations between notable people and countries of the world, as extracted from Wikipedia via the DBpedia project. Countries include former countries, empires, kingdoms, and some country-like entities.
This network has 592414 nodes and 637134 edges.
Tags: Social, Affiliation, Unweighted

dbpedia_country: Person-Country Affiliations (DBpedia, 2016). 592414 nodes, 637134 edges. https://networks.skewed.de/net/dbpedia_country
@grifferz@social.bitfolk.com
2025-10-02 21:45:39

"Questions for Ruby Central"
github.com/community-research-

@aral@mastodon.ar.al
2025-10-02 15:47:23

Folks, Dr. Abdullah (@…), one of our Gaza Verified members, was working at the heart of the danger zone in Al Shifa hospital until the last minute.
He has now safely made it to the South, in part thanks to your donations during our Gaza Verified Emergency Appeal last week.
He still needs help… $500-$800 as he just told me for basic necessitie…

Admissions Office - Postgraduate Directorate of Student Recruitment
University Office, King's College, Aberdeen AB24 3FX,
Scotland, United Kingdom pgadmissions@abdn.ac.uk
22 September 2025
Abdullah Awwad
@gmail.com
Dear Abdullah Awwad
Applicant ID Number
Congratulations, we are delighted to inform you that your application for admission to the University of Aberdeen has been successful and we are very pleased to offer you a place.
OFFER
This offer of admission is the current and most up to date…
@netzschleuder@social.skewed.de
2025-10-01 17:00:18

dbpedia_country: Person-Country Affiliations (DBpedia, 2016)
A bipartite network of the affiliations between notable people and countries of the world, as extracted from Wikipedia via the DBpedia project. Countries include former countries, empires, kingdoms, and some country-like entities.
This network has 592414 nodes and 637134 edges.
Tags: Social, Affiliation, Unweighted

dbpedia_country: Person-Country Affiliations (DBpedia, 2016). 592414 nodes, 637134 edges. https://networks.skewed.de/net/dbpedia_country
@donelias@mastodon.cr
2025-08-03 04:51:34

Enjoy Hotels aplicó embargo preventivo contra influencer que denunció proyecto Bahía Papagayo
delfino.cr/2025/08/enjoy-hotel

@UP8@mastodon.social
2025-09-02 20:04:25

🖲️ This novel 3D printer kinematic system uses a mouse sensor for closed-loop control
blog.arduino.cc/2025/08/12/thi

@rmdes@mstdn.social
2025-08-03 08:12:58

Central Tibetan Administration Suspends Attestation Robert Spatz’s Ogyen Kunzang Choling openbuddhism.org/blog/2023/cen

@arXiv_eessSY_bot@mastoxiv.page
2025-10-03 08:53:21

A Robust Neural Control Design for Multi-drone Slung Payload Manipulation with Control Contraction Metrics
Xinyuan Liang, Longhao Qian, Yi Lok Lo, Hugh H. T. Liu
arxiv.org/abs/2510.01489

@benb@osintua.eu
2025-10-03 05:02:42

New military training center for Ukrainian, NATO troops opens in Poland: benborges.xyz/2025/10/03/new-m

@aral@mastodon.ar.al
2025-09-03 10:53:54

I haven’t added an example of how you implement migrations with Kitten’s¹ built-in JSDB database² yet but here’s one that I just used when renaming a field (property) in a table (JavaScript object) from “account” to “data” that illustrates the general granular approach you should take within persisted instances of JavaScript classes.
This is, of course, an advanced use case of the built-in JavaScript database that all Kitten apps have.
Kitten is simple for simple use cases. So ch…

Screenshot of code (detail) in Helix Editor on macOS, showing the source for app_modules/database/database.js. The following code is highlighted with a pink border:

initialise () {
    // Migration.
    if (this.account !== undefined) {
      this.data = this.account
      delete this.account
    }
  }

Full listing

texport class VerifiedAccount extends Model {
  url = this.url || ''
  /**
    This is the object returned from the accounts/lookup
    method of the Mastodon API.

    …
Screenshot of code for app_modules/database/Model.js.

The following code is highlighted with a pink border:

  /**
    Optional hook: override this to perform initialisation
    at constructor time. (Do not override the constructor
    or the automatic property assignment will fail.)
  */
  initialise () {}

Full code listing:

/**
  Base model class.

  (To use, extend this with your own model classes.)

  When adding properties in subclasses, make sure you
  only set values after checking if…