Skip to content

Instantly share code, notes, and snippets.

@sbinlondon
sbinlondon / synthwaveglow.md
Last active March 20, 2023 20:05
Get the synth wave glow theme working for VS Code on Mac
View synthwaveglow.md

Get the synth wave glow working for VS Code on Mac

These notes are pretty much the same steps as the two extensions list, it's just that I had to collate them together because neither seems to list it fully in the proper order.

  1. Install Synthwave ’84/Synthwave + Fluoromachine theme on VS Code (I used the Fluoromachine one)

  2. Install Custom CSS and JS Loader

  3. Command + Shift + P to open command palette > "Preferences: Open settings (JSON)"

@pherris
pherris / superagent.js
Last active January 19, 2021 15:10
Jest superagent mock
View superagent.js
'use strict';
//mock for superagent - __mocks__/superagent.js
var mockDelay;
var mockError;
var mockResponse = {
status() {
return 200;
},
@webinfinita
webinfinita / bootstrap-breakpoints.sass
Last active April 19, 2023 01:32
Variables for responsive design in bootstrap with sass
View bootstrap-breakpoints.sass
@mixin breakpoint($point)
@if $point == lg
@media (min-width: 1200px)
@content
@else if $point == md
@media (min-width: 992px) and (max-width: 1199px)
@content
@else if $point == sm