Posts

Showing posts from February, 2013

r - Finding the Column Index for a Specific Value -

i having brain cramp. below toy dataset: df <- data.frame( id = 1:6, v1 = c("a", "a", "c", na, "g", "h"), v2 = c("z", "y", "a", na, "a", "g"), stringsasfactors=f) i have specific value want find across set of defined columns , want identify position located in. fields searching characters , trick value looking might not exist. in addition, null strings present in dataset. assuming knew how this, variable position indicates values returned. > df id v1 v2 position 1 1 z 1 2 2 y 1 3 3 c 2 4 4 <na> <na> 99 5 5 g 2 6 6 h g 99 the general rule want find position of value "a", , if not located or if v1 missing, want 99 returned. in instance, searching across v1 , v2, in reality, have 10 different variables. worth noting value search...

datetime - time difference's seems like working odd? -

i going find difference between 2 times not getting want!!! have 2 timeedit components in form here code: void __fastcall tform1::button1click(tobject *sender) { ttime time1=strtotime(t1->text); ttime time2=strtotime(t2->text); //t1->text=time2-strtotime("3:00"); showmessage((time2-time1).timestring()); } if set t1 = 02:00 , set t2 = 01:00 it shows 1:00 but expect 23:00 01:00 - 02:00 should 23:00 where wrong ? you not taking account how ttime encoded. tdatetime double , integral portion contains number of days since dec 30 1899, , fractional portion contains percentage of 24-hour day (this information stated in c++builder documentation). ttime fractional portion of tdatetime integral portion ignored. because of encoding, performing such seemingly simple mathematical operations on date/time values not produce kind of result expecting. 02:00 (2 am) represented 0.083333333333 , , 01:00 (1 am) represented 0.04166...

security - how to secure keys for API calls from android device to amazon services -

so writing app android push data on amazon s3 storage later read. using amazons sdk make calls requires me store public , private keys within app. there way secure them couldn't extracted reverse engineering? possible since making direct calls device? or option run proxy server (on ec2) , pass data through it? thanks help! step 1. use https step 2. aes encrypt keys in application other that, there's not can do, other using proxy server (option mentioned)

Creating and populating an array with a fixed width in JavaScript -

i've got input array in format: [[timestamp, jobid, time completion],[..]] the data sql db, grouped both timestamp, , jobid, array looks like: [ [1, 30, 400], [1, 31, 200], [2, 29, 300], .. ] i create new array 1 column every jobid, instead of 1 row every job id, is, single row per timestamp. so, wrote code iterated through above array, , populated new array, simple enough, except, result array isn't fixed width, is, result looks like: [ [1, 400, 200], [2, 300] .. ] which makes impossible me values [1] job id 30, can't have meaningful header row. is, data in format: timestamp, jobid29, jobid30, jobid31 [ [1, 0, 400, 200], [2, 300, 0, 0], .. ] i can't output map, unfortunately. how can achieve this? know i'll haveto go through input once distinct jobids, , guess i'd map each jobid position, etc, i'm wondering if best way? thank you. my solution uses 2 arrays , 2 maps plenty of possibilities optim...

java - Can using non primitive Integer/ Long datatypes too frequently in the application, hurt the performance? -

i using long / integer data types in application, build generic datatypes. fear using these wrapper objects instead of primitive data types may harmful performance since each time needs create objects expensive operation. seems have no other choice(when have use primtives generics) rather using them. however, still great if can suggest if there make better. or way if avoid ?? also may downsides of ? suggestions welcomed! repeat after me. "creating object in java not expensive operation" . you prematurely optimizing application. better approach implement in natural way using integer , long , profile determine bottlenecks are. if profiler tells use of integer , long performance issue, then @ ways cure this. if determine integer , long issue, here things do: look class library implements "collections" of primitive types; e.g. trove. beware apis of such collection types won't compatible java.util.collection , descendants. us...

jquery - Export calendar events to google calendar, ical, microsoft outlook -

i have used jquery calendar, , have used create event details, want export same event details google calendar,ical , microsoft outlook, depending upon user requirements.but want procvide 3 features. there tools available or have dirty hands code whole thing myself. fyi:i have used servlets , mysql @ end , jquery along html5 @ front end. since using java on server side, can use ical4j library creating icalender. basically, need ical completing requirement. google, microsoft, apple , many others mozilla sunbird support icalender can use 1 format, rather going different formats.

objective c - How can I reload the com.apple.systemuiserver preferences into the SystemUIServer application? -

for mac osx application, have feature removes system clock in upper right hand corner of screen when button clicked. preferences control system menus displayed (including system clock) stored in ~/library/preferences/com.apple.systemuiserver.plist. able update relevant preferences in file remove system clock. however, systemuiserver application needs restarted new preferences can reloaded , clock can removed. here code have used restart systemuiserver. nstask *killsystemuitask = [[nstask alloc] init]; nsmutablearray *args = [nsmutablearray array]; [args addobject:@"systemuiserver"]; [killsystemuitask setlaunchpath:@"/usr/bin/killall"]; [killsystemuitask setarguments:args]; [killsystemuitask launch]; when systemuiserver killed, osx automatically restarts it. above code works, removal of system clock not clean like. entire system bar removed second. can think of better way reload preferences systemuiserver? ideally, i'd removal of system clock clean clock ...

ios4 - NSNotification Does Not Notify -

i have application shows lot of videos. load , play file, use following code: - (ibaction)playvideoooo { [[uiapplication sharedapplication] setnetworkactivityindicatorvisible:yes]; movieplayercontroller = [[mpmovieplayercontroller alloc] initwithcontenturl: [nsurl urlwithstring:@"/unionedicentro2011_live.isml/manifest(format=m3u8-aapl)"]]; switch ( [self interfaceorientation] ) { case uiinterfaceorientationportrait: case uiinterfaceorientationportraitupsidedown: [[movieplayercontroller view] setframe:cgrectmake(0, 0, p_width, p_height)]; break; case uiinterfaceorientationlandscapeleft: case uiinterfaceorientationlandscaperight: [[movieplayercontroller view] setframe:cgrectmake(0, 0, l_width, l_height)]; break; } [movieplayercontroller preparetoplay]; [[nsnotificationcenter defaultcenter] addobserver:self selector:@selector(movieplayerloadstatechanged:) ...

Web Frameworks on Shared Hosts (e.g. GoDaddy and BlueHost) -

i'm researching best web framework side project of mine , came across interesting ones far mainstream. name few, eclipse rap/rcp, django (slowly becoming mainstream) , sinatra. i'd host them somewhere godaddy or bluehost since cost-efficient method, i'd know going in "framework x" running on these servers before paying hosting space. my question is, assuming shell access, web frameworks have people been able working (reliably) on shared hosts godaddy , bluehost (excluding obvious ror , .net)? i've been happy running django, using passenger, on dreamhost.

c# - SENDKEYS F-Key sends trema Y (Y with two dots over it) -

i’m trying send f-keys application c# app i’m writing. when send f-key shows Ÿ (trema y). settle .net programmatically pressing desired f-key once i’ve brought desired widow focus. when run code on development machine f-keys interpreted correctly. machine interpreting them trema y windows 7 .net 4 client 64 bit. i’ve tried sendkeys.sendwait("{f2}") , sendkeys.send("{f2}") . have following code in app.config: <appsettings> <add key="sendkeys" value=" journalhook"/> </appsettings> here code example: void poptargetapp() { try { string targetwindowtitle; targetwindowtitle = "notepad"; int ihandle = nativewin32.findwindow(null, targetwindowtitle); nativewin32.setforegroundwindow(ihandle); sendkeys.sendwait("{f2}"); sendkeys.flush(); //thread.sleep(1000); sendkeys.sendwait(currentinteraction.account + "{enter}...

.net - Adding Namespaces to a SyndicationFeed rather than Individual Elements? -

i have class this: public static class myfeedextensions { private readonly static xnamespace _namespace = xnamespace.get(@"http://mynamespace"); public static xelement myelement(string value) { return new xelement(_namespace + "myelement", value); } } i'm using generate atom feed custom extensions: var feed = new syndicationfeed(); feed.elementextensions.add(myfeedextensions.myelement("testing!")); this works fine, except feed adds namespace element: <feed xmlns="http://www.w3.org/2005/atom"> <title type="text">hello world!</title> <id>00000000-0000-0000-0000-000000000000</id> <updated>2011-03-01t01:00:53z</updated> <myelement xmlns="http://mynamespace">testing!</myelement> </feed> is there way register namespace feed instead, output this? <feed xmlns="http://www.w3.org/2005/atom" xmlns:my="http:...

sqlite3 - lastrowid() alternative or syntax without using execute in sqlite python? -

in sqlite3 in python, i'm trying make program new row in table written inserted next, needs printed out. read documentation here insert should used in execute() statement. problem program i'm making asks user his/her information , primary key id assigned member his/her id number must displayed. in other words, execute("insert") statement must not executed first id keys wrong assignment of member. i first thought lastrowid can run without using execute("insert") noticed gave me value "none". read documentation in sqlite3 in python , googled alternatives solve problem. i've read through google somewhere select last_insert_rowid() can used alright ask syntax of in python? i've tried coding this nextid = con.execute("select last_insert_rowid()") but gave me cursor object output "" i've been thinking of making table there 1 value. value of lastrowid of main table whenever there new input of data in main tab...

javascript - Are strings objects? -

this question has answer here: how javascript string not object? 1 answer here 2 reasons think strings objects. first, can create string in following way: var mystring = new string("asdf"); i'm under impression constructor function following new operator has return object. second, strings seem have properties , methods. example: mystring.touppercase(); but, if strings objects, we'd expect following work: function string_constructor() { return "asdf"; } var mystring = new string_constructor(); but doesn't, , i've been told doesn't because strings aren't objects. strings objects or not? and, either way, how can make sense of i've listed? speaking language types, strings values of string type. the language has 5 primitive types , string , number , boolean , null , undefined . there string object...

javascript - equivalent to GMap2.savePosition in v3 Maps API? -

i'm in process of converting google maps code (that didn't write) uses gmap2.saveposition(). there equivelent method, or better preferred way in v3 api? googled around , couldn't find replacement in v3 spec, it's not hard replacement yourself, either in page or cookie. 1) page code var mypos, myzoom; function savepos() { mypos = map.getcenter(); myzoom = map.getzoom(); } function restorepos() { map.setcenter(mypos); map.setzoom(myzoom); } 2) using cookies taken this example function save() { var mapzoom = map.getzoom(); var mapcenter = map.getcenter(); var maplat = mapcenter.lat(); var maplng = mapcenter.lng(); var cookiestring = maplat + "_" + maplng + "_" + mapzoom; var exp = new date(); //set new date object exp.settime(exp.gettime() + (1000 * 60 * 60 * 24 * 30)); //set 30 days ahead setcookie("daftlogicgmrll",cookiestring, exp); } function load...

How to return a function pointer from CPython to Python then call a C function with ctypes? -

i have cpython function: void my_cfunc(int arg) { printf("hello c; arg=%d\n", arg); } pyobject *get_fptr(pyobject * /*self*/, pyobject * /*args*/) { return pycobject_fromvoidptr(my_cfunc, null); } then later, in python have: import mymodule ptr = mymodule.get_fptr() # return pycobject wrapping c function pointer then later: from ctypes import * somefunc_t = cfunctype(c_void, c_int) somefunc = somefunc_t(ptr) # <-- bad! now, if change get_fptr return as: pylong_fromsize_t(size_t(my_cfunc)) 'somefunc' valid. but don't want cast function pointer size_t. please advise first of all, don't understand why you'd want return c function pointer python extension call python (via ctypes), while logical thing call c function via python extension (unless i'm missing something). second, not ctypes supports pycobject @ all. call cfunctype(none, c_int) [i replaced c_void none] pycobject argument fails because cfunctype expects...

javascript - Express framework giving a very strange error -

i'm trying use express in node, install okay, compiled, got npm , installed express with: npm install express the problem is, everytime try "require" it, gives me error! take look, simple file app.js as: var express = require('express'); when run it: tlab065:~/proj/express-server-abstraction> node app.js node.js:116 throw e; // process.nexttick error, or 'error' event on first tick ^ typeerror: cannot read property 'prototype' of undefined @ object.<anonymous> (/people/home/jdomingues/local/node/lib/node/.npm/express/1.0.7/package/lib/express/server.js:87:44) @ module._compile (module.js:373:26) @ object..js (module.js:379:10) @ module.load (module.js:305:31) @ function._load (module.js:271:10) @ require (module.js:317:19) @ object.<anonymous> (/people/home/jdomingues/local/node/lib/node/.npm/express/1.0.7/package/lib/express/index.js:28:31) @ module._compile (mod...

hibernate - Application gives Communications Link Failure on Mac OS while using MySQL Server -

my application using mysql server. when try launch on mac os, application state hangs @ persistence manager try establish connection. exception thrown after 30 minutes. 2011-02-25 15:24:06,137 2292512 error org.hibernate.util.jdbcexceptionreporter communications link failure last packet sent server 0 ms ago. 2011-02-25 16:24:07,944 5894319 error org.hibernate.util.jdbcexceptionreporter communications link failure last packet sent server 0 ms ago. 2011-02-25 16:24:07,945 5894320 error org.hibernate.util.jdbcexceptionreporter communications link failure last packet sent server 0 ms ago. 2011-02-25 16:24:07,947 5894322 error com.agilent.cgh.dal.persistence.abstractpersistencetype org.hibernate.exception.jdbcconnectionexception: cannot open connection : cannot open connection org.hibernate.exception.sqlstateconverter.convert(sqlstateconverter.java:97) org.hibernate.exception.jdbcexceptionhelper.convert(jdbcexceptionhelper.java:66) org.hibernate.exc...

iphone - is it possible to use iframe in UIWebView? -

i want add facebook button in app. in developer.facebook.com couldn't fine that. possible use iframe created facebook button in uiwebview? think if possible can add uiwebview in app use iframe. thanx. please write example code. yes possible can use iframe in webview.you need load webview html string.you can find related code of html iframe if seacrch on net.moreover can use javascript,in webview using method stringbyevaluatingjavascript : of uiwebview.

How to apply a Python timings decorator to a method within a class -

i trying apply timing decorator described here method within class instead of standalone method. how should done? i getting error: typeerror: unbound method wrapper() must called someclass instance first argument (got float instance instead) edit thanks comment, think know problem is. doesn't work: class a: @timings @classmethod def a(cls, x): print(x) a.a(2) for reason said. typeerror: unbound method wrapper() must called instance first argument (got int instance instead) but does: class a: @classmethod @timings def a(cls, x): print(x) a.a(2) so order matters. think what's going on here it's fooling way python handles bound methods: when python looks @ member a, has make decision: make bound method make class method do nothing (leave is) if gets regular function, (1), , @timings produces regular function. does solve problem?

ASP.NET & Javascript: Setting values from one window to another -

i have child browser window (aspx) opened parent application. child window has controls, , textbox. when user finished, s/he clicks button , following code takes value child window , populates parent, so: window.opener.document.form1.inputcontainer$letterinput$txtreasons.value = txtval; this works great textbox have on parent page. now, need populate listbox , not having luck. i've tried these 2 methods no avail: o.text = txtval; o.value = "1"; window.opener.document.form1.inputcontainer$letterinput$lstreasons.add(o); window.opener.document.form1.inputcontainer$letterinput$lstreasons.add("text", "value"); i "htmlfile: no such interface supported" both. anybody have ideas? thanks, jason var newoption = document.createelement('option'); newoption.value = textbox.value; // value option have newoption.innerhtml = textbox.value; // displayed text inside of <option> tags // finally, add new option listbox ...

ruby on rails - Paperclip obtain real image size -

my problem next: i trying resize image size depending proportial size. example if have image size 1440*1000 new size 648*440 (i use proportion depending max_size) note: post code understand size relations. ok. reading stackoverflow post: getting width , height of image in model in ruby paperclip gem now post code , describe problem. class productimage < activerecord::base belongs_to :product, :dependent => :destroy maximum_size = 650 has_attached_file :photo, :url => "/:attachment/:class/:id/:style_:basename.:extension", :styles => {:real_size => proc.new { |instance| instance.real_size }, :original => "400x400>", :medium => "300x300>", :principal => "240x240>", :thumb => "100x100>", :small => "80x50>"} def real_size #image = paperclip::geometry.from_file(photo.to_file(:maximum_size)) #obtain real image size, not attachment ...

spring - Tiles 2 Access Variable in Template -

i using spring mvc framework apache tiles 2. want able have multiple controllers use same view (different logic, basic presentation). can easily. want have different tiles definitions each controller, using same jsp file, each passing different template variables (page header, short description, etc). tiles template definition file: <tiles-definitions> <!-- default main template --> <definition name=".maintemplate" template="/web-inf/templates/main.jsp"> <put-attribute name="shorttitle" value="company abc" type="string" /> <put-attribute name="body" value="/web-inf/templates/blank.jsp" /> </definition> <!-- overriding templates --> <definition name="index" extends=".maintemplate"> <put-attribute name="title" value="company alpha bravo charlie" type="string" /> ...

java - Searching multi-dimensional arrays for a String -

i have array types string, double, , float, , need able search string in it. tried binary search, i'm getting following error when run program , attempt search: java.lang.classcastexception: java.lang.string cannot cast customer @ customer.compareto(prog4.java:1) @ java.util.arrays.binarysearch0(unknown source) @ java.util.arrays.binarysearch(unknown source) @ prog4.main(prog4.java:59) @ sun.reflect.nativemethodaccessorimpl.invoke0(native method) @ sun.reflect.nativemethodaccessorimpl.invoke(unknown source) @ sun.reflect.delegatingmethodaccessorimpl.invoke(unknown source) @ java.lang.reflect.method.invoke(unknown source) @ edu.rice.cs.drjava.model.compiler.javaccompiler.runcommand(javaccompiler.java:271) i haven't found other methods searching 3d array, appreciated. here code: case 'b': system.out.println(); system.out.println("please enter customer name:"); string search = kb.nextline(); //rea...

optimization - Optimizing css compiler -

i'd real optimization/compilation of css styles (not minification), in similar vein google closure compiler works javascript. for example, if entire stylesheet just: div#hello { color: #fff; background-color: #000; } div#hello p { color: #fff; margin-top: 10px; margin-bottom: 10px; margin-right: 10px; margin-left: 10px; font-family: helvetica, arial, sans-serif; } { color: #fff; margin-top: 10px; margin-bottom: 10px; margin-right: 10px; margin-left: 10px; font-family: helvetica, arial, sans-serif; } that can optimized down (i'm keeping whitespace here readability, have go too): #hello { color: #fff; background: #000 } #hello p, { color: #fff; margin: 10px; font-family: helvetica, arial, sans-serif } this seems looking for: http://iceyboard.no-ip.org/projects/css_compressor heres comparison of few others: http://www.bloggingpro.com/archives/2006/08/17/css-optimization/ ...

