Mein #PlugIn hängt nun an der PV und schnuffelt sich ein wenig frischen Fusionsstrom in den Akku.
Bis die Gattin daheim ist, ist er voll.
Dann fahre ich weg und sie bedient sich ebenfalls.
So ist der Stellplatz fein blockiert und kein Dödel parkt ihn zu.
WordPress mit dem Fediverse verbinden
Sie kennen WordPress, wissen was das Fediverse ist und haben von ActivityPub gehört.
In diesem Beitrag sehen Sie, wie man alles miteinander verbindet und den Blog mit dem ActivityPub-Plugin ins Fediverse bringt. Viel Spaß dabei!
shady: this plugin steals other peoples spectrums https://youtu.be/9F_wXCaAI8s
The Surge Synth Team has apparently continued the work of discoDSP's OB-Xd in the form of a new #opensource OB-Xf #synthesizer #plugin, available as #lv2, #clap and #vst3. #linuxaudio
https://github.com/surge-synthesizer/OB-Xf/
Dear #linuxmusician (s). Do you regularly read manuals for #plugin (s) or do you prefer to figure things out on your own? #linuxaudio
Today I released my next audio effect plugin: Pult EQ - a Pultec style tube EQ.
Pult EQ is made for adding mojo and sound coloration. You can eq and saturate your sound and do the “Pultec trick”. The EQ features stereo and mid/side processing and the saturation comes with gain compensation and up to 16 times oversampling.
Pult EQ is a free and open source VST3 plugin (64bit) for Linux and Windows.
Download: https://github.com/consint/Pult-EQ
EDIT: Hat sich erledigt !!!
Hallo zusammen.
An die Podcaster und Wordpress-Nutzer unter euch. Gibt es ein Plugin wo man erkennen kann, wie oft welche Folge gehört wurde?
Ein Boost wäre nett.
Danke für eure Hilfe !
Turn audio into midi in any DAW. I use it for a year, and it's very helpful in certain situations. Most "automatic" tools don't work for me.
I have just released a new version of my plugin ‘Dynamic Header & Navigation for Block Themes’. Now you can also set the speed of the fade-in for off-canvas (block themes).
https://wordpress.org/plugins/shrinking-logo-sticky-header/
#wordpress #blockthemes #plugin #themes
Build your own "On This Day" page for WordPress
https://shkspr.mobi/blog/2023/07/build-your-own-on-this-day-page-for-wordpress/
I blog. A lot. Too much really. One of the things I like to do is see what I was rambling on about this time last year. And the year before that. And so on.
So, here's my On This Day page and here's how I built it.
WARNING Extremely quick and dirty code ahead!
This allows you to add a shortcode like [ edent_on_this_day ]
to a page and have it auto generate a list of posts you published on this day in previous years. You may need to exclude that page from your cache.
Add these functions to your theme or to a new plugin:
function edent_on_this_day_shortcode() { $today = getdate(); $args = array( 'date_query' => array( array( 'month' => $today['mon'], 'day' => $today['mday'], ), ), ); $query = new WP_Query( $args ); $posts = $query->get_posts(); $today = getdate(); $pubDate = date("D, d M Y") . " 00:00:00 GMT"; $output = "<h2>From the " . date("jS \of F") . " archives</h2>"; $output .= "<ul>"; foreach($posts as $post) { $title = $post->post_title; $id = $post->ID; $link = get_permalink($id); $date = $post->post_date; $postDate = date("D, d M Y") . " " . date("h:i:s O", strtotime($date)); // $thumb = get_the_post_thumbnail($id, 'full'); $archive = "" . date("Y", strtotime($date)) . ": "; // Only add an item if it is before *this year* if ( intval(date("Y", strtotime($date))) < intval($today['year']) ) { $output .= '<li><a href="' . htmlspecialchars($link) .'">'; $output .= html_entity_decode($archive . $title) . '</a></li>'; } } $output .= "</ul>"; return $output;}// Set up the shortcodefunction edent_on_this_day_shortcode_init() { add_shortcode( 'edent_on_this_day', 'edent_on_this_day_shortcode' );}add_action( 'init', 'edent_on_this_day_shortcode_init' );
I really can't be bothered to deal with WordPress's complicated plugin publishing system - so feel free to copy the above with or without attribution.
I originally built this as an RSS feed - but decided recently that a regular HTML page was more useful. If you spot any bugs, you can contribute on GitHub.
Enjoy!
@LoganFive setup a #NextCloud instance. It has a #web interface, #mobile app and wide #plugin support.
Can be self hosted - requires more maintenance; routing, firewall, updates, ... Many #cloud / #VPS hostings provide a NextCloud #hosting #service at lower cost than hosting a VPS with #bucket #storage (for instance Hetzner).
Do you use #yabridge / #wine to run #windows #plugin (s) on #linuxaudio?
Today, I recorded a video about my #WordPress #plugin Dynamic Header & Navigation for Block Themes, which I have included in the description.
Many thanks to @patriciabt (https://profiles.wordpress.org/patricia70/) and @Reuhno (https://profiles.wordpress.org/laboiteare/), who translated the plugin into French today.
https://wordpress.org/plugins/shrinking-logo-sticky-header/
Dear #linuxmusician (s), welcome to Linux Audio Plugin Development!
If you haven't read the #linuxaudio #plugin #developer #interview (s) with the lovely folks from ACMT, @audiothing, Audio Assault, Inphonik, Kazrog, Linux Studio Plugins, RV Audio Design, Sinevibes, Sinuslabs, Sononym or TAL Software, feel free to take a look here: https://linuxaudio.dev/linux-audio-developers-spotlight
PD: More interviews with Audio Damage, @uheplugins, Auburn Sounds and Klangfreund are in the making.
Irgendwie funktioniert das hier im #Fediverse leider noch nicht richtig. Unter dem Redaktionsaccount @redaktion landen leider nur die mit dem Autor "NHR" veröffentlichten Artikel, obwohl hier doch eigentlich gemäß Konfiguration **alle** Artikel ins Fedi gespült werden sollten.
Für "redaktion" gibt es keinen User, so dass es hier auch keinen Konflikt geben sollte.
Hat jemand eine Idee, wonach wir noch schauen könnten?
Another #plugin vendor that might be worth contacting for #linux support is industry giant Plugin Alliance, who recently replied to me:
“Linux compatibility may be available in a future update, but I do not know the implementation timeframe.”
#linuxaudio
A few days ago, @florianziegler suggested that all of us running blogs with RSS feeds make a small change:
Please add your email address to your RSS feed.
This email address can be used by RSS feed readers to display an Email button next to each feed entry, so folks can reply to the post via email instead of visiting the post on your site to leave a comment.
That seems like a good idea. I found that there was no WordPress plugin that allowed that out of the box, so I built my own. If you’re a blogger and use WordPress, give it a try!
https://wordpress.org/plugins/rss-reply-via-email/
Next step will be for more feed readers to support that issue. I consequently opened an issue for my feed reader of choice, NetNewsWire, to support this. If you use a different feed reader, don’t hesitate to contact them about it!
And once again, dear #linuxaudio users! Audiority (https://audiority.com/) are considering supporting #linux as well.
So please feel free to drop them a line or two at support@audiority.com to express your interest in their #plugin (s) coming to Linux as well.
Dear #linuxaudio community. I am in contact with Physical Audio, makers of Tetrad, Preparation, and Modus – a bunch of unique #phisycal #modelling #software #synthesizer #plugin (s) and they are considering bringing them to #linux if there is demand.
So, if you'd like to see those #instrument (s) coming to Linux, please let them know at support21@physicalaudio.co.uk.
https://physicalaudio.co.uk/