IT
Wi-Fi 802.11n Gets IEEE Nod
The task group unanimously voted in favor of the proposal from Enhanced Wireless Consortium (EWC); a group led by chipmakers Intel, Marvell, Atheros and Broadcom. The EWC was formed in October 2005, to accelerate adoption of the 802.11n Wi-Fi standard.
The proposed 802.11n standard provides a huge speed boost for wireless networks, with actual throughput speeds of 100 megabits per second - roughly four times as fast as current wireless networks. The EWC said in a statement, that the draft proposal will support throughput of up to 600 mbps. The standard also facilitates bandwidth intensive services such as voice over IP and streaming video.
According to Bill McFarland, chief technology officer, Atheros Communications, once the proposal is formatted according to IEEE rules, it will go out to a group of engineers across the 802.11 working group who will point out problems - if any, post which the draft will be modified and put to further voting. Finally, an even broader group of IEEE members will vote on final ratification. Industry analysts and 11n task group members say that the process will take about a year, with products hitting the market shortly thereafter.
Apparently Broadcom has already announced the availability of a family of chip sets, which it claims are the first to comply with the draft. The chip sets, called Intensi-fi, include the ones that can be used in routers, notebook PCs, and add-in PC Cards. These are immediately available to manufacturers, in sample quantities.
- thitima's blog
- Add new comment
- Read more
- 538 reads
How to comment in HTML
When you want to comment to your html file, the statement should be begin by "". Between your comment statement do not have "--".
Example
- thitima's blog
- Add new comment
- 2333 reads
Function Key Standard Setting in SAP
Function Keys Description
F1 Help
F2 Choose
F3 Back (One Step)
F4 Possible Entries
F9 Select
F10 Jump to menu bar
F11 Save/Generate
F12 Cancel
F13 Print
F14 Delete
F17 Open
F21 First Page
F22 Previous Page
F23 Next Page
F24 Last Page
- thitima's blog
- Add new comment
- 749 reads
Basic Structure of HTML
HTML language has 2 elements; content and tag. Basic tag in HTML file are:
- ...
This tag is a indicator for start point and end point of HTML file. is nessesary declared at first line and is declared at end line of file. - ...
This tag response about header definition of web page by using tag... .tag will show title of page in title bar of browser. - ...
This tag response about body content that you want to show in your web.
Example file
- thitima's blog
- Add new comment
- Read more
- 1124 reads
Difference between CONTINUE, CHECK and EXIT statement in ABAP/4
-
CONTINUE
When you apply this statement, system will pass a current loop. System ignores any statements after CONTINUE statement and start to the next loop.
Example
DO 4 TIMES.
WRITE:/ sy-index.
IF sy-index <= 2.
CONTINUE.
ENDIF.
WRITE: ’After’.
ENDDO.
The output is
1
2
3 After
4 After
-
CHECK
This statement will apply if you want to check condition before go to next statement. If the result of checking is ’TRUE’, system will go to next step as normally. If the result of checking is ’FALSE’, system will operate look like CONTINUE statement.
Example
- thitima's blog
- Add new comment
- Read more
- 11113 reads
Example to apply WHILE statement in ABAP/4
You will apply this statement when you want to loop data with condition loops.
Example 1: Simple Loop
DATA: lv_int TYPE I VALUE 1.
WHILE lv_int <= 4.
WRITE:/ lv_int.
lv_int = lv_int + 1.
ENDWHILE.
The output is
1
2
3
4
Example 3: Nested Loops
DATA: lv_int TYPE I VALUE 1,
lv_int2 TYPE I.
WHILE lv_int <= 4.
WRITE:/ lv_int.
lv_int2 = 1.
WHILE lv_int2 <= 2.
WRITE: lv_int2.
lv_int2 = lv_int2 + 1.
ENDWHILE.
lv_int = lv_int + 1.
ENDWHILE.
The output is
- thitima's blog
- Add new comment
- Read more
- 2739 reads
Recent comments
3 years 4 weeks ago
3 years 9 weeks ago
3 years 9 weeks ago
3 years 10 weeks ago
3 years 10 weeks ago
3 years 12 weeks ago
3 years 12 weeks ago
3 years 12 weeks ago
3 years 13 weeks ago
3 years 13 weeks ago