iphone - How to put UIGestureRecognizer in front if several views with gestures overlaps -

i have 2 views have tap gesture recognizers attached. first view accepts touches while second 1 hidden. after time, i'm making second (with attached gesture) view visible. problem that, still, touches of first view handled, despite second view in front :( sorry, forgot put "user interaction enabled". i'm drawing views , other stuff interface builder, therefore have missed :)

iphone - Do I need an Mac to post an app to the app store? -

do need mac computer post app app store? can post app using pc? you have use application loader, or organizer in xcode, both mac os applications. so yes, need mac upload binary.

visual studio 2010 - Intellisense in vs2010 with c++ -

i can't intellisense work. if start empty project , add 1 file include iostream , int main() function prints char cout (basically basic program), if try intellisense show (say typing cout. ) get intellisense: 'no additional information available' (see 'troubleshooting intellisense in c++ projects' further help.) hours of googling have yielded couple of articles on @ microsoft sites suggest bunch of things try or reasons why wouldn't work. have tried , eliminated them all, except 1 mentions stdafx.h has in path. what file? how know if in path if don't know is? have intellisense? should add file project work? thank you. i got solved microsoft team @ http://connect.microsoft.com/visualstudio/feedback/details/652838/intellisense-not-creating-ipch-folder it had windows update installed on winxp. solution install vs2010_sp1 , update on it.

