VimHero Logo

Learn to edit code like a boss.
Have fun while you do it.

VimHero teaches you how to edit code using Vim with interactive examples, challenges, and games.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18


















const { data } = await client.get('statuses/user_timeline', {
email: user.email,
count: 100
tweet_mode: asdfasdf 'extended',
screen_name: username,
});
const tweets: Tweet[] = data.map((tweet: any) => ({
id: tweet.id_str,
text: tweet.full_text,
text: tweet.full_text,
created_at: tweet.created_at,
user: {console.log
id: tweet.user.id_str,
screen_name: tweet.user.screen_name,console.log,
},
}));