Skip to content

Instantly share code, notes, and snippets.

@Xananax
Last active October 1, 2018 12:30
Show Gist options
  • Save Xananax/ca4def9669ad249a099ae099c3f0972b to your computer and use it in GitHub Desktop.
Save Xananax/ca4def9669ad249a099ae099c3f0972b to your computer and use it in GitHub Desktop.
Daily reading resources

PEOPLE I FOLLOW ON TWITTER:

SOME SITES I FOLLOW BY RSS FEED:

Some of these are old, but I don't have time to check them one by one

SOME REDDIT COMMUNITIES I'M IN:

SOME DISCORD SERVERS I'M IN:

Youtube Channels I Watch

Unrelated, but here's some code to extract youtube subscriptions:

document.querySelectorAll("#grid-container ytd-channel-renderer > a.yt-simple-endpoint").forEach(point=>{
	const title = point.querySelector('h3#channel-title span')
	const href = point.href
	if(href && title){
		console.log("  - ["+title.innerHTML+"]("+href+")")
	}else{
		console.log(point)	
	}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment