Posts

Showing posts from March, 2012

How to pass a struct from C++ to C? -

updated: main.h typedef struct { float x; float y; float z; }vec3; const int sizeofgrid = 20000; vec3 *grid[sizeofgrid];//assume initialized main.cpp #include "main.h" extern "c" void cudatranslate(vec3 *x); void display() { cudatranslate(grid); } linecuda.cu #include <stdio.h> #include <assert.h> #include <cuda.h> #include "main.h" extern "c" void cudatranslate(vec3 *x) { } getting: main.obj : error lnk2005: "struct vec3 * * grid" (?grid@@3papauvec3@@a) defined in linecuda.obj fatal error lnk1169: 1 or more multiply defined symbols found move grid main.cpp. pass linecuda.cu. problem solved. updated: main.h typedef struct { float x; float y; float z; }vec3; const int sizeofgrid = 20000; main.cpp #include "main.h" vec3 *grid[sizeofgrid];//assume initialized extern "c" void cudatranslate(vec3 *x); void display() { cudatranslate(grid)...

.net - regasm just doesn't work -

for every example of registering .net com objects in web, see tool "regasm" doing job. so!!! never worked me! tired of trying overcome it! solution regsvr32, requires function define in c++. please tell me why wouldn't work!!! considering doesn't work on 4 of computers, plus 3 virtual machines, running windows 7 down 2000, can show me working example of regasm call? think idiot. registering [comvisible] .net assemblies regsvr32.exe not possible. doesn't have required dllregisterserver entrypoint regsvr32 needs. have make work regasm.exe or setup project. latter necessary when deploy server machine. there few failure modes. other than: forgetting use /codebase option. required if don't deploy assembly gac, should not on dev machine. using wrong version of regasm.exe. there 2 on 64-bit machine, framework64 directory contains 1 have use if client code 64-bit. running command prompt not elevated. regasm.exe writes hklm hive of regis...

Mysql count and sum from two different tables -

i have problem querys in php , mysql: have 2 different tables 1 field in common: table 1 id | hits | num_g | cats | usr_id |active 1 | 10 | 11 | 1 | 53 | 1 2 | 13 | 16 | 3 | 53 | 1 1 | 10 | 22 | 1 | 22 | 1 1 | 10 | 21 | 3 | 22 | 1 1 | 2 | 6 | 2 | 11 | 1 1 | 11 | 1 | 1 | 11 | 1 table 2 id | usr_id | points 1 | 53 | 300 now use statement sum total table 1 every id count + 1 too select usr_id, count( id ) + sum( num_g + hits ) tot_h table1 usr_id!='0' group usr_id asc limit 0 , 15 and total each usr_id usr_id| tot_h | 53 | 50 22 | 63 11 | 20 until here ok, have second table points (table2) try this: select usr_id, count( id ) + sum( num_g + hits ) + (select points table2 usr_id != '0' ) tot_h table1 usr_id != '0' group usr_id asc limit 0 , 15 but seems sum 300 points users: usr_id| tot_h | 53 | 350 22 | 363 11 ...

php - margins in TCPDF when using writeHTML() -

i trying create pdf using tcpdf library. have problem table written method writehtml() though. when table has many rows, rest of moved next page. proper behavior, need to have top margin on new page. tcpdf making default margin, small in case. ive tried use setmargins(), setxy() nothing seems work. looks general margins of pdf has no influcence on content created writehtml(). had similar problem? tcpdf::setmargins($left,$top,$right = -1,$keepmargins = false) and describes parameters as: parameters: $left (float) left margin. $top (float) top margin. $right (float) right margin. default value left one. $keepmargins (boolean) if true overwrites default page margins so, right margin -1 used indicate no right margin supplied , use same left margin. using -50 not valid margin. try instead: $pdf->setmargins(10, 10, 10, true);

JQuery issue - http://jqueryui.com/latest/themes/base/ui.all.css not working -

i have never used j query....was wondering link .. http://jqueryui.com/latest/themes/base/ui.all.css link to? 1 of websites have taken on has stopped working. when take source out @ top of page works, when put in stops working again? for have taken out, assume jquery server has gone down or something. source , ok leave out? thanks jquery disabled hotlinking files hosted on server. shouldn't linking directly that. instead use cdns offered google or microsoft. use link css : http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/base/jquery-ui.css and others available http://code.google.com/apis/libraries/devguide.html#jqueryui this question has answers on how other themes downloading jquery ui css google's cdn

javascript - How to parse Craigslist content through RSS -

craigslist don't provide apis data access. i write small client parse data rss , reflow it. i without setting server. client side tools/javascript available out there can allows quick , easy parsing of rss feeds? you may want check out using javascript display rss links js clients. also yahoo pipes has interesting ways interact rss feeds

maven - How to implement a roundtrip from XML Schema using Java with a Database -

