Posts

Showing posts from April, 2013

java - have a char reference an object in an array -

is possible have char point object in array? im trying have characters : +,-,*,/ point index in array. i aware section below not correct syntax. way of describing wish accomplish. public static void main(string[] args) { operations plus; operations minus; operations multiply; operations divide; /**********create jumptable*******************/ operations[] jumptable = new operations[255]; /**********add object jumptable************/ jumptable[0] = new addition(); jumptable[1] = new subtraction(); jumptable[2] = new multiplication(); jumptable[3] = new division(); /**********point index in table************/ plus = jumptable[0]; minus = jumptable[1]; multiply = jumptable[2]; divide = jumptable[3]; //this im trying do: //*************************************** char +; char -; '+' = ...

Javascript OOP - accessing the inherited property or function from a closure within a subclass -

i using javascript inheritance helper provided here: http://ejohn.org/blog/simple-javascript-inheritance/ i have following code, , have problem accessing inherited property or function closure within subclass illustrated below. new oop javascript code , appreciate advice. suppose within closure, context changes jquery (this variable) hence problem. appreciate comments. thanks, -a ps - using jquery 1.5 var users = class.extend({ init: function(names){this.names = names;} }); var homeusers = users.extend({ work:function(){ // alert(this.names.length); // prints // var names = this.names; // if make local alias works $.map([1,2,3],function(){ var newname = this.names.length; //error this.names not defined. alert(newname); }); } }); var users = new homeusers(["a...

Performance of running code in stani python editor vs IDLE/terminal/gvim -

am curious , wondering why takes longer python code execute when run inside stani python editor in comparison when run idle or terminal or inside gvim. spe has object explorer, , debugger. maybe these slow things down bit.

fonts - What is the MIME type for TTF files? -

i can't find correct mime type truetype fonts. need because i'm using file uploading class (codeigniter) upload files, , want allow ttf uploaded. tried this: 'ttf' => 'font/ttf' 'ttf' => 'font/truetype' with no success. any ideas ? ttf not have mime type assigned. you'll have use more general application/octet-stream , used indicate binary data no assigned mime type.

automation - Boostrapping new Eclipse machines with all the Plugins -

bootstrapping eclipse on new machines such time consuming process, wind asking whether need each plugin. there handy, , develop consistent habits. eclipse bootstrapping problems include: explaining / documenting needs happen the actual time pasting in right urls , downloading version compatibility , dependencies eclipse likes restart after each one the changeover eclipse marketplace means plugins , instructions find on web tend inconsistent, depending on when written. the licenses... on , on , over... yes, yes, yes... understand person installing needs aware of it, , have chance review them, there's got better way. it'd nice have "patch file" (either binary or meta) spells out want add on top of stock eclipse installation. i'd find (or create) 1 or 2 step process sets eclipse, plus favorite batch of plugins: subclipse m2eclipse jetty support runjettyrun android sdk , plugin (or @ least plugin) aspectj web objects / woliops python, other...

sql - Compare the date from other table -

using sql sever 2005 table1 id startdate enddate 001 02/23/2010 07/22/2010 002 05/03/2010 null 003 02/02/2011 null ... table2 date 02/24/2011 02/25/2011 ... ... condition if enddate not null startdate compare max(date) table2, if startdate > 6 month should display "expired" how make query above condition. need query help. select startdate, [status]=case when datediff(m,startdate,(select max(date) table2))>6 'expired' else 'valid' end table1 enddate not null

Running Facebook application on localhost -

i planning connect facebook chat localhost. need session key facebook. when give site url localhost:8080 or ip-address:8080 not work. i read setting 2 apps 2 different api keys 1 runs on dev m/c , other on localhost did not quite it. can explain how run facebook app on localhost? i wrote tutorial while ago. the important point "site url": site url: http://localhost/app_name/ where folder structure like: app_name ¦ index.php ¦ +---canvas ¦ ¦ index.php ¦ ¦ ¦ +---css ¦ main.css ¦ reset.css ¦ +---src facebook.php fb_ca_chain_bundle.crt edit: kavya : how fb server recognize localhost without ip or port?? i don't think has facebook, guess since iframe src parameter loaded client-side it'll treat local url if put directly on browser. for example have file on online server content (e.g. online.php ): <iframe src="http://localhost/test.php" width="100%" heigh...

oop - Is it possible to do prototype-based programming in Scala? -

is possible prototype-based programming in scala? i have disagree easy angel... scala objects not need classes (they still have type... not same). ok write val martin = new { val name = "martin" val surname = "ring" def age = calendar.getinstance.get(calendar.year) - 1986 } also structural typing can write functions these objects: def printperson(person: { def name: string; def age: int }) = println("%s (%d)".format(person.name, person.age)) you can call printperson(martin) , print out martin (25) so no need classes or traits if want that. however prototype-based programming still not supported language (imho) not possible clone , extend objects anonymous type. guess write functions that... require massive use of reflection , there no native lanugage support..

algorithm - Determine the difficulty of an english word -

i working word based game. word database contains around 10,000 english words (sorted alphabetically). planning have 5 difficulty levels in game. level 1 shows easiest words , level 5 shows difficult words, relatively speaking. i need divide 10,000 long words list 5 levels, starting easiest words difficult ones. looking program me. can tell me if there algorithm or method quantitatively measure difficulty of english word? i have thoughts revolving around using " word length " , " word frequency " factors, , come formula or accomplishes this. get large corpus of texts (e.g. gutenberg archives), straight frequency analysis, , eyeball results. if don't satisfying, weight each text flesch-kincaid score , run analysis again - words show frequently, in "difficult" texts score boost, want. if have 10000 words, though, quicker frequency sorting first pass , tweak results hand.

ipad - UITableView does not respond to scrolling and touches -

i've created custom uiview, , inside uiview, add uitableview thus: treeview = [[uitableview alloc] initwithframe:cgrectmake(0, 80, slider.frame.size.width, slider.frame.size.height - 80)]; [treeview setdelegate:self]; [treeview setdatasource:self]; [self addsubview:treeview]; [treeview release]; when app loads, table seems load fine. however, when try scroll table, not respond touches @ all. i implement these delegate/data source methods: - (nsinteger)numberofsectionsintableview:(uitableview *)tableview; - (nsinteger)tableview:(uitableview *)tableview numberofrowsinsection:(nsinteger)section; - (uitableviewcell *)tableview:(uitableview *)tableview cellforrowatindexpath:(nsindexpath *)indexpath; - (void)tableview:(uitableview *)tableview didselectrowatindexpath:(nsindexpath *)indexpath; does have idea why so? thanks there several possibilities: your custom view, or 1 of superviews, has userinteractionenabled set no. there view on top...

java - Problem making a JProgressBar update values in Loop (Threaded) -

am trying program update progress bar values within method while performing operations. not happen until end, , ui freezes. after looking around similar questions problems, tried implement accepted solutions (using threads) cannot work correctly. if not there. my program contains several classes, main being 1 automatically created netbeans on jframe design mode, there things such static void main , public main not sure of of contents. under put snippets of methods, thread implementation. public class main extends javax.swing.jframe implements actionlistener, runnable{ // added implements actlis, runn..... ... static main _this; // included variable ... public static void main(string args[]) { main m = new main(); // added me new thread(m).start(); // added me java.awt.eventqueue.invokelater(new runnable() { public void run() { ...

how to set the processing in android in background and at mean time dialogbox open and show some msg in android -

i develop , e booking application in android ,so in application want show proceesing bar dialog box while system in processing mode you can use asynctask , set dialog in onpreexecute method!

html - Highlight selected row using css -

how can highlight selected row in table using css. there way that? tr { background: sky-blue-pink } /* use real colour */ tr * { background: transparent; } where tr more specific selector indicate whatever condition have in dom represent 'selected'. class selector: tr.selected

java - war servlet tomcat cannot find -

i exported servlet project eclipse war file , placed inside webapp/hello folder. /webapps/hello/hellotest.war how run ? i typed this http://127.0.0.1:8080/hello/foo but fails run this web.xml file inside war file <?xml version="1.0" encoding="utf-8"?> <web-app id="webapp_id" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> <display-name>hellotest</display-name> <servlet> <description> </description> <display-name>foo</display-name> <servlet-name>foo</servlet-name> <servlet-class> foo</servlet-class> </servlet> <servlet-mapping> <servlet-name>foo</servlet-name> ...

opengl - How to make this code work on Mesa3d? -

this glsl code compile , run warningless in ati's opengl: void main() { vec4 tmp = gl_modelviewmatrix * gl_vertex; tmp.xyz = tmp.xyz / (1 - tmp.w); tmp.w = 1; gl_position = gl_projectionmatrix * tmp; gl_frontcolor = gl_color; } why fail mesa? how decrypt error message , make mesa's implementation compliant? compilation log: 0:1(88): error: not implicitly convert operands arithmetic operator 0:1(89): error: operands arithmetic operators must numeric 0:1(97): error: type mismatch try changing 1 s 1.0 s.

problem POSTing android JSONObject to PHP -

i having trouble getting android post of simple jsonobject show in $_post data on server. server php 5.3.4 , android side sdk 8 emulator. can post simple namevaluepair normal , shows when switch jsonobject + stringentity see below $_post array shows { }. go ahead , run code below against test php page. has var_dump of $_post , $_server searching 1 of expected keys ('email'). see have tried numerous 'contenttype's see if problem. i've used wireshark verify tcp conversation looks between client , server. post data in there isn't showing in server's vars. stuck... can offer. import java.io.inputstream; import org.apache.http.httpresponse; import org.apache.http.client.httpclient; import org.apache.http.client.methods.httppost; import org.apache.http.entity.stringentity; import org.apache.http.impl.client.defaulthttpclient; import org.apache.http.params.httpconnectionparams; import org.json.jsonobject; import android.util.log; public class testp...

c++ - pthread.h header problem -

hi i'm doing porting linux visual c++ . when built coding, shows vc ++ doesn't know pthread.h header. can't comment since there variable " pthread_mutex_t " in code. should ? vc ++ has equivalent header it? kevin there pthreads implementation windows, it's called pthread-w32: http://sourceware.org/pthreads-win32/

machine learning - Searching an Image Database Using SIFT -

several questions have been asked sift algorithm , seem focussed on simple comparison between 2 images. instead of determining how similar 2 images are, practical use sift find closest matching image out of collection of thousands of images? in other words, sift scalable? for example, practical use sift generate keypoints batch of images, store keypoints in database, , find ones have shortest euclidean distance keypoints generated "query" image? when calculating euclidean distance, ignore x, y, scale, , orientation parts of keypoints, , @ descriptor? there several approaches. one popular approach called bag of words representation matching based solely upon how many descriptors match, ignoring location part consisting of (x, y, scale, , orientation) , @ descriptor. efficient querying of large database may use approximate methods locality sensitive hashing other methods may involve vocabulary trees or other data structures. for efficient method take...

How to get content of a URL and to read it in a android java application using eclipse -

//following code works fine read's source code content, need read content help.// package t.n.e; import java.io.bufferedreader; import java.io.ioexception; import java.io.inputstreamreader; import java.net.malformedurlexception; import java.net.url; import org.xml.sax.parser; import android.app.activity; import android.os.bundle; import android.widget.edittext; public class urlgettingproject extends activity { private edittext t1; public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.main); t1 = (edittext)findviewbyid(r.id.t1); stringbuilder content = new stringbuilder(); try { url url = new url("http://10.0.22.222:8080/savename.jsp?first=12&second=12&work=min"); bufferedreader in = new bufferedreader(new inputstreamreader(url.openstream())); string str; while ((str = in.readline()) != null) { ...

"Invalid procedure call or argument" VBScript calling C# COM method -

i have vbscript app calling com-registered c# objects. able pass in com object com call, receive either primitive or com object back, can't both @ same time! if try retrieving value call while passing in com object, exception "invalid procedure call or argument" dim foo set foo = server.createobject("foo") foo.setproperty(1) dim bar set bar = server.createobject("bar") dim return set return = bar.do(foo) if last line bar.do(foo) works fine. also, whether set return = bar.do(foo) or return = bar.do(foo) causes same error in case. my com classes classes methods exposed, , implementing interface. i'm getting error dealing ints, longs, , strings. i'm bit rusty in area if method returning int or string shouldn't code read: return = bar.do(foo) instead of set return = bar.do(foo)

resultset - conflict with java.util.Date and java.sql.TimeStamp -

i facing unique problem. i querying database field has datatype (in oracle) date . retrieving value resultset rs.getobject("mydate") . have 2 setups have identical configuration . on 1 setup when write rs.getobject("mydate").getclass() , geeting java.sql.timestamp , on setup returning java.util.date. problem facing when returns object of date ignoring time , returning date part. i think behaviour can controlled using connection property: oracle.jdbc.mapdatetotimestamp see forum thread, instance: http://forums.oracle.com/forums/thread.jspa?threadid=483903

iis 7 - crystal report - image not showing up -

i have licenced crystal report in live site..i have kept img data field byte stream. dosent shoe up..and when export file pdf can see image...can 1 tell me if missing iis configuration?? because in local vs2008 development env. not licenced can see image... only thing can think of there may dll problem since accessing img file when export. try adding refresh() , checking of libraries same release , development environments possible dll bug causing img grabbed when pdf created

shell - Proper escaping of quotes and parens when using expect, ssh, ant and mysqldump -

we have working ant script use mysqldump dump database on remote server file on remote server. use ant's exec task run expect script ssh remote machine , run mysqldump command. i'm trying update command restrict dump include data less 3 months old. i'm running annoying escaping issues quotes , parens. here command line i'm trying working: expect -f ssh-pass.exp <server_passwd> ssh <user>@<ip_address> \"mysqldump -h localhost -u user --password=passwd staging --where=\"createtimefi > now() - interval 3 month\" --ignore-table=staging.jms_messages --ignore-table=staging.jms_roles --ignore-table=staging.jms_subscriptions --ignore-table=staging.jms_transactions --ignore-table=staging.jms_users --ignore-table=staging.timers > dump.sql\" here expect script: set password [lrange $argv 0 0] set command [lrange $argv 1 1] set arg1 [lrange $argv 2 2] set arg2 [lrange $argv 3 end] puts "command: $command" puts ...

entity framework 4 - Adding New Tables To An Existing EF Code-First Project -

i'm building web application uses ef code first ctp5 data store. keep thinking myself if ef going re-create database when model changes, if ever needed add tables database? @ time, add table manually database , create corresponding poco , add dbset in dbcontext class? in case i'll have change initialization strategy right? update: how creating copy/backup of data first, adding new poco's , re-generating whole database again. finally, fill in previous data created backup. possible?

dictionary - Hybrid P2P's server data directory -

i'm developing sort p2p system here. types of p2p network i'm going use hybrid p2p. but, there's problem here don't know how solve. it's data directory. how data directory works? how knows nodes contain files? if understand question correctly, referring indexing resources available on p2p network. basically, central peer stores electronic resource available on peer. instead of querying peers, given peer can query central peer containing index. then, information can used fetch electronic resource (pdf file, music, video, etc....) correct peer. reduces traffic.

javascript - HTML5 - how to get image dimension -

i have script, it's used fetch width , height of browser uploaded image. reference: http://renevier.net/misc/resizeimg.html function createreader(file) { reader.onload = function(evt) { var image = new image(); image.onload = function(evt) { var width = this.width; var height = this.height; alert (width); // produce 198 }; image.src = evt.target.result; }; reader.readasdataurl(file); } (var = 0, length = input.files.length; < length; i++) { createreader(input.files[i]); } i want access value width , height outside createreader function. how can that? change "createreader" pass in handler function called when image available: function createreader(file, whenready) { reader.onload = function(evt) { var image = new image(); image.onload = function(evt) { var width = this.width; var height = this.height; if (whe...

Rails link_to image_tag - getting the href value on click with jQuery -

rails 2.3.5 for link_to image_tag', i've been trying figure out how grab href jquery. assume has nothing rails , me doing wrong using jquery. examples i've found link indicate there should href attribute when grab link @ click time. if put id inside image_tag block or other way around (or :id in both blocks). like, neither of these work (the alert returns 'undefined'): <%= link_to image_tag("apple.png", :size => "60x50", :alt => "new apple", :id => 'new_apple', :class => 'item_images'), :controller => :items, :action => :new, :item_type => 'apple' %> $('#new_apple' ).click(function(){ alert($(this).attr("href")); ... } or <%= link_to image_tag("apple.png", :size => "60x50", :alt => "new apple", :id => 'new_apple', :class => 'item_images'), :id => ...

apache pig - cant run pig with single node hadoop server -

i have setup vm ubuntu. runs hadoop single node. later installed apache pig on it. apache pig runs great local mode, prom error 2999: unexpected internal error. failed create datastorage i missing obvious. can me running please? more details: 1. assume hadoop running fine because, run mapreduce jobs in python. 2. pig -x local runs expect. 3. when type pig gives me following error error before pig launched ---------------------------- error 2999: unexpected internal error. failed create datastorage java.lang.runtimeexception: failed create datastorage @ org.apache.pig.backend.hadoop.datastorage.hdatastorage.init(hdatastorage.java:75) @ org.apache.pig.backend.hadoop.datastorage.hdatastorage.(hdatastorage.java:58) @ org.apache.pig.backend.hadoop.executionengine.hexecutionengine.init(hexecutionengine.java:214) @ org.apache.pig.backend.hadoop.executionengine.hexecutionengine.init(hexecutionengine.java:134) @ org.apache.pig.impl.pigcontext.connect(pigcontext...

nsstring - Objective-C spaces in strings -

i have object called exampleobject 2 string properties: modulename , , pool . @property (nonatomic, assign) nsstring *modulename; @property (nonatomic, assign) nsstring *pool; both of these set using 2 text fields named modulenamefield , poolfield respectively, when ibaction triggered: if (![[modulenamefield text] isequaltostring:@""]) { [[[appdelegate modulelist] objectatindex:[appdelegate modulenum]] setmodulename:[modulenamefield text]]; } if (![[poolfield text] isequaltostring:@""]) { [[[appdelegate modulelist] objectatindex:[appdelegate modulenum]] setpool:[poolfield text]]; } after checking value nslog statement: nslog(@"the modulename is:%@", [[[appdelegate modulelist] objectatindex:[appdelegate modulenum]] modulename]); nslog(@"the pool is:%@", [[[appdelegate modulelist] objectatindex:[appdelegate modulenum]] pool]); i correct output: the modulename is:module name 1 pool is:pool 1 here's gets weird. upo...

Unable to open openfileDialog in silverlight -

i want use openfiledialog upload file,but when write following code security exception fired "dialogs must user-initiated." btn_click() { openfiledialog filedialog=new openfiledialog(); filedialog.multiselect = false; filedialog.filter = "all files|*.*"; bool? retval = filedialog.showdialog(); if (filedialog.showdialog()==false){ stream strm = filedialog.file.openread(); byte[] buffer = new byte[strm.length]; strm.read(buffer, 0, (int)strm.length); strm.dispose(); strm.close(); uploadfile file=new uploadfile(); file.filename = filedialog.file.name; file.file = buffer; po.fileuploadasync(file); } as exception you're getting states open file dialog can activated user initiated action when application run in browser , restricted trust. what trying achieve? the simplest solution add button ui allows user control when process happens.

.net - asp.net website and sql server join to domain -

i have asp.net web application running on webserver, uses database server (the same server). working fine, until joined server domain. the following error happend on web application: a network-related or instance-specific error occurred while establishing connection sql server. server not found or not accessible. verify instance name correct , sql server configured allow remote connections. (provider: named pipes provider, error: 40) when connect sql server via sql management studio localy works normal. maybe in connectionstring? that error means either sql server hasn't had remote connections enabled , or there no sql instance @ location specified in connection string. as have joined server domain, possible server name has changed? trying connect user has rights connect? edit: try using connection string: database=db;server=.\[instance name];user id=sa;password=pwd; note .\ , , need fill in default instance name. if have sql browser service turned o...

objective c - "addTarget:self action:@selector" :: NSArray works, but pointers fail? -

"addtarget:self action:@selector" :: nsarray works, pointers fail on callback routine? calling routine viewdidload works both nsarray , pointers? different "addtarget:self action:@selector" callback?? here code snippet: thanks looking... file.h nsarray *nsarra; nsstring **p_nssb; file.m - (void)viewdidload { nsarra = [[nsarray alloc] initwithobjects:@"0",@"1",@"2",@"3",@"4",@"5",@"6",nil]; p_nssb = (nsstring**)malloc(10*sizeof(nsstring*)); (int i=0; i<10; i++) { p_nssb[i]=[nsstring stringwithformat:@"%d", i]; } [self viewmenu]; } - (void) viewmenu { uibutton *uibtnmenu = [uibtnmenu addtarget:self action:@selector(actionmenu:) forcontrolevents:uicontroleventtouchupinside]; [uiviewmenu addsubview:uibtnmenu]; nslog(@"nsarra: %@ %@ %@", [nsarra objectatindex:0], [nsarra objectatindex:1], [nsarra objectatin...

java - Ant GET task and proxy -

how use ant's task proxy? i see there username , password, there no proxy host :( the key bit in get task docs is: proxies . since apache ant 1.7.0, ant running on java1.5 or later can use proxy settings of operating system if enabled -autoproxy option. there 'setproxy' task earlier java versions. proxies turned on, requests against localhost may not work expected, if request relayed proxy. so can use setproxy task older versions of ant, or see docs on proxy config : <setproxy proxyhost="firewall" proxyport="81"/> (the username , password attributes of get task remote system, not intermediate proxies.)

php - MySQL's InnoDB - avoid flushing log buffer for a single transaction? -

is possible programmatically tell mysql not flush log buffer current transaction, regardless of innodb_flush_log_at_trx_commit setting? let's want acid compliance data safe power/hardware faults. have innodb_flush_log_at_trx_commit = 1 but in application, have 1 particular insert query needs return quickly, , it's not important have same level of integrity protection. can skip flush (at end of transaction) query/transaction? , can programmatically, sql query or in php's pdo? i think answer can't done - unless willing switch myisam particular table in question.

constructor - How to force deletion of a python object? -

i curious details of __del__ in python, when , why should used , shouldn't used for. i've learned hard way not 1 naively expected destructor, in not opposite of __new__ / __init__ . class foo(object): def __init__(self): self.bar = none def open(self): if self.bar != 'open': print 'opening bar' self.bar = 'open' def close(self): if self.bar != 'closed': print 'closing bar' self.bar = 'close' def __del__(self): self.close() if __name__ == '__main__': foo = foo() foo.open() del foo import gc gc.collect() i saw in documentation not guaranteed __del__() methods called objects still exist when interpreter exits. how can guaranteed foo instances existing when interpreter exits, bar closed? in code snippet above bar closed on del foo or on gc.collect() ... or neither? if want finer control...

php - Big joins or multiple fetches most efficent? -

i understand multiple variables part of equation number of tables, number of columns, number of returned rows, used indexes etc. if speak overall is more efficient run query multiple (say 5+) joins of tables contain rows information corresponding rows in main table , returned result in 20.000 rows range. sake of argument let's first table contain users creation date , it's on date decide users pick out. other tables contain stuff such session information, user notes etc. users should picked out depending on values of fields in secondary tables might ignore session data 1 user , work session data on user when go through results. way needed data in 1 query might redundant data users @ same time. or more efficient pick users date , when iterating results fetch data other tables per user when it's necessary? let's work on returned rows done within php5+. i'll say, benchmark. it depends on frequency of "when it's necessary". if need dat...

iphone add effects to images -

please tel me if there apple libraries or 3party libraries available adding effects such sepia greyscale glow comic book color pencil etc images. i guess : http://code.google.com/p/simple-iphone-image-processing/ http://sourceforge.net/projects/photoshopframew/ https://github.com/esilverberg/ios-image-filters

algorithm - how to calculate the percentage of match / absolute value -

hard explain...let me try: i built script compare 2 users' interests (hobbies) let's assume usera have 44 hobbies, , 13 in common userb (who has 19 hobbies) in pseudo code (where % formula): func %(usera,userb) = 13 ...etc..comparing other users func %(usera, userc) = 2 func %(usera, userd) = 7 given users' hobbies have no limit, can 100, 20 or infinite... how can calculate , show percentage of "compatibility" between usera , rest of world? because thought was, if knew 20 max numebr of hobbies, simple equation (bewteen user , b) percent = 13 / 20 * 100 between usera , userb can display "you match 65%" but problem dont know value 20 (the maxium number)! that's problem! you're close. in example, user compatibility percentage user b = 13 / 19 (total user b hobbies) = 68.4 % user b compatibility percentage user = 13 / 44 (total user hobbies) = 29.5%

c# - Inherited classes as function parameter -

i've got 2 classes (myclass1 , myclass2) both inherit mybaseclass. i want write function takes list of either of these parameter, this private void dostuff(list<mybaseclass> input) { ... } how pass list function? you can't quite that, list<myclass1> isn't list<mybaseclass> . search on stack overflow generic variance explanations of why that's case. one thing can make generic: private void dostuff<t>(list<t> input) t : mybaseclass alternatively, in c# 4 , .net 4, if need iterate on it, use ienumerable<t> covariant in t : private void dostuff(ienumerable<mybaseclass> input)

oop - Defining Values of Fields as Constants in Java -

i'm implementing standard object oriented library in java. standard includes many messages passing on network through terminals. every message implemented single class. some of fields represented char types , fields have 1 of values defined in standard. example, public class outgoingmessage { private char action; and action has these values, '0' - not print '1' - print '2' - print , forward '3' - print , reply 'f' - forward 'r' - reply also of classes have more 2 fields this. defining constants in class can messy in these situations. so i'm trying implement values as public class outgoingmessage { private char action; public final class actiontypes { public static final char do_not_print = '0'; public static final char print = '1'; ... and using below ... message.setaction(outgoingmessage.actiontypes.do_not_print); ... message.setfoobar(outgoingmessage.foob...

iphone - UIView Animation, Transforming layer.shadowPath -

i created uiimageview has custom shadowpath. view moved left , right across screen, need shadowpath have different transformation image layer itself. possible? moving image works, , shadow moves when following: [uiview beginanimations:nil context:null]; [uiview setanimationduration:0.3]; [uiview setanimationcurve:uiviewanimationcurveeaseout]; im.center = location; [uiview commitanimations]; but if try add layer transformation before "commitanimations", shadow take on property right away, example: [uiview beginanimations:nil context:null]; [uiview setanimationduration:5]; [uiview setanimationcurve:uiviewanimationcurveeaseout]; im.center = location; im.layer.shadowpath = [self createperspectiveshadow:im]; //this not animate [uiview commitanimations]; so, question is, there way recalculate shadow during animation? thanks the uiview animations don’t allow animate calayer attributes; try using cabasicanimation instead.

php - action without a view. Need a module? -

i want execute action doesnt need view. in example "logout" function, ajax call (for example, need number back). should add module? well, i'd rather "flat" script action redirect index page, when done. , in case, put flat script? yes, still want create module (controller) this. for number of reasons: - should want change behaviour, it's in code. - logout action want manipulate current ( sfuser ) user, instance want fire symfony stack, why not create controller. - it's considered 'bad practice', or 'counter-mvc' if start creating kinds of small files small actions. and how hard create new module? ./symfony generate:module frontend user . if don't have view can forward/redirect request. (in action: $this->redirect('homepage'); ). or, ajax-actions, can return required data: if ($request->isxmlhttprequest()) { // set correct header return $this->rendertext(json_encode($data)); }

asp.net mvc 3 - Rendering smallest possible image size with MVC3 vs Webforms Library -

i in process of moving webforms app mvc3. ironically enough, cool beans except 1 thing - images served handler, microsoft generated image handler . works - on average 450kb photo gets output @ 20kb. the actual photo on disk weighs in @ 417kb, getting great reduction. moving on mvc3 drop handler , use controller action. seem unable achieve same kind of file size reduction when rendering image. walked through source , took exact copy of image transform code yet achieving 230~kb, still lot bigger ms handler outputting - 16kb. you can see example of both controller , handler here i have walked through handler source code , cannot see compressing image further. if examine both images can see difference - handler rendered image less clear, more grainy looking, still consider satisfactory needs. can give me pointers here? output compression somehow being used? or overlooking obvious? the code below used in home controller render image, , exact copy of fitimage method in ...

Doubt in C increment operator -

possible duplicate: post , pre increment in c i new c, have increment operator program in c #include<stdio.h> main(){ int a, b; = 2; b = + ++a + ++a; printf("%d", b); getchar(); } the output 10, can explain me how output 10 . this undefined, ++i can happen in order. function call arguments ambigiously evaluated, e.g. foo(++i,++i) . not operator chains undefined, a||b||c guaranteed left-to-right, example. the guarantees made in places known sequence points although terminology being deprecated , clarified in c++0x. what's odd in example neigher 2+3+4 nor 4+4+3 happened, compiler evaluated left side first in 1 step , right side first in other. optimisation flatten depencency graph.

Cakephp missing helper file error -

i'm getting below error...i'm not sure means have included helper file in view file... missing helper file error: helper file track/views/helpers/request_handler.php can not found or not exist. error: create class below in file: track/views/helpers/request_handler.php <?php class requesthandlerhelper extends apphelper { } ?> if can let me know means appreciated! thank you. jae unless customized how cakephp works, should apply cases: checklist make sure helper file created in /app/views/helpers/request_handler.php make sure content of request_handler.php looks this: class requesthandlerhelper extends apphelper { var $name = 'requesthandler'; //bla.... } make sure in controller renders view has helper array included class fancycontroller extends appcontroller { var $name = 'fancy'; var $helpers = array('requesthandler'); //bla.... } i think that's :) cheers

vb6 - "Declare" statement as yet an other way to circumvent the .dll hell? -

to astonishment found vb6 code uses declare statements define functions in .dll lives in program folder without being registered on windows. seems supersimple way avoid .dll hell without having resort using side side manifests. can read more somewhere? there snags? the declare statement used "just in time" binding non-activex dlls. until program "touches" declared entrypoint no attempt made load library. it has nothing @ topic of dll hell. muddled thinking can lead people plop activex dlls "next to" exe can result in dll hell because people tend use poor techniques installing , uninstalling applications. poorly designed application deployment plops commonly shared dll or ocx next exe. poorly designed application run, vb6 runtime can't find classes in registry, dll search using windows heuristics, locates dll next exe , calls self-registration entrypoint. innocent, designed applications b, c, d later installed use same dll/ocx ...

Flex datagrid with dropdownlist in a particular row -

i'm having difficulty figuring out how add dropdownlist control single row of data grid. example, if have 2 rows of data in grid, want top normal text data provider, , second row dropdownlist (bound array collection). i've searched high , low solution no avail. appreciated. thanks, conceptually need itemrenderer function, not implemented in mx datagrid. ( may in new spark one, don't know). in lieu of that, create itemrenderer conditionally display dropdownlist. this: <s:mxdatagridrenderer datachange="ondatachange()"> <fx:script> public function ondatachange():void{ if((this.listdata datagridlistdata).rowindex == 0){ label.visible == false; ddl.visible == true; } else { label.visible == true; ddl.visible == false; } } </fx:script> <s:label id="label" /> <s:dropdownlist id="ddl" /> </s:mxdatagridrenderer>

What is the proper newline in emails? LF or CRLF? -

recently customers complained getting garbled emails. mime headers showing, , base64 encoded data, etc. stuff should have been decoded mail clients. after investigating found mail clients (gmx.de webmail name one) inserted blank line after every other line, indeed messing up. following hunch, changed mail sending code replace crlf lf. , lo , behold - mail arrived whole. now, weird, because rfc 5322 explicitly states that 2.3. body the body of message lines of us-ascii characters. 2 limitations on body follows: o cr , lf must occur crlf; must not appear independently in body. huh? bad webmail? or did go wrong somewhere? other webmails (like gmail) have no problems this, , indeed seems majority of people have no problems (since complaints few). just note - i'm sending email through php's mail() function on linux box. underlying mail software seems qmail, i'm not sure. it seems qmail doesn't crlf under similar conditions . ...

ruby on rails - RoR2.8 & Heroku: I installed a plugin, works locally, now heroku doesn't work at all -

heroku logs brings up: ==> dyno-3334279.log (crash) <== /app/fd916ea6-bad5-440e-a560-405ef5e3beee/home/.bundle/gems/ruby/1.8/gems/searchlogic-2.4.19/lib/searchlogic/named_scopes/conditions.rb:81:in `method_missing': undefined method `has_attached_file' #<class:0x2baaa6077e58> (nomethoderror) /app/fd916ea6-bad5-440e-a560-405ef5e3beee/home/.bundle/gems/ruby/1.8/gems/searchlogic-2.4.19/lib/searchlogic/named_scopes/association_conditions.rb:19:in `method_missing' /app/fd916ea6-bad5-440e-a560-405ef5e3beee/home/.bundle/gems/ruby/1.8/gems/searchlogic-2.4.19/lib/searchlogic/named_scopes/association_ordering.rb:27:in `method_missing' /app/fd916ea6-bad5-440e-a560-405ef5e3beee/home/.bundle/gems/ruby/1.8/gems/searchlogic-2.4.19/lib/searchlogic/named_scopes/ordering.rb:30:in `method_missing' /app/fd916ea6-bad5-440e-a560-405ef5e3beee/home/.bundle/gems/ruby/1.8/gems/searchlogic-2.4.19/lib/searchlogic/named_scopes/or_conditions.rb:28:in `method_mis...

memory - java: Building a Tri-nary tree and my nodes won't be deleted -

building tribunary tree in java , delete functionality doesn't seem working. can me understand why won't delete variable node? node = null; my code, compile , run: import java.util.hashmap; import java.util.iterator; import java.util.map; import java.util.set; public class tritree { public static void main(string[] args) { new tritree().run(); } static class trinode { trinode left; trinode middle; trinode right; int value; public trinode(int value) { this.value = value; } } private map<integer,string> tritreelevels=new hashmap<integer, string>(); public void run() { // build simple tree chapter 11. trinode root = new trinode(50); system.out.println("binary tree example"); system.out.println("building tree root value " + root.value); insert(root, 25); insert(root, 30); insert(root, 10); insert(root, 100); insert(root, 190); insert(root, 80); insert(root, 89); insert(root, 75); insert(root, 150); insert(root, 200); insert(root, 125...

design patterns - Ajax call to a JSP -

i working on web app, extjs makes ajax call jsp, jsp in turn calls java class , returns value , updates in database. now question is, somehow not feel effective way, discovered servets working , wondering if should make ajax call servlet instead of jsp. there other ways better , optimized. please explain. thanks, sixthstring it depends on want returned form ajax call. jsp used generating formatted html. if that's you're looking ajax call, jsp right choice. if you're looking raw data, might skip jsp template , go straight servlet. recommend using json in case, because it's easy work in javascript.

jquery - Is it possible to upload a file by dragging a file from the desktop to the browser -

Image
the idea drag icon(of specific file) desktop , release on particular location @ website??? possible implement (by jquery?) i recommend use plupload doing task. because component based on lot of plug-in or feature depend on plug-in available in current browser. still has limitation on drag-drop feature.

javascript - Can I prevent history.popstate from triggering on initial page-load? -

i'm working on site serves content via ajax. if click item in menu, content div gets updated $.get response, nothing fancy. i'm implementing history.pushstate allow navigation browser's back/forward button. i have following load content on history navigation: $(function() { $(window).bind("popstate", function() { $.getscript(location.href); }); }); the problem is, when page loaded first time, function $.getscript page loaded again. first time page loaded renders initial html view, on second load renders js view, since js request. how prevent event firing on pages html requests? using native html5 history api you're going run problems, every html5 browser handles api little bit differently can't code once , expect work without implementing workarounds. history.js provides cross-browser api html5 history api , optional hashchange fallback html4 browsers if want go down route. for upgrading website ria/ajax-app...

Struts2 jQuery Plugins : JSON to load a Dropdown list on clicking a Radio button -

can suggest how apply json dropdown on clicking radio button. using struts2 jquery plugins , spring framework. i able retreive data upto action not able populate on jsp when tried got following error. [cachedconnectionmanager] closing connection you. please close them yourself: org.jboss.resource.adapter.jdbc.jdk5.wrappedconnectionjdk5@3f141d java.lang.throwable: stacktrace an suggset me correct method? dropdown <sj:select listentopics="comment" href="%{getcategory}" deferredloading="true" list="categorylist" name="details.catagory" headerkey = "-1" headervalue="select" id = "catagory" cssstyle="width: 200px;" emptyoption="true" formids="incident" onchange="" />

php - permutation/generate combination prefix and suffix -

i have array of prefixes, array of base words , array of suffixes. see every combination can made. example: prefixes: 1 2 words: hello test suffixes: _x _y results: 1hello_x 1hello_y 1hello 1test_x 1test_y 1test 1_x 1_y 1 2hello_x 2hello_y 2hello 2test_x 2test_y 2test 2_x 2_y 2 hello_x hello_y hello test_x test_y test _x _y y how can this? edit: responses, going through solutions seems if there no prefixes, fail combination. should still go through base words , suffixes, without prefixes. function combineall ($prefixes, $words, $suffixes) { $combinations = array (); foreach ($prefixes $prefix) { foreach ($words $word) { foreach ($suffixes $suffix) { $combinations[] = $prefix.$word.$suffix; } } } return $combinations; }

How to tell if a post in facebook graph api can be retrieved without login, or can be retrived at all - returns false? -

i have facebook token getting graph.facebook.com/me/home url fine. on posts pictures, pull out picture id post can detailed information sizes , urls different images. the problem on feed, don't see "privacy" fields users. way these urls work vary widely. example, photo can viewed while logged out of facebook. photo can viewed long logged in anyone. photo private. when query graph.facebook.com/(photoid) of time false. there permission should getting users don't have here? restricted not user perhaps permission of friend's photo? noticed in @ least 1 case, cold "false" on photoid, logged in personal account (not knowing person @ all) see photo fine. these inconsistent levels of security confusing me. i way tell kind of link going before bother querying photoid or sending url on further processing. there way force field on feed or there field contains data i'm not seeing? its not made clear facebook. unfortunately, because don't h...

asp.net - Should I put custom AppSettings web.config data into the ApplicationState? -

i've got custom values in appsettings, in web.config file. these values checked upon every request. (please ignore fact might bad/good thing .. that's out of scope of question). eg. so if every request checks web.config file value of key, be smart put application cache (eg. via global.asax) instead of checking value every request? i'm assuming when read value appsettings, website physical read of web.config file? or information read memory when website starts , references appsettings information inmemory read .. not disk i/o read? the webconfig cached. @ first request of website physical read. others requests use cache data. why when change web.config file , call request site have little delay, because information in web.config being recached.

tsql - In vs. Comparison Search Conditions -

i understand where 1 = '1' returns true, , where 222 = convert(varchar, 222) return true in t-sql. but, when working in, can test_expression , subquery of different datatypes? example can test_expression int, , subquery varchar? they can be: datatypes cast highest based on " datatype precedence " rules. logically, x in (a,b,c) x=a or x=b or x=c of course. relevant contrived case using scalar values. really don't know if values cast float (the highest here) before comparison ( ..in.. ) or cast per comparison ( ..or..or.. ) where cast(1 int) in ('1', cast(1.0 float), 1.0 /*decimal*/) for subquery in in clause, column has data type cast per scalar rules edit, after comment: all datatypes implicitly cast select top 1 * sys.columns 1 in (select cast('1' char(1)) sys.columns) or declare @intvar int = 1, @charvar char(1) = '1'; select top 1 * sys.columns @intvar in (select @charvar sys.columns) ...