Top StoriesMore Stories »

How to Create Desktop Application with Elixir

How to Use Elixir's Compiler to Avoid Typos

7 Tips for Building Kiosk Device with Nerves and Buildroot

Umbrella On Rails

Brewing the Firmware for Raspberry PI with Elixir and Nerves

The Beginner’s Guide to Linux Kernel Module, Raspberry Pi and LED Matrix
Featured ProjectsMore Projects »
colorize
22 April 2007
Ruby gem for colorizing text using ANSI escape sequences. Extends String class or add a ColorizedString with methods to set text color, background color and text effects.
Github: https://github.com/fazibear/colorize
Defql
21 January 2017
Create elixir functions with SQL as a body.
Github: https://github.com/fazibear/defql
fazic
8 December 2017
FAZIC is a fantasy retro computer. You can create, share, and play tiny games or programs. You have the built-in BASIC interpreter, so you can start now like it's the 80s.
Inesita
21 June 2015
Inesita is a web frontend framework for fast building browser application using Ruby. It uses Virtual DOM for page render.
Last LernedMore »
How to replace text in files?
Wondering how you can replace text content in every file using regex?
Just create and alias using your shell. Im my case it will be fish alias:
Add to your ~/.config/fish/config.fish
this line:
alias replace "perl -p -i -e $argv"
and here you go!
~ $ replace 's/hello/goobye/g' *.md
BTW! Hope you have perl installed. I have ;)