what best way of implementing roundtrip receiving xml files , persisting data database using java. have: 1. xml schema & xml data files send me - xsd complex , belongs external party, can not change it 2. created java classes - jaxb generates on 150 classes, unfortunately schema can change - have used maven pom automate process 3. unmarshall xml data files java objects (with jaxb annotation) - data displayed user manipulated 4. persist java objects rdbms (oracle / mysql) - seems jdo suitable solution 5. exporting data - data can exported again xml or excel (for example) i can not find suitable way add jdo metadata or annotations java source code (generated during jaxb process) ensure can persist java classes. working following technologies: - java, maven, jaxb, jdo & jdbc i think datanucleus suited might have change datastores (rdbms / xml / excel) between environments different export destinations. other 2 technologies might need consider is: - spring , ...

iphone - How to open an existing GitHub project with Xcode? -

i new xcode , want learn iphone development. i found 1 demo project on github , want know how open existing project? download project via git / or zip open folder double click on .xcodeproj file if on top left, see "base sdk missing" double click on first item in three go tag build select sdk base sdk close opened popup click on build run if have error, should see red icon on right bottom

Java Servlet framework that does things like rencoding images to preferred format etc -

are there frameworks/libraries provide servlets/filters etc handle reencoding on fly of images. interpret accept headers , output file, reencoding new format if necessary checking actual format of original image file. provide low , high quality version of image. re encode image new dimensions. width , height parameters might query string parameters. i create versions of file in formats, @ upload time seems overkill. rather lazily create rencoded file , stick in cache if gets served again etc. you donot need framework. folowing: upload image. see apache commons fileupload process uploaded file using of java advance imaging java wrapper imagemagick when processed, provide link download.

eclipse - How to handle StoreEvent in editable grid ?? GXT -

i have created editable grid 3 columns out of 5 editable. need retrieve number entered in these editable cells , add them display in other cells of same grid. ive added storelistener liststore contains preloaded grid data. , overriden storeupdate(storeevent se) method. im not getting how retrieve updated data using update event.... pls me guys....... code this package org.openxdata.analyzer.client; import java.util.arraylist; import com.extjs.gxt.ui.client.event.componentevent; import com.extjs.gxt.ui.client.event.events; import com.extjs.gxt.ui.client.event.gridevent; import com.extjs.gxt.ui.client.event.listener; import com.extjs.gxt.ui.client.widget.grid.columnconfig; import com.google.gwt.user.client.element; import com.extjs.gxt.ui.client.widget.grid.columnmodel; import com.extjs.gxt.ui.client.style.horizontalalignment; import java.util.list; import com.extjs.gxt.ui.client.store.liststore; import com.extjs.gxt.ui.client.store.storeevent; import com.extjs.gxt.ui.clie...

php - can you make my life easier working this way? (large code base and patching issue) -

