-
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)
Author Archives: Aliyar Güneş
Some Sql Notes
In these quarentine days I’am getting some progress in sql. I nearly completed the database design, but still there is some standardization issues that I’am working on it. It be use by any small scale technology companies for storing and … Continue reading
OpenVPN Community Edition Server Setup Notes
Recently I setup an OpenVPN server on my remote Ubuntu Server (18.04) for all my internet traffic. After completing all the steps, I have done some extras for both of the client and server side machines. Also, my wifi access … 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