Skip to content

Instantly share code, notes, and snippets.

View emiremiroglu's full-sized avatar

Emiroglu emiremiroglu

  • Göcek, Türkiye
View GitHub Profile
@emiremiroglu
emiremiroglu / on-scroll.js
Last active November 4, 2023 09:01
Add class on scroll vanilla.js
(function () {
let scrollPosition = window.scrollY;
let header = document.querySelector('header');
window.addEventListener('scroll', function () {
scrollPosition = window.scrollY;
if (scrollPosition >= 30) {
header.classList.add('scrolled');
} else {
@emiremiroglu
emiremiroglu / redis_cheatsheet.bash
Created April 26, 2019 21:42 — forked from LeCoupa/redis_cheatsheet.bash
Redis Cheatsheet - Basic Commands You Must Know --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
# Redis Cheatsheet
# All the commands you need to know
redis-server /path/redis.conf # start redis with the related configuration file
redis-cli # opens a redis prompt
# Strings.