handmade.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
handmade.social is for all handmade artisans to create accounts for their Etsy and other handmade business shops.

Server stats:

35
active users

#plugins

0 posts0 participants0 posts today

✍️ Handwriting TO TEXT on Linux? A work in progress! 🛠️

🏴󠁧󠁢󠁳󠁣󠁴󠁿 Scotsman Martin Lellep is developing handwritten text recognition solution for Xournal++ (Xournal++ HTR) 🙂

A big hand for Harald Scheidl for making his repositories about handwritten text recognition public.

Want to help as a developer..?

github.com/PellelNitram/xourna

GitHubGitHub - PellelNitram/xournalpp_htr: Developing handwritten text recognition for Xournal++Developing handwritten text recognition for Xournal++ - PellelNitram/xournalpp_htr

Presenting: Quick send, a Misskey (and forks) plugin! (Tested in Sharkey)

This plugin lets you quickly send notes to select users!
:blobcat_spin:

It works by adding users to a send list. Simply click the 3 dots on their profile (either on their profile page, or in the on hover preview), and at the very bottom you'll see an option to add them (or remove them).

Then, on any note, click on the 3 dots, and at the bottom you'll have a button for each user you've added.
:neocat_bongo_down:

There are also options for clearing the list, and in the plugin's settings you can tell it to ask for confirmation, or to show a success dialog box.

To install go to settings > plugins > install and paste the source code:

/// @0.18.0
// This is licensed under MIT
### {
    name: "Quick send"
    version: "1.0.1"
    author: "@linuxenjoyer@blahaj.zone"
    description: "Send a note to your besties quickly"
    permissions: [ "write:notes" ]
    config: {
     show_success: {
            type: "boolean"
            label: "Show success dialog"
            description: "Makes a dialog pop up saying that it was sent. I'm not exactly sure how to do error handling, this is more to make sure the plugin didn't randomly crash."
            default: false
        }

     ask_confirmation: {
            type: "boolean"
            label: "Ask for confirmation"
            description: "Asks you if your really want to send the post."
            default: false
        }
    }
}

@save(obj) {
    Mk:save("user_send_list", obj)
}


@load() {
    var ls = Mk:load("user_send_list")
    if (ls == null) {
        save({})
        ls = {}
    }

    ls
}

// Simple function to format a username
@formatUsername(user) {
    var username = `@{user.username}`

    if (user.host != null) {
        username = `{username}@{user.host}`
    }

    username
}

@sendNote(note, userId) {
    // This is based on blahaj.zone's api-doc (sharkey)
    let res = Mk:api("notes/create" {
        visibility: "specified"
        renoteId: note.id
        visibleUserIds: [ userId ]
    })

    // TODO: Figure out error handling
    true
}

@getAction(username, userId) {
    @(note) {
        var should_send = !Plugin:config.ask_confirmation
        if (!should_send) {
            should_send = Mk:confirm(`Send post to {user}?` "" "question")
        }

        if (should_send) {
            let ok = sendNote(note, userId)

            // This is a little ugly but idrk how to tidy it up
            if (ok) {
                if (Plugin:config.show_success) {
                    Mk:dialog(`Sent note to {username}`, "", "success")
                }
            } else {
                Mk:dialog(`There was an error sending the note to {username}`, "", "error")
            }
        }
    }
}

// Underscores bc it's in global scope
let __ls = load()
each (let usr, Obj:keys(__ls)) {
    Plugin:register_note_action(`Send to {usr}`, getAction(usr, __ls[usr]))
}

Plugin:register_user_action("Add user to send list", @(user) {
    let username = formatUsername(user)

    let ls = load()

    if (ls[username] != null) {
        Mk:dialog(`{username} is already on the send list`, "", "error")
    } else {
        ls[username] = user.id
        save(ls)
        Mk:dialog(`Added {username} to the send list!`, "You might have to refresh to see the changes", "success")
    }
})

Plugin:register_user_action("Remove user from send list" @(user) {
    let username = formatUsername(user)

    let ls = load()
    if (ls[username] == null) {
        Mk:dialog(`{username} is not on the send list`, "", "error")
    } else {
        ls[username] = null
        save(ls)
        Mk:dialog(`Removed {username} from the send list!`, "You might have to refresh to see the changes", "success")
    }
})

Plugin:register_note_action("Clear user send list" @(note){
    if (Mk:confirm("Are you sure you want to clear the list?", "There's no way to undo this", "warning")) {
        save({})
        Mk:dialog("List cleared", "You might have to refresh to see the changes", "success")
    }
})

Plugin:register_user_action("Clear user send list" @(user){
    if (Mk:confirm("Are you sure you want to clear the list?", "There's no way to undo this", "warning")) {
        save({})
        Mk:dialog("List cleared", "You might have to refresh to see the changes", "success")
    }
})

It'll ask for permissions to create notes (it needs this to be able to send stuff)
:blobcat_code:

If you found it useful or have feature ideas/patches let me know
:neocat_melt_reach:

#plugins #plugin #aiscript #aiscriptplugins
Continued thread

c'est reparti pour un tour de patch 🩹
vulnérabilités critiques dans #plugins #WordPress

CVE-2023-2982 Authentication Bypass Vulnerability in WordPress Social Login and Register WordPress Plugin
👇
wordfence.com/blog/2023/06/min

➡️💥​ PoC publique 💣⬅️

👀hunter.how/list?searchValue=we

----------------------------------

CVE-2023-3460 Critical Privilege Escalation Vulnerability in Ultimate Member Plugin Being Actively Exploited
👇
wordfence.com/blog/2023/06/psa

---------------------------------

CVE-2023-2986
Authentication Bypass Vulnerability in Abandoned Cart Lite for WooCommerce WordPress Plugin
👇
wordfence.com/blog/2023/06/tyc

---------------------------------

CVE-2023-2834 Authentication Bypass Vulnerability in BookIt WordPress Plugin
👇
wordfence.com/blog/2023/06/sty

---------------------------------
Liste:
wordfence.com/threat-intel/vul
👇

#MusicProduction

There are 20+ known
#AudioSynthesis types. The most popular being:

#Subtractive
#FM
#Wavetable

Combined with #Sampling, #modulating, #Layering, & #FX, these audio engines cover the majority of sound generation from the majority of #Synthesizer #Plugins created.

Unless a #synth provides a special character, there is no point in having more than a couple of synths.

#OpenSource has most everything you need.

Don’t collect synths for #patches, learn the tools you have.