Showing posts with label unofficial. Show all posts
Showing posts with label unofficial. Show all posts

Thursday, 14 September 2017

Install Unofficial LineageOS 14 1 on Samsung Galaxy Express GT I8730

Install Unofficial LineageOS 14 1 on Samsung Galaxy Express GT I8730


Cara Buat / Pasang Tulisan Melayang Mengikuti Pointer di Blog � Pernahkah Anda masuk ke sebuah blog, lalu melihat ada tulisan yang melayang, bergerak mengikuti pointer Anda, serta akan mengelilingi pointer saat mouse tidak digerakkan? Jika iya, widget itulah yang akan saya bahas kali ini. Widget ini mungkin sudah banyak diketahui oleh para Blogger. Namun, jika Anda tertarik dengan widget ini, tak ada salahnya jika Anda memasang widget tulisan melayang mengikuti pointer di blog ini. Atau, jika mungkin Anda kurang puas dengan gambar disamping,
Oke, jika Anda tertarik, berikut ini langkah � langkah memasang widget / efek tulisan melayang mengikuti pointer di blog Anda. Cara memasangnya hampir sama dengan cara memasang efek hujan salju pada blog.
  1. Buka dan login ke Blogger.com, lalu masuk ke pilihan Template.
  2. Pilih Tambahkan Gadget
  3. Pada Window yang baru muncul, cari pilihan HTML / JavaScript
  4. Salin dan pastekan script berikut (kosongkan isian Judul) :

<style type=text/css>
#outerCircleText {
font-style: italic;
font-weight: bold;
font-family: Trebuchet MS;
color: #ff840a;
position: absolute;top: 0;left: 0;z-index: 3000;cursor: default;}
#outerCircleText div {position: relative;}
#outerCircleText div div {position: absolute;top: 0;left: 0;text-align: center;}
</style>
<script type=text/javascript>
//<![CDATA[
;(function(){
// =====Pengaturan Dimulai=====//
// Masukkan kalimat yang diinginkan (QUOTED STRING)
var msg = "Ganti dengan tulisan yang diinginkan";
// Set fonts style size for calculating dimensions
// Set to number of desired pixels font size (decimal and negative numbers not allowed)
var size = 25;
// Set both to 1 for plain circle, set one of them to 2 for oval
// Other numbers & decimals can have interesting effects, keep these low (0 to 3)
var circleY = 0.75; var circleX = 2;
// The larger this divisor, the smaller the spaces between letters
// (decimals allowed, not negative numbers)
var letter_spacing = 5;
// The larger this multiplier, the bigger the circle/oval
// (decimals allowed, not negative numbers, some rounding is applied)
var diameter = 5;
// Rotation speed, set it negative if you want it to spin clockwise (decimals allowed)
var rotation = 0.2;
// This is not the rotation speed, its the reaction speed, keep low!
// Set this to 1 or a decimal less than one (decimals allowed, not negative numbers)
var speed = 0.3;
// =====Pengaturan Selesai=====//
if (!window.addEventListener && !window.attachEvent || !document.createElement) return;
msg = msg.split();
var n = msg.length - 1, a = Math.round(size * diameter * 0.208333), currStep = 20,
ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x = [], Y = [], X = [],
o = document.createElement(div), oi = document.createElement(div),
b = document.compatMode && document.compatMode != "BackCompat"? document.documentElement :
document.body,
mouse = function(e){
e = e || window.event;
ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position
xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position
},
makecircle = function(){ // rotation/positioning
if(init.nopy){
o.style.top = (b || document.body).scrollTop + px;
o.style.left = (b || document.body).scrollLeft + px;
};
currStep -= rotation;
for (var d, i = n; i > -1; --i){ // makes the circle
d = document.getElementById(iemsg + i).style;
d.top = Math.round(y[i] + a * Math.sin((currStep + i) / letter_spacing) * circleY - 15) +
px;
d.left = Math.round(x[i] + a * Math.cos((currStep + i) / letter_spacing) * circleX) + px;
};
},
drag = function(){ // makes the resistance
y[0] = Y[0] += (ymouse - Y[0]) * speed;
x[0] = X[0] += (xmouse - 20 - X[0]) * speed;
for (var i = n; i > 0; --i){
y[i] = Y[i] += (y[i-1] - Y[i]) * speed;
x[i] = X[i] += (x[i-1] - X[i]) * speed;
};
makecircle();
},
init = function(){ // appends message divs, & sets initial values for positioning arrays
if(!isNaN(window.pageYOffset)){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
} else init.nopy = true;
for (var d, i = n; i > -1; --i){
d = document.createElement(div); d.id = iemsg + i;
d.style.height = d.style.width = a + px;
d.appendChild(document.createTextNode(msg[i]));
oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0;
};
o.appendChild(oi); document.body.appendChild(o);
setInterval(drag, 25);
},
ascroll = function(){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
window.removeEventListener(scroll, ascroll, false);
};
o.id = outerCircleText; o.style.fontSize = size + px;
if (window.addEventListener){
window.addEventListener(load, init, false);
document.addEventListener(mouseover, mouse, false);
document.addEventListener(mousemove, mouse, false);
if (/Apple/.test(navigator.vendor))
window.addEventListener(scroll, ascroll, false);
}
else if (window.attachEvent){
window.attachEvent(onload, init);
document.attachEvent(onmousemove, mouse);
};
})();
//]]>
</script>

