Built for π, LinkedIn, and Threads, powered by AI
Write & schedule, effortlessly
Craft and publish engaging content in an app built for creators.
NEW
Publish anywhere
Post on LinkedIn, Threads, & Mastodon at the same time, in one click.
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.
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.
Ever heard of a shader but too afraid to ask what it even means at this point?
Lets fuck around and find out π
First, we need to understand the difference between a CPU and GPU and why we need a separate unit just to draw graphics anyway.
(Don't worry, it's not going to be too technical.)
The thing that makes a CPU great is that it can perform a wide variety of tasks relatively quickly.
But the limitation is that each CPU core is optimised to do one thing at a time and so tasks are largely performed sequentially.
This isn't ideal for rendering. Drawing something 30+ times a second starts to occupy a lot of CPU capacity.
For high-res graphics changing in real time the CPU on it's own will struggle to keep up - plus it's got other CPU shit to do.
The GPU by contrast is specifically designed to render graphics by being able to do thousands of things at once.
Picture it as thousands of tiny units all strapped together, each just figuring out the colour of a pixel.
This parallel processing is really, really fast.
But the consequence of parallelism is that each separate thread has no idea what the others are doing - making programming tricky.
You can't change one pixel value based on the result of a separate pixel.
In fact, not only does each thread have no idea what the other threads are doing, they have no idea what they have just done.
They are memoryless, so you can't compute an input based on a previous output.
This is kinda what shaders are - code designed to produce graphics on the GPU within these constraints.
We call a 2D shader a fragment (or pixel) shader because it's a piece of code that calculates the colour of a single fragment of the screen - often a single pixel.
So with all these constraints, how do you actually do anything useful in a shader?
Well, you can do a lot with a little. Just knowing the fragment position and the resolution of the canvas can get you quite far.
Here's a simple example on a 40x40 grid.
If we take the fragment position and divide it by the resolution of the whole canvas we can then render a different colour at every fragment.
It creates this gradient across the canvas.
If you add time as a variable you can start to animate the gradient.
And if you throw some more maths at it you can create some really amazing shit.
shadertoy.com/view/XslGRr
So why am I telling you about this specialised graphics programming?
Well they are starting to be used more on the web, thanks to improvements in hardware and web technology.
This animated gradient on stripe.com is a shader.
Most of this was taken from the amazing resource:
The Book of Shaders by @patriciogv and @_jenlowe_.
It's the best place to get started with programming shaders.
thebookofshaders.com/