Built for 𝕏∙LinkedIn∙Bluesky∙Threads. Powered by AI
Write & schedule, effortlessly
Craft and publish engaging content in an app built for creators.
NEW
Publish anywhere
Publish on X, LinkedIn, Bluesky, Threads, & Mastodon at the same time.
Make it punchier 👊
Typefully
@typefully
We're launching a Command Bar today with great commands and features.
AI ideas and rewrites
Get suggestions, tweet ideas, and rewrites powered by AI.
Turn your tweets & threads into a social blog
Give your content new life with our beautiful, sharable pages. Make it go viral on other platforms too.
+14
Followers
Powerful analytics to grow faster
Easily track your engagement analytics to improve your content and grow faster.
Build in public
Share a recent learning with your followers.
Create engagement
Pose a thought-provoking question.
Never run out of ideas
Get prompts and ideas whenever you write - with examples of popular tweets.
@aaditsh
I think this thread hook could be improved.
@frankdilo
On it 🔥
Share drafts & leave comments
Write with your teammates and get feedback with comments.
NEW
Easlo
@heyeaslo
Reply with "Notion" to get early access to my new template.
Jaga
@kandros5591
Notion 🙏
DM Sent
Create giveaways with Auto-DMs
Send DMs automatically based on engagement with your tweets.
And much more:
Auto-Split Text in Posts
Thread Finisher
Tweet Numbering
Pin Drafts
Connect Multiple Accounts
Automatic Backups
Dark Mode
Keyboard Shortcuts
Creators love Typefully
180,000+ creators and teams chose Typefully to curate their Twitter presence.
Marc Köhlbrugge@marckohlbrugge
Tweeting more with @typefully these days.
🙈 Distraction-free
✍️ Write-only Twitter
🧵 Effortless threads
📈 Actionable metrics
I recommend giving it a shot.
Jurre Houtkamp@jurrehoutkamp
Typefully is fantastic and way too cheap for what you get.
We’ve tried many alternatives at @framer but nothing beats it. If you’re still tweeting from Twitter you’re wasting time.
DHH@dhh
This is my new go-to writing environment for Twitter threads.
They've built something wonderfully simple and distraction free with Typefully 😍
Santiago@svpino
For 24 months, I tried almost a dozen Twitter scheduling tools.
Then I found @typefully, and I've been using it for seven months straight.
When it comes down to the experience of scheduling and long-form content writing, Typefully is in a league of its own.
Luca Rossi ꩜@lucaronin
After trying literally all the major Twitter scheduling tools, I settled with @typefully.
Killer feature to me is the native image editor — unique and super useful 🙏
Visual Theory@visualtheory_
Really impressed by the way @typefully has simplified my Twitter writing + scheduling/publishing experience.
Beautiful user experience.
0 friction.
Simplicity is the ultimate sophistication.
Queue your content in seconds
Write, schedule and boost your tweets - with no need for extra apps.
Schedule with one click
Queue your post with a single click - or pick a time manually.
Pick the perfect time
Time each post to perfection with Typefully's performance analytics.
Boost your content
Retweet and plug your posts for automated engagement.
Start creating a content queue.
Write once, publish everywhere
We natively support multiple platforms, so that you can expand your reach easily.
Check the analytics that matter
Build your audience with insights that make sense.
Writing prompts & personalized post ideas
Break through writer's block with great ideas and suggestions.
Never run out of ideas
Enjoy daily prompts and ideas to inspire your writing.
Use AI for personalized suggestions
Get inspiration from ideas based on your own past tweets.
Flick through topics
Or skim through curated collections of trending tweets for each topic.
Write, edit, and track tweets together
Write and publish with your teammates and friends.
Share your drafts
Brainstorm and bounce ideas with your teammates.
NEW
@aaditsh
I think this thread hook could be improved.
@frankdilo
On it 🔥
Add comments
Get feedback from coworkers before you hit publish.
Read, Write, Publish
Read, WriteRead
Control user access
Decide who can view, edit, or publish your drafts.
Earlier this week I posted a quiz about how many iterators there are in this code
numbers = [2, 5, 10, 3, 99, 42]
for number in numbers:
for another_number in numbers:
print(number, another_number)
…let's explore with the help of this visual aid
A short series
Here's the code again.
The poll gave four options for possible answers for how many iterators there are in this code:
1
2
7
12
Here's the poll, by the way
First, let's just look at the four lines of code and nothing else
There are no iterators visible in the code.
There's one list named `numbers`. This is an iterable
If you're unsure about the difference between iterable and iterator, read on
twitter.com/s_gruppetta_ct/status/1679178647423402005
There are two other variables named `number` and `another_number`
These variables represent the integers you're looping through, and integers are neither iterable nor iterators
And that's it, except for the `print` function and the keywords `for` and `in`
So, no iterators in sight in the lines of code themselves
But 0 wasn't an option in the poll
So let's see what happens as the code runs…
A `for` loop needs an iterable, such as a list
The loop creates an iterator from the iterable
Let's start with the first loop, the outer one. It creates an iterator from the list and the iterator is ready to go, "waiting" just before the list's first element
The loop then gets the first item from this outer loop iterator, which is 2. The iterator stops here for now, between 2 and 5
But then it finds the second, inner, `for` loop statement. This is a new `for` loop. Even though it uses the same list, `numbers`, the inner loop creates a new iterator from the iterable (the list)
Let's call the two iterators inner and outer iterators.
The outer iterator is stuck between 2 and 5 for now, the first and second items in the list, while the inner iterator goes through all the elements of the list
When the inner iterator uses up all the elements, it's exhausted. Iterators can only be used once. They're like disposable items.
The outer iterator can now move on the the next value. And the outer loop now reaches the inner loop again for the second time
It needs to create an iterator again. The previous inner iterator is no longer useful
Here's a representation of the first three iterations of the outer loop. You can figure out the rest
The "checkpoints" you see on the left make sense in the article I'll link to soon…
And this is Part 6 of a series of article about data structure categories. You may also want to read the first one about iterables
open.techwriters.info/thepythoncodingstack/python-iterable-data-structures
And since you're there, go ahead with 2-5 about sequences, mappings, containers, and collections
Make sure you subscribe to get all new articles directly in your inbox about all sorts of Python topics, as always, written in a more relaxed style than your typical technical article!
open.techwriters.info/thepythoncodingstack