eupolicy.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
This Mastodon server is a friendly and respectful discussion space for people working in areas related to EU policy. When you request to create an account, please tell us something about you.

Server stats:

221
active users

#howto

7 posts7 participants0 posts today
Terence Eden’s Blog<p><strong>Quick Swap Data SIM Shortcut on Android</strong></p><p><a href="https://shkspr.mobi/blog/2025/07/quick-swap-data-sim-shortcut-on-android/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">shkspr.mobi/blog/2025/07/quick</span><span class="invisible">-swap-data-sim-shortcut-on-android/</span></a></p><p></p><p>I have a dual SIM Android phone. When I call or text, I get a choice of which SIM to use. But there's no quick way to swap which SIM is used for data.</p><p>There used to be a built-in settings tile on stock Android, and some manufacturers still have it, but Google's Pixels don't.</p><p>So here's how to make a (fairly) quick shortcut to swap between data SIMs.</p><p>First, get the brilliant <a href="https://github.com/sdex/ActivityManager" rel="nofollow noopener" target="_blank">open source Activity Manager app</a>. It exposes all of the internal activities available in your apps. This lets you create a deep-link shortcut into a specific part of an app.</p><p>In Activity Manager, find the Settings app and tap on it.</p><p></p><p>Search or scroll down to "MobileNetworkListActivity".</p><p></p><p>Tap the vertical ellipse and then "Create Shortcut".</p><p></p><p>That will place an icon on your home screen. Tapping the icon will take you directly to your SIM settings. At the bottom is the option to choose your data SIM. Tap it to change your data SIM.</p><p></p><p>It isn't quite a one-tap solution, but the shortcut is a lot easier than remembering exactly which sub-menu you need to find.</p><p></p><p><a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://shkspr.mobi/blog/tag/android/" target="_blank">#android</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://shkspr.mobi/blog/tag/howto/" target="_blank">#HowTo</a></p>
Terence Eden<p>🆕 blog! “Quick Swap Data SIM Shortcut on Android”</p><p>I have a dual SIM Android phone. When I call or text, I get a choice of which SIM to use. But there's no quick way to swap which SIM is used for data.</p><p>There used to be a built-in settings tile on stock Android, and some manufacturers still have it, but Google's Pixels don't.</p><p>So here's how to make a (fairly) quick shortcut to…</p><p>👀 Read more: <a href="https://shkspr.mobi/blog/2025/07/quick-swap-data-sim-shortcut-on-android/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">shkspr.mobi/blog/2025/07/quick</span><span class="invisible">-swap-data-sim-shortcut-on-android/</span></a><br>⸻<br><a href="https://mastodon.social/tags/android" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>android</span></a> <a href="https://mastodon.social/tags/HowTo" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>HowTo</span></a></p>
ResearchBuzz: Firehose<p>Micah Flee: Using Signal groups for activism . “Millions of people are taking to the streets against Trump’s rising authoritarianism. Communities around the US are organizing to defend against ICE raids, to protest Israeli genocide, for mutual aid, and for other forms of fighting fascism. Signal can help people safely organize in all of these contexts. Signal groups, in particular, are more […]</p><p><a href="https://rbfirehose.com/2025/07/15/micah-flee-using-signal-groups-for-activism/" class="" rel="nofollow noopener" target="_blank">https://rbfirehose.com/2025/07/15/micah-flee-using-signal-groups-for-activism/</a></p>
Terence Eden’s Blog<p><strong>Easy ways to add watermarks to images and videos in Linux</strong></p><p><a href="https://shkspr.mobi/blog/2016/08/easy-ways-to-add-watermarks-to-images-and-videos-in-linux/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">shkspr.mobi/blog/2016/08/easy-</span><span class="invisible">ways-to-add-watermarks-to-images-and-videos-in-linux/</span></a></p><p></p><p>Mostly notes to myself :-)</p><p>Here is a quick way to add watermarks to photos and videos. All Linux command line based - so perfect if you've got a lot of images you want to manipulate.</p><p>Here is a delightful photo I've taken of a bee covered in pollen. I want to add a little copyright notice to it in order to discourage people using it without permission.</p><p></p><p>This command uses <a href="http://www.ImageMagick.org/" rel="nofollow noopener" target="_blank">imagemagick</a>'s "<a href="http://www.imagemagick.org/Usage/annotating/" rel="nofollow noopener" target="_blank">annotate</a>" option.</p><p><code>convert bee.jpg -gravity SouthEast -pointsize 16 -font TinyUnicode-Medium -fill "#fffdc3" -annotate +10+10 "(C) @edent" bee1.jpg</code></p><p>It produces this:</p><p></p><p>As you can see, a small watermark in the bottom right - specified using <code>-gravity SouthEast</code>. I've chosen a yellow colour for the font - in homage to the <a href="https://people.duke.edu/~ng46/collections/steg-eurion-constellation.htm" rel="nofollow noopener" target="_blank">EURion anti-counterfeiting symbols</a>.</p><p>The <code>-annotate</code> command contains the distance in pixels from the edges</p><p>For small text, I favour a Pixel Font like <a href="http://www.dafont.com/tinyunicode.font" rel="nofollow noopener" target="_blank">TinyUnicode</a> - but feel free to choose one which suits your needs.</p><p>In this example, I position the message in the top left, with a larger font size, in pale blue, closer to the horizontal edge and further from the vertical edge.</p><p><code>convert bee.jpg -gravity NorthWest -pointsize 32 -font Helvetica -fill "#cee3f8" -annotate +1+50 "(C) @edent" bee2.jpg</code></p><p><strong>Video</strong></p><p>Adding a watermark to a video is more complex. This will require either ffmpeg - which isn't always installed by default on Linux - or avconv (I don't pretend to understand why <a href="http://blog.pkh.me/p/13-the-ffmpeg-libav-situation.html" rel="nofollow noopener" target="_blank">ffmpeg and avconv split</a> - but there we are).</p><p>I am going to <a href="https://ffmpeg.org/ffmpeg-filters.html#overlay-1" rel="nofollow noopener" target="_blank">overlay</a> a transparent image on top of the video.</p><p>I've created this watermark image with a transparent background.</p><p></p><p>To overlay it, I use:</p><p><code>ffmpeg -i input.mp4 -i watermark.png -filter_complex "overlay=1500:1000" output.mp4</code></p><p>or for <a href="https://libav.org/documentation/libavfilter.html#overlay-1" rel="nofollow noopener" target="_blank">avconv's overlay</a>:</p><p><code>avconv -i input.mp4 -i watermark.png -filter_complex 'overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10' output.mp4</code></p><p></p> <a href="https://shkspr.mobi/blog/wp-content/uploads/2016/07/small.mp4" rel="nofollow noopener" target="_blank">https://shkspr.mobi/blog/wp-content/uploads/2016/07/small.mp4</a> <p></p><p>ffmpeg's <code>overlay=</code> option allows me to specify where the <em>top left</em> of the image will appear on the video. So adjust those number based on the resolution of your watermark and of your video.</p><p>avconv has a more complex syntax. It's possible to specify the <em>absolute</em> position using <code>overlay=x=1500:y=1000</code> or to use <em>relative</em> positions with <code>overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10</code>.</p><p>Or, for a one-liner:</p><pre><code>ffmpeg -i input.mp4 -vf "drawtext=text='@edent':x=10:y=H-th-10:fontfile=/home/edent/.local/share/fonts/OCRAEXT.TTF:fontsize=15:fontcolor=#cee3f8" -vcodec h264 -strict -2 output.mp4</code></pre><p>So, there you have it - hopefully simple ways to watermark your media files.</p><p></p><p><a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://shkspr.mobi/blog/tag/howto/" target="_blank">#HowTo</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://shkspr.mobi/blog/tag/linux/" target="_blank">#linux</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://shkspr.mobi/blog/tag/tutorial/" target="_blank">#tutorial</a></p>
Thomas Schmidt :mastodon:<p>neu auf <a href="https://mastodon.social/tags/GadgetGedanken" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GadgetGedanken</span></a> : Hybride Meetings meistern: Mein ultimatives Kit gegen Technik-Chaos</p><p>Du hasst Technik-Chaos bei hybriden Meetings? In dieser Anleitung zeige ich dir mein ultimatives mobiles Kit für ein professionelles Setup. Jetzt entdecken!</p><p><a href="https://www.gadgetgedanken.de/2025/07/hybride-meeting-kit/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">gadgetgedanken.de/2025/07/hybr</span><span class="invisible">ide-meeting-kit/</span></a></p><p><a href="https://mastodon.social/tags/GadgetGedanken" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GadgetGedanken</span></a> <a href="https://mastodon.social/tags/Gadgets" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Gadgets</span></a> <a href="https://mastodon.social/tags/HomeOffice" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>HomeOffice</span></a> <a href="https://mastodon.social/tags/HowTo" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>HowTo</span></a> <a href="https://mastodon.social/tags/HybrideMeetings" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>HybrideMeetings</span></a> <a href="https://mastodon.social/tags/JobGedanken" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>JobGedanken</span></a> <a href="https://mastodon.social/tags/Konferenztechnik" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Konferenztechnik</span></a> <a href="https://mastodon.social/tags/MeetingAusr%C3%BCstung" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>MeetingAusrüstung</span></a> <a href="https://mastodon.social/tags/MobilesArbeiten" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>MobilesArbeiten</span></a> <a href="https://mastodon.social/tags/Produktivit%C3%A4t" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Produktivität</span></a> <a href="https://mastodon.social/tags/TechnikKit" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>TechnikKit</span></a></p>
All for Gardening<p>Perlite is beneficial for gardening in containers <a href="https://www.allforgardening.com/1367375/perlite-is-beneficial-for-gardening-in-containers/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">allforgardening.com/1367375/pe</span><span class="invisible">rlite-is-beneficial-for-gardening-in-containers/</span></a> <a href="https://vive.im/tags/agriculture" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>agriculture</span></a> <a href="https://vive.im/tags/AgricultureU0026Forestry" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AgricultureU0026Forestry</span></a> <a href="https://vive.im/tags/AI" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AI</span></a> <a href="https://vive.im/tags/content" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>content</span></a> <a href="https://vive.im/tags/diy" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>diy</span></a> <a href="https://vive.im/tags/DIYU0026ExpertContent" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DIYU0026ExpertContent</span></a> <a href="https://vive.im/tags/earth" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>earth</span></a> <a href="https://vive.im/tags/EarthSciences" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>EarthSciences</span></a> <a href="https://vive.im/tags/Enabled" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Enabled</span></a> <a href="https://vive.im/tags/expert" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>expert</span></a> <a href="https://vive.im/tags/extension" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>extension</span></a> <a href="https://vive.im/tags/forestry" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>forestry</span></a> <a href="https://vive.im/tags/garden" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>garden</span></a> <a href="https://vive.im/tags/gardeners" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>gardeners</span></a> <a href="https://vive.im/tags/gardening" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>gardening</span></a> <a href="https://vive.im/tags/Highlights" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Highlights</span></a> <a href="https://vive.im/tags/HowTo" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>HowTo</span></a> <a href="https://vive.im/tags/Master" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Master</span></a> <a href="https://vive.im/tags/MasterGardeners" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>MasterGardeners</span></a> <a href="https://vive.im/tags/Neutral" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Neutral</span></a> <a href="https://vive.im/tags/ohio" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ohio</span></a> <a href="https://vive.im/tags/OhioStateUniversityExtension" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OhioStateUniversityExtension</span></a> <a href="https://vive.im/tags/Overall" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Overall</span></a> <a href="https://vive.im/tags/OverallNeutral" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OverallNeutral</span></a> <a href="https://vive.im/tags/sciences" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>sciences</span></a> <a href="https://vive.im/tags/state" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>state</span></a> <a href="https://vive.im/tags/story" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>story</span></a> <a href="https://vive.im/tags/StoryHighlightsAIEnabled" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>StoryHighlightsAIEnabled</span></a> <a href="https://vive.im/tags/u0026" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>u0026</span></a> <a href="https://vive.im/tags/University" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>University</span></a></p>
Terence Eden’s Blog<p><strong>Build your own "On This Day" page for WordPress</strong></p><p><a href="https://shkspr.mobi/blog/2023/07/build-your-own-on-this-day-page-for-wordpress/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">shkspr.mobi/blog/2023/07/build</span><span class="invisible">-your-own-on-this-day-page-for-wordpress/</span></a></p><p></p><p>I blog. A <em>lot</em>. 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.</p><p>So, here's my <a href="https://shkspr.mobi/blog/on-this-day/" rel="nofollow noopener" target="_blank">On This Day page</a> and here's how I built it.</p><p><strong>WARNING</strong> Extremely quick and dirty code ahead!</p><p>This allows you to add a shortcode like <code>[ edent_on_this_day ]</code> 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.</p><p>Add these functions to your theme or to a new plugin:</p><pre><code>function edent_on_this_day_shortcode() { $today = getdate(); $args = array( 'date_query' =&gt; array( array( 'month' =&gt; $today['mon'], 'day' =&gt; $today['mday'], ), ), ); $query = new WP_Query( $args ); $posts = $query-&gt;get_posts(); $today = getdate(); $pubDate = date("D, d M Y") . " 00:00:00 GMT"; $output = "&lt;h2&gt;From the " . date("jS \of F") . " archives&lt;/h2&gt;"; $output .= "&lt;ul&gt;"; foreach($posts as $post) { $title = $post-&gt;post_title; $id = $post-&gt;ID; $link = get_permalink($id); $date = $post-&gt;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))) &lt; intval($today['year']) ) { $output .= '&lt;li&gt;&lt;a href="' . htmlspecialchars($link) .'"&gt;'; $output .= html_entity_decode($archive . $title) . '&lt;/a&gt;&lt;/li&gt;'; } } $output .= "&lt;/ul&gt;"; 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' );</code></pre><p>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.</p><p>I originally built this as an RSS feed - but decided recently that a regular HTML page was more useful. If you spot any bugs, <a href="https://github.com/edent/WordPress-On-This-Day-Plugin" rel="nofollow noopener" target="_blank">you can contribute on GitHub</a>.</p><p>Enjoy!</p><p></p><p><a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://shkspr.mobi/blog/tag/blogging/" target="_blank">#blogging</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://shkspr.mobi/blog/tag/howto/" target="_blank">#HowTo</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://shkspr.mobi/blog/tag/php/" target="_blank">#php</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://shkspr.mobi/blog/tag/plugin/" target="_blank">#plugin</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://shkspr.mobi/blog/tag/wordpress/" target="_blank">#WordPress</a></p>
OncoBot<p><a href="https://kingrpaul.github.io/formatting-a-dual-language-glossary.html" rel="nofollow noopener" target="_blank"><span class="invisible">https://</span><span class="ellipsis">kingrpaul.github.io/formatting</span><span class="invisible">-a-dual-language-glossary.html</span></a></p><p><a href="https://mastodon.cloud/tags/HowTo" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>HowTo</span></a> format an English-<a href="https://mastodon.cloud/tags/esperanto" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>esperanto</span></a> <a href="https://mastodon.cloud/tags/glossary" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>glossary</span></a> for <a href="https://mastodon.cloud/tags/Epub" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Epub</span></a> when producing an <a href="https://mastodon.cloud/tags/ebook" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ebook</span></a>.</p>
Chery (Great Australian Pods)<p>VetCare Talk Time </p><p>Great Australian Pods Podcast Directory: <a href="https://www.greataustralianpods.com/vetcare-talk-time/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">greataustralianpods.com/vetcar</span><span class="invisible">e-talk-time/</span></a> </p><p><a href="https://aus.social/tags/GreatAusPods" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GreatAusPods</span></a> <a href="https://aus.social/tags/AusPods" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AusPods</span></a> <a href="https://aus.social/tags/Podcast" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Podcast</span></a> <a href="https://aus.social/tags/Podcasts" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Podcasts</span></a> <a href="https://aus.social/tags/Podcasting" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Podcasting</span></a> <a href="https://aus.social/tags/Podcasters" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Podcasters</span></a> <a href="https://aus.social/tags/Australia" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Australia</span></a> <a href="https://aus.social/tags/Science" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Science</span></a> <a href="https://aus.social/tags/Careers" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Careers</span></a> <a href="https://aus.social/tags/HowTo" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>HowTo</span></a> <a href="https://aus.social/tags/Pets" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Pets</span></a> <a href="https://aus.social/tags/Animals" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Animals</span></a> <a href="https://aus.social/tags/News" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>News</span></a> <a href="https://aus.social/tags/Discussions" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Discussions</span></a></p>
Chery (Great Australian Pods)<p>Teacher Takeaway </p><p>Great Australian Pods Podcast Directory: <a href="https://www.greataustralianpods.com/teacher-takeaway/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">greataustralianpods.com/teache</span><span class="invisible">r-takeaway/</span></a> </p><p><a href="https://aus.social/tags/GreatAusPods" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GreatAusPods</span></a> <a href="https://aus.social/tags/AusPods" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AusPods</span></a> <a href="https://aus.social/tags/Podcast" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Podcast</span></a> <a href="https://aus.social/tags/Podcasts" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Podcasts</span></a> <a href="https://aus.social/tags/Podcasting" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Podcasting</span></a> <a href="https://aus.social/tags/Podcasters" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Podcasters</span></a> <a href="https://aus.social/tags/Australia" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Australia</span></a> <a href="https://aus.social/tags/Education" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Education</span></a> <a href="https://aus.social/tags/Careers" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Careers</span></a> <a href="https://aus.social/tags/HowTo" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>HowTo</span></a></p>
Izoate<p>Encountering Netflix Error Code NSES-UHX while streaming? You're not alone! Learn more about why this error happens and how to resolve it for a smooth Netflix experience.</p><p><a href="https://mastodon.social/tags/Izoate" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Izoate</span></a> <a href="https://mastodon.social/tags/Howto" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Howto</span></a> <a href="https://mastodon.social/tags/error" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>error</span></a> <a href="https://mastodon.social/tags/tech" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>tech</span></a> <a href="https://mastodon.social/tags/Netflix" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Netflix</span></a></p><p><a href="https://www.izoate.com/blog/how-to-fix-netflix-error-code-nses-uhx-on-chrome-firefox-opera-and-edge/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">izoate.com/blog/how-to-fix-net</span><span class="invisible">flix-error-code-nses-uhx-on-chrome-firefox-opera-and-edge/</span></a></p>
Izoate<p>Is MidJourney not working or showing an Internal Server Error? 🚨 Don’t worry! Check out our guide on how to fix it and get back to creating stunning AI images in no time.</p><p><a href="https://mastodon.social/tags/MidJourney" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>MidJourney</span></a> <a href="https://mastodon.social/tags/Izoate" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Izoate</span></a> <a href="https://mastodon.social/tags/ai" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ai</span></a> <a href="https://mastodon.social/tags/tech" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>tech</span></a> <a href="https://mastodon.social/tags/howto" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>howto</span></a></p><p><a href="https://www.izoate.com/blog/how-to-fix-midjourney-internal-server-error-solution-for-when-midjourney-is-not-responding/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">izoate.com/blog/how-to-fix-mid</span><span class="invisible">journey-internal-server-error-solution-for-when-midjourney-is-not-responding/</span></a></p>
Izoate<p>Struggling with the 'Trying to Reconnect' error on Canva? 😣 Don’t worry, we’ve got you covered! Check out our easy guide to fix the issue and get back to designing in no time.</p><p><a href="https://mastodon.social/tags/izoate" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>izoate</span></a> <a href="https://mastodon.social/tags/canva" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>canva</span></a> <a href="https://mastodon.social/tags/tech" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>tech</span></a> <a href="https://mastodon.social/tags/howto" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>howto</span></a></p><p><a href="https://www.izoate.com/blog/how-to-fix-canva-trying-to-reconnect-error-resolve-canva-offline-error-attempting-to-reconnect/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">izoate.com/blog/how-to-fix-can</span><span class="invisible">va-trying-to-reconnect-error-resolve-canva-offline-error-attempting-to-reconnect/</span></a></p>
The Verge<p>The best Fitbits for your fitness and health <a href="https://thever.ge/pC5k" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">thever.ge/pC5k</span><span class="invisible"></span></a> <a href="https://c.im/tags/BuyingGuide" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>BuyingGuide</span></a> <a href="https://c.im/tags/Wearable" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Wearable</span></a> <a href="https://c.im/tags/Fitness" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Fitness</span></a> <a href="https://c.im/tags/Gadgets" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Gadgets</span></a> <a href="https://c.im/tags/Howto" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Howto</span></a> <a href="https://c.im/tags/Tech" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Tech</span></a></p>

