Friday, June 2, 2017

Sx - Interface 3GPP

3GPP 29.244, the types of rules included are..

PDR (Packet-Detection-Rule) - decides which types of packets to be detected for the respective action.

FAR (Forwarding-Action-Rule) - The forwarding actions to be applied.

URR ( Usage-Reporting-Rule) - information to specify how the reporting shall happen.

QER (QoS enforcement Rule) - information about the QoS for the traffic.

Tuesday, March 21, 2017

https://www.quora.com/How-do-I-start-learning-or-strengthen-my-knowledge-of-data-structures-and-algorithms

https://www.hackerrank.com/pgmreddy?hr_r=1

https://discuss.codechef.com/questions/48877/data-structures-and-algorithms

http://www.spoj.com/problems/AGGRCOW/

Tuesday, March 25, 2014

GCC Optimization

GCC :-

How to prevent optimization on a function..

Use __attribute__((optimize("O0"))) for to exclude the optimization of just a single function.
Usage example:
void __attribute__((optimize("O0"))) foo(unsigned char data) {
    // code not to be optimized
}

Monday, May 20, 2013

Configure count down clock



Time since we met first, 11AM, March 31, 2013



Timer since 9AM, May 11, 2013




August 15, 2013.




Our Dream Date






Tuesday, February 10, 2009

Version of Ubuntu is installed.?

How to know, the release version of Ubuntu installed in your system..?

$lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 8.10
Release: 8.10
Codename: intrepid

Installed package version.

How to know the Installed version of the particular package in debian..?

You can use the following command...
apt-cache show

That will list the version information.

Wednesday, June 4, 2008

Useful gdb commands

The following will be useful for the GDB..

(gdb) disassem

(display memory as machine instructions)
(gdb) info frame
(describe current frame or frame at [addr])