Skip to content

Instantly share code, notes, and snippets.

View charlesferreira's full-sized avatar

Charles Ferreira charlesferreira

View GitHub Profile
@suhaboncukcu
suhaboncukcu / custom.sass
Last active November 29, 2020 17:47
Bulma Gulp Minimal Setup
@import "../node_modules/bulma/sass/utilities/initial-variables"
// custom overrides and general styles
@import "./general/style.sass"
@import "./mymodule/style.sass"
//
@import "../node_modules/bulma/bulma"
@natecook1000
natecook1000 / openRanges.swift
Last active May 27, 2021 19:37
Open-ended range operators for Swift
// Open-ended range operators
//
// 100... is equivalent to 100...Int.max
// ...-100 is equivalent to Int.min...-100
// ..<3 is equivalent to Int.min..<3
import Swift
/// Conforming types provide static `max` and `min` constants.
protocol MinMaxType {