css - CSS3 background-size property causing extreme performance issues in ff5 -

i've been putting page today , thought i'd implement striped background using css3. seemed fine in browsers except firefox. (i'm using 5.01 checked in 5.0 too) the code simple enough: body { background-color: #ebeced; background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,transparent 75%, transparent); background-size:6px 6px; } works great in chrome , opera practically crashes ff. obviously know can achieve effect repeating background image wondering if else had similar issue or teething problems css3 again ;) testing in jsfiddle produces same issues, didn't make fiddle didn't want responsible crashing you! oh , it's not slow pc issue, i'm on i7, 8gb ram, blah blah. i believe problem background-size property if increase or remove entirely issue resolved, it's not suitable me unless can use background...

svn - CDN Versioning at File Level -

i looking @ amazon.com , noticed static files versioned @ file level (example: s9-multipack-min. v171170235 .js ) instead of directory level. can please provide practices on how manage different versions @ file level , best place store latest version each file? use svn , our static files hosted on amazon s3 cdn you don't need store multiple files @ all. set rewrite module rewrites every /js/filename.vnnn.js /js/filename.js . as can see url http://z-ecx.images-amazon.com/images/g/01/browser-scripts/us-site-wide-1.2.6/site-wide-11734552808.js._v169197_.js points same content http://z-ecx.images-amazon.com/images/g/01/browser-scripts/us-site-wide-1.2.6/site-wide-11734552808.js._v169174097_.js does. note on last changed part

android - Error when retrieving image url? -

i keep getting error @ @override protected void doinbackground(void... arg0) { ((gallery) findviewbyid(r.id.gallery)) .setadapter(new imageadapter(this)); return null; } } i syntax error @ (new imageadapter(this)); i dont know what. im guessing has context?? but here full code im using. @override public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.main); mygames = (button)findviewbyid(r.id.mygames); newrelease = (button)findviewbyid(r.id.newrelease); gamenews = (button)findviewbyid(r.id.news); gamenews.setonclicklistener(new view.onclicklistener() { @override public void onclick(view v) { intent = new intent(mainmenu.this, gamenews.class); startactivity(i); } }); mytask mytask = new mytask(); mytask.execut...

