Posts

Showing posts from September, 2012

wpf - What problems are about HttpAgilityPack -

here code html on website. <span class="def"> make <a class="query" title="clear" href="http://dictionary.cambridge.org/dictionary/british/clear"></a> or <a class="query" title="easy" href="http://dictionary.cambridge.org/dictionary/british/easy"></a> <a class="query" title="understand" href="http://dictionary.cambridge.org/dictionary/british/understand"></a> <a class="query" title="describing" href="http://dictionary.cambridge.org/dictionary/british/describe"></a> or giving <a class="query" title="information" href="http://dictionary.cambridge.org/dictionary/british/information"></a> it: how that? want results: to make or or giving it i have code of httpagilitypack. string url = "http://dictionary.cambridge.org/dictionary/

iphone - How to check time in between 4am to 4pm and 4pm to 4am in ios? -

nsstring *time = [self getcurrentdate]; nslog(@"current date :%@", time); nsstring *fromdate = @"10:00am"; nsstring *todate = @"10:00pm"; nsdateformatter *dateformat = [[nsdateformatter alloc]init]; [dateformat setdateformat:@"hh:mma"]; nsdate *fromtime = [dateformat datefromstring:fromdate]; nsdate *totime = [dateformat datefromstring:todate]; nsdate *nowtime = [dateformat datefromstring:time]; nscomparisonresult result1 = [nowtime compare:fromtime]; nscomparisonresult result2 = [nowtime compare:totime]; nsdateformatter *dateformat = [[nsdateformatter alloc]init]; [dateformat settimezone:[nstimezone systemtimezone]]; [dateformat setdateformat:@"hh:mma"]; nsdate *now = [nsdate date]; // current date nsstring *time = [dateformat stringfromdate:now]; nsstring *fromdate = @"10:00am"; nsstring *todate = @"11:00pm"; nsdate *fromtime = [dateformat datefromstring:fromdate]; nsdate *totime = [dateformat d

javascript - Template doesn't render reloaded data: AngularJS -

i have 2 controllers communicate each other. controller 1: $scope.$on("reloadusers", function (event) { $http.get("/users").success(function(data) { $scope.users = data; console.log($scope.users); }); }); $http.get("/users").success(function(data) { $scope.users = data; }); controller 2: $scope.edituser = function(id){ $http({ url: "/users/"+ id, method: "put", data: { "firstname":$scope.user.firstname, "lastname": $scope.user.lastname, } }); $scope.$emit("reloadusers"); } my templates shown below (both modal dialogs): template 1: <div class="modal fade" id="mymodal" tabindex="-1" role="dialog" aria-labelledby="mymodallabel" aria-hidden="true" ng-controller="controller 1

subquery - Mysql query using 3 table returns wrong data -

table 1 -> access control 1) user_uuid 2) product_id 3) facebook_uuid table 2 -> product table 1) product_id 2) product_name 3) status 4) visibility 5) result 6) user_uuid table 3 -> bidding table 1) product_id 2) user_uuid 3) options sample data product table :- id - name - status - visibility - result - user_uuid 1 - t1 - 1 - 1 - 0 - 1 2 - t2 - 1 - 1 - 0 - 1 3 - t3 - 0 - 0 - 1 - 1 access control user_uuid - product_id - facebook_uuid 1 - 1 - 123 1 - 1 - 456 1 - 1 - 789 1 - 2 - 123 1 - 2 - 456 1 - 2 - 789 1 - 3 - 123 1 - 3 - 456 1 - 3 - 789 bidding table :-

ios - Calling setAttributedText on UITextView resets the font size, and I can't figure out why -

