14
votes
2answers
652 views
VIM: substitute with contents of register / lines range
I'm using VIM, and I want to substitute some placeholder text with a long string, that spans several lines, which is already written somewhere else in the file.
Is it possible to replace a pattern …
10
votes
5answers
552 views
Why are x86 registers named the way they are?
For example, the accumulator is named EAX and, while the instruction pointer is called IP. I also know that there are bytes called CL and DH. I know there must be a convention to all of the names, …
7
votes
6answers
461 views
Address of register variable
In C, we cannot use & to find out the address of a register variable but in C++ we can do the same. Why is it legal in C++ but not in C? Can someone please explain this concept in-depth.
Thanks, …
4
votes
4answers
623 views
Hook a javascript event to page load
I have an aspx that has the following javascript function being ran during the onload event of the body.
<body onload="startClock();">
However, I'm setting the aspx up to use a master page, …
3
votes
3answers
98 views
Fast in-register sort of bytes?
Given a register of 4 bytes (or 16 for SIMD), there has to be an efficient way to sort the bytes in-register with a few instructions.
Thanks in advance.
2
votes
2answers
127 views
[C/C++] somehow register my classes in a list
Hi,
I would like to be able to register my classes within a std::map or a vector, don't think about duplicates and such for now.
but I don't want to register it within the class constructor call or …
2
votes
5answers
199 views
Register Variables
I am having a C++ code which have lot of recursion involved . I am thinking of using register class for my variables . Do you think by doing so I will be saving stack memory and will improve the …
2
votes
4answers
1k views
GCC Inline Assembler- How to “BSWAP” the lower 32-bit of 64-bit register???
Hello.
I've been looking for the answer 'how to use 'BSWAP' for lower 32-bit sub-register of 64-bit register.' For example, "0x0123456789abcdef" is inside RAX register, and I want to change it to …
1
vote
6answers
133 views
Best practice to prevent software copy
Hi everyone,
I'm developping an application and I'm looking for some cool informations about protecting it against copy ! Do you guys know some book/articles/any informations about it ?
Thanks in …
1
vote
3answers
56 views
What is the best way to register existing Windows service in .NET?
I need to register an existing third-party executable (database engine) Windows service from a .NET application. Is there a better way than writing to the registry?
1
vote
1answer
127 views
How to know whether a given client-side startup script is already registered in an asp.net page?
I have a asp.net page, and would like to know whether "script1" is already registered as a startup script or not?
0
votes
0answers
17 views
Facebook linking facebook user and website user.
Hello
I am wanting to have a website user connect with their own facebook user account like the way digg does. I have tried the registerUser function in facebook connect when the user create an …
0
votes
1answer
7 views
What is the sig parameter passed into registerUsers method on facebook
Hello I have a problem of understanding what the sig parameter is and how to generate it. I have read the documentation in registerUsers but not sure what and how to get it.
0
votes
1answer
54 views
Register the dynamic control using jquery for autocomplete
i am creating the textboxes dynamically using jquery on a button click.
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
…
0
votes
2answers
78 views
How to ‘assign’ a value to an output reg in Verilog?
( insert really basic question disclaimer here )
More specifically, I have the following declaration:
output reg icache_ram_rw
And in some point of the code I need to put the zero value in this …
