Skip to content

Instantly share code, notes, and snippets.

View svgerasimov's full-sized avatar

Svyatoslav Gerasimov svgerasimov

  • Russia, Voronezh
View GitHub Profile
@svgerasimov
svgerasimov / cloudSettings
Created December 24, 2021 17:32 — forked from nickovchinnikov/History|-14a6bd0a|entries.json
Visual Studio Code Settings Sync Gist
{"lastUpload":"2021-12-15T06:13:45.321Z","extensionVersion":"v3.4.3"}
List()
var list = Immutable.List([1,2,3])
// [1, 2, 3]
List.isList()
Immutable.List.isList(list)
// true
List.of()
var list = Immutable.List.of(1,2,3);
@svgerasimov
svgerasimov / css-media-queries-cheat-sheet.css
Created December 19, 2019 22:15 — forked from bartholomej/css-media-queries-cheat-sheet.css
CSS Media Query Cheat Sheet (with Foundation)
/*------------------------------------------
Responsive Grid Media Queries - 1280, 1024, 768, 480
1280-1024 - desktop (default grid)
1024-768 - tablet landscape
768-480 - tablet
480-less - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }
@svgerasimov
svgerasimov / vanilla-js-cheatsheet.md
Created September 21, 2019 17:49 — forked from thegitfather/vanilla-js-cheatsheet.md
Vanilla JavaScript Quick Reference / Cheatsheet
@svgerasimov
svgerasimov / README-Template.md
Created September 7, 2019 11:55 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites