I was thinking of writing this for a long time. Just had time today to write on this. But still I am unclear in what […]
Category: Technical
Post related to technical things
Norton Ninja – Security suite for your Android
The name Ninja comes from the ancient martial art from Japan specializing in unorthodox arts of war. When Ubuntu and Android follow a legacy on […]
Computers without HardDisk?
Some weeks back, unfortunately water went inside my laptop through the holes. It baceme complete wet. Then I went to service center. They told only […]
Oracle functions
From today onwards I am going to share something technical like “tip of the day” in a daily basis. i will try to make it […]
Scheme Language – basic programs set 1
Here I have listed some basic programs in scheme language. Ask me if you have any doubts :). _____________________ ;;Bubble sort (define (bubble inputList) (define […]
Scheme Language – basic programs set 2
; string reverse (define (stringrev inputString) (define len (string-length inputString)) (define result “”) (let loop((count len)) (if(> count 0) (begin (set! result (string-append result (make-string […]
Scheme Language – basic programs set 3
(define (checkperfect num) (define total 0) (let loop((count 1) (end(round(/ num 2))) (temp 0)) (if(<= count end) (begin (if(= (modulo num count) 0) (begin (set! […]
How to calculate the no of bits in an integer
For calculating number of bits in an integer value we can have many approaches. This is more simple in my opinion. If you know anything […]
How memory leak occurs?
Memory leak is a problem that happens in programs when there is some unnecessary memory consumption or when program forgets to release the memory it […]
Difference between Session and Cookie
There is some difference between a session and a cookie. Anyway both of them performs the same functionality of maintaining some user information. But in […]