#LisbonFallsME - #UMaineExtension offers #pickling and #salsa workshops at #LittleRidgeFarm

July 2, 2025

"University of Maine Cooperative Extension is offering two food preservation workshops at Little Ridge Farm, 103 Gould Rd. in Lisbon Falls. Pickling and canning #DillyBeans (pickled green beans) will be held Tuesday, July 29, 2025, from 5:30 – 8 p.m. and preserving #TomatoSalsa will take place Tuesday, August 26, 2025, from 2 – 5:30 p.m.

"Participants will learn recommended methods for preserving foods, the latest and safest recipes, what equipment to use to ensure safety, and how to check for properly sealed jars. A local snack is included with the course. Attendees are encouraged to bring a potholder.

"Registration is required for the courses. The fee is $25 per workshop. Register on the program webpage. For more information or to request a reasonable accommodation, contact Kate McCarty, 207.781.6099; kate.mccarty@maine.edu."

extension.umaine.edu/2025/07/0

homemade salsa jars with fresh peppers and onions
Cooperative ExtensionUMaine Extension offers pickling and salsa workshops at Little Ridge Farm - University of Maine Cooperative ExtensionLisbon Falls, Maine — University of Maine Cooperative Extension is offering two food preservation workshops at Little Ridge Farm, 103 Gould Rd. in Lisbon Falls. Pickling and canning dilly beans (pickled green beans) will be held Tuesday, July 29, 2025, from 5:30 – 8 p.m. and preserving tomato salsa will…