(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| # Add project specific ProGuard rules here. | |
| # By default, the flags in this file are appended to flags specified | |
| # in /Applications/Android Studio.app/sdk/tools/proguard/proguard-android.txt | |
| # You can edit the include path and order by changing the ProGuard | |
| # include property in project.properties. | |
| # | |
| # For more details, see | |
| # http://developer.android.com/guide/developing/tools/proguard.html | |
| # Add any project specific keep options here: |
| Applications: | |
| Books & Reference | |
| Business | |
| Comics | |
| Communication | |
| Education | |
| Entertainment | |
| Finance | |
| Health & Fitness | |
| Libraries & Demo |
| admin account info" filetype:log | |
| !Host=*.* intext:enc_UserPassword=* ext:pcf | |
| "# -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) "# -FrontPage-" inurl:service.pwd | |
| "AutoCreate=TRUE password=*" | |
| "http://*:*@www” domainname | |
| "index of/" "ws_ftp.ini" "parent directory" | |
| "liveice configuration file" ext:cfg -site:sourceforge.net | |
| "parent directory" +proftpdpasswd | |
| Duclassified" -site:duware.com "DUware All Rights reserved" | |
| duclassmate" -site:duware.com |
| using System; | |
| using System.Data; | |
| using System.Configuration; | |
| using System.Linq; | |
| using System.Web; | |
| using System.Web.Security; | |
| using System.Web.UI; | |
| using System.Web.UI.HtmlControls; | |
| using System.Web.UI.WebControls; | |
| using System.Web.UI.WebControls.WebParts; |
| var eles = document.getElementsByClassName("detail"); | |
| function doNext(curIndex){ | |
| var ab= eles[curIndex].getElementsByTagName('a'); | |
| if(ab[0].innerHTML.indexOf("Free") > -1) ab[0].click(); | |
| setTimeout(function(){ | |
| if(curIndex < (eles.length - 1)) { | |
| doNext(curIndex + 1); | |
| } | |
| }, 500); |
| id hash_name demo_item_category pre_html_content post_html_content context publish_rules_json demo_order creation_tstamp last_modified_tstamp | |
| 1 welcome welcome <div id="pre-info-box" class="info-box-common"> | |
| \n <div class="info-box-header" style="text-align:center;"> | |
| \n <span class="info-box-header-heading">Welcome to WebEngage Demo</span> | |
| \n </div> | |
| \n <div style="border-top: 1px solid #eee;margin-top: 20px;margin-bottom: 30px;"></div> | |
| \n <div style="text-align:centre;"><input type="button" id="start-demo-button" value="Click here to start the demo!" style="margin: 0px; margin-bottom:20px;"> | |
| \n </div> web_demo [{ | |
| \n "preInfoBoxDuration": 0, | |
| \n "widgetDuration": 0, |
| var _weq = _weq || {}; | |
| _weq['webengage.licenseCode'] = '76aa1cd'; | |
| _weq['webengage.widgetVersion'] = "4.0"; | |
| _weq['webengage.feedback.defaultRender'] = false; | |
| _weq['webengage.onReady'] = function(){ | |
| if(!(webengage.BrowserDetect.isMobile() || webengage.util.isSmallScreen())) { | |
| webengage.feedback.render(); | |
| } |
| Page link: https://documentation.appboy.com/Enabling_Message_Channels/Push_Notifications/Android | |
| Title of section: ACCESSING PUSH TITLES & CONTENT FOR ADDITIONAL DISPLAY | |
| String title = intent.getExtras().getString(AppboyGcmReceiver.TITLE_KEY); | |
| String content = intent.getExtras().getString(AppboyGcmReceiver.CONTENT_KEY); |