Posts

Showing posts from February, 2010

How to install GraphViz and use it on Kodingen? -

i use graphviz generate graph pictures , view them on web. graphviz work fine on computer how can use on linux server? at moment, use kodingen.com run site. possible use graphviz on web , generate pictures .dot files? procedure install it? , use it? for exemple on computer (windows) use: dot.exe -tpng "input.dot" -o "output.png" it seems like other package on kodingen. using toolbar on left: click on app store scroll bottom of list , click search applications type in graphviz , click list applications however when tried install it, failed. seems because ohloh doesn't have download page it. depending on flavour of linux (ubuntu, redhat), should able install via package manager . instance, on ubuntu/debian, should able enter sudo apt-get install graphviz shell , have installed.

android - Setting a StateListDrawable as ImageButton/ImageView.backgroundDrawable in a widget based on users choice in the configuration activity -

i'm creating widget user in configuration activity can select variety of graphics used in button (imageview (or imagebutton) with statelistdrawable). selected graphic used in widget layout when widget added. layout follows: <?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center"> <imageview android:id="@+id/button" android:layout_width="72dip" android:layout_height="72dip" android:background="@null" android:clickable="true"> </imageview> </linearlayout> my question is, how set selected backgroundresource in imagebutton shown in widget based on users choice in configu...

iphone - Issue Subclassing UIView -

i've created own custom view, own header , main file , corresponding nib (.xib): the header file #import <foundation/foundation.h> #import <uikit/uikit.h> @interface pointsbarview : uiview { iboutlet uiview *pointsbarview; iboutlet uiview *pointscounterview; iboutlet uilabel *pointstotallabel; uiimageview *handimageview; uiimageview *powerbaroutlineimageview; } @property (nonatomic, retain) iboutlet uiview *pointscounterview; @property (nonatomic, retain) iboutlet uiview *pointsbarview; @property (nonatomic, retain) iboutlet uilabel *pointstotallabel; @property (nonatomic, retain) iboutlet uiimageview *handimageview; @property (nonatomic, retain) iboutlet uiimageview *powerbaroutlineimageview; @end i'm synthesizing in main, , in uiviewcontroller class i'm trying load view. set property: @property (nonatomic, assign) iboutlet pointsbarview *pointsbarview; and adding so: nsarray* nibviews = [[nsbundle mainbundle] loadn...

iphone - Accessing NSDictionary inside NSArray -

i have nsarray of nsdictionary . each dictionary in array has 3 keys: 'name', 'sex' , 'age' how can find index in nsarray of nsdictionary where, example, name = 'roger' ? nsuinteger count = [array count]; (nsuinteger index = 0; index < count; index++) { if ([[[array objectatindex: index] objectforkey: @"name"] isequaltostring: @"roger"]) { return index; } } return nsnotfound;

php - Is it possible to do a find function in SQL? -

i'm looking this: let's have string.. $chk="pie"; and want find in database string $chk in it.. say database looks this: username realname 123pieo bob ilikepie carl wat tom can select ones contain $chk in them how? this select rows contain "pie" in username. select * tablename username "%pie%"

vb.net - Determine Zodiac sign and weekday of birth -

hey, need make program in vb.net asks user's birthday. program should give day of week person born , astrological star sign. can me?? please! private function zodiac(byval birthday date) string dim year integer = birthday.year dim zodiacs = { new {.from = new date(year, 1, 1), .[to] = new date(year, 1, 19), .zodiac = "capricorn"}, new {.from = new date(year, 1, 20), .[to] = new date(year, 2, 18), .zodiac = "aquarius"}, new {.from = new date(year, 2, 19), .[to] = new date(year, 3, 20), .zodiac = "pisces"}, new {.from = new date(year, 3, 21), .[to] = new date(year, 4, 19), .zodiac = "aries"}, new {.from = new date(year, 4, 20), .[to] = new date(year, 5, 20), .zodiac = "taurus"}, new {.from = new date(year, 5, 21), .[to] = new date(year, 6, 20), .zodiac = "gemini"}, new {.from = new date(year, 6, 21), .[to] = new date(year, 7, 22), .zodiac = "cancer"}, new {.from = ne...

max - Solving stochastic maximum bipartite matching problem -

