Skip to content

Instantly share code, notes, and snippets.

View siberianbear's full-sized avatar
🌏
Working from Earth right now

Alexander siberianbear

🌏
Working from Earth right now
  • Freelance
  • Russia, Siberia
  • 09:23 (UTC +07:00)
View GitHub Profile
@kevin-smets
kevin-smets / iterm2-solarized.md
Last active May 15, 2025 02:02
iTerm2 + Oh My Zsh + Solarized color scheme + Source Code Pro Powerline + Font Awesome + [Powerlevel10k] - (macOS)

Default

Default

Powerlevel10k

Powerlevel10k

@hallettj
hallettj / global-variables-are-bad.js
Created February 14, 2009 21:15
How and why to avoid global variables in JavaScript
// It is important to declare your variables.
(function() {
var foo = 'Hello, world!';
print(foo); //=> Hello, world!
})();
// Because if you don't, the become global variables.
(function() {