Trello Bookmarklet

Trello

Prefer the previous linear layout of Trello cards over the new layout? You can use a bookmarklet to inject styles into the DOM, reverting the layout to one wide column. Just create a new bookmark in your favorite browser’s bookmark bar and paste the following code for the link.

javascript:(function(){var style = document.createElement('style'); style.innerHTML = 'header ~ div[class] { display: block; overflow-y: auto !important; } header ~ div[class] main, header ~ div[class] main div, header ~ div[class] aside, header ~ div aside div { max-width: 100% !important; width: auto !important}'; document.head.appendChild(style);})();

 

Clean URL Bookmarklet

Remove UTM tracking parameters from Chrome addresses before sharing.

Sick of manually removing the UTM tracking parameters from links you copy and paste in Chrome? Here’s a nifty little trick to automate the process.

In your Bookmarks bar, click “Add Page” and enter the Name (e.g., “CLEAN”). Then paste the following code into the URL:

javascript:(function(){let u=new URL(location.href);['utm_placement','user_id','utm_source','utm_medium','utm_campaign','utm_term','utm_content'].forEach(k=>u.searchParams.delete(k));prompt('Clean URL:', u.toString());})();

This will copy the URL and strip out the UTM parameters and present a prompt of the cleaned URL for you to copy and paste into messages, emails, or social media without the tracking data.

Pretty cool, eh?

Historical Figures with AI, by Hidrėlėy Diao

Take a look at Hidrėlėy Diao’s Instagram to see all their contributions to Bored Panda. The three posts about Historical Figures made with AI can be found here, here, and here.

Side-note: Is it just me, or is everyone more beautiful in AI? Those Roman Emperors and Godesses…wow!

FileChecker WordPress Plugin and FileChecker.net

FileChecker Wordpress Plugin

I’m pretty proud of this one.

If you’ve used WordPress before, you know that it’s a blogging platform built predominately by contributors. Though Automattic created the core, developers around the world contribute to themes and plugins that make WordPress far more robust than its competition (Wix, Joomla, Drupal, for example). [d]online is built on WordPress, as is my company site, era404.com. Read more

Category: Web

WPNewsman Full Text Newsletters

WPNewsman

If you’re looking for a free newsletter tool for your installation of WordPress and have less than 2,000 subscribers, the WPNewsman plug-in is fairly nice. They allow you to style your newsletters, entering shortcodes for post-specific content, as well as the post entries and separators. Once finished, you have the option of selecting by author, category, and date range, and creating a newsletter to use excerpts, fancy excerpts (which includes html), and full post content. Unfortunately, the full post content turns HTML into text and removes paragraph breaks, leaving one giant mass of text and html code, commingled. Read more