-
Recent Posts
- Poor Man’s LastFM History Downloader
- Aspect Oriented Programming Notes #4 – Proxy Mechanism
- Aspect Oriented Programming Notes #3 – Some Additional Info
- Aspect Oriented Programming Notes #2: Setting Up AOP Dependencies and Declaring Aspects, Advices, Pointcuts
- Aspect Oriented Programming Notes #1: The Concepts
Categories
- Days (4)
- Projects (6)
- Uncategorized (1)
- Works (17)
- Algorithm Analysis (3)
- General Concepts (4)
- Links (5)
- Software Architecture (2)
- Spring Framework (5)
Archives
- August 2021 (1)
- September 2020 (6)
- August 2020 (3)
- May 2020 (3)
- April 2020 (1)
- March 2020 (1)
- February 2020 (3)
- December 2019 (1)
- November 2019 (1)
- October 2019 (1)
- September 2019 (1)
- August 2019 (3)
Category Archives: General Concepts
“Without An If” Notes
Here is some notes which I took from a Google Tech Talks video: When to use Polymorphism if an object should behave differently based on its state If you have to check the same condition in multiple places Use Conditionals … Continue reading
Checking Some Opcodes in Assembly Language
A program written in an assembly language that implements the following Java code look like the one: The program adds two numbers 3 and 7 that are in the variables THOMAS and SYLVESTER respectively, and stores the result 10 … Continue reading
Pipe-and-Filter Architecture and An Elegant Algorithm
The Problem: Given a dictionary of words in English, find all the anagrams in the dictionary. That is, find all the words that are permutations of each other. For example, pots, stop, and spot are anagrams of each other. Bentley, … Continue reading