so working on large code base, more 3000 files, more 1 million lines of code , more 500+ tables. though not issue. issue here is, when new feature required, work on locally on machine , when time comes update/patch our live production: i ssh our prod server i navigate directory, , open file patch i copy , paste??? omg anyway, here take, please suggest if guys have alternatives or more comfortable of doing this first, migrate git. (we're in svn) everytime make release, branch out in our git repo, , clone new copy in our prod server (right branch in svn, , svn export, copy target dir when patching server new feature, can go target repo/release, , git pull?? or should go git patch? this how envision more simpler life. would guys come easier this? i think on right track. did similar. i have 2 branches. master -> holds latest in dev production -> holds latest in production when need make change prod, branch production branch, make changes , m...

c# - ORM Repository Pattern -

this more of question looking opinions. working on project uses both nhibernate , entityframework (this design, wanted flexibility). so, went ahead , started working on repository pattern, came across slight dilemma. basically, wanted know guys think following areas: should repository singleton? - allow me keep sessions opened, @ same time, think it's going keep connections opened database. nhibernate, orm can gurantee objet same within same session. ideal easy coding, there definatly ways overcome using keys , overriding gethashcode , equals methods. if it's not singleton (or if is), should closing connections used? nhibernate, means closing session each time repository "disposed", after every use. have implemented repository pattern either nhibernate or ef 4.0 , found useful ideas? don't code creation of singletons (ie singleton pattern itself), use ioc framework structuremap handle lifecycle management of objects. this can't ans...

java - will the Jvm load a class file twice? -

suppose have file called a.java, when compile it makes a.class assume have opened 2 command prompts , @ time i'm hitting command java in both commandprompt. jvm load class twice? there no "the" jvm: starting 2 separate processes own heap, classloader, etc. class load twice, once in each jvm, separate other.

WCF Data Service Error Handling -

i have created wcf data service service operation. i want generate kind of business exception. try generate webfaultexception don't see how catch error @ client side when error throwing service operation. here service operation simulate exception: [webget] public void generateexception() { throw new dataserviceexception( 403, "custom message" ); } here client: webclient wc = new webclient(); wc.downloadstring( new uri( "http://localhost:27820/wcfdataservice1.svc/generateexception" ) ); downloadstring throwing exception, it's internal server error , can't see custom message . any idea ? many thanks. it best throw dataserviceexception . wcf data service runtime knows how map properties http response , wrap in targetinvocationexception . you can unpack client consumer overriding handleexception in dataservice so: /// <summary> /// unpack exceptions consumer /// </summary> //...

java - Bulkloader import list of integers -

how should configure import_transform , export_transform im configuration yaml file able export , import multiple integer property? i wrote collection of helpers bulk loading data: http://code.google.com/p/bulkloader-gdata-connector/source/browse/bulk_helper.py i think list_to_json(int) , json_to_list(int) need. be aware choke on entities have don't have list defined yet.

iphone - rounded corner images for only certain corners with calayer's cornerRadius -

i'm trying round top left corner of image can't fit appropriately group styled tableviewcell. can 4 corners rounded below code. know simple way 1 of corners rounded? cell.imageview.layer.maskstobounds = yes; cell.imageview.layer.cornerradius = 5.0; thanks. the practical way draw content rounded corners. can round arbitrary corners using mask property layer has corners want rounded drawn hand, that's slower. if can possibly take on drawing yourself, should so.

vb.net - Threading.Timer application is consuming more than 50% of CPU, why? -

i have written below console application in vb.net. my intention write application triggers every 1 minute , perform task. but when run application consuming 50% of cpu. how can make consume less cpu? am calling timer in right place (in main method)? later make windows service same task , install on server. how can make application consume less cpu? module module1 dim inputpath string = "c:\input" dim outputpath string = "c:\output" dim folder directory sub main() dim tmr timer = new timer(new timercallback(addressof upload), nothing, 1000, 60000) while not tmr nothing end while end sub public sub upload(byval o object) dim sr streamreader dim constr1 string = "data source=tns name;user id=xx; password=xx;" 'look pending requests in rqst_tbl dim cnn1 new oracleconnection(constr1) dim datreader oracledatareader dim cmd1 new oraclecommand...

java - excluding classes from hot-reloading in Play Framework -

i'm experimenting play framework , experience far! hot-reloading huge time saver. however, want able exclude class-instances hot-reloading on code-change. (for example have configured repositories need pretty long time initialize , i'm sure code of these repositories won't change) . how indicate classes / packages disabled hot-reloading? thanks, geert-jan one way have code separate project in ide, , create jar file. place jar file in play lib folder when have compiled , updated necessary code. reasonably straight forward ant script compile set of classes, , drop lib folder. there other ways approach this, far know, involve changing, or extending play framework, , think overkill need.

JAXB Annotation When XML Root Node contains PCData -

i'm trying consume data 3rd party web service. unfortunately, web service returning data in i'd unusual xml format. here sample of data receiving service: <?xml version="1.0" encoding="utf-8"?> <string xmlns="http://mynamespace">(-76.4844131, 39.1031567, 0.0000000) (-76.4871168, 39.1031567, 0.0000000) (-76.4875889, 39.1042890, 0.0000000) (-76.4905500, 39.1052881, 0.0000000) </string> instead of having root node contains list of waypoint elements (lat, lon, elevation), root node's content large string value. while parse string, hoping use jaxb (since i'm using jersey service calls) convert returned xml java poco. ideally, nice convert large string body of root node poco class list of waypoints, imagine require custom xml deserialization outside of jaxb. but i'd happy if use jaxb: @xmlrootelement(name="string", namespace="http://mynamespace") ...

Website is a mirror. How to detect this programmatically in php? -

for example have 4g-market.ru mirror peterhost.ru. how can detect programmatically? this function detects single-bounce redirect ( site1 -> site2 , not site1 -> site3 -> site2 ): function isredirect($url) { $headers = get_headers($url, true); $status = $headers[0]; list($protocol, $code, $message) = split(' ', $status, 3); return ($code >= 300 && $code < 400); }

resources - In what assembly are the WPF UI BAML files? -

i've seen them before, can't seem find them. the .baml files wpf controls found under embedded resource called ???.g.resources ??? name of assembly. i've looked through resources of following assemblies: presentationui presentationcore presentationframework windowsbase but aren't in there. have swore were. does have clue? have tried looking in presentationframework.aero.dll, presentationframework.classic.dll, presentationframework.royal.dll or presentationframework.luna.dll? can use dedicated baml viewer.

Where to render comments controller in Rails on model validations failure? -

i have simple video model in rails app has_many comments. displaying these comments on video's show page. when submit form works fine; however, if there validation errors on comment model, system blows up. if there validation errors on comment model, render video's show page again, validation error styling showing. how do inside of create action? lot! class commentscontroller < applicationcontroller def create @video = video.find(params[:video_id]) @comment = @video.comments.build(params[:comment]) if @comment.save redirect_to @video, :notice => 'thanks posting comments.' else render # what? render in order show video page's show action validation error styling showing? please help! end end end to you'll have render template: class commentscontroller < applicationcontroller def create @video = video.find(params[:video_id]) @comment = @video.comments.build(params[:comment]) if @comment.s...

Php Jquery Javascript preloading images -

