πŸ“£ Django Icon packs with template partials
πŸ“„ More adventures and pushing the boundaries of vanilla Django
πŸ”— https://softwarecrafts.co.uk/100-words/day-298
#100_words,#django,#partials,#templates
Django Icon packs with template partials - Software Crafts

More adventures and pushing the boundaries of vanilla Django

πŸ“£ More adventures in building template components in Django
πŸ“„ Unlocking more possible patterns with template partials
πŸ”— https://softwarecrafts.co.uk/100-words/day-295
#100_words,#django,#templates,#partials
More adventures in building template components in Django - Software Crafts

Unlocking more possible patterns with template partials

Found a good initial #utube #tutorial for #Loris #resynthesis tool, developed by Kelly Fitz and Lippold Haken at the CERL Sound Group and used in Loris Synth and Madronalbs Vutu. I've been playing around with Vutu and looking for the acceptable balance with the soft and pleasant sound of my samples and the harsh artificial sound of reseynthesized #partials. Anyway, Vutu is based on Loris and this tutorial demonstrates compiling and using with a command line terminal https://youtu.be/ldFOE6ZrldE?si=gLb_n0hLghlvidn4
Easy resynthesis with Loris

YouTube

I was wondering if there had been any progress on the state of HTML includes, and sure enough @mxbck has written about just that not too long ago.

https://mxb.dev/blog/buildless/

#HTML #partials

Going Buildless

Can we do modern web development without a build step? How can we solve common build problems in HTML, CSS and Javascript using just the platform?

Max BΓΆck
Word Search Puzzle 79

Word List : #unswayed #welkins #zythum #penguins #crosse #ptinus #bearherd #etherize #stinger #kneeled #toxicoid #resized #freemen #pinioned #arbust #whitey #partials #gape

Kara Finance

Weekend #Python tip: #partials

Do you have a function that sometimes requires an extra argument and sometimes it doesn't? And passing that extra argument requires you to do lots of if-else around your code?

You can create a "shortcut" to a function with a certain set of args:

def do(what, urgent=False):
print("doing", what, "now" if urgent else "later")

do("chores")
# doing chores later

chopchop = functools.partial(do, urgent=True)
chopchop("chores")
# doing chores now

Episode 388 - Strict Locals | Drifting Ruby

Ruby on Rails 7.1 introduces Required Template Arguments w/ Default Values, or Strict Locals. This solves the issue of difficult to reason about dependencies & runtime compilations. In this episode, we look at how Strict Locals can improve the overall maintainability of our Rails partials.

Drifting Ruby
Using partials in Node.js are incredibly useful. They can help clean up your code a lot, and help prevent mistakes. Earlier, got some strange encoding errors, and later realized that I wasn't using a proper HTML5 boilerplate. EJS makes using partials easy. #ejs #partials #nodejs