Skip to content

Instantly share code, notes, and snippets.

View emileber's full-sized avatar
🗜️
Minimizing...

Emile J. Bergeron emileber

🗜️
Minimizing...
View GitHub Profile
@magicznyleszek
magicznyleszek / jekyll-and-liquid.md
Last active January 12, 2024 03:46
Jekyll & Liquid Cheatsheet

Jekyll & Liquid Cheatsheet

A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.

Running

Running a local server for testing purposes:

@ncreep
ncreep / init.coffee
Last active August 19, 2019 06:54
Atom middle mouse scrolling hack
atom.workspace.observeTextEditors (item) ->
# Sets up middle button scroll on the given editor component
middleMouseScrollSetup = (editorComponent) ->
lastClick = {x: 0, y: 0}
lastPosition = {x: 0, y: 0}
{scrollContainer} = editorComponent.refs
onMouseMove = (event) ->