Posts

css3 - Css animation not working only under chrome -

duplicate warning, sorry. i have read couple similar posts, , tried solutions none did work. i have simple animation hide, show , imge. #top_heading .chmurka2{ position:absolute; top:0; left:257px; -webkit-animation: top_chmurka2 8s 1s infinite alternate; -moz-animation: top_chmurka2 8s 1s infinite alternate; -ms-animation: top_chmurka2 8s 1s infinite alternate; -o-animation: top_chmurka2 8s 1s infinite alternate; animation: top_chmurka2 8s 1s infinite alternate; } @-webkit-keyframes top_chmurka2 { /*chrome , safari*/ 0% { opacity:1; } 50% { opacity:0; } 100% { opacity:1; } } @-moz-keyframes top_chmurka2{ /*mozilla*/ 0% { opacity:1; } 50% { opacity:0; } 100% { opacity:1; } } @-ms-keyframes top_chmurka2{ /*before ie 10*/ 0% { opacity:1; } 50% { opacity:0; } 100% { opacity:1; } } @-o-keyframes top_chmurka2{ /*ie9+, opera*/ 0% { opacity:1; } 50% { opacity:0; } 100% { opacity:1; } } @keyframes top_chmurka2 { /*...

teradata - How to find all tables / views with a column name that matches a particular pattern -

how find tables or views have column name matches pattern. the pattern simple like %abcd% pattern , not regex. the query or queries should return both views , tables. dbc.columnsv stores column information: select databasename, tablename, columnname dbc.columnsv columnname '%abcd%' ; this might return stored prodedures or macros, might better join dbc.tablesv: select t.databasename, t.tablename, t.tablekind, columnname dbc.tablesv t join dbc.columnsv c on t.databasename = c.databasename , t.tablename = c.tablename columnname '%abcd%' , tablekind in ('t','v') ;

php - deleting a member registered in the members database -

i have database setup register members members area of site. can echo of registered members checkbox can choose delete individual member admin page, cant seem figure out how member chosen deleted when submit button clicked. have tried on single page , on 2 page process, first page lists members checkbox works point of choosing member deleted, difficulty seem having getting members detail passed delete section of code. assist me please. here delete_user.php lists members checkbox <?php include_once 'db_connect.php'; include_once 'functions.php'; sec_session_start(); //display users info checkbox delete $sql = "select * `members` limit 0, 30 "; $result = mysqli_query($mysqli, $sql); while($row = mysqli_fetch_array($result)) { echo '<input type="checkbox" value="' .$row['username'] . '" name="delete[]" />'; // echo '<input ty...

ibm mobilefirst - Worklight Facebook platform selection? -

Image
for facbook integration in worklight platform should select android or website , right developing android environment later doing iphone , windows place facebook integration code in index.html(main) or in android project separately created ? confused reply it looks developing worklight-based hybrid application , in case should opt facebook javascript sdk . you can add common\js folder , reference in common\index.html (just follow instructions facebook provides). way 'extend' whichever additional environments add in worklight studio in project setup. of course, can choose use facebook's native sdks each environment in hybrid application. in case, you'll need add sdk in iphone-ipad-or-android\native folder , follow facebook's integration instructions (note iphone actual integration done in xcode, not eclipse). if choose create native application , bundle worklight sdk, should opt facebook sdk dedicated specific os. here, add sdk, again, fol...

c# - Report Viewer export to pdf getting error -

i getting error "cannot create data reader dataset 'dataset1'." i expend lots of time solving issue unable resolved.same code working report generation @ time of pdf generation stuck. here code please reply. protected void btnpdf_click(object sender, eventargs e) { string pdf = "pdf"; string reporttype = "reporttype"; warning[] warnings = null; string[] streamids = null; string mimetype = string.empty; string encoding = string.empty; string extension = string.empty; string filetype = string.empty; long _landids = 0; if (_farmid > 0) { land land = landmanager.getlandbyfarmid(_farmid); _landids = land.landid; } reportviewer_myreportid.sizetoreportcontent = true; reportviewer_myreportid.localreport.reportpath = "reports/repor...

64bit - Is 64-bit mandatory condition for iOS 8 submit to App Store -

as ios 8 released month , app support 32-bit(because 3rd lib compatible 32-bit), i'm not sure new version of app whether rejected if submit app store on next month, because not support 64-bit. need set app support 64-bit(replace 3rd lib) before submit updates? thanks in advance! right - can submit 32-bit apps. have submitted our 32-bit app app store month ago , planning submit update (also 32-bit) in near future. but apple require apps , updates 64-bit starting february 1, 2015.

dos - say with \n\r newline with Perl -

i use say dos newline format: say "foo" should display foo\r\n i tried redefine new line variable doesn't change anything local $/="\r\n"; another solution manually write: print "foo\r\n"; but not convenient don't use global vars affect handles; use open(my $fh, '>:crlf', ...) or binmode($fh, ':crlf') :crlf added default on windows machines, specifying in open or trying add handle has using binmode won't hurt.