i have faced following problem: there 2 disjoint sets, a , b for each pair of elements ( a , b ) ( a belongs set a , b belongs set b ) there probability pij known in advance. represents probability (certainty level) a matches b , or in other words, how closely a matches b (and vice-versa, because pij == pji ). i have find matching highest probability/certainty , find out pairs ( a , b ) describe matching every element must matched / paired other set once (like in standard bipartite matching problem) if possible, compute number approximately expresses uncertainty level obtained matching (let's 0 represents random guess , 1 represents certainty) a simple practical example in such algorithm required described below (this not problem solving!): two people asked write letters - z on piece of paper for each pair of letters ( a , b ) run pattern matcher determine probability letter a written person a represents letter b wrote person b . gives probability matri...

java - Permgen space error tomcat -

i installed 2 tomcat in machine , deployed same application on both. both application , tomcats running great. tried adding both services services.msc. done successfully. can start , stop service services.msc. on accessing both application simultaneously, found, able access 1 application , when trying access other application, corresponding service goes stop permgen space error in logs. i tried increasing space of ms , mx , found "path executable" under tomcat6w.exe same. now concern how remove permgen space error. in points looks both services using 1 tomcat. if starting tomcats through command prompt or through batch file both working great problem causes on case when accessing both services services.msc. can guys please me in overcoming problem. set xx:maxpermsize . increase permsize of jvm. example -xx:maxpermsize=64m . reference

algorithm - Unable to solve a homework (ACM-training) -

i have no idea how solve this: http://acm.sgu.ru/problem.php?contest=0&problem=311 please me one i know can solved using segment tree don't know how read of prices , set segment tree. each segment, store number , total cost of pieces prices lie in segment. that's of problem, , rest of answer rather vague in hopes learn something. handling arrival of pieces straightforward o(log n)-time descent in segment tree. handling purchase request o(log n)-time descent followed update if sale made. update may traverse large amount of segment tree , fast in amortized sense – interval should entered if , if there pieces in price range, , running time of removal should charged arrival.

json - DataContractJsonSerializer not deserializing html entities -

i receiving data web service, , of strings have html entities in them, example: {"prop": "htmlentity - &eacute;"} the &eacute; not being parsed é. my question twofold: is supposed happen? looked through json spec best could, couldn't find reference html entities. what right way datacontractjsonserializer ? , if there right way? you can call httputility.htmldecode on strings contain html entities. this not job of datacontractjsonserializer, json spec requires quotation mark, reverse solidus, , control characters escaped.

Producer-Consumer-Problem‍ using SQL Server and ASP.NET -

classic producer-consumer-problem. i have x app servers write records in db table (same db). on each server, service running polls db table , supposed read oldest entry, process , delete it. issue services race condition: service on server starts reading, server b starts reading same record. i'm bit stuck on this...i have implemented producer-consumer never across server barriers. the server cannot talk each other except on db. environment sql server 2005 , asp-net 3.5. if pick work in transactional way, 1 server can pick up: set transaction isolation level repeatable read update top 1 tbl set processingonserver = host_name() yourworktable tbl processingonserver null , done = 0 now can select details, knowing work item safely assigned you: select * yourworktable tbl processingonserver = host_name() , done = 0 the function host_name() returns client name, if think it's safer can pass in hostname client application. ...

artificial intelligence - Actions and effect axioms -

Image
i want create axiom-action tha enable agent move or down between doors if robot in lift node, , if route connects 2 lift nodes a map shows structure of building. each node either represent room (rn) or lift (ln). robot can either move between rooms (solid lines), or move between oors (dashed lines). robots needs specify direction (up/down) when taking lift. i thinking of like : isrobot(r) , isedge(e) , islift(x) , islift(y) , isfloor(floor1) , isfloor(floor2) , -(x==y) , -(floor1==floor2) , at(inside(r,x),floor1) , edgefrom(e,x,y)ad=>goup(inside(r,y),floor2) or godown(inside(r,y),floor2) my predicates are : move(x,y)- edgefrom(x,y,z)- at(x,y) inside(x,y)- dusting(x,y)- isclean(x)- isroom(x)- isedge(x)- isfloor(x)- goup(x,y)- godown(x,y) islift(x) isrobot(x) did formalized action right?if not should do? you should @ pddl , strips documentations; it'll help. http://planning.cis.strath.ac.uk/competition/ they have sample problems; ...

mobile - Looking for a User Agent String to detect the kind of cell phone? -

does know user agent string tell me if cell phone iphone, blackberry, android, dumbphone?? have @ wurfl . has device capability database, , associated api php , java matches user agents devices in database. , it's free. a commercial alternative deviceatlas , api deal more primitive wurfl's.

php - Activating user's accounts by mailing them -

<!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" lang="en" xml:lang="en"> <body> <?php require_once('database_detail.php'); if(isset($_post['submit'])) { $dbc=mysqli_connect(cname,chost,cpwd,cdb); $username=mysqli_real_escape_string($dbc,trim($_post['username'])); $password=mysqli_real_escape_string($dbc,trim($_post['password'])); $confirm=mysqli_real_escape_string($dbc,trim($_post['confirm'])); $email=mysqli_real_escape_string($dbc,trim($_post['email'])); $phone=mysqli_real_escape_string($dbc,trim($_post['phone'])); if(!empty($username) && !empty($password) && !empty($confirm) && !empty($email) && !empty($phone)) { if($password==$confirm) { $query="select *...

wpf - RichTextBox C# Draw Text method? -

whats method draws text in richtextbox ? tried overriding onrender() called when initialize richtextbox not when i'm typing. dont want call onselectionchange or ontextchange. need method draws text. im using richtextbox windows.controls edit my richtextbox contains words separated image separators. want use ondraw method or create rectangle add adorner image on top of each word. there isn't method draws text. wpf richtextbox holds flowdocuments, closely related xps. rendered in same way wpf is. edit: use methods described here position of text , add adorners. edit 2: use this technique character positions. rect rect = base.getrectfromcharacterindex( idx );

little java help with loops -

hi doing practice problems , trying print diagonal line example below. have writen program see below , dont understand doing wrong. m java beginner , cant see how find error. example: * * * * * code: class diagonal{ public static void main(string args[]) { int row, col; for(row = 1; row < 6; row++) { for(col = 1; col <= row; col++) { if(col==row){ system.out.print("*"); } else{ system.out.print(""); } system.out.println(); } } } } i trying learn loops because confuse me. practice print similar diagonal line time right left. cant without getting right :( believe pretty similar? above reasining this: long column # same row number print line or otherwise leave blank....what's wrong how did it? thank you! you never print space character. print empty string. replace system.out.print(""); with system.ou...

Interpreting a Relative path in a URL -

i'm writing 'webcrawler' in python takes url , depth-first search following links down limited depth. problem i'm having interpreting relative paths in urls. on page http://learnyouahaskell.com/introduction/ have @ "starting out" link; looks <a href="starting-out" class="nxtlink">starting out</a> . how can determine whether link refers "http://learnyouahaskell.com/introduction/starting-out" or "http://learnyouahaskell.com/starting-out"? second 1 correct according browser. yet on page http://math.colgate.edu/~mionescu/math399s11/ there link <a href="finalprojects.pdf">here</a> resolves "http://math.colgate.edu/~mionescu/math399s11/finalprojects.pdf". can explain inconsistency me? how can determine how these paths should resolved in crawler? the reason 'apparent' inconsistency learnyouahaskell site using <base href=""> tag in source....

c# - Auto Run CD With Application written using .net platform -

we building application on .net, , image viewer application uses .net 3.5. , application on cd along other images. my question is, possible auto run application when insert cd on machine doesn't contain .net frame work. or other ways of building application runs cd. the application fail run directly when cannot find libraries need. what can create non-.net dependent bootstrapper, include framework installer. so when cd auto run, run bootstrapper, bootstrapper run installer. once installed, run application.

javascript - Converting Gregorian date to Hijri date -

how convert gregorian dates islamic hijri dates using javascript? function gmod(n,m){ return ((n%m)+m)%m; } function kuwaiticalendar(adjust){ var today = new date(); if(adjust) { adjustmili = 1000*60*60*24*adjust; todaymili = today.gettime()+adjustmili; today = new date(todaymili); } day = today.getdate(); month = today.getmonth(); year = today.getfullyear(); m = month+1; y = year; if(m<3) { y -= 1; m += 12; } = math.floor(y/100.); b = 2-a+math.floor(a/4.); if(y<1583) b = 0; if(y==1582) { if(m>10) b = -10; if(m==10) { b = 0; if(day>4) b = -10; } } jd = math.floor(365.25*(y+4716))+math.floor(30.6001*(m+1))+day+b-1524; b = 0; if(jd>2299160){ = math.floor((jd-1867216.25)/36524.25); b = 1+a-math.floor(a/4.); } bb = jd+b+1524; cc = math.floor((bb-122.1)/365.25); dd = math.floor(365.25*cc); ee = math.floor((bb-dd)/30.6001); day =(bb-dd)-math.floor(30.6001*ee); month = ee-1; if(ee>13) { cc += 1; ...

css - Putting a Rectangular Border Around Text -

for class below, trying put rectangular border around text, css not doing expect. how put border around text? thanks in advance, john css: .commentnotify { position:absolute; width:310px; left:30px; top:240px; color: #004993; border: medium; border-color: #004993; font-family:arial, helvetica, sans-serif; font-size: 10px; font-weight: bold; height: 15px; padding-bottom: 0px; padding-left: 2px; } you can combine border attributes in single one: border:1px solid #004993;

Is there any key/value pair structure in JavaScript? -

i want store information like: pseudo-code array(manager) = {"prateek","rudresh","prashant"}; array(employee) = {"namit","amit","sushil"}; array(hr) = {"priya","seema","nakul"}; what kind of data structure can use? you can use arrays store list of data ; , objects key-value in case, you'd use both : var data = { 'manager': ["prateek","rudresh","prashant"], 'employee': ["namit","amit","sushil"], 'hr': ["priya","seema","nakul"] }; here, data object ; contains 3 arrays.

php - Compare timestamp to date -

i need compare timestamp date. compare date portion without time bit. need check whether timestamp occurs on day before yesterday i.e. today - 2. could show me snippet please? thank you. i've been reading through php docs couldn't find clean way of doing this. found converting timestamp date particular format , comparing date doing time delta date before yesterday , converting particular format. messy. you can arcieve using function strtotime . to round day personaly edit timestamp. notations of seconds since epoch. 1 day 86400 seconds, if following caculation: $time = $time - ( $time % 86400 ); you can convert date again date function of php, example: $readableformat = date( 'd-m-y', $time ); there on internet topic.

javascript - Avoiding hardcode solution to post method -

i have post method $.post("/abc/export.action", { sessiontoken: sessiontoken, exporttype: "xls", param1:comparedata, param2:comparepatchdata}, function(resdata) { alert(resdata); } ); i wanted best practice can have enumeration or array stores post parameters in , use while post, way in can avoid hardcoding of sessiontoken , param1 etc.. solution? edit sometimes might happen need change names of params have edit everywhere have post method, instead of if params there in enum or array easier change @ 1 place. if want labels in object based on other variable can with var paramlabels = {"session": "sessiontoken", "type": "exporttype", ...} var paramvalues = {}; paramvalues[paramlabels.session] = sessiontoken; paramvalues[paraml...

Data Import from .TXT to MS Access 2003 -

i have .txt file contains data of access table. using import utility of ms access 2003 import data text file table. theere 1 data in text file has space @ left.therefore data looks :: [ 12461]. when import completed data in table looks :: [12461]. left space trimmed. result data getting changed. help? well. both leading , trailing spaces trimmed when import .txt data access. case if specify column data type either text or number. suggest following workaround depends on how data have. so: replace spaces in original .txt file e.g. "^^^". should character(s) know not exist in file. do regular import. please note altered columns automatically typed text. do ctrl+h replace "^^^" whitespace. fix leading spaces only, though.

sql - How to view a recordset in an access table by means of vba? -

with of embedded access vb editor i've written small code analyse field values of database, , want view recordsets in table inside opened access. newbie can use debug.print display field names. of tell me statements/commands can execute sql string in order view result recordset values? debug.print finalsqlstring as far know, there no way display datasheet containing vba instance of recordset. if source of recordset strqsl, create table results, , open one, or more elegantly, create querydef , open it: sub showqd(strqdname string, strsql string) 'creates querydef , display in datasheet' dim qd dao.querydef set qd = currentdb.createquerydef(strqdname) qd .returnsrecords = true .sql = strsql end docmd.openquery strqdname end sub if focus on displaying things, put listbox in form, set number of columns number of fields returned query ( qd.fields.count ), , set strsql rowsource of listbox. and... if put related code in for...

c# - Parsing datetime in textbox -

i have datetime in 1 simple textbox. format of textbox's value can dd/mm/yyyy or mm/dd/yyyy. want parse using datetime.parse(string). dates works , others throws exception. how handle this? how make sure no matter format provided parses correct (as long valid date)? thanks in advance :) edit as there no fix answer modify question ask how convert mm/dd/yyyy? should provide in iformatprovider of datetime.parse? datetime needs know how parse date otherwise won't know whether 05/07/2011 5th july or 7th may. wouldn't better use calendar control remove ambiguity?

java - Concurrent access on same table from two servers -

i accessing sql server 2005 table java j2ee using preparedstatements. jars deployed on 2 servers , run in parallel. process follows: select event table new user events process them (send emails users , other) delete processed events event table (if step 2 wasn't executed ok no delete should done) in cases, users receives 2 emails (one each server) because 2 selects executed simultaneously before delete statement. don't have admin rights on table, access java application. how can lock table @ first select , unlock after delete? see solution this? if pick work in transactional way, 1 server can pick up: set transaction isolation level repeatable read update top 1 tbl set processingonserver = host_name() yourworktable tbl processingonserver null , done = 0 now can select details, knowing work item safely assigned you: select * yourworktable tbl processingonserver = host_name() , done = 0 the function host_name() retu...

Get html block by PHP -

we have html page, has many code inside. sometimes has block #container , not. all code of page inside $page variable. how i: check, there block id="container" ? if html page has #container inside, contents of block , write variable $container . task should done php. one of possible ways solve problem use third party library. let's http://simplehtmldom.sourceforge.net/ : $html->load($page); if ($html->find('#container')) $container = $html->find('#container');

c# - Query inside a thread -

i have 3 comboboxes loaded data linq queries on page load. problem queries contain data causes internet explorer stop responding bit more minute. as there 3 queries idea put them in 3 different threads, problem @ end thing error saying: "both datasource , datasourceid defined on 'cborganizator'. remove 1 definition." cborganizator combobox. here code: protected void page_load(object sender, eventargs e) { bind(); } public void osobe() { pravosudnaakademijaentities db = new pravosudnaakademijaentities(); var osoba = o in db.osobas orderby o.osoba_prezime select new { o.osoba_id, imeprezime = o.osoba_prezime + " " + o.osoba_ime + " | " + o.tijelo.tijelo_naziv + " | " + o.radno_mjesto.rm_naziv_m }; cbpolaznik.datasource = osoba; cbpolaznik.datatextfield = "imeprezime"; cbpolaznik.datavaluefield = "osoba_id"; cbp...

Re-importing existing clearcase views into RationalClearcase client -

i have created project views rational clearcase client. however, went wrong system left me no choice reinstall rational clearcase client. problem is, have existing folders of views. how re-import shown in clearcase navigator? thanks! marc if view storage still there, , if have view.dat (hidden file) @ root of view, can, in dos session (i assume windows here): cd c:\path\to\my\view clearexplorer . (note "space dot" after clearexplorer command) that open clearcase explorer directly within view, , restore view shortcut.

jquery - onclick check checkboxes by name -

how make js code work checkboxes within td id="sel"; $(document).ready(function() { $('input[name="selector"]').click(function() { $("#sel :checkbox").attr('checked', $(this).is(':checked')); }); }); try this $(document).ready(function() { $('input[name="selector"]').click(function() { $("#sel input:checkbox").attr('checked', $(this).is(':checked')); }); });

asp.net mvc - MVC 3 - Accessing ModelMetaData for IEnumerable Model? -

i'm trying access modelmetadata custom htmlhelper i'm working on. htmlhelper has signature ... public static mvchtmlstring datagrid<t>(this htmlhelper<t> htmlhelper){} the (razor) view looks ... @model ienumerable<logmyassets.models.contactmodel> .... @html.datagrid() my problem can't access modelmetadata model it's ienumerable. thought following: var model = (ienumerable<t>)htmlhelper.viewdata.model; var metadata = model.elementat(0).getmetadata(); public static modelmetadata getmetadata<tmodel>(this tmodel model) { return modelmetadataproviders.current.getmetadatafortype(null, typeof(tmodel)); } but stangely enough following error: unable cast object of type 'system.collections.generic.list`1[lma.models.contactmodel]' type 'system.collections.generic.ienumerable`1[system.collections.generic.ienumerable`1 i though could cast generic list generic ienumerable. missing something? i don't under...

c++ - IFileDialog / IShellItem::GetDisplayName doesn't work with Windows 7 libraries -

ifiledialog *pfd; ... cocreateinstance(clsid_fileopendialog,null, clsctx_inproc_server,iid_ppv_args(&pfd)); ... ishellitem *psiresult; pfd->getresult(&psiresult); ... wchar_t *filepath; psiresult->getdisplayname(sigdn_filesyspath,&filepath); ... this works regular files fails (e_invalidarg) when file fetched via windows 7 library folder (the same file work when accessed via it's normal path). doc says : sigdn_filesyspath (returns item's file system path, if has one. items report sfgao_filesystem have file system path. when item not have file system path, call ishellitem::getdisplayname on item fail . in ui name suitable display user in cases, note might not specified items. but using sigdn_normaldisplay or others sigdn enumeration fails too. so how full path when file fetched via windows 7 libraries ? edit 1 i can folder via : ishellitem *psiresult; pfd->getfolder(& psiresult); lpwstr folderpath = null; psir...

ruby on rails 3 - ActiveResource, a model, and Form_Tag -

i trying use form_tag pass params captured form users controller. attempting communicate sinatra server, , not have database on client. view follows: <% form_tag(@user) %> <div class="field"> <%= label_tag :first_mame %><br /> <%= text_field_tag :first_name %> </div> <div class="field"> <%= label_tag :last_name %><br /> <%= text_field_tag :last_name %> </div> <div class="field"> <%= label_tag :email %><br /> <%= text_field_tag "user[email]" %> </div> <div class="field"> <%= label_tag :device_id %><br /> <%= text_field_tag "user[device_id]" %> </div> <div class="field"> <%= label_tag :type %><br /> <%= text_field_tag "user[device_type]" %> </div> <div class="actions"> <%= submit_tag %> </div> <% end %> ...

memory management - iOS - assignment of ivars through properties -

given instance variable: uilabel *label; and below property: @property (nonatomic,retain) uilabel *label; and following synthesize: @synthesize label; are these below assignments correct (with respect correct memory management): // 1 uilabel *tmplabel = [[uilabel alloc] initwithframe:cgsizezero]; self.label = tmplabel; [tmplabel release]; // 2 self.label = [[[uilabel alloc] initwithframe:cgsizezero] autorelease]; // 3 - 1 looks shady haven't gotten leaks ( suppose // not use created setter) label = [[uilabel alloc] initwithframe:cgsizezero]; - (void)viewdidunload { self.label = nil; [super viewdidunload]; } - (void)dealloc { [label release]; [super dealloc]; } all correct. thing note if release label in -viewdidunload have recreate in viewwillload. correct in number 3 not go through setter.

java - Regular expression matching fully qualified class names -

what best way match qualified java class name in text? examples: java.lang.reflect , java.util.arraylist , org.hibernate.hibernate . a java qualified class name (lets "n") has structure n.n.n.n the "n" part must java identifier. java identifiers cannot start number, after initial character may use combination of letters , digits, underscores or dollar signs: ([a-za-z_$][a-za-z\d_$]*\.)*[a-za-z_$][a-za-z\d_$]* ------------------------ ----------------------- n n they can not reserved word (like import , true or null ). if want check plausibility only, above enough. if want check validity , must check against list of reserved words well. java identifiers may contain unicode letter instead of "latin only". if want check well, use unicode character classes: ([\p{letter}_$][\p{letter}\p{number}_$]*\.)*[\p{letter}_$][\p{letter}\p{number}_$]* or, short ([\p{l}_$][\p{l}\p{n}_$]*\.)*[\p{l}_$][\...

Problem passing C++ comparator functor as a parameter -

suppose have template class called linkedlist contains method called sort want able have default comparator assuming type t can compared < operator. however, want able override other types. this part of custom library i'm extending. no stl. e.g. template <class t, class comparator<t> > class linkedlist { ... node* mergesort(node* list) { ... if (comparator<t>(nodea,nodeb)) ... } ... }; typedef pair<int, int> listentry; struct sorter { inline sorter(){} inline bool operator()(listentry const& a, listentry const& b) { return a.second < b.second; } }; pair<int, int> entry; linkedlist<listentry, sorter()> list; list.pushfront( listentry(5,9) ); list.pushfront( listentry(77,5) ); list.pushfront( listentry(4,1) ); list.pushfront( listentry(8,44) ); list.pushfront( listentry(1,64) ); list.pushfront( listentry(3,5) ); n = list.mergesort(node* n); this class looks like. ...

Java Mortgage Calculator Reading a Sequential File -

possible duplicate: how populate jcombobox textfile? ok, have issue here cannot quiet figure out. have file has variables on each line of: 5.35, 5.5, 5.75 in file called apr.txt. reading file , need populate file jcombobox. far have file being read fine cannot figure how populate jcombobox. must easy. can point me in proper direction? thank in advance. import java.awt.*; import java.text.numberformat; import java.awt.event.actionevent; import java.awt.event.actionlistener; import java.io.bufferedreader; import java.io.file; import java.io.filereader; import java.util.stringtokenizer; import javax.swing.*; import javax.swing.jcombobox; public class mortgagecalculatorgui9 extends jframe implements actionlistener { // declarations //double [] interest = {5.35, 5.5, 5.75}; int [] length = {7, 15, 30}; double [] file_data = new double[3]; jlabel mortgagelabel = new jlabel( "principal amount:$ " ); ...

c++ - Loki's SetLongevity function seems unsafe to me, is that so? -

there global variable called "ptrackerarray", used in loki's setlongevity function. declaration of ptrackerarray: typedef std::list<lifetimetracker*> trackerarray; extern loki_export trackerarray* ptrackerarray; definition of setlongevity: template <typename t, typename destroyer> void setlongevity(t* pdynobject, unsigned int longevity, destroyer d) { using namespace private; // manage lifetime of stack manually if(ptrackerarray==0) ptrackerarray = new trackerarray; // simplicity, rest of code omitted ... } is thread safe use ptrackerarray such in setlongevity? as shown, not. however, if reading rest of file correctly, setlongevity is, ultimately, ever called within function wrapped in mutex [provided requested singleton thread-safe, obviously]. so while particular function has issues, use still safe. however, mutex create in base function paramaterized on type of singleton creating, while global pointe...

html - Is this the correct way to check in PHP that a checkbox is checked? -

i have code check tos checkbox checked: if (!isset($_post['tosagree'])) {//if user did not agree tos $errors[] = '<span>please agree terms of service.<span>'; } for reason allowing me register code there. weird thing if other field not field , field not checked print error, if problem allows user register. update: seems problem weird in code. if feel looking through 217 lines of code here code: http://pastebin.com/ykerypef whether !isset($_post['tosagree']) enough depends on browser. to safe, set value attribute of checkbox. then, check if value present: <input type='checkbox' value='agreed'/> then this: if (!isset($_post['tosagree']) || $_post['tosagree'] != "agreed" ) { $errors[] = '<span>please agree terms of service.<span>'; } also, when value attribute not explicitly specified, browsers set value on when checked. edit ok, know what...

c - Getting a random real number in a certain range using WELL512 -

i'm using well512 pseudorandom number generator function described in this paper . function returns random unsigned long value. how use return value produce random real number within range - float between 340.92491 , 859812.53198 inclusive. the documentation c rand() function seems warn against using mod. well, mathematically it's just: min_value + (max_value - min_value) * (my_random() / (long double)ulong_max) (assuming my_random() returns uniformly distributed number between 0 , ulong_max) however, depending on exact values of min_value , max_value , , ulong_max , floating point numbers more others. each possible random unsigned long maps float formula. since number of distinct floating point numbers between min_value , max_value not ulong_max , unsigned longs map same floating point number or floating point numbers have no unsigned long map them or both. fixing make result uniform is... non-trivial, think. maybe better read can cite paper. ...

javascript - jQuery Modal Window that changes size on loading new content -

i'm beginning out jquery , need modal window contains review form. after submitting form using ajax, server return status message displayed on modal window. how can make modal window resized (from large window hold review form small 1 fits status message)? any recommended plugins/tutorials on this? using plugin best way start off? you can try jquery ui dialog "width" , "height" properties set "auto"

objective c - How do I make iPhone vibrate? -

i using code buy getting compile errors audio line. know why? - (void)handletimer:(nstimer *)timer { self.counter--; self.timerlabel.text = [nsstring stringwithformat:@"%ld", self.counter]; if (self.counter == 0) { audioservicesplaysystemsound(ksystemsoundid_vibrate); } } you forgot import framework #import <audiotoolbox/audiotoolbox.h>

c# - 3 Table LINQ query with a where clause -

this simple yet evil linq query giving me problems @ runtime (note appropriate clause works long i'm not using joins: var query = iday in db.datetimeslot join tsk in db.tasks on iday.fktask equals tsk.pktask join dte in db.mdate on iday.fkdate equals dte.pkdate dte.mdate1 == day.tostring(dtform) select new { tsk.pktask, tsk.task, iday.fktask, iday.timeslot, iday.mdate, dte.mdate1 }; i can clause work @ runtime if it's applies db.datetimeslot column. otherwise, query works if remove clause. if try use proper cause, 1 listed here, receive 'unhandled exception: system.argumentexception: value not fall within expected range' error when try foreach through var query result. note when strip out join clauses, clause indeed work, when query proper table. the schema of database is: tasks -∞ datetimeslot ∞- mdate i trying list of tasks related mdate.date, clause tests mdate.date. thanks edit: here sqlite db sche...

Develop android Application using Html,Css and JavaScript -

i develop android application using html,css , javascript in android sdk. dont want use tool titanium , phone gap . is possible make application using html,css , javascript ? are android web apps native apps? can same functionality achieved through web apps? if in comparison of native application , can 1 tell me proper way or provide me tutorial ? the short answer: yes, can develop apps using html / css / javascript. take 2 webview tutorials , call me in morning. the long answer: if want write apps android use html / css / javascript, you'll have @ least create native webview wrapper. relatively easy -- unless want hook native functions, such accelerometer, camera, or toast messages (the little messages pop when happens). accessing native hardware , software through webview requires write javascriptadapter (available in android 2+), , define custom javascript methods in javascriptadapter. methods map java function, have access native os facilities. fram...

shell - deleting only pattern from the lines of a file -

i want delete pattern file using shell script. example, given: blah blah (100%) blah blah i want delete occurrences of pattern (100%) , if appears more once on line, , on lines in file appear. you can use sed echo "blah (100%) blah (100%)" | sed 's/(100%)//g' blah blah

deployment - How to deploy SharePoint Service Application during development -

i developing sharepoint service application. need deploy test newly updated code. this, using 'deploy' command available in visual studio 2010. service application gets deployed successfully, new code update not , running until restart entire machine. tried restart iis admin service. no use. appreciated. [answer posted op in comment] actually, service application has been hosted in separate application pool. once recycle particular application pool, newly modified code gets affected , running. helps me avoid computer restart , iis reset.

mapreduce - java.io.IOException: error=2, No such file or directory eroor in Hadoop streaming -

please "-file" option issue of hadoop streaming (mentioned in link below). update, know jar there, trying after tried hadoop-streaming different class file failed, identify if there wrong class file or way using it. if need stderr file please let me know. problem hadoop streaming -file option java class files . you can't use -file send on jars hadoop doesn't support multiple jars (that not in classpath), check streaming docs : at least late version 0.14, hadoop not support multiple jar files. so, when specifying own custom classes have pack them along streaming jar , use custom jar instead of default hadoop streaming jar.

Need help with javascript unchecking of one checkbox unchecks the main checkbox -

i have table has header checkbox in row. data gets dynamically added in table javascript. checking on checkbox in header row checks or unchecks checkboxes of rows.. have done till here in method "checkuncheck()" , i.e.: <input type="checkbox" id="chkappid" onclick="checkuncheck()"/> but now, suppose there 10 records dynamically added in table. have checked main checkbox in header. after that, uncheck 1 of checkboxes, e.g.: on 10th row, checkbox of header must unchecked....and if check of 10 rows of checkboxes manually, checkbox of main header must checked. observed in yahoo, gmail, etc... one way count number of checked ones , compare total number of rows, , if found equal, check main one; otherwise, uncheck main one. can't figure out that... not working! update <html> <head><title>checkbox puzzle</title></head> <body> <input type="checkbox" id="chkappid" oncl...

Efficiency of crossover in genetic algorithms -

i've implemented number of genetic algorithms solve variety of problems. i'm still skeptical of usefulness of crossover/recombination. i first implement mutation before implementing crossover. , after implement crossover, don't typically see significant speed-up in rate @ candidate solution generated compared using mutation , introducing few random individuals in each generation ensure genetic . of course, may attributed poor choices of crossover function and/or probabilities, i'd concrete explanation/evidence why/whether or not crossover improves gas. have there been studies regarding this? i understand reasoning behind it: crossover allows strengths of 2 individuals combined 1 individual. me that's saying can mate scientist , jaguar smart , fast hybrid. edit: in mcdowella's answer, mentioned how finding case cross-over can improve upon hill-climbing multiple start points non-trivial. elaborate upon point? you correct in being skeptical cr...

java - Make a bunch of JLabel 's' invisible -

i have 8 jlabels want invisible . jlabels start 25 , go 32. _(i.e jlabel25 ---> jlabel32)_ instead of making them invisible 1 one thinking of using loop make them invisible following these lines of code : for( int = 25 ; <= 32 ; i++ ) { jlabel(i).setvisible(false); } but obvious error says "cannot find symbol , method--> jlabel(int) " what should avoid writing 8 statements asking make each label invisible ? put labels common collection, , iterate through that. collection<jlabel> mylabels = new arraylist<jlabel>(); mylabels.add(jlabel25); // .. , on (jlabel label : mylabels) { label.setvisible(false); }

java - Getting percentage of similarity of two texts -

i need score of similarity between texts, when 1 inside second. for example: text1: aaa bbb ccc ddd eee text2: bbb ccc i need somethig me, text2 100% inside text1. there way this? depending on want may try length of longest common subsequence of both texts divided length of text2 or length of longest contiguous subsequence of both texts divided length of text2 both give 1 if text inside text1 , 0 if not share common character.

Where to find a form like control for iPhone -

this question has answer here: existing ios form framework 3 answers you know how on iphone 1 can go settings> mail > add account > gmail > fillable form what name of fillable form control? want use in app can't find in interface builder. or rather approach putting using other components? thanks! https://github.com/ittybittydude/ibaforms you can make forms using built-in form field types or create own custom fields , user interfaces used enter data them. hope helps

php - Many to Many Relationships -

i'm seeing sorts of different ways handle many many relationships in yii. however, examples i'm seeing aren't fleshed out , feel i'm missing something. for instance, larry ullman's tutorial doesn't use self::many_many relation - http://www.larryullman.com/2010/08/10/handling-related-models-in-yii-forms/ so far adding , retrieving records, whats standard way handling many many in model, controller , view? clarification: suppose im looking example involving 2 tables, related many-to-many, can see not both models, controllers , views can understand whats going on. you need 3 tables (so model pivot table), once have can use regular yii relation functionality. for example project of mine has many-to-many relation between purchase , transaction (please don't ask why :) ). there purchase model, transaction model , purchasetotransaction model establishes links between them. can $opurchase->transactions , yii handle many-to-many part using r...

mobile - Is there a way to make desktop-only CSS rules? -

i found out droid has max width of 800 pixels, think lower-resolution computers smaller than, want droid display mobile css, not sure max device width best solution. know how i'd design css link tags mobile css used smartphones while desktop css used desktop computers (including kind width under 800px)? responsive web design, using media-queries @media screen , (min-width: 800px) { // css used when screen size min 800px }

c# - How to change the drag and drop cursor when mouseover a drop target -

i have app incorporates drop target unarchive (file attribute) files. change mouse cursor in dragenter event of form custom cursor (.cur) have embedded resource. the drop target transparent form image of target. (the entire form drop target) i know can use givefeedback event when have control of drag source. not case source windows explorer. (and maybe i'm wrong , can still use givefeedback in scenario, not figure out how trigger event.) to eliminate possibility custom cursor not valid or corrupt, set custom cursor in mouseover event of drop target form. functionally working, wanting "pretty things up" little bit. thanks in advance insight. you seem know custom cursors set in givefeedback , how that. problem not getting givefeedback events. don't know on control have drop spot, try attaching listener underlying form's givefeedback event, , see if feedback there. you can try subclassing control using (panel, picturebox or whatever) , li...

html - how to limit cells per row? -

i'm trying create sort of layout in html... 1 2 3 4 5 6 7 8 9 10 how limit how many displayed per row? can achieve layout without use of table? if so, how? not entirely sure why want without table , use following css display rules. div#container{display: table;} div#row{display: table-row;} div#row div{display: table-cell; border:1px solid red;} border example html <div id="container"> <div id="row"> <div>content</div> <div>content</div> <div>content</div> <div>content</div> <div>content</div> </div> <div id="row"> <div>content</div> <div>content</div> <div>content</div> <div>content</div> <div>content</div> </div> </div> http://jsfiddle.net/jasongenna...

postgresql - Sql subselect improvement through joins? -

how can improve following query think missing , can done better :( have table , one-to-many b want info , row b linked highest sequence number. came this: select a.*, ( select b.value b a.idb = b.id order b.seqnr desc limit 1 ) performance important me, best bet ? that's best bet, if visiting small number of rows , b. if going covering rows anyway, can try address problem window aggregations assigning row numbers rows b: select * ( select a.*, b.*, row_number() over(partition b.id order b.seqnr desc) seqidx join b on a.idb = b.id ) seqidx = 1 this use lot of temp space though... consider getting , b primary keys out of aggregate , joining onto them later (it's not clear query pkey columns are, since b.id apparently isn't)

php - CakePHP, Changing data only for a specific rule in beforeValidation -

i save ip numeric value in database. when fetch use virtualfield , inet_ntoa sql expression. i want ip unique, therefore use isunique validation rule in model. problem rule validates ip address against numeric value in db. is there way can modify value of field rule before validation? other rule "ip" needs ip address not numeric value. i'd suggest create custom validation rule checks if converted ip unique. … 'rule' => 'ipisunique', … // customize needed public function ipisunique($data) { return $this->isunique(array_map('ip2long', $data)); }

sql - oracle to_date function not accepting format -

when in oracle 10g: select to_date(trunc(someinputdate)) table1 to_date(trunc(date_column_timestamp),'mm/dd/yyyy') >= to_date('03/11/2011' ,'mm/dd/yyyy') i get: ora-01843: not valid month if change : 'yyyy/mm/dd' , works. 'mm/dd/yyyy' valid format right? you're getting things mixed bit. to_date converts string date. if date_column_timestamp date, don't need convert date. select trunc(someinputdate) table1 trunc(date_column_timestamp) >= to_date('03/11/2011' ,'mm/dd/yyyy') the ora-01843 caused implicit conversion of date string. in other words, following: to_date(trunc(date_column_timestamp),'mm/dd/yyyy') is equivalent (assuming default date format dd-mon-yyyy ): to_date(to_char(trunc(date_column_timestamp),'dd-mon-yyyy'),'mm/dd/yyyy') so, to_char returns '11-mar-2011' , causes to_date fail because date formats not match. the same problem exists ...

java - android thread crashes when screen orientation changes -

i making android app, needs download text url , show on alertdialog. i created new thread. thread reads file on web, progressdialog appears before thread starts, thread packages file content web on bundle , , passes handler, handler stops progress, , shows text bundle on alertdialog. works pretty good, when screen orientation changes when progressdialog shown , thread running, app crashes. ideas on how fix thing? any appreciated. :) when orientation changes, os shut down activity , restart it. mess download thread. 1 solution might work save thread object non-configuration data. you'll need override onretainnonconfigurationinstance() in activity. however: not if thread object has references view- or activity-related object. cause huge memory leak , make users unhappy quickly. see guide topic handling runtime changes details on using onretainnonconfigurationinstance() , alternative approach. see article avoiding memory leaks on ... well, that.

php4 - PHP session data not passing back to application -

i'm trying rebuild php4 webserver vm (debian etch + xenserver) , i'm having weird issues not happening on physical server basing build on. php (4.4.4-8) generating session , can see temp file under /var/lib/php4, if enable debugging within application code doesn't seem receiving information means cannot login site @ all. on physical server application works fine , have gone on php.ini, apache modules , else can think might different between 2 cannot see why happening. here debug data existing server (slightly trimmed); ----- session ----- session_id = 12bdedefebe73a8e65e17943de545ca6 curr_page = login_page.php prev_page = login_page.php member_id = user_type = total_register = 0 total_messages = 0 document_id = ----- cookies ----- c_ip = 192.168.150.3 c_abn = 84-062-453-114 login = search = -- end -- but here seeing on vm; ----- session ----- session_id = curr_page = login_page.php prev_page = member_id = user_type = total_register = total_mes...

ios - iPhone app distribution building warning: This bundle is invalid -

when build app in xcode got warning below prohibits me uploading app app store: this bundle invalid. application-identifier entitlement not formatted correctly; should contain 10-character app id seed, followed dot, followed bundle identifier: com.companyname.appname (-19053) i have tried change bundle indentifier "85b9gk2627.com.companyname.appname". same warnings. know how resolve problem? when xcode says change "xxxxx.com.companyname.appname" means should use values supplied when creating app on itunesconnect. ".com.companyname.appname" example.

c - FTP CLient Stack -

how develop ftp client stack? can 1 provide me link can find tutorial please.. start @ first ftp rfc , work way through addendums: http://www.faqs.org/rfcs/rfc959.html http://tools.ietf.org/html/rfc3659 http://www.ietf.org/rfc/rfc2577.txt http://www.faqs.org/rfcs/rfc1579.html http://www.rfc-archive.org/getrfc.php?rfc=4217 etc, ...

.net - WPF: How do I obtain the size of the visible portion of a TextBox in a TreeView (see image)? -

Image
is there way size of visible portion of wpf ui control, textbox, in treeview? for example, in image want size of viewable part of pinkish textbox: isn't duplicated? how size of visible part of wpf usercontrol? anyway: can via iscrollinfo

security - Restrict semicolon to prevent SQL injection? -

i've seen sql injection strings constructed this: ' ; drop database db -- therefore, if disallow use of semicolons in application's inputs, 100% prevent sql injection attack? no not prevent sql injection attacks. time you're dynamically constructing sql either in client side, or exec inside stored proc, @ risk. parameterized queries preferred way input query.

Eclipse RCP custom launch -

i'm totally new eclipse. started developing eclipse product realize custom ide. know if create custom "run" , "debug" action launch application. not add default menus , toolbar entries these actions. thanks the items in menu , tool bar created rcp's actionbaradvisor. can choose not add run & debug items. programmatically can create/edit/find launch configuration , launch it. see http://eclipse.org/articles/article-java-launch/launching-java.html http://eclipse.org/articles/article-launch-framework/launch.html for more details

When is memory, allocated by .NET process, released back to Windows -

the setup .net allocates memory each generation’s heap (0, 1, 2, loh) in segments continuous block of memory, on startup, , when attempts satisfy allocation request, after collection. this memory allocated each heap level off application “warms up”, except potentially generation 2, , large object heap. during garbage collection, each heap (0, 1, 2) swept , compacted, except large object heap (loh), swept. i understand ‘sweep’ part of collection mean gc identifies objects no longer rooted , available collection (or finalization) , ‘compact’ means addresses still alive in heap reorganized available remaining heap has more continuous memory available it. as budget each segment within heap exceeded, .net allocate segment in order fulfill allocations if can. the question my question comes down happens memory in each heap, not used application (committed) longer, still reserved .net? when released os? . i believe scenario process might appear consuming lot of memory ...