lapy, to random
@lapy@k.lapy.link avatar

밥해줘어어어어어

lapy,
@lapy@k.lapy.link avatar

반찬이랑 랩 사오다가 편의점 들러서 박스 약탈해오기 #todo

gregorni, to firefox
@gregorni@fosstodon.org avatar

Today, I finally managed to close all browser tabs on my phone. I'm incredibly proud of myself.

#phone #browser #mobile #MobilePhone #Firefox #FirefoxMobile #FirefoxAndroid #tabs #BrowserTabs #FreeTheBrowserTabs #Todo #TodoList

peterdrake, to medical
@peterdrake@qoto.org avatar

I'm reading the bullet journal book. I understand the advantages of using paper, but so many of the notes I take are technical details (which I might need to refer to later) that being unable to search might be a deal-breaker.

I'm already using a combination of Google Docs, Trello, and paper that has a lot in common with what Carroll suggests. I may end up just stealing some ideas.

#BulletJournal #bujo #gtd #organization #journal #calendar #todo

runeranch, to ai

Goblin.tools offers a comprehensive range of tools for social media management. Additionally, I find the to-do function to be highly useful and efficient.

The Formalizer software significantly improves the clarity of my written content by correcting my poor word choices in English.

https://apps.apple.com/dk/app/goblin-tools/id6449003064?l=da

ssamulczyk, to cycling
@ssamulczyk@mstdn.social avatar

#GoodMorning #Indoor #Cycling! #Wahoo #KICK Core is a nice and quiet smart trainer, I’ll give it that! But riding at home is a horrifyingly sweaty endeavour and I will still take any chance to ride outside…🤷🏻‍♂️ #Bicycle #Bici #Bicicleta #Ciclismo #Velo #Fahrrad #Rower #Wahooligan #Velominati #LifeBehindBars #LookMomNoHands #Shimano #Zwift #BikeToot #BikeTooter @cycling @rower

video/mp4

wariat,
@wariat@mastodon.social avatar

@ssamulczyk
Piła taśmowa napędzana rowerem… Twoim… Hmmm #TODO :D

Da_Gut, to productivity
@Da_Gut@dice.camp avatar

I definitely do better with a handwritten to do list than an electronic one. At least on a daily scale i do. #productivity #todo

Phipe, to NoStupidQuestions French
@Phipe@diaspodon.fr avatar

Allez tiens, la du jour les mastogensses :

Quel outil simpliste/simplissime utilisez-vous pour vous aider à gérer vos tâches (noter/planifier/cocher) ?
Quelle adaptation/simplification avez-vous fait pour votre cas perso d'une méthode style ou (ou autre) ?

🖖🏽

CypherSephiroth,
@CypherSephiroth@piaille.fr avatar

@Phipe papier, stylos, une case à cocher devant le #todo, et vogue la galère.

David, to AdobePhotoshop

Do you know of any "to-do" app that has a circular queue function?
For example, three tasks are in a queue, no deadline, but every time a task is completed, it goes back to the end of the queue. It seems to be such a simple function (I used to be able to code this 30 years ago - not anymore), but none of the main apps seem able to do it (or am I missing something?)

Anyone?

#app #android #productivity #todo

abracanabra, to Halloween
grumpygamer, to gamedev
@grumpygamer@mastodon.gamedev.place avatar

Been a while since I did a TODO list. I got sidetracked with "life". I've been working on the game, finding an artist, and what-not but I need to get back to my daily TODO list. Posting it helps me keep focused and oddly enough it makes me feel accountable. Staying motivated is hard when you're working on a game alone.

Luke, to AppleInc
@Luke@typo.social avatar
blog, to HowTo
@blog@shkspr.mobi avatar

Rewriting WordPress's JetPack Related Posts Shortcode
https://shkspr.mobi/blog/2023/10/rewriting-wordpresss-jetpack-related-posts-shortcode/

I like the JetPack related post functionality. But I wanted to customise it far beyond what the default code allows for.

So here's how I went from this:

The old layout has three items, with small images and indistinct text.

To this:

The new layout has 4 items, each boxed off, with a larger image and more distinct text.

Documentation

The complete documentation for related posts is pretty easy to follow.

This is an adaptation of "Use ".

Remove the automatic placement

