Posts

Increase Performance Android Studio

Image
Solver 1 You can speed up your Eclipse or Android Studio work, you just follow these: Open your single project clean your project after running your app in emulator every time use mobile/external device instead of emulator don't close emulator after using once, use same emulator for running app each time Disable VCS by using File->Settings->Plugins and disable the following things : CVS Integration Git Integration (Git & Github) Google Cloud Tools for Android Studio Subversion Integration Firebase (Optional) I am also using Android Studio with 4-GB installed main memory but following these statements really boost my Android Studio performance. Solver 2 Android Studio (up to 1.5GB) The IDE's JVM is configured to have a max heap size. You can see this in the lower-right corner of the main interface:

Dynamic load admob ads

<LinearLayout android:id="@+id/main_adTopBanner" android:orientation="vertical" android:layout_height="50dp" android:layout_width="match_parent"> </LinearLayout> @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); LoadAds(); } private AdView AD_TOP_BANNER = null; public void LoadAds() { // Create the adView. this.AD_TOP_BANNER = new AdView(this); this.AD_TOP_BANNER.setAdUnitId("MY_SPECIAL AND_UNIQUE_AD_ID"); // this.AD_TOP_BANNER.setAdSize(AdSize.BANNER); this.AD_TOP_BANNER.setAdSize(AdSize.SMART_BANNER); // Lookup your LinearLayout assuming it's been given LinearLayout layout = (LinearLayout) findViewById(R.id.main_adTopBanner); // Add the adView to it. layout.addView(this.AD_TOP_BANNER); // Initiate a generic request. AdRequest adRequest = null; adRequest = new AdRequest.Builder().buil

Find Backlink From Google Dork

Image
Forum Backlink Dork inurl:"member.php?u=" inurl:"index.php?showuser=" inurl:"smf/index.php?action=profile;u=" inurl:"index.php?action=profile" inurl:"profile.php?mode=viewprofile&u=" inurl:"profile.php?id=" "member.php?u=" "index.php?showuser=" "Invision Power Board" "smf/index.php?action=profile;u=" "index.php?action=profile" "profile.php?mode=viewprofile&u=" "profile.php?id=" "Powered by PunBB" "Powered by SMF" "PHPBB" "Powered by phpBB" inurl:"member.php?u=" inurl:"index.php?showuser=" inurl:"smf/index.php?action=profile;u=" inurl:"index.php?action=profile" forumphorumadd topicnew topicphpbbyabbipbpostingadd messagesend messagepost new topicnew threadsend threadvbulletinbbs intext:"powered by vbulletin" intext:"powered by yabb" intext:&q

Tether VPN Android

Image
How to tethering vpn on android ROOT is required Requirement Terminal Emulator Tutorial Start your VPN until connected Open terminal emulator Type: su ip link show id iptables -t filter -F FORWARD iptables -t nat -F POSTROUTING iptables -t filter -l FORWARD -j ACCEPT iptables -t nat -I POSTROUTING -j MASQUERADE ip rule del from 192.168.43.0/24 lookup 61 ip route del default dev tun0 scope link table 61 ip route del 192.168.43.0/24 dev wlan0 scope link table 61 ip route broadcast 255.255.255.255 dev wlan0 scope link table 61 exit Now connect your other devices to your android hotspot, try browsing any websites now :) Alternative install VPN tethering from play store

Drone Mobile Legends

Drone Mobile Legends Now Available at https://git.webmanajemen.com/Web-Manajemen/mlbb.html?v.1.0.5 Unity v4 ALL MAPS Work Posted by Dimas Imam Nawawi on Monday, January 20, 2020 Original URL: Drone Mobile Legends All Versions Features Support all maps including spring map Unity v4 Anti Banned Support all mode including classic, rank, brawl, survival, mirror, mayhem and other arcades exclude magic chess and chess td Support mobile legends 1.4.45 to 1.4.47 Incoming Terms Wide screen mobile legends Drone mobile legends 1.4.45 1.4.47 Drone mobile legends february 2020 Drone mobile legends latest version

Load CSS Asynchronously

Load CSS Asynchronously Usage: loadCSS('//CSS_URL'); loadCSS('//raw.githack.com/PrismJS/prism-themes/master/themes/prism-vs.css');

Simple PrismJS

Simple PrismJS Syntax Highlighter <pre> <code> (Not Single) Usage: <pre><code>code block</code></pre> <h3>Welcome to the real-time HTML editor!</h3> <p>Type HTML in the textarea above, and it will magically appear in the frame below.</p> Only <code> Usage: <code>code block</code> <h3>Welcome to the real-time HTML editor!</h3> <p>Type HTML in the textarea above, and it will magically appear in the frame below.</p> Pre (Single Pretext) <h3>Welcome to the real-time HTML editor!</h3> <p>Type HTML in the textarea above, and it will magically appear in the frame below.</p> Pre (Single Pretext) + lang="js" Usage: <pre lang="js">code block</pre> if (window.addEventListener) { window.addEventListener("load", downloadJSAtOnload, false); } else if (window.attachEvent) { window.attach