World Holidays, but mostly U.S. holidays
fiber-connector-types.png 497 KB
1. ST connectors: These connectors are the most common type of commercial fiber optic connector. These connectors utilize an exposed plastic tube housing the optical fiber.

2. SC-Connector: SC is short for Subscriber Connect is one of the most frequently used conn

…read more
Famous people's birthdays.
                Epic
                    |
Story  -  Task    -   Bug
     \              |              /
            Sub-Task


Epic - Goal or large user story
Story - Typically development work and focused on the user's perspective ("User Stories")
Task - Often maintenance and operations work
Bug - Defect in s
S
…read more
Group of words with a meaning not deducible from those individual words.
Scale and chord patterns for major, natural minor, harmonic minor, and melodic minor scales.
# shared model methods (and callbacks, validates, scopes, associations) - instance and class

module Item  
extend ActiveSupport::Concern
  
  # instance associations, scopes, validations, callbacks, methods, private methods  
  included do    
    belongs_to :user    
    has_many :collaborations, 

Networking tools to troubleshoot issues.
Like JavaScript anonymous undefined functions

With the yield statement

def test
   puts "You are in the method"
   yield
   puts "You are again back to the method"
   yield
end
test {puts "You are in the block"}


def test
   yield 5
   puts "You are in the method test"
   yield 100
end
test {|i| puts
…read more