You can turn off the original "related posts" by adding this to your theme's functions.php:

function jetpackme_remove_rp() {    if ( class_exists( 'Jetpack_RelatedPosts' ) ) {        $jprp = Jetpack_RelatedPosts::init();        $callback = array( $jprp, 'filter_add_target_to_dom' );        remove_filter( 'the_content', $callback, 40 );    }}add_filter( 'wp', 'jetpackme_remove_rp', 20 );

Add the new Related Posts

In your theme's index.php (or wherever else you like) you can add this code to insert the new related posts functionality:

if ( is_single() ) {    echo "<section>";        echo do_shortcode( '[jprelp]' );    echo "</section>";}

Create the new functionality

And this goes in your theme's functions.php file. I've commented it as best I can. Let me know if you need more info.

function jetpackme_custom_related() {    //  Check that JetPack Related Posts exists    if (            class_exists( 'Jetpack_RelatedPosts' )            && method_exists( 'Jetpack_RelatedPosts', 'init_raw' )    ) {            //  Get the related posts            $related = Jetpack_RelatedPosts::init_raw()                ->set_query_name( 'edent-related-shortcode' )                 ->get_for_post_id(                    get_the_ID(),   //  ID of the post                    array( 'size' => 4 )//  How many related items to fetch                );            if ( $related ) {                //  Set the container for the related posts                $output = "<h2 id='related-posts'>The Algorithm™ suggests:</h2>";                $output .=   "<ul class='related-posts'>";                foreach ( $related as $result ) {                    $related_post_id = $result['id'];                    // Get the related post                    $related_post = get_post( $related_post_id );                    //  Get the attributes                    $related_post_title = $related_post->post_title;                    $related_post_date  = substr( $related_post->post_date, 0, 4 ); // YYYY-MM-DD                    $related_post_link  = get_permalink( $related_post_id );                    //  Get the thumbnail                    if ( has_post_thumbnail( $related_post_id) ) {                        $related_post_thumb = get_the_post_thumbnail( $related_post_id, 'full',                             array( "class"   => "related-post-img",                                   "loading" => "lazy" //   Lazy loading and other attributes                            )                         );                    } else {                        $related_post_thumb = null;                    }                    //  Create the HTML for the related post                    $output .= '<li class="related-post">';                    $output .=    "<a href='{$related_post_link}'>";                    $output .=       "{$related_post_thumb}<p>{$related_post_title}</p></a>";                    $output .=    "<time>{$related_post_date}</time>";                    $output .= "</li>";                }                //  Finish the related posts container                $output .="</ul>";            }        //  Display the related posts        echo $output;    }}add_shortcode( 'jprel', 'jetpackme_custom_related' );   //  Shortcode name can be whatever you want

Bit of CSS to zhuzh it up

Feel free to add your own styles. This is what works for me.

.related-posts  {    list-style: none;    padding: 0;    display: inline-flex;    width: 100%;    flex-wrap: wrap;    justify-content: center;}.related-posts > * {    /* https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_flexible_box_layout/Controlling_ratios_of_flex_items_along_the_main_axis#combining_flex-grow_and_flex-basis */    flex: 1 1 0;}    .related-post {        min-width: 10em;        max-width: 20em;        text-align: center;        margin: .25em;        border: .1em var(--color-text);        border-style: solid;        border-radius: var(--border-radius);        position: relative;        display: flex;        flex-direction: column;        min-height: 100%;        overflow: clip;    }        .related-post h3 {            font-size: 1em;            padding-top: .5em;        }        .related-post img {            object-fit: cover;            height: 9em;            width: 100%;            border-radius: 0 1em 0 0;            background: var(--color-text);            display: inline-block;        }        .related-post p {            margin: 0 .25em;        }        .related-post time {            font-size: .75em;            display: block;        }

ToDo

  • Use transients to store the data to prevent repeated slow API calls?
  • Perhaps some teaser text?
  • Adjust the layout so the date always floats to the bottom?

https://shkspr.mobi/blog/2023/10/rewriting-wordpresss-jetpack-related-posts-shortcode/

MsHearthWitch, to random
@MsHearthWitch@wandering.shop avatar

It's always fun to wake up in screaming pain. Right? That's how we want to start the week FOR SURE.

Weakly X-ing out my to-do list for today. Maybe tomorrow.

MsHearthWitch,
@MsHearthWitch@wandering.shop avatar

The pain has moved from "Oh fuck I need to hurl" levels to "As long as we don't move too much, it's okay"

Which, is better than I expected. Managed to keep down a hearty veg soup for lunch. And if things stay this level, I'll probably attempt the baking of muffins in a bit. I really want orange chocolate chip muffins...

I had great plans for cleaning my bedroom today but that is absolutely not gonna happen. Did manage to get the towels in for a bleach tho

#ToDo #ChronicPain #FibroLife #Fibro

Tunaloo, to microsoft

Who enjoys using the #Microsoft #ToDo app and why is it no one?

MsHearthWitch, to knitting
@MsHearthWitch@wandering.shop avatar

Today's Goals

📖 Sort out my ereader. Either I have too many books on it, or something is corrupt, or something. Troubleshooting time.

🏳️‍⚧️ Finish the blanket for my son (top surgery in a month, woooo)

🐔 Play some Harvest Moon

🐠 Clean the fish tank

#ToDo #Today #knitting #VideoGames #aquarium

ASegar, to productivity
@ASegar@mastodon.social avatar
0x61nas, to rust

Okay, there is a potential bug here?, hmm, just write a TODO comment and fix it later........ after two years, oh what's this comment for? I don't remember maybe just delete it.

This scenario must happen to all of us at least once in our careers, and we all know that later never comes, at least if our boss doesn't track the TODO comments :)

Introducing todo2 - A better todo! macro inspired by searls/todo_or_die

This crate provides a better todo! macro, which allows you to specify the deadline and the conditions when the code should be implemented.
and when the condition or the deadline is met, the code will panic or emit a compile error, or just log an error.

https://github.com/0x61nas/todo2

I know the name isn't that cool, but we all know that naming is hard especially when comes to trying to find a cool one that isn't reserved on crates.io

hope you found it useful

#rust #rustlang #todo #proc_macro #rust_macro #rust_crate

devinprater, to emacs

Yes! I finally got a simple, very simple, toDo system going! In Emacs, I'm using Org-capture, and then I have that file connected to the Org-agenda. That way, when I do C-C a t, for showing the agenda, in todo view, there the todo's are.

#emacs #org-mode #todo #accessibility #blind

t3n, to Bulgaria German
@t3n@t3n.social avatar

KI-Verordnung: Die 10 wichtigsten To-dos für Unternehmen

Die geplante KI-Verordnung soll einen einheitlichen Rechtsrahmen für KI in der EU schaffen. Unternehmen können einen erheblichen Umsetzungsaufwand erwarten. Diese zehn To-dos stehen jetzt schon an.
👉
https://t3n.de/news/ki-verordnung-die-10-wichtigsten-to-dos-fuer-unternehmen-1574838/?utm_source=mastodon&utm_medium=referral

#KI #EU #Verordnung #ToDo #Unternehmen #B2B

cazabon, to email

"Inbox Zero" - a theoretical state of which, much like the universe's t=0, nothing is known and nothing can be known.

ostechnix, to linux
@ostechnix@floss.social avatar
fistons, to markdown

Inspired by @grumpygamer , I decided to create my own not-so-pixelated list (in because it rules) for my

I'll try to keep it updated, but I'm afraid I'll probably add more items than I resolve.

datascience, to random

Keep track of the TODO notes in your code: https://github.com/dokato/todor #rstats #todo

julie, to diy French
@julie@masto.bike avatar

#Todo #DIY Un outil pour cueillir les #pommes (j'ai déjà repéré quelques pommiers l'année dernière, et de nouveaux entre-temps !) https://www.webjardiner.com/index.php?mod=forum&ac=voir&id=5702

  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • mdbf
  • ngwrru68w68
  • tester
  • magazineikmin
  • thenastyranch
  • rosin
  • khanakhh
  • InstantRegret
  • Youngstown
  • slotface
  • Durango
  • kavyap
  • DreamBathrooms
  • megavids
  • tacticalgear
  • osvaldo12
  • normalnudes
  • cubers
  • cisconetworking
  • everett
  • GTA5RPClips
  • ethstaker
  • Leos
  • provamag3
  • anitta
  • modclub
  • lostlight
  • All magazines