Skip to content

Instantly share code, notes, and snippets.

View GeuntaBuwono's full-sized avatar
🎯
Focusing

Geunta Buwono GeuntaBuwono

🎯
Focusing
View GitHub Profile
@GeuntaBuwono
GeuntaBuwono / 00_etc-hosts.md
Last active October 17, 2020 14:58 — forked from mul14/00_etc-hosts.md
/etc/hosts for Vimeo, Reddit, and Imgur.

Unblock Vimeo, Reddit, Imgur, dan NPM

Saya support Internet Positif untuk memblokir porn, situs judi, dan hal-hal ilegal lainnya. Tapi pemerintah dan ISP sangat konyol karena tidak mengizinkan akses ke Vimeo, Reddit, Imgur, Netflix--yang mana bukanlah situs dengan konten utama ilegal.

Linux / BSD / macOS

Tambahkan list di bawah ke /etc/hosts.

Windows

@GeuntaBuwono
GeuntaBuwono / gist:50ffc65fa3537078714e7ca48547a1ba
Created February 2, 2023 08:06
LeetCode Valid Parentheses
/**
* @param {string} s
* @return {boolean}
*/
var isValid = function(s) {
const charStack = []
for (i=0; i < s.length; i++){
let currentChar = s[i];