simple question. if loop through php , create several images set display:none , use jquery access visibility, increase page load time , such if images displayed on page? if so, there simple way load images dynamically, if user selects , option , image gallery appears page not refresh (ajax?) thanks! nope. take longer since have set display:none , show them jquery if showed them downloaded. in second part of question think you're referring lazy loading, images loaded on demand user, instead of front.

iphone - Date Picker format problems -

how solve problem got 2011-07-21 15:55:01 +0000 , timing off 4 hr, how remove +0000? , want format eg. friday 12 june 2011 1:30 pm -(ibaction)addbutton:(id)sender { nsdate *choice = [datepick date]; nsstring *words = [[nsstring alloc]initwithformat:@"%@", choice]; uialertview *alert = [[uialertview alloc]initwithtitle:@"date chosen message:words delegate:nil cancelbuttontitle:@"ok" otherbuttontitles:nil]; [alert show]; [alert release]; [words release]; label.text = words; textfield.text = words; } - (void)viewdidload { nsdate *now = [[nsdate alloc] init]; [datepick setdate:now animated:yes]; [now release]; datepick.minimumdate = [nsdate date]; [super viewdidload]; } nsdateformatter *formatter = [[nsdateformatte...

sql - Python SQLite3 - Table Output Format Question & Handling IntegrityError -

i have table created using python + sqlite3 c.execute('create table if not exists reg(col1 text primary key, col2 text)') i wrote record using val1 , val2 variables have string values (urls specific) c.execute('insert reg values(?,?)', (val1, val2)) now when print table using code c.execute('select * reg') rows = c.fetchall() print rows it shows output as [(u'http://www.someurl.com', u'http://www.someurl.com/somedir/')] now, u in front of column values mean? edit: next doubt in continuation question updating thread instead of creating new one. have updated title too. hope that's ok. from above code, clear col1 primary key. so, when tried purposefully insert same records second time throws exception integrityerror: column col1 not unique in order handle this, modified code this... try: c.execute('insert reg values(?,?)', (val1, val2)) except sqlite3.integrityerror: print val1+ " in database...

regex - Why can't I match a substring which may appear 0 or 1 time using /(subpattern)?/ -

the original string this: checksession ok:6178 avg:479 avgnet:480 maxtime:18081 fail1:19 the last part " fail1:19 " may appear 0 or 1 time. , tried match number after " fail1: ", 19, using this: ($reg_suc, $reg_fail) = ($1, $2) if $line =~ /^checksession\s+ok:(\d+).*(fail1:(\d+))?/; it doesn't work. $2 variable empty if " fail1:19 " exist. if delete "?", can match if " fail1:19 " part exists. $2 variable " fail1:19 ". if " fail1:19 " part doesn't exist, $1 , $2 neither match. incorrect. how can rewrite pattern capture 2 number correctly? means when " fail1:19 " part exist, 2 numbers recorded, , when doesn't exit, number after " ok: " recorded. first, number in fail field end in $3 , variables filled according opening parentheses. second, codaddict shows, .* construct in re hungry, eat fail... part. third, can avoid numbered variables this: my $line...

c# - Cannot implicitly convert type 'object' to 'System.DateTime'. An explicit conversion exists (are you missing a cast?) -

i developing first programm , facing problems please me complete have code in c#: sqldatareader dr = null; dr = cmd.executereader(); if (dr.read()) { client_id = dr["clientid"].tostring(); surname = dr["surname"].tostring(); othername = dr["othername"].tostring(); gender = dr["gender"].tostring(); date_ofbirth = dr["dateofbirth"]; nationality = dr["nationality"].tostring(); //age = dr["age"]; residential_address = dr["residentialaddress"].tostring(); postal_address = dr["postaladdress"].tostring(); contact_number = dr["telephonenumber"].tostring(); marital_status = dr["maritalstatus"].tostring(); spouse_name = dr["spousename"].tostring(); email = dr["email"].tostring(); occupation = dr["occupation"].tostring(); typeof_id = dr["typeofid"].tostring(); id_number = dr["idnumber"].tostring(); id_expirydate = dr["idexpiryd...

javascript - How can I write HTML code only if JS is enabled? -

possible duplicate: is there html opposite noscript <noscript> makes easy have html code fallback if js disabled... if want have html code shown when scripts enabled ? can have js block dynamically writes html, there nicer way using regular html? let's have link: <a href="test.com">this should appear if javascript enabed</a> use html element style="display:none" , set display:block javascript. sample code (ugly hell, give idea) <div id="hidethisfromnonjs" style="display:none"> bla bla bla </div> <script type="text/javascript"> document.getelementbyid('hidethisfromnonjs').style.display='block'; </script>

robots.txt - How do I segment and filter out robot traffic in Google Analytics? -

google analytics automatically filters out bot traffic (e.g. googlebot , bing's bot), smart bots execute javascript show normal users in ga reports. what's best way filter them out? i spent time researching question , wrote detailed answer step-by-step instructions , screenshots. hope others find helpful! http://blog.yottaa.com/2011/03/google-analytics-how-to-segment-and-filter-out-robot-traffic/

java - jdbc:embedded-database throwing HsqlException -

i trying create test database in spring application using tag create it. however, when try access database following exception: org.hsqldb.hsqlexception: user lacks privilege or object not found: product i have declared follows: <jdbc:embedded-database id="datasource"> <jdbc:script location="classpath:schema.sql"/> <jdbc:script location="classpath:test-data.sql"/> </jdbc:embedded-database> <bean id="sessionfactory" class="org.springframework.orm.hibernate3.annotation.annotationsessionfactorybean"> <property name="datasource" ref="datasource"/> <property name="packagestoscan" value="com.blah.domain" /> </bean> and here sql files: create schema pr7; create table pr7.package_type ( id bigint primary key , description varchar(255), type varchar(255), version int ); create table pr7.product ( id bigint primary ...

c# - Press enter to click a LinkLabel -

if have linklabel on .net winform, there anyway can, when link label focused , press of enter key cause said linklabel click? unfortunately doesn't seem expose keydown event. edit the simplest solution use previewkeydown , if happens google here. you create own link label class extends linklabel , overrides onkeyup or onkeydown event capture enter keypress. that save reproducing code every link label add form. e.g. public class linklabelex : linklabel { protected override void onkeyup(keyeventargs e) { if (e.keycode == keys.enter) { e.suppresskeypress = true; e.handled = true; onlinkclicked(new linklabellinkclickedeventargs(new link(0, this.text.length))); } else { base.onkeyup(e); } } }

svn - svnadmin load checksum error -

i have svn dump manually modified code in it, i'm tryng load dump repository. problem have checksum failures changed revisions. there way recalculate md5 checksums entire dump file, or @ least force svnadmin load it? in cases don't need md5 checksum. having problem , removing lines worked. sed -i '/text-copy-source-md5/d' repo.dump

excel - Using variables instead of column names or numbers -

i'm trying draw chart in excel , here code activesheet.shapes.addchart.select activechart.setsourcedata source:=range("'resulthl'!$e:$e") activechart.charttype = xlxyscattersmoothnomarkers activechart.seriescollection.newseries activechart.seriescollection(2).values = "='resulthl'!$cb$1:$cb$2520" this working fine i'd t know whether can assign column names or numbers variables , use in above code. in line 2--> activechart.setsourcedata source:=range("'resulthl'!$e:$e") need assign e variable , use also in line 5, need use integer variable instead of 2520 how do that? i find it's easier use cells and/or resize properties bogged down in messy string concatenation business. example: dim rngapples range dim shtresults worksheet dim lngmaxrow long shtresults = worksheets("sheet1") ' define range want plot lngmaxrow = 2520 rngapples = shtresults.range("cb1").resize(lng...

javascript - offsetTop vs. jQuery.offset().top -

i have read offsetleft , offsettop not work in browsers. jquery.offset() supposed provide abstraction provide correct value xbrowser. what trying coordinates of element clicked relative top-left of element. problem jquery.offset().top giving me decimal value in ffx 3.6 (in ie , chrome, 2 values match). http://jsfiddle.net/htcpp/ exhibits issue. if click bottom image, jquery.offset().top returns 327.5, offsettop returns 328. i think offset() returning correct value , should use because work across browsers. however, people cannot click decimals of pixels. proper way determine true offset math.round() offset jquery returning? should use offsettop instead, or other method entirely? i think right saying people cannot click half pixels, personally, use rounded jquery offset...

HTML5 Video and HTML5 Boilerplate -

i'm trying implement videojs in html5 boilerplate. i've tried pasting embed code suggested videojs results don't work. when page loads "poster" image appears loading wheel never stops , video never plays. i've tried including in header , footer video started, hasn't worked: <script> window.onload = function() { var pelement = document.getelementbyid("#vid"); pelement.play(); }; </script> i've included video.js ref links in header: <!-- link video js library --> <script src="js/mylibs/video.js" type="text/javascript" charset="utf-8"></script> <link rel="stylesheet" href="css/video-js.css" type="text/css" media="screen" title="video js" charset="utf-8"> <script type="text/javascript" charset="utf-8"> // add videojs video tags on page when dom ready videojs.setupallwhen...

dbunit - Setting the object type of a Maven property -

how can set object type of property in pom file? i'm working dbunit db exports , i'm trying pass in table parameter <configuration> <format>xml</format> <dest>target/dbunit/export.xml</dest> <tables>activity_type</tables> </configuration> the tables attribute supposed have type of 'table[]' , running maven get [error] failed execute goal org.codehaus.mojo:dbunit-maven-plugin:1.0-beta-3: export (default) on project ccsewms-db-export: unable parse configuration of mojo org.codehaus.mojo:dbunit-maven-plugin:1.0-beta-3:export parameter tables: cannot assign configuration entry 'tables' value 'activity_type' of type java.lang.string property of type org.dbunit.ant.table[] -> [help 1] so how can convert strings table[]? the tables element populated specifying several of other properties: <configuration> <format>xml</format...

Marshaling JSON and Generics in Java with Spring MVC -

i'm trying marshall json object wrapper class contains generic object, additional information object's signature. public class signable<t> { private t object; private string signature; public class signable() { generatesignature(); } /* getters , setters */ } the wrapper class works fine long construct object created, , able produce desired json @requestmapping(value="/test/json/return",method=requestmethod.get) public @responsebody signable<cart> gettest() { cart cart = new cart(); // populate cart orderitems ... signable<cart> sign = new signable<cart>(); sign.setobject(cart); return sign; } which able generate expected output { "object":{ "orderitems":[ { "id": "****", "desc": "asdlfj", "price": 25.53 } ] }...

ruby on rails - RSpec and protected methods, controller spec for current_user -

i might going @ wrong way. i'm doing spec first, bdd/tdd , hit bump. i have application_controller_spec.rb require "spec_helper" describe applicationcontroller describe "current_user" "should return nil if no 1 logged in" subject.current_user.should be_nil end "should return logged in user" hash = {user_id: "my_id"} subject.should_receive(:session).and_return hash subject.current_user.should == "my_id" end end end which works fine without protected keyword. application_controller.rb class applicationcontroller < actioncontroller::base protect_from_forgery helper_method :current_user protected def current_user session[:user_id] end end with protected enabled, error msg nomethoderror: protected method `current_user' called #<applicationcontroller:0x2a90888> i should able test using helper_method... suggestions? helper_me...

.net - What is the compiler/CLR actually doing when attributes annotate a type/method/property? -

when annotate type or method or property attribute, compiler/clr/etc. doing you? my guess is "injecting" methods, properties, etc. class definitions (or maybe object?, or?) , providing automatic behavior, sort of how when declare delegate terse: public delegate void mysuperspecialdelegate(myawesomeclass myawesomeobject); you great automatic behavior "injected" compiled code (cil) you. so reiterate question, happening automatically "behind scenes" when use attributes? it depends on attribute. "normal" attributes clscompliantattribute don't do @ run-time (unless try read them, in case they're instantiated); they're metadata describing data/code, that's used compiler and/or debugger programmer. "special" attributes are, well, special. can change flags in code, cause clr behavior change in way, or cause other observable change; it's attribute-dependent. (e.g. fieldoffsetattribute can cause fi...

c# - MultiThreading Solution -

i developing application , thinking solution it... perhaps... can idealized may not easy implement here problem i want setup bunch of modules... each module can input, output, or transforming data. the objective draw flow input ->transform1 -> transform2 -> transform3 -> output modules can single or multithreaded... this means can create multiple threads of transform2 each 1 transforming 300 records of data i don't know how should approach thought having module controler load modules list, creaeted record queue... don't know how should pass data thread , control multithread process... please provide suggestions. there book, parallel programming microsoft .net has of sample source code available download. examples chapter 7 on pipelines sounds lot describing.

c# - Clear the text in multiple TextBox's at once -

i have wpf application grid there multiple textbox s. how can make every textbox.text = null; button click? give try: private void button1_click(object sender, routedeventargs e) { foreach (uielement control in mygrid.children) { if (control.gettype() == typeof(textbox)) { textbox txtbox = (textbox)control; txtbox.text = null; } } }

c - Accessing out of declared boundary on members of structure or each dimension of multi-dimensional array -

can give me example statement. read somewhere, mentioned kind of pointer usage not recommended. "accessing out of declared boundary on members of structure or each dimension of multi-dimensional array." this boils down accessing outside array bounds : int array[100]; int* pointer = array; *(pointer + 100) = 0; // undefined behavior - last valid index 99 int value = *(pointer + 200); //undefined behavior any attempt access elements outside of array leads undefined behavior ,ight crash program, corrupt data, whatever else. that's not call not recommended , that's call never that .

javascript - How can I make a webpage check to see if a link file has the wrong file type to check for another file type? -

i making webpage going have large amount of word documents linked on review. formatting word lists of files reviewed html page , use macro generate links files reviewed. macro generates links linked .doc files. company starting moving word 2010, users still using word 2003, have files being submitted in .doc format , being submitted in .docx format. looking way in asp, asp.net, or javascript have the webpage see if file not on server in .doc file format check see if there exists file sane file name in .docx file format. suggestions appreciated. you should checking on server side. assuming use vb.net , files being kept in same directory following code might you: dim strrequest string = request.querystring("file") if strrequest <> "" dim path string = server.mappath(strrequest) dim docxpath string = system.io.path.changeextension(path, ".docx") dim file system.io.fileinfo = new system.io.fileinfo(docxpath) if file.exists ...

ruby on rails - Troubleshooting Active Merchant returning "Failed with 500 Internal Server Error" -

the following code purchase = @order.authorize_payment(@credit_card, options) is_success = purchase.success? if is_success ... else flash[:notice] = "!! " + purchase.message + " " + purchase.params['missingfield'].to_s redirect_to :action => :payment, :id => @order.id end results in "!! failed 500 internal server error" in flash[:notice]. there no stacktrace, no webserver error, know purchase.message populated , purchase.success? false. i @ loss figure out how troubleshoot this. think might ssl requirement, can't either see soap request, or test basic connectivity cybersource (my payment gateway). i establish gateway code (after config.after_initialize do): activemerchant::billing::base.mode = :production # :test activemerchant::billing::creditcard.require_verification_value = false activemerchant::billing::cybersourcegateway.wiredump_device = file.new(file.join([rails.r...

ruby on rails - Nested Resource Routing -

resources :patients collection 'new_import' post 'import' end how can have following urls? /patients/import (get) -->action: new_import /patients/import (post) --> action: import right urls are: /patients/new_import (get) -->action: new_import /patients/import (post) --> action: import i must able without doing: match 'patients/import' => 'patients#new_import', :via => :get match 'patients/import' => 'patients#import', :via => :post resources :patients collection 'import' => :new_import post 'import' => :import end end

flash - blinking movieclip with timer -

i trying make movieclip blink, blinks when hit something, create effect of game.i have hit test when hitted, caught called on object.the caught function of object make stop , start blink based on timer.my timer set on new timer(400); why object not blink? conditions seem correct. if (hit.hittestobject(f.hit)) f.caught(); private function blinkinghandler(evt:timerevent):void { _canblink = true; if (_canblink) { this.alpha = 0; _canblink = false; this.alpha = 100; trace("blinking"); } } public function caught() : void { _blinktimer.start(); //removeeventlistener(event.enter_frame, loop); //this.stop(); } first, i'm going assume have added event listener trigger blinkinghandler call when timer fires: _blinktimer.addeventlistener(timerevent.timer, blinkinghandler); now, blinkinghandler have posted never hide object. ...

osx - Porting C code with #ifdef and #ifndef (C preprocessor) -

i'm porting iphone game mac , i'm writing file common defines has following: // first reset defines #undef target_iphone #undef target_mac // set defines #if target_os_mac #if target_os_iphone #define target_iphone #else #define target_mac #endif #endif #ifdef target_iphone #error err1 #endif #ifndef target_iphone #error err2 #endif but when building iphone, both err1 , err2 thrown compiler. i don't it, what's problem there? edit: after hour of trying things no luck, had add own define xcode build options. your code fine. on compiler (gcc mingw) #error err2 thrown. , if insert #define target_os_mac 1 #define target_os_iphone 1 where // set defines is, #error err1 thrown.

system.net.mail - Add Email addressCollection to, cc, bcc and replytoList -

i want add mailaddresscollection to,cc,bcc , replytolist of mailmessage(net.mail) my code like messageentity.to.add(getmailaddress(toemailaddress)); messageentity.cc.add(getmailaddress(ccemailaddress)); messageentity.bcc.add(getmailaddress(bccemailaddress)); messageentity.replttolist.add(getmailaddress(replyemailaddress)); private static mailaddresscollection getmailaddress(list<string> lstmailaddress) { mailaddresscollection maddresscollection = new mailaddresscollection(); if (mailaddress != null) { foreach (string emailaddress in mailaddress) { if (isvalidemailid(emailaddress)) { maddresscollection.add((new mailaddress(emailaddress))); } } } return maddresscollection; } it showing error cannot convert 'system.net.mail.mailaddresscollection' 'string' is possible add emailaddresscoll...

Submittng a child form in a nested form using jquery -

i have nested form looks like: <form method="get" name="mainform" action=<%=response.encodeurl("updateform.jsp")%>> </form> <t:panel script="showselect(3)"> <t:paneltab left="362" width="200px">tab3</t:paneltab> <t:panelbody src="childform.jsp"> </t:panelbody> </t:panel> child form code: <form method="get" name="childform" id = "childform" action=<%=response.encodeurl("processchildform.jsp")%>> <span style="padding:0 10px;"> <button class="submitchildformclass" style="width:auto;" id="submitchildform" >process child form </button> </span> </form> i wanted submit child form when click on submitchildform button wrote below jquery handler that: $('.submitchildformclass').l...

javascript - How do I center a div in the middle of the page using jQuery and keep it centered when window is re-sized? -

does know of jquery script keep div centered in middle , when window re-sized, keep centered? building lightbox plugin , need stay in middle. tried using css doesn't work. also need stay in middle when box opened has bigger width , height. here's page examples on it: http://wowbox.yolasite.com/ open image first, , open div, , you'll see mean. div not centered. when close , re-open div centered because of .center() happens when click on wowbox link. need centered, , never mess that. here code i'm using center it: jquery.fn.center = function () { this.css("position","absolute"); this.css("top", (($(window).height() - this.outerheight()) / 2) + $(window).scrolltop() + "px"); this.css("left", (($(window).width() - this.outerwidth()) / 2) + $(window).scrollleft() + "px"); return this; } i want make when window re-sizes, stay centered. want make when width of box gets wider , heigh...

activerecord - Is there a more database agnostic way to write this default scope in Rails 3? -

i have following default scope defined in 1 of models default_scope order("if(format = #{formats[:wide]}, 1, 0) desc, created_at desc, name asc") it worked fine on dev machine i'm running mysql, borked when deployed production use postgres. there way write using arel instead of straight sql? formats[:wide] returns integer, may not in particular order. want records particular format returned first. i wouldn't put in sql @ all. make scope each format type , use ruby determine use. or create method determines sort order , passes wherever using it.

Javascript and the window.document object. How to change value in document -

i have normal page , popup window. on popup window, modifying javascript callback change value on page (the page behind popup window). struggling on navigating field in javascript. i have following: window.document.getelementbyid('mynewfield').value = newvalue; but not finding field , needs changed to: window.id-of-my-window-behind.document.getelementbyid('mynewfield').value = newvalue; how can find out id is? there print_r funciton javascript? i think you're looking is: window.opener you can use follows: window.opener.document.getelementbyid('mynewfield').value = newvalue;

objective c - adding custom fonts to application -

in project, i'm using custom font named "comics.ttf"... added font file named "comics.ttf" resources , edited plist include new field specifying "fonts provided application comics.ttf " after that, accessed font usig uifont's fontwithname:@"comics" size:40.0 method... (comics font name got when tried nslog font names)... these worked in iphone 4... but, when tried install program in ios3.1, throwing exception follows... *** assertion failure in -[uilabel setfont:], /sourcecache/uikit/uikit-984.38/uilabel.m:445 2011-03-07 14:24:20.271 cmb[183:207] *** terminating app due uncaught exception 'nsinternalinconsistencyexception', reason: 'invalid parameter not satisfying: font != nil' 2011-03-07 14:24:20.291 cmb[183:207] stack: ( 853417245, 845594132, 852966195 also, it's not showing font name when tried nslog font name... know, what's problem? adding custom fonts became available in 3.2 ...

union - Combining mysql tables -

how combine table x , y : table x (columna, columnb, columnc) table y (columna, columnb, columnd) to (columna, columnb, columnc, columnd) ? i expecting see null values... to more specific, here contents of tables: tablex: b c 1 | 0 | 0 2 | 0 | 0 tabley: b d 3 | 0 | 0 4 | 0 | 0 result: b c d 1 | 0 | 0 | null 2 | 0 | 0 | null 3 | 0 | null | 0 4 | 0 | null | 0 i don't think expecting join, concatenate: select columna, columnb, columnc, null columnd tablex union select columna, columnb, null columnc, columnd tabley

sql server 2008 r2 - Sync Famework: how to enable bulk insert/update/delete stored procedures in Hub and spoke model -

i using ms sync framework 2.1 in hub-spoke model sql server 2008 , bunch of sql server 2008 express clients. the syncagent uses dbserversyncprovider remoteprovider . is there way enable bulk insert/delete/update stored procedures in scenario serverside operations, instead of processing data row row? thanks the bulk operations in sync framework introduced in collaboration/peer-to-peer database providers (sqlsyncprovider) in v2.1. if want use dbserversyncprovider, have write custom provider enable functionality. if can, suggest move using sqlsyncprovider instead.

scripting - PHP listener script that can read incoming $_REQUEST or $_POST variables -

i trying write php script listens incoming $_request or $_post variables sent web application part of 2-way communication. http calls made web app in format similar this . the webapp send post response listener script (http://travisng.com/listener.php) , wondering if php script parse without me executing php script manually? note not referring writing script listens network requests on socket. basically, want parse post data sent web app , write out log file. therefore, every time run listener script read log file , print out post responses sent listener script. here's of code i've written: <?php // read incoming post request if (!empty($_post)){ $params = join(" ", $_post); //print_r($params); echo "|$params|"; } // print params & timestamp file called listenerlog.txt $logfile = "http://travisng.com/listenerlog.txt"; $filehandle = fopen($logfile, 'a') or die("un...

AngularJS example in backbone.js and/or knockout.js -

i'm comparing these frameworks calculations on client side. liked example on angularjs site. wondering if of backbone.js or knockout.js experts on site please recreate example in respective frameworks. here jsfiddle it. code of fiddle: <table ng:init="invoice= {items:[{qty:10, description:'gadget', cost:9.95}]}"> <tr> <th>qty</th> <th>description</th> <th>cost</th> <th>total</th> <th></th> </tr> <tr ng:repeat="item in invoice.items"> <td><input name="item.qty" value="1" size="4" ng:required ng:validate="integer"></td> <td><input name="item.description"></td> <td><input name="item.cost" value="0.00" ng:required ng:validate="number" size="6"></td> <td>{{item.qty * item.cost...

php - Making one jpeg file from 2 different images brought to user as 2 layers one under another -

let's suppose have div picture. above div there div png picture of colored border , because of fact above main picture colored borders added main picture user can see 1 picture colored borders. now problem how can join main picture file , colored borders png 1 jpg ? if have imagick extension, or can install see here http://www.php.net/manual/en/function.imagick-compositeimage.php (also can read this ) otherwise gd php gd library used merge 2 images