Tuesday, October 10, 2017
Breaking Digital Prison: Deleting Illicit Material from the Internet
I liked their motto “The Right to be Forgotten”.
Further, read here http://mengnews.joins.com/view.aspx?aid=3039240
Thursday, April 25, 2013
PhD Position in Information and Communication Technology.
Deadline: 2013-05-15.
Qualifications: The applicant is expected to hold before august 2013 an MSc degree in Optics, Photonics, Laser Physics, or similar. Experience with clean-room technology, experimental and programming skills (for numerical simulation) are an advantage.
Tuesday, October 20, 2009
Changing units from CM to inches in ruler in Ms-word 2007.
Sometimes when you change display option from Office Button >>Word Option>>Advance>>Display, you can’t see any changes in ruler. Mostly it is because of Asian language compatibility.
If you have this problem, you can correct this by doing following steps.
- Go to Office Button (Left top corner, round button)
- Click on WORD OPTION (Near the “Exit word” button)
- Click on ADVANCED in the left panel.
- Go to the DISPLAY.
- Go to the Show measurement in unit of drop down menu with Inches, Centimeters, Millimeters, Points, or Picas. Selcet one of them (e.g. Inches)
- Click on OK
Now,
- Press ALT+F11. You can see the macro editor.
- Press CTRL+G (or Go to View >> Immediate Window).
- In this window, type vba code as follows:
Options.UseCharacterUnit =False
Then press Enter.
Now, it’s done. You can see your ruler in Inches.
Good luck.
Monday, May 11, 2009
Why does Snoop suppress the duplicate TCP acknowledgements it receives after retransmitting lost packets?
Monday, March 16, 2009
Why TCP without Selective Acknowledgments can only recover from a single packet loss per round trip time?
Tuesday, March 10, 2009
With some Split TCP schemes, a data packet can be acknowledged without first reaching its destination. Why is this a problem?
There is another issue with some split schemes is that wireless gateways face significant overhead as packets must undergo TCP processing twice.
Tuesday, March 3, 2009
Which are the main factors leading to TCP throughput degradations over wireless links?
Another reason of throughput degradation over wireless links is the Frame Error Rate (FER). It suffers from FER of 1.55% when transmitting 1400 byte frames over an 85 foot distance, with clustered losses. Reducing the frame size by 300 bytes halves the measured FER, but causes framing overhead to consume a larger fraction of the bandwidth. In shared medium WLANs, forward TCP traffic (data) contends with reverse traffic (acknowledgments). In the WaveLAN this can lead to undetected collisions that significantly increase the FER visible to higher layers. File transfer tests over a WaveLAN with a nominal bandwidth of 1.6 Mbps achieved a throughput of only 1.25 Mbps. This 22% throughput reduction due to a FER of only 1.55% is caused by the frequent invocations of congestion control mechanisms which repeatedly reduce TCP’s transmission rate. If errors were uniformly distributed rather than clustered, throughput would increase to 1.51 Mbps. This is consistent with other experiments showing that TCP performs worse with clustered losses.
Friday, February 27, 2009
Why is TCP performance more affected by losses over high-delay and high-speed network paths?
Monday, February 23, 2009
The CSMA/CA access protocol does not detect collision as CSMA/CD does. How does this limitation affect link-layer and transport-layer performance?
Friday, January 30, 2009
New Google
Today, I received an email from SONSIK yahoo group member mentioning that the search engines that we are mostly using Google and Yahoo, there is a new searching engine promoting by Nepalese. The mail requested to try the search engine. I tried it and searched some stuffs too. I read the About Us column. It seems that basically the search engine is operating from US. It has offices in both country US and India. The promoters are seems to be Nepalese and Indian origin. The official blog is written in January 28, 2009, looks pretty new.
The name of the search engine is given Sagoon. Although the GOO of Sagoon looks like taken from Google, it’s not true. It’s derived from Sanskrit which means Auspicious or ushering good results. In News section there are two language changing options – Nepali and Hindi. It can be assumed that this search engine is targeted to the Nepali and Indian users. History shows that Google and Yahoo are not big success in non-english speaking countries like China and Korea. So this search engine can be very popular as a regional search engine.
Anyway, finger crossed to Sagoon team for their success.
www.sagoon.com
Saturday, January 17, 2009
Why TCP modeling?
There are certain things we can achieve with TCP modeling that cannot be achieved with simulation. Some of them are as follows.
- We can model some uncertainties using stochastic process that cannot be determined by simply simulation. For example, number of current TCP connections, how much bandwidth is occupied by the non TCP transport protocols and what is the effect of those in TCP etc.
- TCP operating scale is very large in terms of geographical scale and the number of inputs/outputs. To simulate the large number of inputs/outputs and geographical scale is not easy due to hardware constraints (some times budget constraints as well).
- Mathematical models are required to quantify metrics that define system performance and develop control strategies that result in the optimum being achieved.
- It also helps to determine how close it is to achieving a system optimum, as defined by a specific cost function, and subsequently identify issues that need to be addressed in future control protocol.
- TCP is already mostly used transport layer protocol in the world. To test some optimization in it is not easy to implement in real world scenario and observe its performances. So, before implementation any optimization patches it is very much necessary to model it. Some examples of those patches are Fast Retransmission and Fast Recovery. These were not in the very first version of TCP.
Monday, January 12, 2009
The role of the "gateway" option of tcpdump
#tcpdump 'gateway snup and (port ftp or ftp-data)'
To print IP packets longer than 576 bytes sent through gateway snup the command is:
#tcpdump 'gateway snup and ip[2:2] > 576'
Saturday, January 10, 2009
Disadvantages of IP fragmentation?
A. Once packet is fragmented it can be reassembled only at another end. If there is larger bandwidth on the way, it cannot take an advantage of that.
B. The overhead is large when IP fragmentation is used. IPv4 does not restrict fragmentation and can be performed at any link along the path. This can result in heavy processing demands on the routers in the network. (Not in IPv6).
C. There are some security issues with fragmentation. (e.g. Tiny Fragment Attack and Overlapping Fragment Attack)
Thursday, January 8, 2009
Situations when RTO occurs even though packets reach receiver
Wednesday, January 7, 2009
How cumulative acknowledgement can compensate for a lost ACK?
Tuesday, January 6, 2009
Why is the ISN (initial sequence number) of TCP selected randomly?
The another reason to select ISN number randomly is any malicious person could write code to predict the ISN of subsequent TCP connection based on the ISNs used in earlier ones, which causes serious security risk.
Monday, January 5, 2009
How an efficient TCP/IP implementation can extend the battery life of a mobile device?
Sunday, January 4, 2009
Which of the following applications can run satisfactorily ?
(a) Voice-over IP
(b) File Transfer
(c) Web Browsing
(d) E-mail
(e) Video on demand
Answer:
Following applications can sun satisfactorily over given network: (a) File Transfer (b) Web Browsing (c) e-mail.
The reason VOIP and VOD may not run satisfactorily is that the tolerable delay of these applications are several milliseconds only. e.g. <= 400 ms for VOIP.
Friday, September 26, 2008
Wednesday, August 13, 2008
How to fill patterns in MS Excel 2007 Graph?
I found a link written how to make UI in this blog http://blogs.msdn.com/excel/archive/2007/11/16/chart-pattern-fills.aspx . It’s good.
I found one another free UI addin to fill pattern. I tried it, it works fine. The link of that site is http://www.andypope.info/charts/patternfills.htm .