c++ - How do I safely share a variable with a thread that is in a different compilation unit? -

in structure of program i've divided "where gets called from" , "what gets done" separate source files. matter of practicality, allows me compile program standalone or include in dll. code below not actual code simplified example makes same point. there 3 interacting components here: kernel mode program loads dll, dll , source files , utility program it's source, maintained separately. in dll form, program loaded thread. according kernel mode application vendor's documentation, loose ability call win32 api functions after initialization of kernel program load thread active thread (as opposed using create_suspended since can't wake it). i have monitor flag variable knows when useful through inelegant functional: while ( pausethreadflag ) sleep(1000); the 1 second lag acceptable (the overall process lengthy, , infrequently called) , doesn't seem impact system. in thread source file declare variable as volatile bool pausethreadf...

mysql - More Efficient Foreign Key Relationship or Large Table (thinking through the problem)? -

this question may extremely naive, in case, apologize. i'm trying learn more database administration , i'm uncertain choice preferable in case. have model split 2 tables. contains contact info , profile info companies. class company(models.model): name=models.charfield(max_length=100) street_address=models.charfield(max_length=100, blank=true) city=models.charfield(max_length=100, blank=true) state=models.charfield(max_length=100, blank=true) zipcode=models.integerfield(max_length=5, blank=true) input_level=models.charfield(choices=((0,'less',),(1,'more')) expense_min=models.integerfield(blank=true) expense_max=models.integerfield(blank=true) health_value=models.integerfield(choices=[(i+1,i+1) in range(5)], blank=true) group_size=models.integerfield(blank=true) comment=models.textfield(max_length=500, blank=true) created=models.datefield(auto_now...

c# - Old format or invalid type library. (Exception from HRESULT: 0x80028018 (TYPE_E_INVDATAREAD)) -

this question has answer here: microsoft.office.interop.excel doesn't work on 64 bit 1 answer the error appeared when exporting data in datagrid view excel sheet: error (old format or invalid type library. (exception hresult: 0x80028018 (type_e_invdataread))) on line: microsoft.office.interop.excel._workbook workbook = app.workbooks.add(type.missing); how fix problem? my full code: private void button1_click(object sender, eventargs e) { system.globalization.cultureinfo oldci = system.threading.thread.currentthread.currentculture; system.threading.thread.currentthread.currentculture = new system.globalization.cultureinfo("en-us"); // creating excel application microsoft.office.interop.excel._application app = new microsoft.office.interop.excel.application(); system.threading.thread.currentthread.currentculture = oldc...

C++ - What is this doing if the constructor is private? -

in code below, why compiler not complain mclass2? class cmyclass{ private: cmyclass(){} }; void testmethod(){ cmyclass mclass1; //fails. cmyclass mclass2(); //works. } because you've declared function mclass2 of 0 arguments returns cmyclass . that's valid option since there be, say, static cmyclass instance function has access to. note cmyclass still has public copy constructor. (to convince yourself, compile module assembler , observe commenting out line cmyclass mclass2(); produces same output.)

c# - Silder for windows phone 7 -

while using slider windows phone 7 app facing issue make slider in center position. trying balance slider 1 can slide left or right position , center default. <style x:key="sliderstyle1" targettype="slider"> <setter property="borderthickness" value="0"/> <setter property="borderbrush" value="transparent"/> <setter property="maximum" value="10"/> <setter property="minimum" value="0"/> <setter property="value" value="0"/> <setter property="background" value="{staticresource phonecontrastbackgroundbrush}"/> <setter property="foreground" value="{staticresource phoneaccentbrush}"/> <setter property="template"> <setter.value> <controltemplate targettype="slider...

javascript - Multiple event listeners on HTML5 canvas -

i've been trying create game in strictly html5 , javascript , have run issue can't seem wrap head around. in attempt try , avoid using third party classes/libraries, i'm creating own class handling custom buttons within html5 canvas element. got them work , had re-write of script after realizing event listeners kept adding on top of each other every time canvas redrew (i using anonymous function in mousedown event listener before, have since switched different method). first of all, event listeners use function holds reference whichever button i'm trying use. prototype's mousedownfunc called, checks boundary of button instance's dimensions, , calls referenced onpress() (which overridden method every button uses, each button has custom set of instructions when pressed). so, if you're still following along (i know, it's bit confusing without seeing full script), problem because event listeners using same function, they're overwriting previous ...

xml - nuget 'packages' element is not declared warning -

not showstopper when using nuget in project, creates packages.config file shape <?xml version="1.0" encoding="utf-8"?> <packages> ... packages </packages> this gives warning in vs the 'packages' element not declared. the origin of problem got xml declaration guess. also think default definition package shouldn't throw warnings. does know should change don't warning? (ie if can see when file open, shows warning ca rules on.) you can make simple xsd schema 'packages.config' rid of warning. this, create file named "packages.xsd": <?xml version="1.0" encoding="utf-8" ?> <xs:schema xmlns:xs="http://www.w3.org/2001/xmlschema" elementformdefault="qualified" targetnamespace="urn:packages" xmlns="urn:packages"> <xs:element name="packages"> <xs:complextype> <xs:sequence> ...

java - JPA OneToOne relationship -

i building project using play framework , having trouble getting head around jpa @onetoone relationships . i have 2 classes: user object @entity @table( name="users" ) public class users extends model { @onetoone( mappedby="userid", fetch=fetchtype.lazy, cascade = cascadetype.all ) @foreignkey( name="userid", inversename="userid" ) usersettings usersettings; public userid; public username; } usersettings @entity @table( name="user_settings" ) public class usersettings extends model { @onetoone( cascade = cascadetype.all,targetentity=user.class ) public string userid; public string xml; public usersettings( string userid ){ this.userid = userid; } } the idea trying set userid field within user foreign key within usersettings . have tried few different ways achieve , code throws error. common error recveive is: referenced property not (one|many)toone . however, w...

android - GridView with images from website and textView? -

in android app /i'm trying sometrhing http://i56.tinypic.com/2ivno8l.jpg . found examples how make gridview images or textview here : http://www.bogotobogo.com/android/android6listviewspinnergridviewgalleryb.html#gridview don't know how images , textview too. can me? thanks.. i tried : package com.mygridview; import java.io.inputstream; import java.net.uri; import java.net.url; import android.r.integer; import android.app.activity; import android.content.context; import android.graphics.color; import android.graphics.drawable.drawable; import android.view.layoutinflater; import android.view.view; import android.view.viewgroup; import android.widget.baseadapter; import android.widget.button; import android.widget.checkbox; import android.widget.gridview; import android.widget.imageview; import android.widget.listadapter; import android.widget.textview; public class imageadapter1 extends baseadapter { private context mcontext; private layoutinflater inflat...

sql server - Transactions in stored procedures -

i have been asked interesting question on implementing transactions in stored procedure. , don't have idea on this. suppose have 10 statements in stored procedure. @ least 5 commit rest of other fail , have within single transaction. idea how implement this?. please advise check : save transaction (transact-sql) : http://msdn.microsoft.com/en-us/library/ms188378.aspx in how achieve functionality

What's the benefit of case-sensitivity in a program language? -

possible duplicate: is there advantage of being case-sensitive programming language? my first programming experiences basic family (msx basix, q-basic, vb). these not case-sensitive. now, might because of these first experiences, i've never grasped benefit of language being case sensitive. on contrary, think source of unneeded overhead , bugs, , still annoys me when use e.g. java or c. now, read on clojure (a lisp-dialect) , noticed - surprise - 1 of differences lisp case-sensitivity . so: benefit (to programmer) of having case-sensitive language? the things can think of are: double number of symbols visual feedback , easier reading complex variables using techniques camelcase, e.g. hopcount however, first argument doesn't hold because of being major source bugs (bad practice use hopcount , hopcount in 1 method). the second argument doesn't hold either, decent ide can provide in other way. example vba ide, has approach: langauge case-insensit...

iOS: inconsistent behaviour with UIButton's UIControlEventTouchUpOutside event -

i want dual functionality uibutton. when user touches down on button, want trigger behaviour a but if user drags finger outside of button before releasing it, trigger behaviour b upon release. so, [presetbutton addtarget: self action: @selector( presetbuttonhit: ) forcontrolevents: uicontroleventtouchdown ]; [presetbutton addtarget: self action: @selector( presetbuttonswipe: ) forcontrolevents: uicontroleventtouchupoutside ]; as test case log 'a' or 'b' respective action methods. a gets hit correctly. however, b sporadic. can methodically finger down, drag outside of button, wait second , release. , wont' fire. alternatively if quick flick, more fire. still 50-50. all have uiview background image , 6 buttons. what can track 1 down? i rather bottom of mess around manually tracking touches , down; if have that, there clean way? can...

sql server 2008 - SQL - need to determine implicit end dates for supplied begin dates -

consider following: create table members ( memberid char(10) , groupid char(10) , joindate datetime ) insert members values ('1', 'a', 2010-01-01) insert members values ('1', 'c', 2010-09-05) insert members values ('1', 'b', 2010-04-15) insert members values ('1', 'b', 2010-10-10) insert members values ('1', 'a', 2010-06-01) insert members values ('1', 'd', 2001-11-30) what best way select table, determining implied "leavedate", producing following data set: memberid groupid joindate leavedate 1 2010-01-01 2010-04-14 1 b 2010-04-15 2010-05-31 1 2010-06-01 2010-09-04 1 c 2010-09-05 2010-10-09 1 b 2010-10-10 2010-11-29 1 d 2010-11-30 null as can see, member assumed have no lapse in membership. [leavedate] each member status period assumed day prior next chronological [join...

php - Ajax jQuery returning successfully after 10 seconds when it shouldn't -

i've got jquery ajax call goes of server backend.php script , told sleep 13 seconds (or more) before responding simple test message. i'm seeing ajax success function triggering (with 200 response observed in firebug) after 10 seconds no actual response server. if set response delay less 10 seconds response message perfectly. is you've seen before? there default php timeout thing going on? ajaxcall = $.ajax({ type: "get", url: "backend.php", async: true, cache: false, datatype: 'json', timeout: 30000, /* timeout in ms. default 30000 (30 seconds) */ data: "timestamp=" + timestamp, success: function(data) { if (data !== null) { $('#texthistory').append(data.message); if (data.timestamp != 0) { timestamp = data.timestamp; } } settimeout( waitformsg, /* request next message */ 5000 /*...

html - IE7 element can't be clicked -

i've narrowed defect down sample, numeral "1" unclickable in ie7 (only): <!doctype html public "-//w3c//dtd xhtml 1.0 strict//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head> <title>click 1</title> <style type="text/css"> div { position: absolute; overflow: auto; } table { position: relative; } span { position: fixed; top: 100px; } </style> </head><body> <div> <table> <tr> <span onclick='alert(1)'>1</span>2 </tr> </table> </div> </body></html> can identify root cause, understand options workarounds? i'm using css represented here build sortable fixed head scrolling table. in original code, span lives in th, fixing headings above scrolli...