Typefully

Write better tweets.
Grow your audience.

Now with AI and LinkedIn cross-posting.

Select Twitter account first

Join 100,000+ creators

@david_perell
@ev
@dhh
@marckohlbrugge
@maccaw
@warikoo
@adamwathan
Build in public

Share a recent learning with your followers.

Create engagement

Pose a thought-provoking question.

Curated writing prompts to never run out of ideas

Get fresh prompts and ideas whenever you write - with examples of popular tweets.

The best writing experience, with powerful scheduling

Create your content without distractions - where it's easier to write and organize threads.

Avatar
Avatar

Cross-post to LinkedIn

NEW

Automatically add LinkedIn versions to your posts.

+14

Followers

Discover what works with powerful analytics

Easily track your engagement analytics to improve your content and grow faster.

@frankdilo

@frankdilo

Feedback?

@albigiu

@albigiu

Love it 🔥

Collaborate on drafts and leave comments

Write with your teammates and get feedback with comments.

🧵

Rewrite as thread start

🔥

Make it Punchier

✅

Fix Grammar

Improve your content with AI suggestions and rewrites

Get suggestions, tweet ideas, and rewrites powered by AI.

And much more:

Auto-Split Text in Tweets

Thread Finisher

Tweet Numbering

Pin Drafts

Connect Multiple Accounts

Automatic Backups

Dark Mode

Keyboard Shortcuts

Top tweeters love Typefully

100,000+ creators and teams chose Typefully to curate their Twitter presence. Join them.

Avatar
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.
Avatar
Luke Beard 🇺🇦@LukesBeard
Good lord, @typefully is very good.
Avatar
Anna David@annabdavid
I forgot about Twitter for 10 years. Now I'm remembering why I liked it in the first place. Huge part of my new love for it: @typefully. It makes writing threads easy and oddly fun.
Avatar
DHH@dhh
This is my new go-to writing environment for Twitter threads. They've built something wonderfully simple and distraction free with Typefully.
Avatar
ian hollander@ianhollander
Such a huge fan of what @typefully has brought to the writing + publishing experience for Twitter. Easy, elegant and almost effortless threads - and a beautiful UX that feels intuitive for the task - and inviting to use.
Avatar
Luca Rossi ꩜@lucaronin
After trying literally all the major Twitter scheduling tools, I settled with @typefully. Kudos to @frankdilo and @linuz90 for building such a delightful experience. Killer feature to me is the native image editor — unique and super useful 🙏

Queue your content in seconds

Write, schedule and boost your tweets - with no need for extra apps.

Schedule with one click

Queue your tweet with a single click - or pick a time manually.

Pick the perfect time

Time each tweet to perfection with Typefully's performance analytics.

Boost your content

Retweet and plug your tweets for automated engagement.

Queue

Start creating a content queue.

Tweet with daily inspiration

Break through writer's block with great ideas and suggestions.

Start with a fresh idea

Enjoy daily prompts and ideas to inspire your writing.

Check examples out

Get inspiration from tweets that used these prompts and ideas.

Flick through topics

Or skim through curated collections of trending tweets for each topic.

Prompts

Check the analytics that matter

Build your audience with insights that make sense.

Tweets

Write, edit, and track tweets together

Write and publish with your teammates and friends.

@frankdilo
@albigiu

Share your drafts

Brainstorm and bounce ideas with your teammates.

@frankdilo

@frankdilo

Feedback?

@albigiu

@albigiu

Love it 🔥

Add comments

NEW

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.

Build an automated tweet machine

Our Zapier integration enables countless no-code workflows.

TypefullySlack

Share new drafts in Slack channel

RSSTypefully

New draft from RSS feed item content

DocsTypefully

New scheduled draft from Google Doc

TypefullySheets

New spreadsheet row from published tweet

ScheduleTypefully

Create new template draft every Monday

TypefullyGmail

Send an email for every published thread

FeedlyTypefully

Create draft for new items in feeds folder

TwitterTypefully

Thank new followers with a tweet

TypefullySlack

Share new drafts in Slack channel

RSSTypefully

New draft from RSS feed item content

DocsTypefully

New scheduled draft from Google Doc

TypefullySheets

New spreadsheet row from published tweet

ScheduleTypefully

Create new template draft every Monday

TypefullyGmail

Send an email for every published thread

FeedlyTypefully

Create draft for new items in feeds folder

TwitterTypefully

Thank new followers with a tweet

Ready to write better tweets and grow your audience?

Get started with our generous free plan.

Typefully

© 2022 Mailbrew Inc.

Privacy

Terms

Contact us

Work with us

Product

Pricing

Changelog

Keyboard shortcuts

Invite teammates

Affiliate program

Grow on Twitter

Typefully Academy

Get a social blog

Automate with Zapier

Boost engagement

Popular profiles

Twitter Card Validator

Help & Social

Help pages

Brand assets

Twitter

Blog

Announcements

Typefully

@svpino

Typefully

@svpino

ChatGPT built all of my code

Avatar

Share

 • 

5 months ago

 • 

View on Twitter

Open this if you want to see how ChatGPT built all my code.
Disclaimer: I build Machine Learning models for a living. I know what questions to ask, and I can spot mistakes in ChatGPT's suggestions. ChatGPT is an incredible tool, but you must understand how to use it properly. Let's get started!
I want to build a neural network to solve the MNIST problem using Keras. I asked ChatGPT to start things off for me. The result worked flawlessly without having to change anything. This was a great start!
ChatGPT used Categorical CrossEntropy as the loss function. I asked it to use a different one. The updated code also works. Notice how it changed the loss function, but it also dropped the categorical transformation of labels. This is key for the new loss function work!
ChatGPT's code uses fully-connected layers. But I want to use convolutional layers. ChatGPT modified the code and added a Conv2D and a MaxPooling layer.
I need to evaluate the final model, so I asked ChatGPT to write code using the test set. The result and explanation look great!
The model uses the entire test set as validation data during training. Let's ask ChatGPT to change that to 20% of the train data. This is good stuff! (By the way, every answer from ChatGPT comes with a full explanation. I'm not including it here to keep screenshots simple.)
I want smaller batches and run the code for fewer epochs. Of course, I don't need ChatGPT for this, but I did not want to change my code without updating ChatGPT's context. That's why I asked.
Let's now draw a plot of the training and testing losses during the training process. ChatGPT explained that I need to change the line that fits the model to capture its result value (history.) That was neat! The plot works and looks good!
I need to show a few examples from the dataset, so let's ask ChatGPT to write code to print a combination of images and labels. The code was also perfect. You can see the plot with 20 images attached.
Something useful whenever you build a model is to take a look at its structure. Let's ask ChatGPT how I can do that.
Okay, the summary of the model is helpful, but I'd rather see a plot showing the model's structure. Let's ask:
This is looking good! Let's now get ready to deploy this model. Let's ask ChatGPT to save the model to disk.
Now, I want to create a class that uses the saved model to make predictions. This is an interesting prompt, and the solution is perfect.
Let's now write an example that uses the Predictor class to predict the label of 10 random images:
To finish this, let's display a confusion matrix. I like the styles that ChatGPT used!
Here is a link to all of the code that ChatGPT produced: https://colab.research.google.com/drive/1JX1AVIfGtIlnLGqgHrK6WPylPhZvu9qe?usp=sharing This is going to be such an exciting year!
If you enjoy content like this, follow me @svpino.
Avatar

Santiago

@svpino

I write about Artificial Intelligence and sometimes it's good.

Follow on Twitter