i've read this annoying bug on stackoverflow, if don't make uitextview selectable, setting text cause font reset, super annoying. this seems work when setting normal text , not attributedtext , because when set attributedtext still resets font, if have text view set selectable. this easy replicate. create text view in storyboard instance (how i'm doing it), set font, set attributed text plain string mytextview.attributedtext = nsattributedstring(string: "lorem ipsum dolor.") , gets reset. how stop this? it's super annoying. i had same issue , solved pragmatism i'm sure it's bug in ios. so, take might not best solution 1 that'll work. write category uitextview method -(void)setattributedtextwithoutresettingfont:(nsattributedstring *)attributedtext; , implement such first save current font in temporary variable, call actual setter setattributedtext: on uitextview , update font again 1 saved in temporary variable.

java - Gradle 1.0.0 Project Sync Failed mavenCentral -

good morning, after few hours of seek, haven't find equivalent topic issue . i have make upgrade of android-studio 1.0.1.: after that, have make installation(gradle, sdk, sdk-tool) , try import project. important part of gradle configuration automaticly make. , have try configure other. in cmd, when make : c:\users\ladmin gradle -v , computer send that: gradle 2.2.1 --------------------------------------- build time : 2014-11-24 09:45:35 utc build number : none revision: 6fcb59c06f43a4e6b1bcb401f7686a8601a1fb4a groovy : 2.3.6 ant : apache ant "tm" version 1.9.3 compiled on december 23.2013 jvm : 1.8.0_25 "oracle corporation 25.25-b02" os : windows 8.1 6.3 amd64 my build.gradle (project) buildscript { repositories { mavencentral() } dependencies { classpath 'com.android.tools.build:gradle:1.0.0' } } allprojects { repositories { mavencentral() } } my build.gradle (module) apply plugin:

backbone.js - Best practice of binding models to backbone views -

i've following backbone model. var credential = backbone.model.extend({ defaults: { user: null, password: null } }); i want bind model view. is best practice instantiate credential model router , pass view var loginview = new loginview({ model: new credential() }); or instantiate model in initialize method of loginview . var loginview = backbone.view.extend({ initialize: function() { this.model = new credential(); } }); the best practice assign model view, not let view create model. conceptually, view 1 representation of model, when can have multiple views representing same model (for instance form, , list). this why keeping them loosely coupled , assigning model view better pattern.

jquery - Kendo UI Treeview's JSON is not updated. Loading in progress -

i using kendo ui tree view. in click event call method(for createjson data), updated json data , feed tree view data. whenever create json data. if times(2, 4,8..), treeview showing correctly. if odd, tree view not loading still shows loading message net=[] $(function(){ treeform(net); $(document).on("click", "#sitecreation", function(event){ addsite(net); }); }); in function of update json function addsite(net){ // update json treeform(net) } creation of tree is function treeform(net){ var viewmodel = new kendo.data.hierarchicaldatasource({ data:net, }); var treeview = $("#tree").kendotreeview({ datasource: viewmodel, datatextfield: ["uid"], loadondemand: false }).data("kendotreeview"); } here time updation of json working not in odd time. the problem initializing multiple times kendotreeview on same do

html - Bootstrap 3 - Section - How to Center Images -

Image
would love know how make images centered not floating left. tried modifying float attributes things go messy. please! i'm using section tags no grid thingy whatsoever. when set float "none" happens #hover { color: rgba(188, 175, 204, 0.9); } h2#testimonials { color: #e72635; } div#all { width: 100%; height: 100%; } /* generic css */ .view { margin: 10px; float: left; border: 10px solid #fff; overflow: hidden; position: relative; text-align: center; box-shadow: 1px 1px 2px #e6e6e6; cursor: default; background: #fff url(../images/bgimg.jpg) no-repeat center center } .view .mask, .view .content { width: 300px; height: 200px; position: absolute; overflow: hidden; top: 0; left: 0 } .view img { display: block; position: relative } .view h2 { text-transform: uppercase; color: #fff; text-align: center; position: relative; font

.htaccess - SEO Friendly URLs Rewrite Using Htaccess And Mod_Rewrite -

i have used below rewriterule in .htacces file working /page/ndt:rebgearposgm-8630342 <ifmodule mod_rewrite.c> rewriteengine on rewriterule ^page/([a-za-z0-9\-:]+$)$ page.php?partid=$1 </ifmodule> but want work /page/ndt:rebgearposgm-8630342.html. have used below rewriterule , giving error 404 . <ifmodule mod_rewrite.c> rewriteengine on rewriterule ^page/([a-za-z0-9\-:]+$)\.html page.php?partid=$1 </ifmodule> any 1 please assist did wrong or other way this. in advance. you have misplaced $ anchor in regex. use rule: <ifmodule mod_rewrite.c> options -multiviews rewriteengine on rewriterule ^page/([a-z0-9:-]+)\.html$ page.php?partid=$1 [l,qsa,nc] </ifmodule>

Jersey + Spring deployment failure on Glassfish : CDI issue -

i'm tryng setup glassfish + spring configuration. please find below relevant part of pom : <dependencymanagement> <dependencies> <dependency> <groupid>org.glassfish.jersey</groupid> <artifactid>jersey-bom</artifactid> <version>${jersey.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencymanagement> <dependencies> <dependency> <groupid>org.glassfish.jersey.containers</groupid> <artifactid>jersey-container-servlet</artifactid> <scope>provided</scope> </dependency> <dependency> <groupid>javax.servlet</groupid> <artifactid>javax.servlet-api</artifactid> <version>${servlet.version}</version> &

java - Number of Users Join At Time Case Scenarios? -

i need know same action perform @ time different users case scenarios. for ex : 1 room there.users continuously joins room , leaves room @ time.and 1 more case no of users try join same room @ time. how handle above example cases in java synchronization or else.please suggest me best case handle this? i did 1 sample.please see below sample code once : public class sample{ private arraylist<string> players = new arraylist<string>(); public synchronized void joinroom(string name) { players.add(name); //do } public synchronized void leaveroom(string name) { for(string uname : players){ if(uname.equals(name)) { players.remove(uname);//here there possibility concurrent modification exception.if gets how solve } } //do } } but didn't know cases handle using above sample code or not.please suggest me 1 best handle cases? thanks in advance.

jquery - Unable to pass resolved parameter from controller -

the page not loading @ all. m trying resolve http service. my factory : app.factory("search", function($q, $http, $cookiestore){ return { getmessage: function(){ //return $q.when("response"); console.log("cookie --> ".$cookiestore.get("sid")); var promise = $http.post('tpl/processors/process-contacts.php', {sid : $cookiestore.get("sid")}).then(function(response) { return response.data; }); return promise; } } }); my state resolve: .state('app.mail.compose', { url: '/compose', templateurl: 'tpl/mail_new.php', reloadonsearch: true, resolve: { searchval: ['search', function (search) { return search.getmessage(); // not }] } }) my controller : app.controller('

javascript - How to delete image from image directory after delete record in codeIgniter Framework? -

i want delete 1 or more product category form tbl_category. where category_id,category_name,...... ,category_image these database field. my problem when delete item delete database image still stay directory i,e base_url.'./images/category_images/'. how can it? needed. this code controller: public function manage_product_category() { $data=array(); $data['all_product_category']= $this->ehome_model- >select_all_product_category(); $data['admin_maincontent']=$this->load->view('admin/view_product_category',$data,true); $this->load->view('admin/admin_master',$data); } public function delete_product_category($category_id) { $this->super_a_model->delete_product_category_by_category_id($category_id); redirect('super_admin/manage_product_category'); } this code model: public function delete_product_category_by_categ

android - What method is called when a view is scrolled out of view in ListView? -

so have listview made custom adapter using layout textview , edittext . for edittext use list<string> store content of edittexts in list. using onfocuschangelistener( ). the problem i'm having when edittext focused , scroll enough it's view recycled, loose content of it, if click away becomes unfocused before scrolling out of visible area works fine. i thinking of saving content of when recycled, or destroyed, why i'm asking method called when scrolled out of visible area. or can when list starts scrolling, if there method can use this. here getview method custom adapter: public view getview(final int position, view convertview, viewgroup parent) { final viewholder holder; if(convertview == null) { holder = new viewholder(); convertview = inflater.inflate(r.layout.list_item_edit_content, null); holder.input = (edittext) convertview.findviewbyid(r.id.input); holder.title = (textview) convertview.findview

c# - Is there a function to check if an object is a builtin data type? -

i see if object builtin data type in c# i don't want check against of them if possible. is, don't want this: object foo = 3; type type_of_foo = foo.gettype(); if (type_of_foo == typeof(string)) { ... } else if (type_of_foo == typeof(int)) { ... } ... update i'm trying recursively create propertydescriptorcollection propertydescriptor types might not builtin values. wanted (note: doesn't work yet, i'm working on it): public override propertydescriptorcollection getproperties(attribute[] attributes) { propertydescriptorcollection cols = base.getproperties(attributes); list<propertydescriptor> list_of_properties_desc = createpdlist(cols); return new propertydescriptorcollection(list_of_properties_desc.toarray()); } private list<propertydescriptor> createpdlist(propertydescriptorcollection dpcollection)

c# - How to handle UI freeze while working with BackgroundWorker -

i'm creating application(logviewer) display logs xml files. note: each xml file can have 1 or more records.my application has show each record 1 row in datagridview control. basically perform following tasks: 1.from do_work => parse each xml file , add records list. 2.if list size reaches 100 call progresschanged event update ui (datagridview) 100 records. 3.repeat process untill records xml files appended ui (datagridview) requirements: if user trying read thousands of files, ui should not freeze. i have implemented above scenario waiting 100 milliseconds in dowork event before calling progresschanged following reason: 1.background thread waits (thread.sleep(100))for 100 milliseconds ui thread can updated meanwhile , visible user(records appending). do need have thread.sleep() make ui thread render records. there best approach through can update ui without freezing? because if test application 4 thousand records,then 100 milliseconds waiting time not

asp.net mvc - BeginRenderLink Sitecore Glass Mapper -

i have 2 fields in sitecore: read more link. read more title. i'm using sitecore mvc glass mapper, , need make both fields editable page eidtor, i'm using code : <div class="callout-footer"> <p> @using (beginrenderlink(calloutitem, m => m.readmorelink, new namevaluecollection { { "class", "group-action" } }, iseditable: true)) { <span class="text">@editable(calloutitem, m => m.readmoretitle) </span> } </p> </div> now can edit link, title still not editable. how can make them both editable page editor? ayman, there no reason shouldn't work , duplicated locally without issue succesfully editing link (via sitecore experience buttons in page editor) , title (via standard text editing in page editor). how isn't title editable? not able editing frame while in edit mode? the thought have maybe "text" class on span interfering si

java - Divide values from a class extending number -

i have class extends number. public class quantity extends number{ } and class as, public class test{ quantity tkphmaxvalue; quantity tkphvalue; public test(quantity tkphvalue, quantity maxvalue){ this.tkphvalue= tkphvalue; this.maxvalue= maxvalue; } public quantity gettkphvalue() { return tkphvalue; } public void settkphvalue(quantity tkphvalue) { this.tkphvalue = tkphvalue; } public quantity gettkphmaxvalue() { return tkphmaxvalue; } public void settkphmaxvalue(quantity maxvalue) { this.tkphmaxvalue = maxvalue; } } i need divide ((gettkphvalue()/gettkphmaxvalue())*100) percentage value. how can convert quantity object number? try this: ((gettkphvalue().doublevalue()/gettkphmaxvalue().doublevalue())*100) before do, make sure tkphmaxvalue , tkphvalue not null.

asp.net core - running asp.vnext starter project from sources -

do know if available guide how run project created sample starter project sources? suppose cloning repositories github , configuring solution may possible this, may useful study how works. thanks, luca outuput of kvm list command ------ ------- ------- ------------ -------- ----- 1.0.0-beta1 clr amd64 c:\users\luca\.kre\packages 1.0.0-beta1 clr x86 c:\users\luca\.kre\packages 1.0.0-beta1 coreclr amd64 c:\users\luca\.kre\packages 1.0.0-beta1 coreclr x86 c:\users\luca\.kre\packages 1.0.0-beta2-10724 clr x86 c:\users\luca\.kre\packages 1.0.0-beta2-10724 coreclr x86 c:\users\luca\.kre\packages 1.0.0-beta2-10726 clr x86 c:\users\luca\.kre\packages 1.0.0-rc1-10781 clr x86 c:\users\luca\.kre\packages 1.0.0-rc1-10781 coreclr x86 c:\users\luca\.kre\packages 1.0.0-rc1-10798

Python: Emptying temporary list used in a loop without losing referenced information -

i have following kind of data, want collect 1 big list each row in big list has 1 of these below (c-d , e-f correspond second , third of these). mean lista_results[0] includes first of these , lista_results[1] second etc. (name) (amount-of-points) name 12 other name 19 ... ... i have loop takes information other lists , adds result list. code along following lines: lista_results = [] lista_temp = [] y in range(0,10): x in range(0,10): lista_temp.append(name_list[y][x], point_list[y][x]) lista_results.append(lista_temp) #lista_temp[:] = [] without emptying, appended same list every time x loop finishes. is: [0]["some name",12] [0]["other name",19] [1]["some name",12] [1]["other name",19] [1][c,1c] [1][d,2d] [2]["some name",12] [2]["other name",19] [2][c,1c] [2][d,2d] [2][e,1e] [2][f,2f] ... but want is: [0]["some name",12] [0]["other name",19] [1][c,1c] [

plsql - Can Oracle's SQL Translation Framework translate SQL embedded in PL/SQL? -

can oracle's sql translation framework translate sql queries embedded in pl/sql blocks? i have translation profile , translation in place, if put sql in, say, sql plus, translates correctly. but if sql inside plsql, in execute immediate ('here') , or in cursor declaration cursor mycursor select 'here'..... , there no translation done.

javascript - Transforming navigation bar to a fixed header over horizontal parallax website -

Image
the title may seem bit peculiar try explain best possible confusion minimized. currently using fullpage.js plugin website create horizontal 'slide' effect. check website out see mean. http://carrotcrunchpvp.comule.com/ as can see navigation bar slap bang in middle of page when enter rotated , such. when slide right using arrow, want navigation bar 'push' out ethos link goes top left, privacy policy link goes adjacent (horizontally), path healing. logo shift directly upward form middle of navigation bar. nz catholic church shimmy right , adjacent logo, contact go further right , page reach far right of navigation bar located @ top of page. creating header navigation bar look @ illustration better idea: the black lines path of transformations. it's not easy seems, css3 transformations too... now problems, i'm capable css, jquery , javascript knowledge lacking. i'm unsure how approach this. because want transformation occur when clicking homepag

c# - XML Serialization Customized Partially -

in brief need custom class project partially public class project : ixmlserializable { [xmlattribute] public string name; [xmlignore] public string[] contents; public xmlschema getschema() { return null; } public void readxml(xmlreader reader) { if (reader.hasattributes) { contents=new string[reader.attributecount]; (int = 0; < reader.attributecount; i++) { reader.movetoattribute(i); string attr = reader.name; regex reg = new regex(@"content_\d+"); if (reg.ismatch(attr)) { contents[i] = reader.value; } } } } public void writexml(xmlwriter writer) { (int = 0; < contents.count(); i++) { writer.writeattributestring("content_" + i, contents[i]); } } } i want name serialized custom contents of array (i need make attribute i

c# - How to add row in datagridview from another form? -

i have 2 forms. form1 contains datagridview. second(form2) form contains textboxs. when click ok button in form2, values should added in datagridview new row. code trying use pass data,but neither showing error nor result. form2 private void btnok_click(object sender, eventargs e) { form1.datagridview.rows.add("firstname", "lastname", "success", "userid", datetime.now.tostring()); } put on form1 private void button1_click(object sender, eventargs e) { form2 f2 = new form2(this); f2.show(); } put on form2 private form1 form1; public form2(form1 form1) { initializecomponent(); this.form1 = form1; } private void button1_click(object sender, eventargs e) { form1.datagridview1.columns.add("firstname", "first name"); form1.datagridview1.columns.add("lastname", "last name"); form1.datagridview1.columns.add(&q

Php: Warning: Header may not contain more than a single header, new line detected in -

its unbeliveable. got, @ first file executed: header ("pragma: public\r\nexpires: 0");die; and error? warning: header may not contain more single header, new line detected in ... wtf? var_dump() -ed included files, contain file only. what unclear error? you have new line here: \r\n you trying set 2 headers. need 2 header() statements instead of 1 line break in string. header("pragma: public"); header("expires: 0"); die();

grails - How to prevent file downloaded via response.outputStream to be saved on server? -

when downloading file via link in grails page, following controller working. however, somehow downloaded file saved in project structure web-app. right now, running in local host. when moved production, start saving file in server well. there way allow regular download client's machine prevent or clean download server? file uploadedinbackendtobedownloadedfromfrontend = fetchthefilefrombackend() // custom method response.setheader("content-type", "application/octet-stream;") response.setheader("content-disposition", " uploadedinbackendtobedownloadedfromfrontend ; filename=\"${ uploadedinbackendtobedownloadedfromfrontend .name}\"") response.setheader("content-length", "$ uploadedinbackendtobedownloadedfromfrontend .size()}") response.outputstream << uploadedinbackendtobedownloadedfromfrontend .getbytes() thanks lot!!

performance - Php - When processes are executed -

i've this: class { public function __construct() include 'file.php'; } bla bla... bla bla... bla bla... bla bla... bla bla... bla bla... bla bla... } new a(); the question is: file.php big data.file , wanna know if it's loaded when php reads construct function or when construct function called "new a()"; it' same others processes? it's same javascript? thanks lot new a() when include evaluated. it happen every instance of a create. if wanted ensure included 1 time, , not every time a object created, can change include_once 'file.php'; see: http://php.net/include_once

Read tab delimited file to Structure in C -

i have file tab delimited data. want read every line structure. have code read data char buffer. want load data structure. this sample data. empname1\t001\t35\tcity1 empname2\t002\t35\tcity2 my structure definition . struct employee { char *empname; char *empid; int age; char *addr; }; my sample program read data char array buffer char buffer[buf_size]; /* character buffer */ input_fd = open (fsource, o_rdonly); if (input_fd == -1) { perror ("open"); return 2; } while((ret_in = read (input_fd, &buffer, buf_size)) > 0){ // process } here want load content structure variable instead of character buffer. how can achieve that? well, possible solution be read complete line file using fgets() . tokenize input buffer based on required delimiter [ tab in case] using strtok() . allocate memory ( malloc() / realloc() ) pointer variable of structure. copy tokenized inputs mem

ios - Getting Float Value Between 0 and 1 -

i struggling value between 0 , 1 based upon percentage i.e 50% show 0.5. problem using following , seems return 0 both values. even xposition , yposition set 50% still 0; float x_point = (1 / 100) * xposition; float y_point = (1 / 100) * yposition; any ideas? thanks 1 / 100 integer expression equal 0 , (1 / 100) * xposition 0 . you change: float x_point = (1 / 100) * xposition; to: float x_point = (1.0 / 100.0) * xposition; or perhaps more simply: float x_point = 0.01 * xposition; this evaluated using floating point arithmetic , give required result.

netbeans - How to read elements of arraylist of a class defined in another class in java? -

i working on project college. have 2 classes "email_info" , "contacts". in class "contacts", made arraylist of type "email_info". class contacts used add data xml file("contacts.xml" ), , uses variables of email_info class. problem whenever try access elements of "contacts.xml" file after unmarshalling file, address "mailwidgetaa.email_info@12d3a4e9" instead of actual data( should like, e_id- abc@gmail.com, pass- password). how do actual data ? below full code:: package mailwidgetaa; @xmlrootelement public class contacts { list<email_info> contaclist = new arraylist<email_info>(); @xmlelement public list<email_info> getcontaclist() { return contaclist; } public void setcontaclist(list<email_info> contaclist) { this.contaclist = contaclist; } } @xmlrootelement class email_info { string e_id; string u_name; string pass; @xmlelement public string gete_id() { ret

java - How to check all values for a particular column in a week -

i have table called timesheet.in has below rows id status projid actid date 1 pending 1 1 2014-aug-07 2 denied 1 2 2014-aug-08 3 saved 1 3 2014-aug-09 4 approved 1 4 2014-aug-10 i have used below query getting desired result. select * tbltimesheet datepart(wk,spentdate) = 32 , ((timesheetstatus = 'pending' or timesheetstatus = 'approved') , (timesheetstatus <> 'saved' or timesheetstatus <> 'denied')) my expected result above query 0.but result 1. 5 pending 1 1 2014-aug-11 6 pending 1 2 2014-aug-12 7 approved 1 3 2014-aug-13 8 approved 1 4 2014-aug-14 this case query works. select * tbltimesheet datepart(wk,spentdate) = 32 , ((timesheetstatus = 'pending' or timesheetstatus = 'approved') , (timesheetstatus <> 'saved' or timesheetstatus <> 'denied')) my expected result

php - Vimeo - search description and tags - Pro user, private videos -

i vimeo pro user videos set private can viewed via specific ip address. have created front end application displaying videos includes search function using vimeo api. the search returns videos based upon title not search videos’ tags or description. using following php code along vimeo’s php library: $query = 'search term'; $vimeo = new vimeo\vimeo($app_id, $app_secret, $token); //get video list $args = array( 'per_page' => 5, // 50 max 'page' => $page, 'query' => $query, 'sort' => $sort, 'direction' => 'desc', 'filter' => 'cc' ); $results = $vimeo->request('/me/videos', $args); i need able search via tags , description make application viable. does know solution or not possible? thanks in advance the default on site search not search through private videos. because of this, offer less powerful se

quartus - Running timing simulation in modelsim -

i try simulate very simple .vo file,the output of quartus compilation, attached code, .v file , quartus output .vo file. simulating modelsim-altera used. after trying running simulation following error appeared on screen. how can fix this? thanks ca.v : module ca (input , b, output c); assign c = + b; endmodule ca.vo : // copyright (c) 1991-2014 altera corporation. rights reserved. // use of altera corporation's design tools, logic functions // , other software , tools, , ampp partner logic // functions, , output files of foregoing // (including device programming or simulation files), , // associated documentation or information expressly subject // terms , conditions of altera program license // subscription agreement, altera quartus ii license agreement, // altera megacore function license agreement, or other // applicable license agreement, including, without limitation, // use sole purpose of programming logic // devices manufactured altera , sold al