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.
(1/19) Cryptography Basics: Polynomial Erasure Codes
Moving data across the internet is difficult; assuming you trust all the intermediate parties, you still have vicious network conditions. How can you ensure your data stays clean?
A lesson in pratical cryptography.
(2/19) Encoding is the process of mapping one set of symbols (usually human readable, like letters/words) to another (usually machine readable, like numbers/math).
One purpose of encoding is to translate data, another is to provide additional functionality.
(3/19) Polynomial encoding is a specific type of encoding that packages arbitrary data into a mathematical function know as a polynomial.
Tl;dr the dataset and the polynomial convey the same underlying data, albeit expressed as a function (as opposed to a list of data points)
twitter.com/SalomonCrypto/status/1581314867243327489
(4/19) Polynomial encoding is incredibly powerful, we’ve already seen how they can underpin a cryptographic commitment scheme.
But that’s just the tip of the iceberg. Polynomials give us so much more functionality than binding datasets.
(5/19) If you’ve been paying close enough attention, you may have noticed a pattern: when we have n data points, our polynomial always seems to have at most n terms (or maybe you’ve notice that the highest exponent is always n - 1).
Let’s expand on that.
(6/19) A polynomial is an expression made up of the addition/subtraction of terms. Terms are made up of a variable, raised to some power, times a constant (coefficient).
The degree of the polynomial is the highest exponent.
Degree of x^2+x-5 is 2
Degree of 4x^5-6x^2+6 is 5
twitter.com/salomoncrypto/status/1581314877926166528?s=46&t=BveGC9eHsNBHO9Gq5mZ5cQ
(7/19) So rewind back to polynomial encoding. It turns out that in order to generate a line that passes through n data points, the associated polynomial will have (at most) degree n-1.
Encoding 10 datapoints? We’re (probably) going to need a polynomial that has a term with x^9.
(8/19) We can also use this principle in reverse: to recreate a polynomial of degree n-1, we need (at least) n points that fall on that line.
And remember, a polynomial is a formula that can generate an infinite amount of outputs - part of the original dataset or brand new.
(9/19) If our original dataset is n pieces, we need a polynomial of degree n-1... but we can grab more points from that same line.
Now, we have more than n points; if one or two get lost or corrupted, we still have more than enough points to reconstruct our polynomial.
(10/19) This is the key insight we are going to build an error-correcting code from.
Error-correcting codes are a family of encoding that add some additional information to a dataset that allows the recovery of the original data, even if some of the pieces were lost.
(11/19) After we create our data polynomial, we are going to use it to generate additional points along the same line.
These additional points convey enough extra information that we can reconstruct the underlying polynomial and use it to double check all the points.
(12/19) Recipe for a polynomial error-correcting scheme:
Take the original data set of length n and generate a polynomial. Use the polynomial to find k extra points. Append the extra points on to the original data.
We can now detect up to k errors in our code.
(13/19) In fact, polynomial error-detection is so powerful that we can use it for more than just detection. Polynomial encoding can be used for data correction!
All we need to do is figure out which points fall off the line and move them to where they need to be.
(14/19) At this point, you understand the important parts:
- any arbitrary data can be plotted
- you can generate a unique polynomial for that data
- this polynomial can find extra points
- these extra points are used to confirm the original data
(15/19) There's one more application of polynomial error-schemes: erasure codes.
We begin with all the same steps as before: build the polynomial, generate the extra data. The only difference is that instead of looking for errors, we are just interested in recovery.
(16/19) Let's take a look at Reed-Solomon codes. This encoding scheme can be deployed for error detection, correction, or as an erasure code.
When deployed as an erasure code, for every k pieces of additional data, it can recover up to k lost pieces.
en.wikipedia.org/wiki/Reed%E2%80%93Solomon_error_correction
(17/19) Fun fact, almost all two-dimensional bar codes (including QR codes) use Reed-Solomon encoding.
That's right, the same technology that powers QR codes is (spoiler alert) at the very core of Danksharding.
It's math the COOLEST?!?!
(18/19) Remember, this all falls back on the principle we discussed earlier: to recreate a polynomial of degree n-1, we need (at least) n points that fall on that line.
The extra points provided by the Reed-Solomon code make sure there are always more than n available points.
(19/19) Alright anon, you've got it: polynomial erasure coding transforms data into a polynomial and adds more data to ensure the data is recoverable from just a subset.
Now... what else can we do with a polynomial...
twitter.com/SalomonCrypto/status/1583705993300492288