Two steps [1]:
- Click on the page, anywhere
- Type
thisisunsafe
Funny that Google doesn’t provide a button anywhere on the page for this. Guess you’ll only be able to find a solution if you know how to “Google”.
Two steps [1]:
thisisunsafe
Funny that Google doesn’t provide a button anywhere on the page for this. Guess you’ll only be able to find a solution if you know how to “Google”.
It can be easily set up with a module resolver:
Continue readingSometimes we need to test localhost out on a public URL, for various reasons. We can do that with ngrok, which is a service that projects localhost ports onto a generated public URL.
Continue readingI was watching a series and had to shift my subtitles by 38 seconds every time I open a video. After a few times of pain, I ended up writing a script to cut the crap, have some fun, and get a bit into NodeJS file I/O! 😀
Continue readinggit push
on master
branchyarn run build
or any other scripts)I’m on DigitalOcean’s server, but this works on any self hosted servers.
Continue readingTo save the uncommitted changes:
# Either without a name $ git stash # Or with a stash name: $ git stash save funny-stash
Sometimes when we pull from upstream origin in terminal, we see git prompting to enter vim. And if we left it hanging there and went ahead committing somewhere else, it would treat all those changes in master as your own contribution, because merge didn’t happen before commit.