-
Introducing Elixir
I read through Introducing Elixir on Safari Books Online because I had read through a beta edition of Programming Elixir: Functional |> Concurrent |> Pragmatic |> Fun through The Pragmatic Bookshelf and wanted to see about getting a slightly different take on Elixir at the same time I was getting caught up with the current…
-
Open Your Github Repo in a Web Browser from the Shell
This assumes that your first remote is a github remote. Put the following in the appropriate bash or zsh initialization script and that you’re on a Mac. You might need to change “open” to whatever will launch a URL in a web browser on a different *nix system. function gitweb() { git remote -v |…
-
Programming Style: Language Specific Domains
My Beginner and C Days The visual presentation of the code has mattered to me, from the first days I wrote C code in Microsoft editor. In those days, it was a Microsoft C 5.0 IDE on either DOS or OS/2. #include “stdio.h” main() { int rows,columns,ROW, COLUMN; scanf(“%d %d”,&ROW,&COLUMN); rows = 0; columns =…
