Posts

rest - Fetch Past Tweets within Particular Time Period -- Twitter Streaming API -

i working on little app give option user select , dates , app return tweets had in particular time span. twitter offering user stream api returns 200 records per request. account has 6790 tweets , need calculate favorite , retweets. 6790 result approx 33 requests if go tweets , how time take? further, cause issue due twitter rate-limit? if can please guide me on how can fetch data? thanks you don't need stream this. if want user's favourites, use favorites/list for example, favourites, call https://api.twitter.com/1.1/favorites/list.json?screen_name=edent&count=200 if user has authenticated you, it's easy retweets statuses/retweets_of_me

c# - Dropdown list call back not responding -

i new in asp.net developing have webpage contains 2 dropdownlist first 1 contains static items second dropdownlist have dynamic value read database when enabled callback = true first dropdownlist , write following code protected sub zr_dl_select_user_selectedindexchanged(byval sender object, byval e eventargs) handles zr_dl_select_user.selectedindexchanged zr_btn_add.text = zr_dl_select_user.selecteditem.value zr_tb_fullname.text = now().tostring dim db new mssqldb dim select_sql_stm string = "select top 1 h_id hotels u_id = @x_uid" if(db.reader.read) zr_dl_group.items.findbyvalue(db.readr("h_id")).selected = true end if end sub my page not respond changes , freez out make autopostback property of dropdown(zr_dl_select_user) true in .aspx page , check.

windows - Roaming profiles sync exception -

we're having server2012 roaming profiles , works fine. want make exceptions in folder synchronization. possible not sync ex. "downloads" folder? or have use folder redirection? want know best practices doing that. thanks gpo -> user configuration | administrative templates | system | user profiles | exclude directories in roaming profile

java - Develop attractive gui in linux -

i'm newbie in world of linux development. have used linux os in past (ubuntu, sabayon , gentoo little time). i'm .net c# developer , have done android app. my company, new project, ask me develop linux application in java attractive gui. i' ve searched around on net , have found old topics this. have read swing but.. swing has born in 1996 , little old tecnology. i have read vaadin web app , cannot permit use utility, read folders ecc. someone can suggest me can use? , editor use design of gui? thank answers , excuse me bad english. if want content rich (ui wise) applications, should take @ javafx since should offer better functionality older swing counter part. as far ide's, have used netbeans on linux distributions have owned (including sabayon) , should provide gui interface builder (much designer in visual studio). can take @ this netbeans page more directions on how use netbeans build ui application.

oracle - Association of foreign key to a table in different schema -

can please tell me how can create links , association 2 tables in different schemas in adf application, using jdeveloper 12c . thanks in advance . to access tables of different schema (user) need grant select schema. have no idea how jdeveloper ide (never used it), perhaps try doing using sqldeveloper , see how jdeveloper reacts..: so log in schema has user table , then grant select on table yourusertable theotherschema perhaps after can see table in jdeveloper , can create fk reference on table usual.

Translating matlab to c++ -

i`m trying translate matlab code c++ row row without bigger matlab knowledge. went till one: a = [1; a(:,n)]; i understand matrix generation first row/first column element being 1, im not quite sure next part should do. please give me hint? "a" twodimensional double matrix, "n" loop counter understand. regards midin a(:,n) means: elements ( : ) column n so a = [1; elements column n in a ] a = [1; a_n1; a_n2; a_n3 ...]

osx - Determine "-mmacosx-version-min" for static libraries (*.a) on OS X? -

is there way determine minimum version of os x static library work with? for executable files, "lc_version_min_macosx" load command can inspected using otool -l /path/to/binary | grep version information not present in static archives (".a" files). presumably because not mach-o binaries...