@mblayman@mastodon.social avatar

mblayman

@mblayman@mastodon.social

Learn about Python, Django, and web development with me. https://www.youtube.com/c/MattLayman

This profile is from a federated server and may be incomplete. Browse more on the original instance.

mblayman, to django
@mblayman@mastodon.social avatar

💡 I built a web app with a small team for a local non-profit. This article describes my experience going from complete concept to a live site serving my local community. https://www.mattlayman.com/blog/2020/concept-to-live-with-django/

mblayman, to random
@mblayman@mastodon.social avatar

You Don't Need JavaScript

This talk shows how to make web apps dynamic using htmx.

Examples are done in Django, Flask, Ruby on Rails, and Laravel.

https://www.youtube.com/watch?v=bbkPxxxCV6M

mblayman, to random
@mblayman@mastodon.social avatar

🐍 For one of my SaaS projects, I used Postgres full text search to add a search interface to the app. This article explores the details of that addition. https://www.mattlayman.com/blog/2017/postgres-search-django/

mblayman, to python
@mblayman@mastodon.social avatar

🐍 The standard library is loaded with goodies that will make you a more productive developer. In this Pythonic code article, let's look at some of the packages that will help you a ton. https://www.mattlayman.com/blog/2017/pythonic-code-using-standard-library/

mblayman, to django
@mblayman@mastodon.social avatar

🚀 On this #Django Riffs episode, we dig into deployment and some things to consider before making a Django site live on the internet. https://djangoriffs.com/episodes/go-live-deployment

mblayman, to django
@mblayman@mastodon.social avatar

🚩🧇 Feature flags are a fantastic way to release features in your web app in a controlled manner. Learn about the benefits of feature flags and how to add flags to your project with Django Waffle. https://www.mattlayman.com/blog/2017/feature-flags-and-waffles/

mblayman, to django
@mblayman@mastodon.social avatar

🚀 Want to understand how Django keeps track of visitors between web requests? Then you want to understand how "sessions" work, and that is the topic of this Riffs episode! https://djangoriffs.com/episodes/user-session-data

mblayman, to django
@mblayman@mastodon.social avatar

💡 You've got your web app ready and you're ready to show the world. This article helps you understand the important aspects of making a web app live on the internet. https://www.mattlayman.com/understand-django/deploy-site-live/

mblayman, to python
@mblayman@mastodon.social avatar

🐍 On this Building SaaS with and , I added a feature to improve the user experience (UX) to ease the transition between school years in my homeschool scheduling app. https://www.youtube.com/watch?v=SIRdhKCXmFE

mblayman, to python
@mblayman@mastodon.social avatar

🐍 What makes work? This article looks into Abstract Syntax Trees and how they are used. Making an AST is a critical stage for how Python translates your code into something it can run. https://www.mattlayman.com/blog/2018/decipher-python-ast/

mblayman, to django
@mblayman@mastodon.social avatar

🐍 Are and similar? If you want to contrast two of the biggest web frameworks, this article can help you compare the offerings. https://www.mattlayman.com/blog/2021/are-django-flask-similar/

mblayman, to random
@mblayman@mastodon.social avatar

🧰 What's in your software toolbox? Do you "sharpen" your tools? In this article, I explain why it's important to improve your software selections and how that will help you become a better developer. https://www.mattlayman.com/blog/2015/dotfiles/

mblayman, to python
@mblayman@mastodon.social avatar

On this Learn Python By Example video, you'll get a look at list operations in .

Check it out!

https://www.youtube.com/watch?v=jhZCkdSM85E

mblayman, to random
@mblayman@mastodon.social avatar

I finished moving all of my digital journal over to JourneyInbox. Over 3000 daily entries!

If you want to build a journaling habit in a fun way, check out my journal service, https://journeyinbox.com

The daily email prompts will help you build the habit and record your memories!

mblayman, to django
@mblayman@mastodon.social avatar

💾 With a web app, data is stored in a database, but we don't directly interact with the database. Instead, we write classes called "models." Learn all about Django models in this article. https://www.mattlayman.com/understand-django/store-data-with-models/

mblayman, to python
@mblayman@mastodon.social avatar

🐍 How can you use #Python with Software Defined Radios (#SDR)? In this presentation, Patrick shows us his neat project of applying Python to recording radio signals. https://www.youtube.com/watch?v=MonR5zZL-Es

mblayman, to python
@mblayman@mastodon.social avatar

🐍 I read all of the standard library documentation. Should you do that? Here's what I learned by taking that journey. https://www.mattlayman.com/blog/2016/readthrough-python-standard-library/

mblayman, to python
@mblayman@mastodon.social avatar

🐍 What kinds of tools are available for developers who want to write serverless web apps? That's the topic we explore in this talk. https://www.youtube.com/watch?v=SpgKwsPsqOU

mblayman, to django
@mblayman@mastodon.social avatar

⚡ This Understand Django article is all about going fast! We take an in depth look at performance in and how to improve your site's speed. Check it out! https://www.mattlayman.com/understand-django/go-fast/

mblayman, to django
@mblayman@mastodon.social avatar

📢 How do you make your app do work from the command line? With a Django command! In this Understand Django article, we examine Django commands to see what they are and how to write your own. https://www.mattlayman.com/understand-django/command-apps/

mblayman, to random
@mblayman@mastodon.social avatar

I brought together a couple of my favorite web things, Python and Tailwind. In this article, I explain how I made my rendered Markdown output look good with Tailwind styling on the tags.

https://www.mattlayman.com/blog/2023/python-markdown-tailwind-best-buds/

mblayman, to python
@mblayman@mastodon.social avatar

🐍 On this Building SaaS with and , we went through the upgrade process of going from Tailwind 2 to 3. Along the way, I improved my dev toolchain. https://www.youtube.com/watch?v=Sqg7nSRlEEE

mblayman, to django
@mblayman@mastodon.social avatar

🚀 On this #Django Riffs episode, we dig into deployment and some things to consider before making a Django site live on the internet. https://djangoriffs.com/episodes/go-live-deployment

mblayman, to random
@mblayman@mastodon.social avatar

🔥 What happens when you're burned out from working on an open source project? Sometimes getting help is as easy as asking for it. In this article, I dig into my experience with maintainer burn out and transition. https://www.mattlayman.com/blog/2018/request-for-new-maintainer/

mblayman, to random
@mblayman@mastodon.social avatar

🚀 On this Django Riffs episode, we look at how to manage settings on your Django site. What are the common techniques to make this easier to handle? Let's find out! https://djangoriffs.com/episodes/setting-your-sites

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