Appcelerator Titanium Alloy JPUSH Push Notification Module Android Update – Local Notifications – Custom Layout

RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineThis is an update to the ANDROID Appcelerator Titanium Alloy JPUSH Push Notification Module You can find the main post about these modules here: http://dieskim.me/2015/04/04/appcelerator-titanium-alloy-jpush-push-notification-module-ios-and-android-china-push-notification-non-gcm/ I have added two new functions – Local Notification, to enable easy local notification as natively provided…

How to: Xiaomi HongMi Note 4G FDD-LTE MIUI V6 install Google Apps – Google Play – Google Services Framework

RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineThis is a How to on installing Google Services Framework and then Google Play on your Xiaomi HongMi Note 4G MIUI 6. You could always flash to the MIUI V5 4G Global Rom as that would be the best way…

SOLVED: BUG – CentOS – Yum – RPM Broken by nss-softokn-3.14.3-19.el6_6 Update – error: rpmts_HdrFromFdno – error: rpmdbNextIterator – Header V3 RSA/SHA1 Signature, key ID BAD

RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineFor CentOS servers an update for the nss-softokn package was release today – nss-softokn-3.14.3-19 However, nss-softokn-3.14.3-19 needs nss-softokn-freebl-3.14.3-19 to operate properly, and vice versa, but those packages do not have checks in place to make sure that a matching version…

Titanium Alloy iOS Android Modules: Count.ly – Google Analytics, Flurry Alternative – Android Module Updated – Segmentation Event Tracking – Example

RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineUPDATED VERSION: Titanium Alloy iOS Android Modules: Count.ly Analytics, Push Notifications – Events, User Profiles, Messaging – Google Analytics Alternative I have recently had to move away from Google Analytics for our Titanium Alloy Mobile apps for different reasons – I…

SOLVED: Virtualmin CentOS 5/6/7 Linux Bash Bug – Critical update

RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineTo Fix Run yum update as soon as possible! Here is the Bug Report: https://securityblog.redhat.com/2014/09/24/bash-specially-crafted-environment-variables-code-injection-attack/ Links to the actual Centos Bash updates: CentOS-5: http://lists.centos.org/pipermail/centos-announce/2014-September/020582.html CentOS-6: http://lists.centos.org/pipermail/centos-announce/2014-September/020585.html CentOS-7: http://lists.centos.org/pipermail/centos-announce/2014-September/020583.html

How to: Xiaomi Hongmi/Redmi 1S Flash Global Rom to Chinese WCDMA / China Unicom Version – Add Google Play

RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineCaution: FOLLOW THE FOLLOWING AT YOUR OWN RISK This is a short guide on how to flash the Global Rom to a Chinese WCDMA / China Unicom version of the Xiaomi Redmi 1S so that you can add Google Play…

SOLVED: CentOS OpenSSL SSL/TLS MITM vulnerability – Virtualmin – Update Version 1.0.1e-16.el6_5.14 – (CVE-2014-0224)

RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineAs you might have seen on the OpenSSL update stream and new update for OpenSSL was release to address the SSL/TLS MITM vulnerability. As stated in the update stream: An attacker using a carefully crafted handshake can force the use of weak…

How to: MySQL search and replace, PHPMyadmin, Joomla Params etc.

RedditDiggFacebookTwitterFlipboardPinterestLinkedinLineBelow are a few SQL statements I use to search and replace the value of params in Joomla, in this case I added another value. UPDATE  `joomla_database_name`.`j15_modules` SET  params = replace(params, '"cache":"0"', '"backname":"1","backlink":"1","cache":"0"') WHERE  `j15_modules`.`module` ="mod_menu"; Here is another statement…