Skip to content

Instantly share code, notes, and snippets.

View boddhisattva's full-sized avatar
🌷
Vasudhaiva Kutumbakam 🙂

Mohnish G J boddhisattva

🌷
Vasudhaiva Kutumbakam 🙂
View GitHub Profile
defmodule RNATranscription do
@guanine ?G
@adenine ?A
@cystosine ?C
@uracil ?U
@thymine ?T
@doc """
Transcribes a character list representing DNA nucleotides to RNA
@boddhisattva
boddhisattva / rna_transcription.ex
Last active October 24, 2018 10:18
RNA Transcription Exercise - Elixir
defmodule RNATranscription do
@guanine "G"
@adenine "A"
@cystosine "C"
@uracil "U"
@thymine "T"
@doc """
Transcribes a character list representing DNA nucleotides to RNA
@boddhisattva
boddhisattva / supervisors_in_iex.md
Last active May 12, 2018 23:39
Trying out supervisors with Elixir:)
@boddhisattva
boddhisattva / check_the_elixir_version_being_used.md
Last active January 16, 2017 02:44
How to check the elixir version being used

In order to check which Elixir version one is currently using, you could use -

Either

a.

  elixir --version

or

@boddhisattva
boddhisattva / Preferences.sublime-settings
Last active January 11, 2017 01:10
Sublime Text 3 settings
{
"color_scheme": "Packages/Github Color Theme/GitHub.tmTheme",
"ensure_newline_at_eof_on_save": false,
"find_selected_text": true,
"font_size": 13,
"ignored_packages":
[
"Vintage"
],
"index_files": true,
@boddhisattva
boddhisattva / compare_strip_empty_vs_regex_implementation_for_silent.rb
Last active May 21, 2016 11:22
Benchmark comparison scripts wrt the bob exercise
SILENT = /\A\s*\z/
SILENT2 = ->(remark) { remark.strip.empty? }
def hey_fast(remark)
case remark
when SILENT
'Fine. Be that way!'
else
"Whatever."
@boddhisattva
boddhisattva / roman_numerals_kata_learnings.md
Last active April 10, 2016 13:55
Learnings along the way of completing the Roman Numerals Kata via Exercism
  • Roman Numerals Kata
    • Things that I applied or learnt along the journey that led to the final solution -
    • Approach the problem in small steps. I was solving this kata for the first time, I didn't know of any pattern whatsoever initially, hence took this problem, one step at a time and it eventually helped me get to solution. Often times one worries about the end solution or just the destination, without traveling the journey bit by bit.
      • I know you may think this approach(solving for one test at a time as done in this commit and this one) wouldn't give you the desired solution that'll satisfy all cases, but trust me it will help you eventually get there. That's why this approach is worth it.
  • Used the older hash syntax in ruby s
@boddhisattva
boddhisattva / hamming_learnings.md
Last active May 31, 2016 01:03
Learnings from solving the Hamming exercise on Exercism(exercism.io)

Hamming Exercise

  • Learnt how to use count with each_with_index
    • This helped me do away with the temp variable distance that I had used as a counter.

Before - Uses a temp variable called distance as a counter

class Hamming
  VERSION = 1
@boddhisattva
boddhisattva / comp_results_via_irb.rb
Created March 31, 2016 01:56
Roman numerals - comparing two implementations
2.3.0 :001 > require "benchmark/ips"
=> true
2.3.0 :002 > class Fixnum
2.3.0 :003?> VERSION = 1
ROMAN_NUMERALS = { 'M' => 1000,
'CM' => 900,
'D' => 500,
'CD' => 400,
'C' => 100,
@boddhisattva
boddhisattva / benchmarking_code.rb
Last active March 25, 2016 10:50
Ruby the usage of to_s within a loop by using old hash syntax wrt the constant
require "benchmark/ips"
Benchmark.ips do |x|
x.report("fast code description") { 38.to_roman_fast}
x.report("slow code description") { 38.to_roman_slow }
x.compare!
end