Catatan : Gantilah tulisan yang berwarna ungu dengan tulisan Anda. Nantinya, tulisan inilah yang  akan bergerak mengikuti pointer.
Keterangan Pengeditan :

  • Ganti tulisan yang berwarna merah dan ungu untuk mengubah style font (tebal, cetak miring, dsb)
  • Ganti tulisan Trebuchet MS dengan font yang Anda inginkan.
  • Ganti #ff840a dengan kode warna yang lain. #ff840a merupakan kode warna HTML untuk warna oranye. Jika Anda tidak mengetahui kode warna HTML, silahkan lihat : Hex Color Generator : Mengubah Warna Menjadi Kode HTML
  • Angka 25 menunjukkan ukuran font. Ganti dengan ukuran font yang Anda inginkan
  • var circleY = 0.75; var circleX = 2 : Menunjukkan bentuk tulisan saat mengitari pointer. Nilai maksimum yang dapat diisikan adalah 2. Jika ingin tulisannya berbentuk lingkaran, samakan kedua nilainya. Jika ingin tulisannya berbantuk oval, bedakan nilai salah satunya.
  • Angka  5 yang berwarna hijau menunjukkan jarak antar huruf. Semakin besar angka yang Anda masukkan, jarak antar huruf akan semakin kecil. Gantilah sesuai dengan keinginan Anda.
  • Angka5 yang berwarna ungu menunjukkan jari � jari lingkaran yang terbentuk saat teks mengelilingi pointer. Gantilah sesuai dengan keinginan Anda. Semakin besar angkanya, semakin besar ukuran lingkaran.
  • 0.2 merupakan angka yang menunjukkan kecepatan putaran teks. Semakin besar angka, maka semakin cepat putaran teks. Gantilah sesuai dengan keinginan Anda. Jika Anda memasukkan nilai negatif, maka tulisan akan mengitari pointer dengan tegak. (silahkan dicoba jika masih bingung)
  • 0.3 merupakan angka yang menunjukkan seberapa cepat respon teks mengikuti pointer saat pointer digerakkan. Gantilah sesuai dengan keinginan Anda.

  1. Terakhir, klik Simpan
Bagaimana? Mudah bukan? Disarankan agar Anda tidak memasukkan teks yang terlalu panjang (apalagi paragraph), karena dapat mengganggu kenyamanan pembaca.

download file now

Read more »

Wednesday, 13 September 2017

Working TWRP 2 8 6 0 for ze550kl ze551kl Unofficial

Working TWRP 2 8 6 0 for ze550kl ze551kl Unofficial



 TWRP for ze550kl Unofficial link is below:https://drive.google.com/file/d/0Bz46tV6s-sImQmZSVGJWei1MMzA/view?usp=sharing
if you want to test recovery then use command
fastboot boot twrp_ze550kl.img
if want to use recovery permanently, then use command
fastboot flash recovery twrp_ze550kl.img
if someone had any issue after flashing recovery, stock recovery is attached.
https://drive.google.com/file/d/0Bz46tV6s-sImZkpaakMwVWd3cFU/view?usp=sharing
 I would suggest first try this recovery then flash it


for ze551kl

https://drive.google.com/file/d/0Bz46tV6s-sImdHVQNDcwRGN4THc/view?usp=sharing

download file now

Read more »

Wednesday, 6 September 2017

ROM UNOFFICIAL Xperia Open Source Project 7 1 1

ROM UNOFFICIAL Xperia Open Source Project 7 1 1




Code:
#include 
/*
* Your warranty is now void.
*
* I am not responsible for bricked devices,
* thermonuclear war, or you getting fired because the alarm app failed. Please
* do some research if you have any concerns about features included in this ROM
* before flashing it! YOU are choosing to make these modifications, and if
* you point the finger at me for messing up your device, I will laugh at you.
*
*/



  • What is XOSP and how was it born?
    • XOSP stands for the Xperia Open Source Project. The project was initially created by me (@nilac) for the Galaxy S+ (my old device) years ago. Back then the ROM was called S+ Reborn. The vision was to create a minimal bloat free ROM which included Sony Xperia specific apps and various tweaks users would expect from a custom ROM.
      S+ Reborn became a success and was eventually ported to different devices so from there I rebranded and XOSP project was founded. I worked on the project for 2 years always trying to improve it. Eventually, Because of the fact Lollipop was buggy on my Galaxy S+ (Which I maintained xosp for at the time) I decided to take a break from development until I got my hands on the Zenfone 2 in 2015 and from then I started again the development of XOSP and continued it ever since.
  • What Represents a Release and what represents a Revision?
    • Revisions include small changes such as bug fixes/improvments etc.. (Usually there are made like 3 revisions per-release).
      Releases are the main "stable" builds with all new planned features implemented and bugs fixed.

















First time installing XOSP or coming from another ROM?
  • Make sure your Bootloader is unlocked and youre running the latest TWRP
  • Download latest build,XOSPApps and GApps
  • Reboot recovery
  • Wipe data factory reset
  • Flash latest XOSP
  • Flash GApps
  • Flash XOSPApps (Optional)
  • Reboot


Upgrading from earlier release or revision of XOSP:
  • Reboot recovery
  • Flash latest XOSP
  • Flash GApps if necessary
  • Flash XOSPApps (Optional)
  • Wipe cache and dalvik
  • Reboot




  • XOSPSite
  • XOSP DownloadCenter
  • XOSP Jenkins Server
  • XOSP Sources
  • XOSP Devices Sources
  • Build XOSP for your device!
  • G+ Community
  • FB Page
  • XOSP Channel on Telegram
  • XOSP Community Group on Telegram





  • XOSP Harpia
  • XOSPApps
  • GApps (I suggest you to use the Nano package)





  • Device tree
  • Kernel




  • @nilac and XOSP Team
  • CyanogenMod for the base sources
  • Sony and the Xperia Community
  • Resurrection Remix Team
  • AICP Team
  • @malybru for the XOSP banner
  • Mihir Mistry for the XOSP logo

XDA:DevDB Information
[ROM][UNOFFICIAL]Xperia Open Source Project[7.1.1], ROM for the Moto G4 Play

Contributors
Subhrajyoti Sen 
Source Code: https://github.com/XOSP-Project/

ROM OS Version: 7.x Nougat

Version Information
Status: Stable

Created 2016-12-28
Last Updated 2016-12-28

download file now

Read more »

Monday, 28 August 2017

Working TWRP 2 8 7 0 for ze550kl Unofficial

Working TWRP 2 8 7 0 for ze550kl Unofficial


Working TWRP 2.8.7.0 for ze550kl (Unofficial)

Instructions are same as for 2.8.6.0

Do not flash, just boot it first.

Working TWRP 2.8.7.0 for ze550kl

https://drive.google.com/file/d/0Bz46tV6s-sImMmNLWWhZZ0QtN1k/view?usp=sharing

Warning 
Do not try to fix permission, if you do not know exactly what this is ?
Home > Advance > Fixpermission

If you have any issue then please verify md5 checksum 
File: ze550kl_287.img
File size: 29.9 MB (31,334,400 bytes)
MD5 checksum: 7060B27AA5C4AB199915CBFBE889C4C4
SHA1 checksum: C0F33B8F398B4A5D5F1F410B671890476EF2711E

download file now

Read more »

Thursday, 10 August 2017

ROM Z00T 6 0 1 Temaseks Unofficial CyanogenMod 13

ROM Z00T 6 0 1 Temaseks Unofficial CyanogenMod 13


These are builds of Temaseks Unofficial CM13




These builds are based on CM-13 nightlies with features cherry-picked from many sources. This is similar to a nightly from CM but has some extra goodies baked in.

I will attempt to get builds out as soon as Temasek releases a new version, however due to commitments i may miss a release. I will not upload a ROM until i have flashed it myself. Builds will strictly follow Temaseks upstream, I will not be making any changes. If you cant handle some things possible being broken, please dont use this and then complain to me for building it. Thank You.



Features 
Code:
3 finger gesture screenshot
PA PIE Control
Built-in Viper4Android
DT2S Lock Screen
OmniSwitch
AppBar
App Circle bar
Gestures Anywhere
Heads Up Notifications
Network traffic meter
DPI Settings

Disclaimer
Code:
/*
* Your warranty is now void.
*
* I am not responsible for bricked devices, dead SD cards,
* thermonuclear war, or you getting fired because the alarm app failed. Please
* do some research if you have any concerns about features included in this ROM
* before flashing it! YOU are choosing to make these modifications, and if
* you point the finger at me for messing up your device, I will laugh at you. Hard. A lot.
*/


Things you should take into consideration

1) Do NOT ask for builds.
2) Do NOT use this unofficial build and ask for support at the official threads.
3) Do NOT be rude.
4) Respect all users
5) If you see a NOOB question and you dont feel like replying, simply DONT; just ignore that post. If you reply, good for you and be nice in your reply
6) DO NOT Report bugs if youre running a custom kernel or you installed Xposed



Devices supported by this package :
  • Asus Zenfone Laser ZE551KL
  • Asus Zenfone Selfie ZD551KL

Links

Latest ROM Found Here
Arm64 Nano Gapps


Installation

1. Download the latest build and gapps
2. Reboot to recovery
3. Flash the latest build and gapps
4. Reboot


Issues

Same as CM


Credits: 
Cyanogenmod
Temasek
arter97
luca020400
Luk1337

Source
Temasek
ROM source

Changelog
Changelog

XDA:DevDB Information
[ROM][Z00T][6.0.1 ]Temaseks Unofficial CyanogenMod 13, ROM for the Zenfone 2 Laser

Contributors
RukusX7
ROM OS Version: 6.0.x Marshmallow
ROM Kernel: Linux 3.10.x
Based On: CyanogenMod

Version Information
Status: Nightly

Created 2016-04-14
Last Updated 2016-05-23

download file now

Read more »