Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

Python / Javascript -- integer bitwise exclusive or problem -


i'm proficient both languages... i'm having problems integer bitwise exclusive or logical operator. in javascript, gives me 1 result, in python gives me another..

go ahead, open python , execute (-5270299) ^ 2825379669

now javascript, same calculation, , alert result or whatever (example @ http://thorat.org/os/js.php)

the results different! have no idea why!

i must missing something.

javascript's integers 32-bit whereas python automatically converts unlimited length long format when values exceed 32 bits. if explicitly force python not sign extend past 32 bits, or if truncate result 32 bits, results same:

>>> (-5270299 & 0xffffffff) ^ 2825379669 1472744368l >>> (-5270299 ^ 2825379669) & 0xffffffff 1472744368l 

Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -