@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 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

🌎 A vital aspect of web applications are the URLs that users visit. From this article, you'll come to understand how #Django handles URLs when building a web app. https://www.mattlayman.com/understand-django/urls-lead-way/

mblayman, to django
@mblayman@mastodon.social avatar

📋 Users send data to a website with HTML forms. Come learn how #Django makes your life easier with its built-in forms tools! https://djangoriffs.com/episodes/how-to-use-forms

mblayman, to python
@mblayman@mastodon.social avatar

🐍 As a package maintainer, I reach for two packaging tools consistently. This article explains why those tools are important to my packaging workflow. https://www.mattlayman.com/blog/2017/2-critical-python-packaging-tools/

mblayman, to python
@mblayman@mastodon.social avatar

🐍 Can you build mobile apps using ? That's the topic that we explored at Python Frederick by checking out . https://www.youtube.com/watch?v=tyh165h_PhU

mblayman, to random
@mblayman@mastodon.social avatar

Here's another Learn Python By Example video.

In this example problem, we'll look at some string methods in Python.

https://www.youtube.com/watch?v=615BfMy-8qQ

mblayman, to python
@mblayman@mastodon.social avatar

At Frederick, Chris Malec gave a cool overview talk on Pandas. Want to see how GME looked on the market during the "Gamestonk" week? Chris showed us some interesting financial analysis. https://www.youtube.com/watch?v=uFP-W_9UtfQ

mblayman, to random
@mblayman@mastodon.social avatar

📚 Reading software books is one of my favorite activities.

I've pulled together some of my top books that I've read over the years. Hopefully this list of resources will help others jump right to knowledge that will help them grow.

https://www.mattlayman.com/book-recommendations/

mblayman, to django
@mblayman@mastodon.social avatar

🔨 Want to see how to integrate a static site inside of a app without using a reverse proxy like Nginx or a separate subdomain? Check this out! https://www.mattlayman.com/blog/2020/hugo-blog-in-django-app/

mblayman, to python
@mblayman@mastodon.social avatar

Want to build CLIs in and find argparse hard to use?

Mike Atkinson showed us at Python Frederick how to the use the excellent Click package to make CLI tools. https://www.youtube.com/watch?v=uXS9hmp4lp4

mblayman, to python
@mblayman@mastodon.social avatar

🐍 In this talk, I compared a number of popular web frameworks and discussed some of the decisions to consider when choosing a framework for your next web project. https://www.youtube.com/watch?v=Pu_5ZjC7Tig

mblayman, to django
@mblayman@mastodon.social avatar

🐍 What happens when you take a non-web developer and drop them in front of the tutorial at a live presentation? That's exactly what we found out at Frederick. https://www.youtube.com/watch?v=ZSs2eZ-yFps

mblayman, to python
@mblayman@mastodon.social avatar

🔒 How can you assess the security of a system? One tool that you can apply is a threat model. In this Python Frederick talk, we see how to create a threat model using with pytm to assess Jurassic Park as a fun example. https://www.youtube.com/watch?v=1zauvAsWiDM

mblayman, to python
@mblayman@mastodon.social avatar

🐍 On this Building SaaS with and , I started a new feature to add a PDF report bundle to my homeschool app. This will be useful when a user completes their school year and needs records of all the year's activities. https://www.youtube.com/watch?v=cM2sA1AP3fM

mblayman, to django
@mblayman@mastodon.social avatar

🐍 is an awesome way to style your web pages. In this short article, I show how to set up Tailwind for a project that is deployed to . https://www.mattlayman.com/blog/2020/tailwind-django-heroku/

mblayman, to python
@mblayman@mastodon.social avatar

At Frederick, Chris Malec gave a cool overview talk on Pandas. Want to see how GME looked on the market during the "Gamestonk" week? Chris showed us some interesting financial analysis. https://www.youtube.com/watch?v=uFP-W_9UtfQ

mblayman, to python
@mblayman@mastodon.social avatar

🐍 On this Building SaaS with and , I worked through UI and form changes to allow educators to set break days for individual students in their homeschool. We had to create records on a many to many relationship. https://www.youtube.com/watch?v=GQs4RpKC4-w

mblayman, to django
@mblayman@mastodon.social avatar

⚡ How do you make a user interface in a web app? Use templates! Let's talk about what templates are and how to use them. https://djangoriffs.com/episodes/building-user-interfaces

mblayman, to random
@mblayman@mastodon.social avatar

💡 My personal website used to run with a static site generator that I created on my own. Even though I had a fully customized site generator, I switched to . This article explains why I would do such a thing. https://www.mattlayman.com/blog/2018/tale-two-site-generators/

mblayman, to python
@mblayman@mastodon.social avatar

🐍 How can you use with Software Defined Radios ()? 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 django
@mblayman@mastodon.social avatar

⚡ Without clicking all over a web app, do you know how to check if it works or not? Come learn how to make tests that can automatically check if your site works. https://djangoriffs.com/episodes/automated-tests

mblayman, to vim
@mblayman@mastodon.social avatar

👾 This presentation covers 101 to provide an understanding of how Vim works. Want to know why we use :q to quit Vim? You'll learn that and more in this talk. https://www.youtube.com/watch?v=zxdQJlB65lA

mblayman, to django
@mblayman@mastodon.social avatar

🚀 Ready to learn ? Start from the beginning of Django Riffs, a podcast about Django, to begin in web development! https://djangoriffs.com/episodes/get-to-know-django

mblayman, to random
@mblayman@mastodon.social avatar

🐍 List comprehensions are a clean way to build new lists in your Python code that are transformations from other lists. Check out how list comprehensions can improve your code with this article! https://www.mattlayman.com/blog/2017/pythonic-code-the-list-comprehension/

mblayman, to python
@mblayman@mastodon.social avatar

🐍 On this Building SaaS with and stream, I changed a critical API to the scheduling portion of my homeschool app, and we worked through all the fallout of that change. https://www.youtube.com/watch?v=R2KW0apkRYA

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