function timeline(username, options) {
options = options || {
width: width / 2,
height: width / 2,
dnt: true,
}
const div = document.createElement("DIV");
Promise.resolve().then(() => twttr.widgets.createTimeline({
sourceType: "profile",
screenName: username
}, div, options));
return div;
}