Skip to content

Instantly share code, notes, and snippets.

View elektronik2k5's full-sized avatar
๐Ÿง
Delivering high quality code, out remote! ๐Ÿ”๐Ÿ–๐ŸŒด๐Ÿ‡ฎ๐Ÿ‡ฑ

Nick Ribal elektronik2k5

๐Ÿง
Delivering high quality code, out remote! ๐Ÿ”๐Ÿ–๐ŸŒด๐Ÿ‡ฎ๐Ÿ‡ฑ
View GitHub Profile
'use strict';
function *fibonacci(a=0,b=1) {
while (true) {
yield a; [a,b] = [b,a+b]
}
}
function *odd(f) {
while (true) {
@mojavelinux
mojavelinux / atom-fedora-20.adoc
Last active September 26, 2022 18:21
Instructions for building and launching the Atom text editor on Fedora 20.

Using Atom on Fedora 20

This guide walks you through the steps of building and launching the Atom text editor on Fedora 20.

Building Atom

  1. Install prerequisite packages

@p1nox
p1nox / using_meld_on_mac.md
Last active January 16, 2025 08:44
Using meld on Mac

Using Meld merging tool on Mac

There are two ways of installing meld on osx (May 2023), using brew and .dmg package (from @yousseb). Since I found https://yousseb.github.io/meld/, I've installed it with .dmg package, but having macOS Ventura Version 13.4 (22F66) in place, it's not even starting for me. So I tried brew installation, and the application is working as expected, including symlink to start it from the terminal.

brew install --cask meld

# set meld as your default git mergetool

Sass/Less Comparison

In this document I am using Sass's SCSS syntax. You can choose to use the indented syntax in sass, if you prefer it, it has no functional differences from the SCSS syntax.

For Less, I'm using the JavaScript version because this is what they suggest on the website. The ruby version may be different.

Variables