Tootfinder

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

No exact results. Similar results found.
@gray17@mastodon.social
2025-12-19 18:41:22

spam of the day
> Hi there, I am [generic chinese name], a senior full-stack developer with 7 years of experience. I’m looking to partner with someone in the US who can handle the client-facing communication side of projects, while I focus on the technical work and delivery.
> The idea is simple:
> You handle communication − I build the solution − We share the profit.
I should have setup per-contact email long ago, so I know how I got on the spam list of John …

@aral@mastodon.ar.al
2025-12-11 14:46:51

I love how simple Kitten’s Streaming HTML workflow makes building features like this, especially when using class-based Kitten pages and components :)
#Kitten

Screen capture of the Team schedule interface from the Gaza Verified admin site. It is a table of names and days (Aral, Casey, Joy, Aseel, Fabio And Mondays … Fridays) with checkboxes at each name/day pair. It starts out greyed out. The Unlock to edit button is clicked and the interface comes alive (opacity returns to full and the checkboxes become green and clickable). The person toggles a few checkboxes and clicks the Lock button to lock the interface again and then repeats the process to und…
Screenshot of code (the lines editable=false and the button tag code are highlighted):

class TeamSchedule extends kitten.Component {
  editable = false

  html () {
    return kitten.html`
      <section>
        <h3>Team schedule</h3>
        <button
          name='toggle'
          connect
        >${this.editable ? 'Lock' : 'Unlock to edit'}</button>
        <table id='team-schedule' ${this.editable ? '' : 'inert'}>
          <caption id='caption'>
            <markdown>
              Show…
Screenshot of code, continuation of the same class, starting with the end of the html() method from the previous screenshot and going till the end of the class (the table[inert] style and the onToggle() method are highlighted:

          <style>
            table[inert] {
              opacity: 0.9;
              filter: grayscale(100%);
            }
          </style>
        </table>
      </section>
    `
  }

  onToggle () {
    this.editable = !this.editable
    console.log(this.editable)…
Screenshot of code (the <${TeamSchedule.connectedTo(this)} /> line is highlighted):

export default class InterviewsPage extends kitten.Page {
  html () {
    const today = db.calendar.today
    const futureDays = db.calendar.futureDays
    const pastDays = db.calendar.pastDays

    return kitten.html`
      <${MainLayout} page='/admin/interviews/'>
        <h2>Interviews</h2>

        <${SignUpsSwitch.connectedTo(this)} />
        <${InternalNav} />
        <${TeamSchedule.connectedTo(this)} /…
@arXiv_physicsgenph_bot@mastoxiv.page
2025-11-12 08:11:59

Physics is simple only when analyzed locally
Matteo Luca Ruggiero
arxiv.org/abs/2511.07447 arxiv.org/pdf/2511.07447 arxiv.org/html/2511.07447
arXiv:2511.07447v1 Announce Type: new
Abstract: The definition of a reference frame in General Relativity is achieved through the construction of a congruence of time-like world-lines. In this framework, splitting techniques enable us to express physical phenomena in analogy with Special Relativity, thereby realizing the local description in terms of Minkowski spacetime in accordance with the equivalence principle. This approach holds promise for elucidating the foundational principles of relativistic gravitational physics, as it illustrates how its 4-dimensional mathematical model manifests in practical measurement processes conducted in both space and time. In addition, we show how, within this framework, the Newtonian gravitational force naturally emerges as an effect of the non-geodesic path of the reference frame.
toXiv_bot_toot