Monday, September 5, 2011

how to disable "dim" or "opacity" when searching in opera

type opera:config in address bar, and search for "opacity" in the search field.
change the value from default 52 to 0, and apply. The window will no longer dim .

how to control "double click" popup menu of opera

open file ui\standard_menu.ini, and search for  "copy to note". Modify following section, and "copy" will be moved to No. 1 position.

[Hotclick Popup Menu]
Item, MI_IDM_DOCCOPY = Copy
Item, MI_IDM_SELSEARCH = Hotclick search, 200,,, "Search Web"
Item, MI_IDM_SELSEARCH = Hotclick search, 200,,, "Search Web"
Submenu, MI_IDM_SEARCH_DUMMY_PARENT, Internal Search With
--------------------1
Item, M_COPY_TO_NOTE = Copy to note
Platform Win2000-Unix-Mac, Feature Voice, Item, M_HOTCLICK_MENU_ITEM_SPEAK = Speak selection

mips instruction encoding

Instructions are divided into three types: R, I and J. Every instruction starts with a 6-bit opcode. In addition to the opcode,
R-type instructions specify three registers, a shift amount field, and a function field;
I-type instructions specify two registers and a 16-bit immediate value;
J-type instructions follow the opcode with a 26-bit jump target.

The following are the three formats used for the core instruction set:
Type format (bits)

      31-26 | 25-21 |20-16 |15-11 | 10-6 | 5-0 |
R: opcode (6) | rs (5) |rt (5) |rd (5) | shamt (5) | funct (6) |
I: opcode (6) | rs (5) |rt (5) |immediate (16) |
J: opcode (6) | address (26)                         |


UDI instructions are added to MIPS24Kc core.