<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>b3nsh4</title>
    <link>https://b3nsh4.com/</link>
    <description>Recent content on b3nsh4</description>
    <generator>Hugo -- 0.154.4</generator>
    <language>en-us</language>
    <lastBuildDate>Mon, 20 Oct 2025 10:35:07 +0530</lastBuildDate>
    <atom:link href="https://b3nsh4.com/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Device Discovery in MQTT: Using Retained Messages as a Service Registry</title>
      <link>https://b3nsh4.com/blog/2025/mqtt-retained-messages-device-discovery/</link>
      <pubDate>Mon, 20 Oct 2025 10:35:07 +0530</pubDate>
      <guid>https://b3nsh4.com/blog/2025/mqtt-retained-messages-device-discovery/</guid>
      <description>&lt;p&gt;When you have some number of IoT devices connected to an MQTT broker, one of the major concerns we had is - how do we know what devices came online, what topics they publish to, and what are its other params (device details). Most solutions involve maintaining a separate device registry database. But the idea here is to use MQTT broker itself as a device registry.&lt;/p&gt;
&lt;p&gt;In typical MQTT deployments, you need to maintain device inventories separately: a database to store device metadata. Still, at this point, the path to write this info to the database write/read has to be created.&lt;/p&gt;</description>
    </item>
    <item>
      <title>User Attribute-Based Authorization in Multitenant Apps - Django-tenants</title>
      <link>https://b3nsh4.com/blog/2025/django-user-attribute-multitenancy/</link>
      <pubDate>Tue, 15 Apr 2025 11:05:07 +0530</pubDate>
      <guid>https://b3nsh4.com/blog/2025/django-user-attribute-multitenancy/</guid>
      <description>&lt;p&gt;This article assumes you&amp;rsquo;re using &lt;a href=&#34;https://django-tenants.readthedocs.io/&#34; rel=&#34;noopener&#34; target=&#34;_blank&#34;&gt;django-tenants&lt;/a&gt;
 for schema-based multitenancy (separate PostgreSQL schema per tenant). The authorization pattern described here works specifically with django-tenants&amp;rsquo; &lt;code&gt;schema_context()&lt;/code&gt; approach. If you&amp;rsquo;re curious, read the AWS cognito part as well.&lt;/p&gt;
&lt;h2 id=&#34;the-problem&#34;&gt;The Problem&lt;/h2&gt;
&lt;p&gt;When building a multitenant application with django-tenants, we needed to control which PostgreSQL schema each user could access. Each tenant has its own isolated schema, but we needed a lightweight authorization mechanism to ensure users could only access their assigned tenant&amp;rsquo;s data.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Django (DRF) Serializers To Handle Nested JSON data</title>
      <link>https://b3nsh4.com/blog/2024/django-nested-serializers/</link>
      <pubDate>Fri, 25 Oct 2024 00:00:00 +0000</pubDate>
      <guid>https://b3nsh4.com/blog/2024/django-nested-serializers/</guid>
      <description>&lt;p&gt;I have been dealing with a lot of JSON data more than ever before. All of the data are coming from a Webhook provider upon certain events. One of the things I was not comfortable with was the nested JSON structure until I found there is a clean way to solve it. Our Django app uses Django REST Framework (DRF) and relies heavily on its serialization capabilities.&lt;/p&gt;
&lt;h3 id=&#34;what-are-we-going-to-see&#34;&gt;What are we going to see&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Looking at the data (JSON/dict)&lt;/li&gt;
&lt;li&gt;Looking at the model where the data is about to be stored&lt;/li&gt;
&lt;li&gt;Writing DRF serializer to handle the nested data
&lt;ul&gt;
&lt;li&gt;More details of how its done using &lt;code&gt;to_internal_value()&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;conclusion&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;a-sample-json-data-for-context&#34;&gt;A sample JSON data for context&lt;/h3&gt;
&lt;p&gt;This is a webhook event when a charging session is started and stopped. Looking at the JSON (data) itself - it has a max depth of 5.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Python - A Clean Way to Traverse Nested Dict/List</title>
      <link>https://b3nsh4.com/blog/2024/python-clean-way-to-traverse-nested-objs/</link>
      <pubDate>Wed, 28 Aug 2024 08:03:57 +0530</pubDate>
      <guid>https://b3nsh4.com/blog/2024/python-clean-way-to-traverse-nested-objs/</guid>
      <description>&lt;p&gt;I had to work with some complex structured JSON responses having multiple levels of nesting. The issue has always been that the API would return nested JSON where I have to walk different levels to get data by using &lt;code&gt;x.get(&#39;y&#39;)[0].get...&lt;/code&gt; chains.&lt;/p&gt;
&lt;p&gt;For this very reason, I was looking for an optimal and efficient solution so that at least I can avoid calling &lt;code&gt;get()&lt;/code&gt; many times.&lt;/p&gt;
&lt;h3 id=&#34;the-problem&#34;&gt;The Problem&lt;/h3&gt;
&lt;p&gt;Let&amp;rsquo;s say you&amp;rsquo;re working with user data from an API:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Auth0 as OpenIDC broker in AWS Cognito for AzureAD multi-tenancy support</title>
      <link>https://b3nsh4.com/blog/2024/aws-oidc-auth0-broker-allauth/</link>
      <pubDate>Sun, 24 Mar 2024 00:00:00 +0000</pubDate>
      <guid>https://b3nsh4.com/blog/2024/aws-oidc-auth0-broker-allauth/</guid>
      <description>&lt;p&gt;If you read the previous article &lt;a href=&#34;https://b3nsh4.com/blog/2024/django-oauth-fullstory/&#34;&gt;OAuth using AWS Cognito&lt;/a&gt;, then you should be also reading this. I&amp;rsquo;m writing this article after a month of this very story. But I believe I won&amp;rsquo;t miss much.&lt;/p&gt;
&lt;h3 id=&#34;saml-oidc-setup-and-overview&#34;&gt;SAML, OIDC setup and overview&lt;/h3&gt;
&lt;p&gt;If we look into the out-of-the-box &lt;a href=&#34;https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-social-idp.html&#34;&gt;social identity providers&lt;/a&gt;  , there are few. If we want to add Microsoft/Azure, that would be done via &lt;a href=&#34;https://auth0.com/blog/how-saml-authentication-works/&#34;&gt;SAML&lt;/a&gt; or &lt;a href=&#34;https://www.microsoft.com/en-us/security/business/security-101/what-is-openid-connect-oidc#:~:text=and%20use%20cases-,OpenID%20Connect%20%28OIDC%29%20defined,in%20to%20access%20digital%20services.&#34;&gt;OpenID connect&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Due to our client requirement, we started working on integrating Azure (now &lt;a href=&#34;https://learn.microsoft.com/en-us/entra/fundamentals/new-name&#34;&gt;Entra&lt;/a&gt;) into Cognito via SAML. In Azure, to setup SAML, we start by &lt;a href=&#34;https://learn.microsoft.com/en-us/entra/identity/enterprise-apps/add-application-portal&#34;&gt;creating an Enterprise Application&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Django OAuth setup with social login, AWS Cognito, GitHub - Full story</title>
      <link>https://b3nsh4.com/blog/2024/django-oauth-fullstory/</link>
      <pubDate>Thu, 25 Jan 2024 00:00:00 +0000</pubDate>
      <guid>https://b3nsh4.com/blog/2024/django-oauth-fullstory/</guid>
      <description>&lt;p&gt;I spent some quality time researching about OAuth in Django. Tried more than 3 packages. Well, it was not just about just installing something and expect everything to work. There was some tinkering which i think i did well. Therefore, this some part of this blog might also help in your case i guess.
I will be also uploading a YouTube video of the same, if i do, you can find the video at the bottom of this page.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Global variables in AWS Lambda are dirty!</title>
      <link>https://b3nsh4.com/blog/2023/global-vars-are-bad-in-aws-lambda/</link>
      <pubDate>Wed, 01 Nov 2023 00:00:00 +0000</pubDate>
      <guid>https://b3nsh4.com/blog/2023/global-vars-are-bad-in-aws-lambda/</guid>
      <description>&lt;p&gt;Hello everyone, I know that it has been a long time since i wrote a post. I hope every thing is going well with you. I always wanted to consistently write here. But lets see if I can make it possible sometime soon :)&lt;/p&gt;
&lt;h3 id=&#34;what-is-this-post-about&#34;&gt;What is this post about?&lt;/h3&gt;
&lt;p&gt;Today, as usual i started off the job in the morning. I&amp;rsquo;m at a juncture point of building a part of the project. There again, we need yet another micro-service. So, I started  writing a piece of script (Python) that needs to be deployed in AWS Lambda. This usually should only take couple of hours, max. But, after that i wrote it, I realized that, half the time writing the script  was spent on debugging an issue that i did not even understand how/why it happens.
After finding the why/how, I thought it&amp;rsquo;ll good to share it here and someone will find it useful on the way.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Some thoughts on working &#39;Smarter&#39;</title>
      <link>https://b3nsh4.com/blog/2022/my-opinion-on-smart-work-over-hardwork/</link>
      <pubDate>Sun, 28 Aug 2022 00:00:00 +0000</pubDate>
      <guid>https://b3nsh4.com/blog/2022/my-opinion-on-smart-work-over-hardwork/</guid>
      <description>&lt;p&gt;Let me start with a simple quote:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;“The only way to do great work is to love what you do.” — Steve Jobs&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The best way to learn deeply is to do what you genuinely enjoy. Whether it’s software dev, farming, carpentry, or any other task — if you like it, you’ll enjoy doing it and you’ll learn from experience. Our minds naturally grasp the things we care about. Put in more effort where your interest lies, and you’ll get better. I say this up front because it’s something I’ve always told myself.&lt;/p&gt;</description>
    </item>
    <item>
      <title>what does the Bible say about jobs 👷‍♂️</title>
      <link>https://b3nsh4.com/blog/2022/what-does-bible-say-about-jobs/</link>
      <pubDate>Sun, 31 Jul 2022 00:00:00 +0000</pubDate>
      <guid>https://b3nsh4.com/blog/2022/what-does-bible-say-about-jobs/</guid>
      <description>&lt;p&gt;Are you a wagie? Most probably you are unless you have some passive/active income from your product.&lt;/p&gt;
&lt;p&gt;Over the past decade, I&amp;rsquo;ve seen many people jumping from a mechanical engineer role to a software field. Reason is quite obvious. I don&amp;rsquo;t want to tell you that software industry now provides more employment. It&amp;rsquo;s really good if you enjoy it. What if you are not interested in but still working on it.? I don&amp;rsquo;t know how it feels like considering money comes on top of it as a reward.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Introduction to Termux-API and script automation 🧑‍🔧</title>
      <link>https://b3nsh4.com/blog/2022/the-magic-of-automation---termux-api/</link>
      <pubDate>Fri, 01 Jul 2022 00:00:00 +0000</pubDate>
      <guid>https://b3nsh4.com/blog/2022/the-magic-of-automation---termux-api/</guid>
      <description>&lt;p&gt;Welcome back to yet another amazing article.
By the way, have you seen the new video uploaded at YT? This article is about about the same. Now, If you think about why do I write this blog after creating a video - well, a video is mostly a quick take (for me). We miss many things. Writing a blog mostly explains everything.&lt;/p&gt;
&lt;p&gt;Yes, now you have an idea about what I&amp;rsquo;m talking about. It&amp;rsquo;s about Termux-API and how we can make use of them in real life applications.&lt;/p&gt;</description>
    </item>
    <item>
      <title>I made my Resume from Markdown with CSS styles.</title>
      <link>https://b3nsh4.com/blog/2022/make-pdf-from-markdown-with-css-styles/</link>
      <pubDate>Tue, 07 Jun 2022 00:00:00 +0000</pubDate>
      <guid>https://b3nsh4.com/blog/2022/make-pdf-from-markdown-with-css-styles/</guid>
      <description>&lt;p&gt;Hey all!
welcome back to another article. I hope your week is going well. About me, I&amp;rsquo;ve had few wonderful stories to share with you, which is about a job interview that i had applied for. In the final round(HR)the story went twisty in many ways. So, I&amp;rsquo;ll share it another day.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;ve been so concerned about editing my resume. Up till last week, i was using Canva website to make my resume. When i think about it now, feels like an extreme normie.&lt;/p&gt;</description>
    </item>
    <item>
      <title>The movies promote cigrates with lung cancer notice.</title>
      <link>https://b3nsh4.com/blog/2022/movies-promote-cigrates-with-cancer-notice/</link>
      <pubDate>Sat, 28 May 2022 00:00:00 +0000</pubDate>
      <guid>https://b3nsh4.com/blog/2022/movies-promote-cigrates-with-cancer-notice/</guid>
      <description>&lt;p&gt;May be I&amp;rsquo;m too distracted. But, Fu*k any movies, series or any such crap showing smoking and shamelessly says that it causes lung cancer.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m not those &amp;ldquo;Social activists&amp;rdquo; or any such people who would raise arguments on any things others do. I don&amp;rsquo;t involve in anyone&amp;rsquo;s privacy. Because I&amp;rsquo;d like to give them their own space. But things like addiction is something someone don&amp;rsquo;t want instead mindlessly doing it.&lt;/p&gt;</description>
    </item>
    <item>
      <title>A random story..</title>
      <link>https://b3nsh4.com/blog/2022/a-random-story/</link>
      <pubDate>Wed, 25 May 2022 00:00:00 +0000</pubDate>
      <guid>https://b3nsh4.com/blog/2022/a-random-story/</guid>
      <description>&lt;h3 id=&#34;the-school-&#34;&gt;The school 🎒&lt;/h3&gt;
&lt;p&gt;Back in 2015-18, writing blogposts was all about curiosity. I still don&amp;rsquo;t know how I was so boosted at that time. I was at 10th standard. Didn&amp;rsquo;t own a computer at that point. Parents didn&amp;rsquo;t like me doing something on computers. And had have a valid reason to block me from using it.&lt;/p&gt;
&lt;p&gt;See me.. I was very good at studies from 3rd grade to 7th grade. After that, I turned out to be an average. It wasn&amp;rsquo;t intentional at all. All happened unknowingly and I became more aware of it after each test papers. Fast-forward! what would you expect me at 10th grade? I was even slipping down from the average position.&lt;/p&gt;</description>
    </item>
    <item>
      <title>XREP needs more time to release</title>
      <link>https://b3nsh4.com/blog/2022/xrep-needs-some-more-time-to-release/</link>
      <pubDate>Mon, 09 May 2022 00:00:00 +0000</pubDate>
      <guid>https://b3nsh4.com/blog/2022/xrep-needs-some-more-time-to-release/</guid>
      <description>&lt;p&gt;As you already know about XREP, while some others have used it as testers. I was expecting the release of XREP by the end of this month. But It&amp;rsquo;s not going to be the case. As of now, I&amp;rsquo;m in the middle of many things and can&amp;rsquo;t give proper focus to it.&lt;/p&gt;
&lt;p&gt;The last commit was on 5th of May. There are not many things left. Infact the Python-re version is making some headache to me.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Why Comments Are Disabled on My WebSite</title>
      <link>https://b3nsh4.com/blog/2022/why-comments-are-disabled-on-my-site/</link>
      <pubDate>Sat, 07 May 2022 22:24:43 +0530</pubDate>
      <guid>https://b3nsh4.com/blog/2022/why-comments-are-disabled-on-my-site/</guid>
      <description>&lt;p&gt;This is intentional. If you guys know me from the start of the time when I had &amp;ldquo;techcraft.tk&amp;rdquo; (my old tech blog), it was roughly around 2016-2018, but later on, i had decided to change the domain. The point is, for each post, i saw many spam or rather irrelevant comments which makes me few people are so dump. They might be putting comments on &amp;ldquo;crypto&amp;rdquo; or &amp;ldquo;pay me I&amp;rsquo;ll hack social accounts&amp;hellip;so on..&amp;rdquo;&lt;/p&gt;</description>
    </item>
    <item>
      <title>I Left Blogger After 6 Years</title>
      <link>https://b3nsh4.com/blog/2022/i-left-blogger-after-6-years/</link>
      <pubDate>Fri, 29 Apr 2022 21:37:37 +0530</pubDate>
      <guid>https://b3nsh4.com/blog/2022/i-left-blogger-after-6-years/</guid>
      <description>&lt;p&gt;It has been more than 6 years since I started my Blogger journey. Blogspot indeed was/is a good way to start any static website from scratch and get it done in minutes. It felt very convenient for me over the years and also the settings and configs are also very intuitive.&lt;/p&gt;
&lt;p&gt;Not so long ago, I saw a cookie pop-up on my blogger which I did notice when someone told me. I was sure that I did nothing to show a cookie banner. Idk why but, it kind of made me think &lt;em&gt;&amp;ldquo;this is not my stuff and I do not fully own it&amp;rdquo;.&lt;/em&gt; And it was one of the many reasons I wanted to switch. I had some political opinions which I wanted to share but afraid about Google policies applied to Blogspot. Over the time, it really shook me and made me think &lt;em&gt;&amp;ldquo;why do I use Linux, FOSS, etc..?&amp;rdquo;&lt;/em&gt; That&amp;rsquo;s when I really took the time to switch. I backed up all my posts from Blogger since 2016 and converted it to Markdown and made a video on YouTube about the process just in-case if someone wants to switch immediately without much research.&lt;/p&gt;</description>
    </item>
    <item>
      <title>I love flask ❤️</title>
      <link>https://b3nsh4.com/2022/03/i-love-flask.html</link>
      <pubDate>Fri, 04 Mar 2022 06:54:00 -0800</pubDate>
      <guid>https://b3nsh4.com/2022/03/i-love-flask.html</guid>
      <description>&lt;p&gt;The title is obvious. Everyone loves Flask as a small web framework. As of now, all my projects are built with flask. Including b3nsh4.tk &lt;/p&gt;
&lt;p&gt;Few have asked what did i use for XREP. Yes, it is flask again. Idk why it&amp;rsquo;s so easier to get started with something and can&amp;rsquo;t be more easier. &lt;/p&gt;
&lt;p&gt;For me Django is framework which works out of the box and has many more features. But if the idea of our application is complex at the backend and less fancy frontend with no db, login.. flask is the option. &lt;/p&gt;</description>
    </item>
    <item>
      <title>the [a-z] globbing cheatsheet</title>
      <link>https://b3nsh4.com/2021/01/the-z-globbing-cheatsheet.html</link>
      <pubDate>Tue, 19 Jan 2021 22:15:00 -0800</pubDate>
      <guid>https://b3nsh4.com/2021/01/the-z-globbing-cheatsheet.html</guid>
      <description>&lt;p&gt; A simple cheatsheet that helps you to get started with globbing and regex.&lt;/p&gt;
&lt;p&gt;Download PDF: &lt;a href=&#34;https://drive.google.com/file/d/1kgjW2AUpyLC9mbleVpk54NkkyS4k1wZG/view?usp=sharing&#34;&gt;https://drive.google.com/file/d/1kgjW2AUpyLC9mbleVpk54NkkyS4k1wZG/view?usp=sharing&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;if you found this helpful and would like to donate, it will help me on future projects and keep doing better works towards our community. &lt;/p&gt;
&lt;p&gt;❤️ DONATE:  &lt;a href=&#34;http://paypal.me/b3nsh4&#34;&gt;paypal.me/b3nsh4&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>bash-cheatsheet</title>
      <link>https://b3nsh4.com/2021/01/bash-cheatsheet.html</link>
      <pubDate>Sat, 09 Jan 2021 08:57:00 -0800</pubDate>
      <guid>https://b3nsh4.com/2021/01/bash-cheatsheet.html</guid>
      <description>&lt;p&gt; Drive Link to pdf: &lt;a href=&#34;https://drive.google.com/file/d/1HwG_Y0q8_UWSLWCjYGZ5fpmU5LpUZ5b-/view?usp=sharing&#34;&gt;https://drive.google.com/file/d/1HwG_Y0q8_UWSLWCjYGZ5fpmU5LpUZ5b-/view?usp=sharing&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;To learn more bash tricks, my fav website is tldp.org&lt;/p&gt;
&lt;p&gt;They have awesome examples too. &lt;a href=&#34;https://tldp.org/LDP/abs/html/manipulatingvars.html&#34;&gt;https://tldp.org/LDP/abs/html/manipulatingvars.html&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Discrete mathematics is awesome?</title>
      <link>https://b3nsh4.com/2020/08/discrete-mathematics-is-awesome.html</link>
      <pubDate>Wed, 12 Aug 2020 03:44:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2020/08/discrete-mathematics-is-awesome.html</guid>
      <description>&lt;p&gt;Yes, after an year, I finally decided to take Discrete mathematics again as a part of my university. Tbh, I didn&amp;rsquo;t really enjoy it when I came across it a year back. But, now I feel like it&amp;rsquo;s somehow helping me to think in a logical way. And, I also found a good playlist for learning it. If you ever want to jump in to this business, &lt;em&gt;&lt;a href=&#34;https://www.youtube.com/playlist?list=PLHXZ9OQGMqxersk8fUxiUMSIx0DBqsKZS&#34;&gt;this will help&lt;/a&gt; .&lt;/em&gt; That&amp;rsquo;s the playlist. I thanked him via twitter for this. If you are bored, I think this will fill / blow your mind. Hmm.. if free take a look. Btw, I&amp;rsquo;ve few things to say about YouTube and why I might leave it soon&amp;hellip;&lt;/p&gt;</description>
    </item>
    <item>
      <title>TA-1053 NOKIA Mini Flash guide </title>
      <link>https://b3nsh4.com/2020/07/ta-1053-nokia-mini-flash-guide.html</link>
      <pubDate>Fri, 31 Jul 2020 04:45:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2020/07/ta-1053-nokia-mini-flash-guide.html</guid>
      <description>&lt;p&gt;The way I did everything to Nokia TA-1053&lt;/p&gt;
&lt;p&gt;Stock Android 7&lt;/p&gt;
&lt;p&gt;Updated to Android 9&lt;/p&gt;
&lt;p&gt;Downgraded to Android 7 (for bootloader unlocking)&lt;/p&gt;
&lt;p&gt;Upgraded to Android 9 (after unlocking)&lt;/p&gt;
&lt;p&gt;Flashed twrp (shitty thing I&amp;rsquo;ve ever done)&lt;/p&gt;
&lt;p&gt;Rooted with magisk. &lt;/p&gt;
&lt;p&gt;If your stock recovery is overwritten, sadly, you cannot install any OTA. Can&amp;rsquo;t you do ever? Well, yes you can. But, you have to;&lt;/p&gt;
&lt;p&gt;Downgrade to Stock (7.1)&lt;/p&gt;
&lt;p&gt;Unlock bootloader (if needed)&lt;/p&gt;
&lt;p&gt;Install all available OTA to Android 9 including July security patch&lt;/p&gt;</description>
    </item>
    <item>
      <title>Persistent start is important!</title>
      <link>https://b3nsh4.com/2020/07/persistent-start-is-important.html</link>
      <pubDate>Tue, 28 Jul 2020 22:32:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2020/07/persistent-start-is-important.html</guid>
      <description>&lt;p&gt;When I started blogging, I was changing my domain frequently. I wasn&amp;rsquo;t satisfied  with any. Finally, I fixed to go with techcraft.tk domain. And, I used it for very long time. Made few pages to promote that blog. I was passionate about blogging at that time more than now. For some reason, I couldn&amp;rsquo;t continue doing blogging. So, after very long time, here I&amp;rsquo;m am. Changed domain again to bensh4. I really liked this username and I sorta wanted to make this everywhere. That&amp;rsquo;s why I again changed to bensh4. I was worried about AdSense because of this continuous changing. Because I stopped blogging then, I didn&amp;rsquo;t bother about that much. My advice for a new blogger(or any starter) would be like; You have to be really sure about what you&amp;rsquo;re doing and will do. Choose something (username for eg:) and don&amp;rsquo;t tend to change it. &lt;/p&gt;</description>
    </item>
    <item>
      <title>I learned not to run my nginx as root</title>
      <link>https://b3nsh4.com/2020/07/i-learned-not-to-run-my-nginx-as-root.html</link>
      <pubDate>Tue, 28 Jul 2020 04:39:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2020/07/i-learned-not-to-run-my-nginx-as-root.html</guid>
      <description>&lt;p&gt;I&amp;rsquo;m mostly using Android to do my daily stuffs than my laptop. But when I start to use laptop, I&amp;rsquo;ll rarely use my phone. 🙃&lt;/p&gt;
&lt;p&gt;I was running nginx in Termux on port 80 some reason. Since SeLinux feature is set as permissive, it&amp;rsquo;s not stopping me from doing that. So to start server with that port, I must be root. So, I start nginx as root , which means now it has the role of root. It&amp;rsquo;s like a real root user in my host which can access my host files and what not. So, atleast a docker is more appreciated to run it. Or more abstractions are possible via Selinux, Apparmor or Firejail those can have custom profiles for more security. And, I found a good article &amp;gt; &lt;a href=&#34;https://medium.com/@mccode/processes-in-containers-should-not-run-as-root-2feae3f0df3b&#34;&gt;here&lt;/a&gt; &amp;lt;. It&amp;rsquo;s a Medium article. &lt;/p&gt;</description>
    </item>
    <item>
      <title>Generate HTML from DirTree!</title>
      <link>https://b3nsh4.com/2020/07/generate-html-from-dirtree.html</link>
      <pubDate>Tue, 28 Jul 2020 01:07:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2020/07/generate-html-from-dirtree.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-Ndh2ildnOig/Xx_c1emNqtI/AAAAAAAACcY/AQtye3-1VLUt8qGvHUgCZsryiNUVUjCXQCLcBGAsYHQ/s1600/1595923634548881-0.png&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://lh3.googleusercontent.com/-Ndh2ildnOig/Xx_c1emNqtI/AAAAAAAACcY/AQtye3-1VLUt8qGvHUgCZsryiNUVUjCXQCLcBGAsYHQ/s1600/1595923634548881-0.png&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This is so far the most convenient way for generating an output of your current directory free. I took the html file and made it as my http server index.html I&amp;rsquo;ll.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s simple and elegant enough.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;tree -H &lt;em&gt;YOURDIR&lt;/em&gt; -L &lt;em&gt;2OR3ORANY&lt;/em&gt; -C &amp;gt; &lt;em&gt;file.html&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;a href=&#34;https://youtu.be/70BXSfaIz1c&#34;&gt;Video link&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Don&amp;rsquo;t forget to add the RSS&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Thinking about leaving Twitter 🤔</title>
      <link>https://b3nsh4.com/2020/07/thinking-about-leaving-twitter.html</link>
      <pubDate>Tue, 28 Jul 2020 00:00:00 +0000</pubDate>
      <guid>https://b3nsh4.com/2020/07/thinking-about-leaving-twitter.html</guid>
      <description>&lt;p&gt;It is now that I&amp;rsquo;m realising that there&amp;rsquo;s so much noise in Twitter. Still I&amp;rsquo;m staying in Twitter for some reason that I cannot explain. I can post my thoughts via this blog even if I leave that platform. But, I&amp;rsquo;m only thinking. But, I&amp;rsquo;ll leave one day for sure. Because, think for a while, &amp;ldquo;why do we need that platform?&amp;rdquo;. For sharing our thoughts and ideas? That&amp;rsquo;s why we can have our own blog. That&amp;rsquo;s how I&amp;rsquo;m believe. Back in the days, it was awesome to see many blogs  like people writing their &lt;em&gt;daily diary&lt;/em&gt; . Now everybody is via twitter and others. Well.. there are many things to say. May be my first Episode of podcast will be subjecting this.&lt;/p&gt;</description>
    </item>
    <item>
      <title>What is WebDav | How to implement it in Android </title>
      <link>https://b3nsh4.com/2018/07/what-is-webdav-how-to-implement-it-in.html</link>
      <pubDate>Mon, 23 Jul 2018 09:18:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2018/07/what-is-webdav-how-to-implement-it-in.html</guid>
      <description>&lt;p&gt;After a very long time, yes I&amp;rsquo;m back. ;-)&lt;/p&gt;
&lt;p&gt;Here we&amp;rsquo;re going to discuss what is a &lt;strong&gt;&amp;lsquo;WebDav&amp;rsquo;&lt;/strong&gt; server and how you can implement a &amp;lsquo;WebDav&amp;rsquo; server in your system too. Before starting let&amp;rsquo;s first have a look at what actually is WebDav. BTW, I&amp;rsquo;m not going to explain how wiki explains; but with my level of  knowledge ;-)&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;WebDav actually stands for &amp;rsquo; Web Distributed Authoring and Versioning.&amp;rsquo;  Well,what that means?&lt;/p&gt;</description>
    </item>
    <item>
      <title>Run Windows XP on android without Root</title>
      <link>https://b3nsh4.com/2017/06/run-windows-xp-on-android-without-root.html</link>
      <pubDate>Fri, 02 Jun 2017 22:47:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2017/06/run-windows-xp-on-android-without-root.html</guid>
      <description>&lt;p&gt;Welcome folks.&lt;/p&gt;
&lt;p&gt;This tutorial will show you &amp;lsquo;how to run Windows Xp on Android device without root.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://2.bp.blogspot.com/-8PpGezpmoMs/WTJLzBvO-EI/AAAAAAAAB0s/ADny1DuZsxkw_t_IA33ornGikxH7dv5aACLcB/s1600/3248340992.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://2.bp.blogspot.com/-8PpGezpmoMs/WTJLzBvO-EI/AAAAAAAAB0s/ADny1DuZsxkw_t_IA33ornGikxH7dv5aACLcB/s640/3248340992.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Normally running a Windows machine on Android is very complicated. But this tutorial will show you how you can easily run Windows machine on Android smoothly &amp;amp; safe.&lt;/p&gt;
&lt;p&gt;Prerequestie:-&lt;/p&gt;
&lt;p&gt; *Limbo APK :-  https://play.google.com/store/apps/details?id=com.playdead.limbo.full&amp;amp;hl=en&lt;/p&gt;
&lt;p&gt;  *Windows ISO file:- &lt;a href=&#34;http://www.mediafire.com/file/044jjkysj3unuab/WinLite.iso&#34;&gt;http://www.mediafire.com/file/044jjkysj3unuab/WinLite.iso&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;*BLANK DISC:- &lt;a href=&#34;https://drive.google.com/file/d/0B1CTJ1RdPN&#34;&gt;https://drive.google.com/file/d/0B1CTJ1RdPN&lt;/a&gt;_WWXlJOHB0MUktYW8/view?_e_pi_=7%2CPAGE_ID10%2C4582262770&lt;/p&gt;
&lt;p&gt;Alternative link:- &lt;a href=&#34;https://drive.google.com/file/d/0B7e707nzxn4cYUt6VEx2Y1NjM1k/view?usp=sharing&#34;&gt;https://drive.google.com/file/d/0B7e707nzxn4cYUt6VEx2Y1NjM1k/view?usp=sharing&lt;/a&gt;&lt;br&gt;
 &lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://1.bp.blogspot.com/-Qzw8U_PAd_0/WTJL_e4oG3I/AAAAAAAAB0w/8g5Ck3v2cm8ucm9vXygiFGcpYJS_K3vqwCLcB/s1600/3250241536.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://1.bp.blogspot.com/-Qzw8U_PAd_0/WTJL_e4oG3I/AAAAAAAAB0w/8g5Ck3v2cm8ucm9vXygiFGcpYJS_K3vqwCLcB/s400/3250241536.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;br&gt;
   NOTE: If blank disc doesn&amp;rsquo;t have any file extension,then RENAME it to&lt;/p&gt;</description>
    </item>
    <item>
      <title>New update for Groove music app on Windows 10 mobile store</title>
      <link>https://b3nsh4.com/2017/06/new-update-for-groove-music-app-on.html</link>
      <pubDate>Thu, 01 Jun 2017 01:38:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2017/06/new-update-for-groove-music-app-on.html</guid>
      <description>&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://lh3.googleusercontent.com/-rfzTzlwxyLA/WS_SiMPNifI/AAAAAAAALkw/Qr2sR_9pnOcLErcZ9Xw0D82daLgM3DM7gCHM/wp_ss_20170601_0003?imgmax=800&#34;&gt;&lt;br&gt;
Microsoft updates its groove music app on Windows 10 mobile. The new update brings fluent design to the app . This update was made available to windows insiders earlier. This gives  blurry backgrounds which looks much better.&lt;br&gt;
&lt;a href=&#34;https://www.microsoft.com/store/apps/9wzdncrfj3pt&#34;&gt;Download Groove music update&lt;/a&gt;&lt;br&gt;
See screenshots below&lt;/p&gt;
&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://lh3.googleusercontent.com/-i1MfzX6RSTs/WS_SlkTa2MI/AAAAAAAALk0/selSxeJbRCY8pN_VClIVtMKgDGduJJgvACHM/wp_ss_20170601_0002?imgmax=800&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://lh3.googleusercontent.com/-w3z-gzhMcG4/WS_ScHdKNWI/AAAAAAAALko/VaHFwQ1yjFI8qVEtoSKgMUyW43Tmc0aNwCHM/wp_ss_20170601_0001?imgmax=800&#34;&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Intercepting webpage elements via terminal emulator</title>
      <link>https://b3nsh4.com/2017/05/intercepting-webpage-elements-via.html</link>
      <pubDate>Wed, 31 May 2017 23:07:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2017/05/intercepting-webpage-elements-via.html</guid>
      <description>&lt;p&gt;Yes,its possible. Terminal can also these kind of stuffs. It can also intercept webpage elements. Same as like a browser could do in a PC.There are also  some other easy way to get those. Simply by going to validate.w3.org&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://2.bp.blogspot.com/-GMUKXTJmpg0/WS-sV6GfWyI/AAAAAAAAB0Y/y5JWKdDgRe0OU9PDEnjN24nNi-cia-5DwCEw/s1600/2017-06-01_10.23.36.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://2.bp.blogspot.com/-GMUKXTJmpg0/WS-sV6GfWyI/AAAAAAAAB0Y/y5JWKdDgRe0OU9PDEnjN24nNi-cia-5DwCEw/s640/2017-06-01_10.23.36.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;An other alternative way is by downloading apps like &amp;lsquo;VT Source Viewer&amp;rsquo;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;But think about the terminal window with that cheeky green window. I just love to have it.&lt;/p&gt;
&lt;p&gt;We are using &amp;lsquo;wget&amp;rsquo; command. And if you are unaware of wget command. Just open terminal and type&lt;/p&gt;</description>
    </item>
    <item>
      <title>Hacking into android platform by exploiting sqlite database</title>
      <link>https://b3nsh4.com/2017/05/hacking-into-android-platform-by.html</link>
      <pubDate>Wed, 31 May 2017 22:29:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2017/05/hacking-into-android-platform-by.html</guid>
      <description>&lt;p&gt;I had already told you how to access SQLite databases on Android in my previous article. Here in this article, we will have a look how we can exploit those databases to gather more sensitive informations.&lt;/p&gt;
&lt;p&gt;I felt very interesting by playing around with SQLite databases in Android and it also gives me some knowledge about how android handles databases.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://3.bp.blogspot.com/-uwMckHiqObw/WS-hXuoF-GI/AAAAAAAABzE/HoBg3iaLtwc2al9W27qG-G11pvgMihfzQCLcB/s1600/2017-05-31_19.11.54.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://3.bp.blogspot.com/-uwMckHiqObw/WS-hXuoF-GI/AAAAAAAABzE/HoBg3iaLtwc2al9W27qG-G11pvgMihfzQCLcB/s640/2017-05-31_19.11.54.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Among these databases, there are some highly sensitive information such like&lt;/p&gt;</description>
    </item>
    <item>
      <title>A way to access sqlite databases of Android​ platform</title>
      <link>https://b3nsh4.com/2017/05/a-way-to-access-sqlite-databases-of.html</link>
      <pubDate>Tue, 30 May 2017 00:28:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2017/05/a-way-to-access-sqlite-databases-of.html</guid>
      <description>&lt;p&gt;Lets have a small look at Android internal structure.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://3.bp.blogspot.com/-GShPWtgj0VI/WS0dtXYKeNI/AAAAAAAABys/BoR-PEd8y2EOq40juQY1Qad9cNcNZPHFACEw/s1600/aviary-image--1414135100.jpeg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://3.bp.blogspot.com/-GShPWtgj0VI/WS0dtXYKeNI/AAAAAAAABys/BoR-PEd8y2EOq40juQY1Qad9cNcNZPHFACEw/s640/aviary-image--1414135100.jpeg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Android comes with a different  architecture.&lt;/p&gt;
&lt;p&gt;Android library consist of&lt;/p&gt;
&lt;blockquote&gt;
&lt;/blockquote&gt;
&lt;p&gt;*surfaces manager&lt;br&gt;
*ssl&lt;br&gt;
*sql&lt;/p&gt;
&lt;p&gt;And more.&lt;/p&gt;
&lt;p&gt;But the way that android stores an application&amp;rsquo;s data is through sqlite database. It executes through dvm  and essential application&amp;rsquo;s data are stored in the form of sqlite.&lt;/p&gt;
&lt;p&gt;NOTE: We are not  deeply diving into exploit SQL databases. This is just a tutorial on how you can access the databases.Anyway,I will prepare a new article on how to exploit SQL Lite databases on Android.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Setup ApkTool environment on android for apk reverse engineering</title>
      <link>https://b3nsh4.com/2017/05/setup-apktool-environment-on-android.html</link>
      <pubDate>Mon, 29 May 2017 22:50:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2017/05/setup-apktool-environment-on-android.html</guid>
      <description>&lt;p&gt;Apktool is a utility available on android for compile/decompile android applications.&lt;/p&gt;
&lt;p&gt;It can extract dex (dalvik executable codes into) codes into smali (human readable form of dex code)&lt;/p&gt;
&lt;p&gt;For viewing dex/smali codes. You need to open those files with 920 text editor. It&amp;rsquo;s my personal editor and I love it.&lt;/p&gt;
&lt;p&gt;Download 920 text editor here&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://play.google.com/store/apps/details?id=com.jecelyin.editor.v2&amp;amp;hl=en&#34;&gt;https://play.google.com/store/apps/details?id=com.jecelyin.editor.v2&amp;amp;hl=en&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; Anyway, I&amp;rsquo;m thanking the developer of this app. You can meet him on xda.&lt;/p&gt;</description>
    </item>
    <item>
      <title>[Solution] Couldn&#39;t sign in to Google account on android</title>
      <link>https://b3nsh4.com/2017/05/solution-couldnt-sign-in-to-google.html</link>
      <pubDate>Sun, 28 May 2017 09:55:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2017/05/solution-couldnt-sign-in-to-google.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://2.bp.blogspot.com/-AzzXHLk4z-c/WSsAJ2w4yjI/AAAAAAAABxE/JVYgmIaSX3sypHl6cES1RSCX2PcnHn-5ACLcB/s1600/2017-05-28_22.03.09.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://2.bp.blogspot.com/-AzzXHLk4z-c/WSsAJ2w4yjI/AAAAAAAABxE/JVYgmIaSX3sypHl6cES1RSCX2PcnHn-5ACLcB/s640/2017-05-28_22.03.09.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Past  week,one of my friends assisted me for fixing an error in his phone.&lt;br&gt;
The problem was about, he wasn&amp;rsquo;t able to connect to Playstore or Gmail on his android phone.&lt;/p&gt;
&lt;p&gt;Also,There was a pop up saying &amp;lsquo;&amp;lsquo;connection problem,try later &amp;lsquo;&amp;rsquo;.&lt;br&gt;
But after sometime I figured out the solution. And I&amp;rsquo;m really glad to share it. &lt;/p&gt;
&lt;p&gt;can&amp;rsquo;t connect to google,or cant sign in&amp;rsquo;.&lt;/p&gt;
&lt;p&gt;Why is it so?&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://4.bp.blogspot.com/-c4YQQrcpxuE/WSsDrjQS07I/AAAAAAAABxc/A-ByHKKpu6YRX1CKr7iTwkTfPhmVk1SQwCLcB/s1600/2017-05-28_22.06.00.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://4.bp.blogspot.com/-c4YQQrcpxuE/WSsDrjQS07I/AAAAAAAABxc/A-ByHKKpu6YRX1CKr7iTwkTfPhmVk1SQwCLcB/s400/2017-05-28_22.06.00.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Well, there are few reasons for this trouble. First reason would be because you might have removed Google Play Service for some reason.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Root HTC desire 526G/G&#43; Kikat version</title>
      <link>https://b3nsh4.com/2017/05/root-htc-desire-526gg-kikat-version.html</link>
      <pubDate>Sat, 27 May 2017 21:00:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2017/05/root-htc-desire-526gg-kikat-version.html</guid>
      <description>&lt;p&gt;Warning:Rooting your android device might cause several issues.This will scramble your android device&amp;rsquo;s inbuilt security .Also you will not get any further OTA update from officials.Do at your own risk!&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://1.bp.blogspot.com/-T-Rv0uEutmc/WSpJi-Yt6QI/AAAAAAAABvk/noLb-OoHSwo7M-lUAoej_PFO0NDHpQLVQCLcB/s1600/2017-05-28_00.36.09.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://1.bp.blogspot.com/-T-Rv0uEutmc/WSpJi-Yt6QI/AAAAAAAABvk/noLb-OoHSwo7M-lUAoej_PFO0NDHpQLVQCLcB/s640/2017-05-28_00.36.09.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Requirements for Rooting htc 526G/G+&lt;/p&gt;
&lt;p&gt;*)Battery above 10% ;-D&lt;/p&gt;
&lt;p&gt;*)Good internet connection&lt;/p&gt;
&lt;p&gt;:And more Likely,Patience ;-)&lt;/p&gt;
&lt;p&gt;Lets start by downloading &amp;lsquo;KingoRoot&amp;rsquo; app.&lt;/p&gt;
&lt;p&gt;NOTE:THIS IS &amp;lsquo;KINGOROOT&amp;rsquo; APP.WE ARE NOT USING &amp;lsquo;KINGROOT&amp;rsquo;.&lt;/p&gt;
&lt;p&gt;Download KINGOROOT APP from here&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href=&#34;https://www.kingoapp.com&#34;&gt;https://www.kingoapp.com&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Now enable your internet.&lt;br&gt;
Simply open the app. And hit ROOT NOW!&lt;/p&gt;</description>
    </item>
    <item>
      <title>Windows 10 Creators Update</title>
      <link>https://b3nsh4.com/2017/04/windows-10-creators-update.html</link>
      <pubDate>Sun, 16 Apr 2017 22:08:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2017/04/windows-10-creators-update.html</guid>
      <description>&lt;p&gt; &lt;img loading=&#34;lazy&#34; src=&#34;https://lh3.googleusercontent.com/-9m4m-Rcg5CA/WPRNzKZOvYI/AAAAAAAALiI/820yYVtSG6Q/Fantasia%252520Painting%25252810%252529.jpg?imgmax=800#0.407291860103109&#34;&gt;&lt;/p&gt;
&lt;p&gt;Microsoft is planning to start rolling out its Windows 10 Mobile Creators Update on April 25th, but not many handsets will actually receive it. ZDNet reports that a small subset of Windows phones will receive the update.ZDNet has published a list of the 13 devices that are expected to receive the Windows 10 Mobile Creators Update:&lt;br&gt;
Alcatel IDOL 4S&lt;br&gt;
Alcatel OneTouch Fierce XL&lt;br&gt;
HP Elite x3&lt;br&gt;
Lenovo Softbank 503LV&lt;br&gt;
MCJ Madosma Q601&lt;br&gt;
Microsoft Lumia 550&lt;br&gt;
Microsoft Lumia 640 / 640XL&lt;br&gt;
Microsoft Lumia 650&lt;br&gt;
Microsoft Lumia 950 / 950 XL&lt;br&gt;
Trinity NuAns Neo&lt;br&gt;
VAIO VPB051&lt;br&gt;
Microsoft hasn&amp;rsquo;t officially revealed its update list, but the company explained to ZDNet that not all devices will be upgraded to Windows 10 Mobile Creators Update. &lt;/p&gt;</description>
    </item>
    <item>
      <title>WhatsApp beta for Windows Phone 📱 updated with multiple contacts share and more</title>
      <link>https://b3nsh4.com/2017/04/whatsapp-beta-for-windows-phone-updated.html</link>
      <pubDate>Sat, 08 Apr 2017 09:16:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2017/04/whatsapp-beta-for-windows-phone-updated.html</guid>
      <description>&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://4.bp.blogspot.com/-gZ3djBTG4nQ/WOkI0O6krxI/AAAAAAAALhU/YPJDmvwNJ8wD_T4j73LQsfxgYWB3YzBlACLcB/s320/wp_ss_20170408_0006.png&#34;&gt;&lt;/p&gt;
&lt;p&gt;latest whatsapp beta update on store&lt;/p&gt;
&lt;p&gt;WhatsApp team has released a new update for its Beta app on Windows Phone and Windows 10 Mobile. The app has been updated to new version 2.17.126. With the latest update the team has released new features to the Windows Phone application. Users now have the option of:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Adding text while sending multiple photos directly from photos or files.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Users can now also send Multiple Contacts in one go to a friend.&lt;/p&gt;</description>
    </item>
    <item>
      <title> Execute php programs on android | TechCraft</title>
      <link>https://b3nsh4.com/2016/09/this-is-how-to-execute-php-programs-on.html</link>
      <pubDate>Wed, 28 Sep 2016 09:59:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2016/09/this-is-how-to-execute-php-programs-on.html</guid>
      <description>&lt;p&gt;&lt;strong&gt;So as you all know that PHP is a server based programming language. Which means it can be only execute with the help of a web server.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;**Not only a server based one. Also,PHP is a platform independent language.  Which means, it can be executed on every  platform. It doesn&amp;rsquo;t matter whether you are using&amp;rsquo; Android, linux or windows&amp;rsquo;. **&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;And Today on this this tutorial,  I will tell you &amp;lsquo;how to execute php programs on android&amp;rsquo;.&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>How to change android boot animation [easy way]»TechCraft</title>
      <link>https://b3nsh4.com/2016/09/how-to-change-android-boot-animation.html</link>
      <pubDate>Wed, 28 Sep 2016 09:23:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2016/09/how-to-change-android-boot-animation.html</guid>
      <description>&lt;p&gt;[&lt;/p&gt;
&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://lh3.googleusercontent.com/-mM3kZfcLGjI/V-vvvtfCPyI/AAAAAAAABjs/OoKXrHcDb7I/s640/logo.jpg&#34;&gt;](&lt;a href=&#34;https://lh3.googleusercontent.com/-mM3kZfcLGjI/V-vvvtfCPyI/AAAAAAAABjs/OoKXrHcDb7I/s1600/logo.jpg&#34;&gt;https://lh3.googleusercontent.com/-mM3kZfcLGjI/V-vvvtfCPyI/AAAAAAAABjs/OoKXrHcDb7I/s1600/logo.jpg&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;Watching the same boot animation all the time is sometimes boring. It would be great if we could set our own customised theme for our device. In this tutorial I&amp;rsquo;m going to walk you through how to change Android boot animation easily. Let begin!&lt;/p&gt;
&lt;p&gt;Before getting started there&amp;rsquo;s a small notice.&lt;/p&gt;
&lt;p&gt;Modifying some device elements could potentially harm your device. So we must be careful while navigating through the system files. Be brave ;)&lt;/p&gt;</description>
    </item>
    <item>
      <title>Flash the latest Android Marshmallow (omni) rom on galaxy tab P1000 (p1)</title>
      <link>https://b3nsh4.com/2016/08/flash-latest-android-marshmallow-omni.html</link>
      <pubDate>Mon, 01 Aug 2016 04:15:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2016/08/flash-latest-android-marshmallow-omni.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://4.bp.blogspot.com/-9a5t1bfYP0o/V58vBBlH8dI/AAAAAAAABfs/nkl8Zl7U4UI0y_MCH3WrpUdn78xMptmOACLcB/s1600/maxresdefault.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://4.bp.blogspot.com/-9a5t1bfYP0o/V58vBBlH8dI/AAAAAAAABfs/nkl8Zl7U4UI0y_MCH3WrpUdn78xMptmOACLcB/s400/maxresdefault.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Yes, this is a special article for Galaxy Tab p1000 (p1) users.&lt;/p&gt;
&lt;p&gt;In this article,lets have a look &amp;lsquo;how to flash &amp;lsquo;omni&amp;rsquo; based &amp;lsquo;Android MARSHMALLOW&amp;rsquo; custom rom on &amp;lsquo;Samsung Galaxy GT-P1000&amp;rsquo; wihout assisting a pc.&lt;/p&gt;
&lt;p&gt;The &amp;lsquo;OMNI&amp;rsquo; Rom is mainly built for those who love customizing their device.&lt;/p&gt;
&lt;p&gt;ABOUT GALAXY TAB P-1000 [specifications]&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;DISPLAY-7.0&amp;quot;600x1024 480p&lt;/p&gt;
&lt;p&gt;Camera (primary)3MP&lt;/p&gt;
&lt;p&gt;512MB RAM&lt;/p&gt;
&lt;p&gt;Chipset-Hummingbird&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;Battery-4000mAhLi-Ion&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;_____________________&lt;/p&gt;
&lt;p&gt;PREREQUESTIES&lt;/p&gt;
&lt;p&gt;___________________&lt;/p&gt;
&lt;p&gt;*)You must be in the stock Rom based 2.3.3/2.3.6&lt;/p&gt;</description>
    </item>
    <item>
      <title>Top5 Android terminal emulator tricks &amp; hacks to impress your friends</title>
      <link>https://b3nsh4.com/2016/07/top5-android-terminal-emulator-tricks.html</link>
      <pubDate>Sat, 30 Jul 2016 02:39:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2016/07/top5-android-terminal-emulator-tricks.html</guid>
      <description>&lt;p&gt;&lt;strong&gt;In this tutorial, we are actually going to play with some traditional Linux commands.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;**We are using Terminal Emulator app which you can download from the Google play for free. **&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;If your device has root access, then you are lucky I think. Now we&amp;rsquo;re able to install&lt;/strong&gt; BusyBox **in our device for getting some advanced Linux utilities. Those pieces are great out of the box. **&lt;/p&gt;
&lt;p&gt;Anyway I already have it in my device.  But don&amp;rsquo;t worry,the commands that I&amp;rsquo;m about to write don&amp;rsquo;t necessarily need BusyBox to be installed.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Execute C&#43;&#43; programs on Android;No need of pc anymore </title>
      <link>https://b3nsh4.com/2016/07/execute-c-programs-on-androidno-need-of.html</link>
      <pubDate>Fri, 29 Jul 2016 22:15:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2016/07/execute-c-programs-on-androidno-need-of.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-0LTYrAJiqpc/V5w6ZRwHCjI/AAAAAAAABek/GlsH7exCcTk/s1600/Screenshot_2016-07-30-01-35-39.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://lh3.googleusercontent.com/-0LTYrAJiqpc/V5w6ZRwHCjI/AAAAAAAABek/GlsH7exCcTk/s400/Screenshot_2016-07-30-01-35-39.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;C++ a powerful and widely using program in the world. But the compilation isn&amp;rsquo;t that platform independent. In wi****ndows,we are using Turbo c++ ,&lt;strong&gt;&lt;strong&gt;Borland&lt;/strong&gt;&lt;/strong&gt; c++ in common.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-J7vS6yg2Y9E/V5w6bB7FPFI/AAAAAAAABeo/wycsei9Tmh8/s1600/Screenshot_2016-07-25-22-44-25.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://lh3.googleusercontent.com/-J7vS6yg2Y9E/V5w6bB7FPFI/AAAAAAAABeo/wycsei9Tmh8/s320/Screenshot_2016-07-25-22-44-25.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;If you are a coder,and do like to to keep your programing environment in your hands;you can follow this tutorial. This is possible if you have an android device with you. Basically,this is an older stuff. And seems like I&amp;rsquo;m bit late to post this thing here.&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Change your device&#39;s built id and other informations </title>
      <link>https://b3nsh4.com/2016/07/change-your-device-model-built-id.html</link>
      <pubDate>Fri, 29 Jul 2016 21:45:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2016/07/change-your-device-model-built-id.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-1feE1c-i4us/V5w3HOe899I/AAAAAAAABeA/BtyKg81JaNs/s1600/intro-about%252520device.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://lh3.googleusercontent.com/-1feE1c-i4us/V5w3HOe899I/AAAAAAAABeA/BtyKg81JaNs/s400/intro-about%252520device.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;W&lt;strong&gt;&lt;strong&gt;elcome to yet another fresh article from &amp;lsquo;Te&lt;/strong&gt;&lt;/strong&gt;chCraft&lt;/strong&gt;**&amp;rsquo;.**&lt;br&gt;
&lt;strong&gt;Hope you all guys gone through the previous article.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href=&#34;http://www.techcraft.tk/2016/07/hack-any-wps-enabled-wi-fi-network.html&#34;&gt;&amp;lsquo;How to hack wpsenabled wifi password&amp;rsquo;&lt;/a&gt;****.&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;Don&amp;rsquo;t remembr?&lt;/strong&gt; &lt;strong&gt;&lt;a href=&#34;http://www.techcraft.tk/2016/07/hack-any-wps-enabled-wi-fi-network.html&#34;&gt;Go here&lt;/a&gt;****.&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;So, we can move forward with a new trick.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-hAkXpQD_HYs/V5w3IS9qlvI/AAAAAAAABeE/LpjRLjB9Rdg/s1600/system-1.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://lh3.googleusercontent.com/-hAkXpQD_HYs/V5w3IS9qlvI/AAAAAAAABeE/LpjRLjB9Rdg/s320/system-1.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In this article, I&amp;rsquo;m going to show you all how to change your device&amp;rsquo;s model number,base-band version,kernel version,Android version and other legal details with a small trick.&lt;/p&gt;
&lt;p&gt;**&lt;/p&gt;
&lt;p&gt;There are some prerequisites for this process.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Developer Nick Lee hacked Iphone to run Android</title>
      <link>https://b3nsh4.com/2016/07/developer-nick-lee-hacked-iphone-to-run.html</link>
      <pubDate>Fri, 08 Jul 2016 04:31:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2016/07/developer-nick-lee-hacked-iphone-to-run.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://1.bp.blogspot.com/-aUf1KeF_P4A/V3-OLCEhcmI/AAAAAAAABcA/x-sttBH9SmYd8Emx0xnAavPb7vEjACV6gCLcB/s1600/1-nCfafmLcrdKm1iwa9JhA0w.jpeg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://1.bp.blogspot.com/-aUf1KeF_P4A/V3-OLCEhcmI/AAAAAAAABcA/x-sttBH9SmYd8Emx0xnAavPb7vEjACV6gCLcB/s400/1-nCfafmLcrdKm1iwa9JhA0w.jpeg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Wow &amp;lsquo;Nick Lee&amp;rsquo;&lt;/p&gt;
&lt;p&gt;You are really awesome! !&lt;/p&gt;
&lt;p&gt;Regards from TechCraft :-)&lt;/p&gt;
&lt;p&gt;The developers team under &amp;lsquo;Nick Lee&amp;rsquo; has designed and built a case that can run android os on iphone.&lt;/p&gt;
&lt;p&gt;Lee did this by modifying the Android Open Source Project (AOSP).&lt;/p&gt;
&lt;p&gt;The android version running on the iphone is &amp;lsquo;Marshmallow&amp;rsquo;.&lt;/p&gt;
&lt;p&gt;He edited the Marshmallow codes to run it on the ios.&lt;/p&gt;
&lt;p&gt;As per the analysis of the newly designed iphone, it almost give same experience using a real iphone with their specially3D-printed case.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Hack Any WPS enabled WI-FI network using Android (Most unique method)</title>
      <link>https://b3nsh4.com/2016/07/hack-any-wps-enabled-wi-fi-network.html</link>
      <pubDate>Wed, 06 Jul 2016 05:00:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2016/07/hack-any-wps-enabled-wi-fi-network.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://4.bp.blogspot.com/-W9toyrRluuM/V3zvnlA6caI/AAAAAAAABaM/nYBmZLmABeE2gifBShRnyMGVT2xgAOsbQCLcB/s1600/Intro.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://4.bp.blogspot.com/-W9toyrRluuM/V3zvnlA6caI/AAAAAAAABaM/nYBmZLmABeE2gifBShRnyMGVT2xgAOsbQCLcB/s400/Intro.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Welcome to Techcraft.&lt;/p&gt;
&lt;p&gt;In this article let&amp;rsquo;s have a look at how we are actually able to crack WPA/WPS secured routers .&lt;/p&gt;
&lt;p&gt;Well that&amp;rsquo;s specific. We are only dealing with WPA/WPS P networks.&lt;/p&gt;
&lt;p&gt;(See below screenshot)&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://2.bp.blogspot.com/-2zm2kzpBVAk/V3zvxtH-s-I/AAAAAAAABaQ/Qxh_Mzun1McNeIBM5g_KoKSmKvBmgdDQwCLcB/s1600/target%2Bcmg.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://2.bp.blogspot.com/-2zm2kzpBVAk/V3zvxtH-s-I/AAAAAAAABaQ/Qxh_Mzun1McNeIBM5g_KoKSmKvBmgdDQwCLcB/s400/target%2Bcmg.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In simple words,you could easily get the password of WPA/WPS secured network if you have a rooted android device.&lt;/p&gt;
&lt;p&gt;Prerequisites:&lt;/p&gt;
&lt;p&gt;*ROOTED ANDROID DEVICE RUNNING ON 4.1 AND UP.&lt;/p&gt;
&lt;p&gt;WARNING: By rooting your device, you are disabling all kinds of inbuilt securities in your device. DO AT YOUR OWN RISK!&lt;/p&gt;</description>
    </item>
    <item>
      <title>IT Quiz (latest) updated quiz questions &amp; answers</title>
      <link>https://b3nsh4.com/2016/06/it-quiz-latest-updated-quiz.html</link>
      <pubDate>Thu, 30 Jun 2016 04:16:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2016/06/it-quiz-latest-updated-quiz.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://1.bp.blogspot.com/-XQRJi2WTXpU/V3T_MLlYRYI/AAAAAAAABZ4/onoWq7MNS4YJ-TbCbCfRCgHiLEvUvM6XACLcB/s1600/1526598521.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://1.bp.blogspot.com/-XQRJi2WTXpU/V3T_MLlYRYI/AAAAAAAABZ4/onoWq7MNS4YJ-TbCbCfRCgHiLEvUvM6XACLcB/s640/1526598521.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Welcome to the 2nd part of this quiz.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Lets move on.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1-Expand TRAI?&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;*Its &amp;lsquo;TELECOM REGULATORY AUTHORITY OF INDIA&amp;rsquo;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;a href=&#34;https://3.bp.blogspot.com/-E_s-eu6Noug/V3T68UZVcWI/AAAAAAAABX8/JGjUfKMvE1oTtFZMzAXOcSzkL9bL1iP2ACLcB/s1600/trai-l.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://3.bp.blogspot.com/-E_s-eu6Noug/V3T68UZVcWI/AAAAAAAABX8/JGjUfKMvE1oTtFZMzAXOcSzkL9bL1iP2ACLcB/s400/trai-l.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2-Who was the chief software architecture of &amp;lsquo;Microsoft&amp;rsquo; after &amp;lsquo;Bill Gates&amp;rsquo;.?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://4.bp.blogspot.com/-RggS-UCeXeU/V3T7Ky9mEyI/AAAAAAAABYE/cglz6DSPnfYecMCHO89PvqDO4jLs0cq-wCLcB/s1600/Ray-Ozzie.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://4.bp.blogspot.com/-RggS-UCeXeU/V3T7Ky9mEyI/AAAAAAAABYE/cglz6DSPnfYecMCHO89PvqDO4jLs0cq-wCLcB/s400/Ray-Ozzie.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;*)The chief was the&amp;rsquo;RAY OZZIE&amp;rsquo;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;strong&gt;3-What will be the basic length of a CD (Compact Disc)&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://2.bp.blogspot.com/-U2vykJ9nnpc/V3T7Pyi441I/AAAAAAAABYM/47avtQ_nuqgVnaW-6yzwwXyRhtVe1BGVACLcB/s1600/pc-images-cdzones.gif&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://2.bp.blogspot.com/-U2vykJ9nnpc/V3T7Pyi441I/AAAAAAAABYM/47avtQ_nuqgVnaW-6yzwwXyRhtVe1BGVACLcB/s320/pc-images-cdzones.gif&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;*)its 12 Centimeters (constant)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;strong&gt;4-Can you expand &amp;lsquo;YAHOO&amp;rsquo; ?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://2.bp.blogspot.com/-AKF0tFXlE8s/V3T-zRtq0EI/AAAAAAAABZs/pM1sStPXh7AU0nkTLXqwInTNdz9HUZM7wCLcB/s1600/yahoo-logo.jpeg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://2.bp.blogspot.com/-AKF0tFXlE8s/V3T-zRtq0EI/AAAAAAAABZs/pM1sStPXh7AU0nkTLXqwInTNdz9HUZM7wCLcB/s400/yahoo-logo.jpeg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;*) Yet Another Hierarchical Officious Oracle&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;5-Which company made the first ever &amp;lsquo;smartphone?&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Hack any android pattern/passwords or pin without losing any data</title>
      <link>https://b3nsh4.com/2016/06/hack-any-android-patternpasswords-or.html</link>
      <pubDate>Fri, 17 Jun 2016 04:06:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2016/06/hack-any-android-patternpasswords-or.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://4.bp.blogspot.com/-2jiKhBGE0kA/V2PVOWcuTdI/AAAAAAAABO0/JoB9pja2Ob8-RMAFHeyHBexM1I5MUZ5qgCLcB/s1600/intro.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://4.bp.blogspot.com/-2jiKhBGE0kA/V2PVOWcuTdI/AAAAAAAABO0/JoB9pja2Ob8-RMAFHeyHBexM1I5MUZ5qgCLcB/s400/intro.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Most often times we use a passcode,pattern or pin as our security . &lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://3.bp.blogspot.com/-e4dMuzi7SuY/V2PVmsrJe2I/AAAAAAAABO8/x_MztabwTt4z2dF1sit-Ptw5CRPRnj4TQCLcB/s1600/recovery.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://3.bp.blogspot.com/-e4dMuzi7SuY/V2PVmsrJe2I/AAAAAAAABO8/x_MztabwTt4z2dF1sit-Ptw5CRPRnj4TQCLcB/s400/recovery.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;But what if  I tell you that your device can be easily unlocked your  without any data loss.? Lol let&amp;rsquo;s see how it works!&lt;/p&gt;
&lt;p&gt;In the first method(this isn&amp;rsquo;t what we are doing here) you can unlock any android device by using &amp;lsquo;ANDROID SDK (Software Development kit)&amp;rsquo; via CMD (Command Prompt) or either by &lt;a href=&#34;https://www.android-recovery.net/&#34;&gt;&amp;lsquo;ANDROID RECOVERY&amp;rsquo;&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>hack any android screen and bypass the security</title>
      <link>https://b3nsh4.com/2016/06/welcome-to-yet-another-article-of.html</link>
      <pubDate>Fri, 10 Jun 2016 04:06:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2016/06/welcome-to-yet-another-article-of.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://3.bp.blogspot.com/-nEQ78Klv1Ig/V1qaXZ8-syI/AAAAAAAABLk/SURj8sfyATk8GJKo9TDnEl8uBSQ6N7iyQCLcB/s1600/intro%2Bbypass.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://3.bp.blogspot.com/-nEQ78Klv1Ig/V1qaXZ8-syI/AAAAAAAABLk/SURj8sfyATk8GJKo9TDnEl8uBSQ6N7iyQCLcB/s400/intro%2Bbypass.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Welcome to yet another article.&lt;br&gt;
In this article we are going to play with some Android security stuff and some system files. Now I&amp;rsquo;m assuming that your device is rooted. &lt;/p&gt;
&lt;p&gt;We all know that rooting makes our device vulnerable. By taking advantage of this vulnerability, hackers can install &amp;lsquo;Malewares,Trojans in our device.&lt;/p&gt;
&lt;p&gt;In this article I&amp;rsquo;m taking advantage of android pattern key/password key&lt;br&gt;
vulnerability in a rooted device.&lt;br&gt;
 By this method, you can simply bypass android passcodes or patterns in android if the victim&amp;rsquo;s device is rooted.&lt;/p&gt;</description>
    </item>
    <item>
      <title>HOW TO BLOCK ADS IN ANDROID DEVICE (UPDATED) (ROOT)</title>
      <link>https://b3nsh4.com/2016/06/i-think-you-are-really-tired-with-many.html</link>
      <pubDate>Fri, 03 Jun 2016 04:33:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2016/06/i-think-you-are-really-tired-with-many.html</guid>
      <description>&lt;p&gt;Now let&amp;rsquo;s go ahead and have a look &amp;lsquo;How to block annoying ads in your Android device&amp;rsquo;.So let&amp;rsquo;s start Moving.&lt;/p&gt;
&lt;p&gt;*First of all make sure that you are running on ANDROID 4.0 &amp;amp; UP also ROOTED.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://1.bp.blogspot.com/-MitvpAdTHrs/V1FpYyuaV4I/AAAAAAAABJY/hgvvFWh_W6Ii_Y0thKx9cnrzZS_oEpcuQCLcB/s1600/222app%2Bsuch%2Bpermission.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://1.bp.blogspot.com/-MitvpAdTHrs/V1FpYyuaV4I/AAAAAAAABJY/hgvvFWh_W6Ii_Y0thKx9cnrzZS_oEpcuQCLcB/s400/222app%2Bsuch%2Bpermission.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;NOTICE:- THIS APP WON&amp;rsquo;T RUN WITHOUT SU PERMISSION. So make sure&lt;br&gt;
that you device is ROOTED.&lt;/p&gt;
&lt;p&gt; *HOW TO BLOCK ADS ON ANDROID 4.0 &amp;amp; UP (ICS &amp;amp; Up)&lt;br&gt;
  &amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;-&lt;/p&gt;
&lt;p&gt;  For this method you need to download the No:1 ad-blocker app called &lt;br&gt;
 &amp;lsquo;ADAWAY&amp;rsquo; . You could download it from here.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Make any launcher as your default/inbuilt one (easy method)</title>
      <link>https://b3nsh4.com/2016/05/make-any-launcher-as-your.html</link>
      <pubDate>Mon, 23 May 2016 03:09:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2016/05/make-any-launcher-as-your.html</guid>
      <description>&lt;p&gt;Welcome everyone.&lt;br&gt;
Without wasting much time let&amp;rsquo;s skip to the content.&lt;/p&gt;
&lt;p&gt;Well,this is an awesome trick we can apply after rooting. I&amp;rsquo;m saying about making any installed launcher as your inbuilt by making it as a system app.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://2.bp.blogspot.com/-jWSlhMdNo0w/V0LUu4lJI8I/AAAAAAAABBY/Lo0HIqJldlsoD9l5--bDJ-GdohGE4PMhgCLcB/s1600/Screenshot_2016-05-21-21-48-09-1.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://2.bp.blogspot.com/-jWSlhMdNo0w/V0LUu4lJI8I/AAAAAAAABBY/Lo0HIqJldlsoD9l5--bDJ-GdohGE4PMhgCLcB/s400/Screenshot_2016-05-21-21-48-09-1.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;lsquo;TREBUCHET&amp;rsquo;, I personally don&amp;rsquo;t like this launcher. So I decided to change it.&lt;/p&gt;
&lt;p&gt;Prerequisites &lt;/p&gt;
&lt;p&gt;-&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&lt;/p&gt;
&lt;p&gt;1-ROOTED DEVICE&lt;/p&gt;
&lt;p&gt;2-ES FILE EXPLORER (or any file manager)&lt;/p&gt;
&lt;p&gt; So, let&amp;rsquo;s start..&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://1.bp.blogspot.com/-Fj0NWStsUJg/V0LV6nBJJ_I/AAAAAAAABBs/qhnocV-xxhMmhrzfyBAKthJ5zK5Z_csXwCLcB/s1600/index.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://1.bp.blogspot.com/-Fj0NWStsUJg/V0LV6nBJJ_I/AAAAAAAABBs/qhnocV-xxhMmhrzfyBAKthJ5zK5Z_csXwCLcB/s400/index.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;NOTE:- DONOT DELETE ANY SYSTEM FILES.THAT MIGHT CAUSE DAMAGES&lt;/p&gt;</description>
    </item>
    <item>
      <title>Find WiFi credentials from a rooted device </title>
      <link>https://b3nsh4.com/2016/05/how-to-hack-anyone-wifi-password.html</link>
      <pubDate>Sat, 21 May 2016 00:33:00 -0700</pubDate>
      <guid>https://b3nsh4.com/2016/05/how-to-hack-anyone-wifi-password.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://3.bp.blogspot.com/-uSSQjdvIKEM/V0AN48K_o3I/AAAAAAAABAc/pShw9SZozncghRuFX4rjsCcgICT9DQJOwCLcB/s1600/Intro.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://3.bp.blogspot.com/-uSSQjdvIKEM/V0AN48K_o3I/AAAAAAAABAc/pShw9SZozncghRuFX4rjsCcgICT9DQJOwCLcB/s400/Intro.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Welcome to a very new hacking article )&lt;/p&gt;
&lt;p&gt;In this article, we&amp;rsquo;ll see a trick which can be used to find  anyone&amp;rsquo;s WiFi credentials if there device is rooted.&lt;/p&gt;
&lt;p&gt;PREREQUISITES&lt;br&gt;
_%____________%_______%__&lt;/p&gt;
&lt;p&gt;1-ROOTED ANDROID DEVICE&lt;/p&gt;
&lt;p&gt;2-ROOT BROWSER (Or any file manager)&lt;/p&gt;
&lt;p&gt;Assuming the targeted device connected has already connected to some WiFis.&lt;br&gt;
Well,this article can be also named as; &amp;lsquo;How to find lost WiFi passwords in a rooted device&amp;rsquo;.&lt;/p&gt;
&lt;p&gt;So if your friend&amp;rsquo;s device is rooted and he has  a WiFi router; you can simply find the password of his Accesspoint without any software by playing a small drama. Social engineering lol ;-)&lt;/p&gt;</description>
    </item>
    <item>
      <title>Fresh SQL vulnerable Sites in-2016</title>
      <link>https://b3nsh4.com/2016/02/fresh-sql-vulnerable-sites-in-2016.html</link>
      <pubDate>Fri, 19 Feb 2016 22:05:00 -0800</pubDate>
      <guid>https://b3nsh4.com/2016/02/fresh-sql-vulnerable-sites-in-2016.html</guid>
      <description>&lt;p&gt;**                                                                      SQL VULNERABLE SITES IN 2016**&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-Hq-tsdgX8IU/VsgClKrX8II/AAAAAAAAA2Y/WlYm_FA4M9Q/s1600/Screenshot_2016-02-20-09-22-07.png&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://lh3.googleusercontent.com/-Hq-tsdgX8IU/VsgClKrX8II/AAAAAAAAA2Y/WlYm_FA4M9Q/s640/Screenshot_2016-02-20-09-22-07.png&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;SQL VULNERABLE SITES IN 2016&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;1. &lt;a href=&#34;http://amaps.in/about&#34;&gt;http://amaps.in/about&lt;/a&gt;_us.php?id=3&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;**2.http://beverlydream.com/index.php? id=84 **&lt;/p&gt;
&lt;p&gt;**3.http://3rtechnologies.net/contact.php?id=1 **&lt;/p&gt;
&lt;p&gt;**4.http://3rtechnologies.net/mobile.php? id=1 **&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5.http://7starevent.com/newsid.php? id=52&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;**6. &lt;a href=&#34;http://9lanka.com/show.php&#34;&gt;http://9lanka.com/show.php&lt;/a&gt;? id=13859&lt;br&gt;
****7. &lt;a href=&#34;http://aarsh.co.in/products.php?id=11&#34;&gt;http://aarsh.co.in/products.php?id=11&lt;/a&gt;&lt;br&gt;
****8. &lt;a href=&#34;http://aarsh.co.in/products.php?id=9&#34;&gt;http://aarsh.co.in/products.php?id=9&lt;/a&gt;&lt;br&gt;
****9. &lt;a href=&#34;http://aarya-24kt.com/catalogue.php&#34;&gt;http://aarya-24kt.com/catalogue.php&lt;/a&gt;? id=11&lt;br&gt;
****10.http://aarya24kt.com/catalogue.php? id=2 **&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;11.http://abhinavpublicschoolrohini.com/aboutus.php?id=4&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;12.http://academiclub.com/features-prodect.php?id=504&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;13.http://academiclub.com/features-prodect.php?id=506&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;**14. &lt;a href=&#34;http://account-service.net/index.php&#34;&gt;http://account-service.net/index.php&lt;/a&gt;? id=2 **&lt;br&gt;
**15. &lt;a href=&#34;http://account-service.net/index.php&#34;&gt;http://account-service.net/index.php&lt;/a&gt;? id=3 **&lt;br&gt;
&lt;strong&gt;16.http://acmv.org/lecture/view.php? id=1&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;17.http://acmv.org/lecture/view.php? id=2&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;18.http://adventistwomensministries.org&lt;/strong&gt;**/index.php?id=12**&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;19.http://adventistwomensministries.org/index.php?id=60&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;20.http://advmonsjoseph.com/art.php? id=55&lt;br&gt;
&lt;strong&gt;&lt;strong&gt;21.http://aecoverseas.com/newsdetails.php?id&lt;/strong&gt;&lt;/strong&gt;=122&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;**22.http://aeratorsindia.com/news_details.php?id=7&lt;br&gt;
**&lt;strong&gt;23.http://aeratorsindia.com/product_details.php?id=5&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;24. &lt;a href=&#34;http://aha-fr.com/a-ha&#34;&gt;http://aha-fr.com/a-ha&lt;/a&gt;_actualites.php?id_news=570&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;**25.http://aksharasamaram.com/chaitanyamnews.php?id=396&lt;br&gt;
****26.http://aksharasamaram.com/vidyanews.php?id=69&lt;br&gt;
****27.http://aksharjyotish.com/features-prodect.php?id=14&lt;br&gt;
****28.http://alasayelsafety.com/cms.php? id_cms=7&lt;br&gt;
****29.http://allmobileunlockcare.com/edetail.php?id=125&lt;br&gt;
****30.http://allmobileunlockcare.com/edetail.php?id=221&lt;br&gt;
****31.http://alternativesol.com/about.php? id=2&lt;br&gt;
****32.http://alternativesol.com/about.php? id=3&lt;br&gt;
**&lt;br&gt;
**33.http://amanenterprises.org/product.php?id=3&lt;br&gt;
****34. &lt;a href=&#34;http://amaps.in/about&#34;&gt;http://amaps.in/about&lt;/a&gt;_us.php?id=3 **&lt;/p&gt;
&lt;p&gt;**35.http://antioquenadearenas.com/detalle.php? id=164&amp;amp;categoria=26&lt;br&gt;
****36.http://antioquenadearenas.com/detalle.php? id=168&amp;amp;categoria=28 **&lt;/p&gt;</description>
    </item>
    <item>
      <title>Enable Fast Booting in Android [Root]</title>
      <link>https://b3nsh4.com/2016/02/how-to-by-pass-booting.html</link>
      <pubDate>Sat, 13 Feb 2016 01:28:00 -0800</pubDate>
      <guid>https://b3nsh4.com/2016/02/how-to-by-pass-booting.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-WmVHJlY__bI/Vr73PoS5nOI/AAAAAAAAA0Y/blyz4V-ngj0/s1600/2016-02-13_09.49.14.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://lh3.googleusercontent.com/-WmVHJlY__bI/Vr73PoS5nOI/AAAAAAAAA0Y/blyz4V-ngj0/s640/2016-02-13_09.49.14.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Quick Boot-Reboot is an awesome application which lets us to boot our device very quickly by reducing the power off time.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;________________________________&lt;/strong&gt;&lt;br&gt;
&lt;a href=&#34;https://lh3.googleusercontent.com/-V2WCMJF6WiE/Vr73QHtacXI/AAAAAAAAA0c/C6tRr6VB8mo/s1600/2016-02-13_09.48.26.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://lh3.googleusercontent.com/-V2WCMJF6WiE/Vr73QHtacXI/AAAAAAAAA0c/C6tRr6VB8mo/s640/2016-02-13_09.48.26.jpg&#34;&gt;&lt;/a&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-V2WCMJF6WiE/Vr73QHtacXI/AAAAAAAAA0c/C6tRr6VB8mo/s1600/2016-02-13_09.48.26.jpg&#34;&gt;&lt;br&gt;
&lt;/a&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-V2WCMJF6WiE/Vr73QHtacXI/AAAAAAAAA0c/C6tRr6VB8mo/s1600/2016-02-13_09.48.26.jpg&#34;&gt;&lt;br&gt;
&lt;/a&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-V2WCMJF6WiE/Vr73QHtacXI/AAAAAAAAA0c/C6tRr6VB8mo/s1600/2016-02-13_09.48.26.jpg&#34;&gt;&lt;br&gt;
&lt;/a&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-V2WCMJF6WiE/Vr73QHtacXI/AAAAAAAAA0c/C6tRr6VB8mo/s1600/2016-02-13_09.48.26.jpg&#34;&gt;&lt;br&gt;
&lt;/a&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-V2WCMJF6WiE/Vr73QHtacXI/AAAAAAAAA0c/C6tRr6VB8mo/s1600/2016-02-13_09.48.26.jpg&#34;&gt;&lt;br&gt;
&lt;/a&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-V2WCMJF6WiE/Vr73QHtacXI/AAAAAAAAA0c/C6tRr6VB8mo/s1600/2016-02-13_09.48.26.jpg&#34;&gt;&lt;br&gt;
&lt;/a&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-V2WCMJF6WiE/Vr73QHtacXI/AAAAAAAAA0c/C6tRr6VB8mo/s1600/2016-02-13_09.48.26.jpg&#34;&gt;&lt;br&gt;
&lt;/a&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-V2WCMJF6WiE/Vr73QHtacXI/AAAAAAAAA0c/C6tRr6VB8mo/s1600/2016-02-13_09.48.26.jpg&#34;&gt;&lt;br&gt;
&lt;/a&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-V2WCMJF6WiE/Vr73QHtacXI/AAAAAAAAA0c/C6tRr6VB8mo/s1600/2016-02-13_09.48.26.jpg&#34;&gt;&lt;br&gt;
&lt;/a&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-V2WCMJF6WiE/Vr73QHtacXI/AAAAAAAAA0c/C6tRr6VB8mo/s1600/2016-02-13_09.48.26.jpg&#34;&gt;&lt;br&gt;
&lt;/a&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-V2WCMJF6WiE/Vr73QHtacXI/AAAAAAAAA0c/C6tRr6VB8mo/s1600/2016-02-13_09.48.26.jpg&#34;&gt;&lt;br&gt;
&lt;/a&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-V2WCMJF6WiE/Vr73QHtacXI/AAAAAAAAA0c/C6tRr6VB8mo/s1600/2016-02-13_09.48.26.jpg&#34;&gt;&lt;br&gt;
&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Now when coming to QUICK BOOT REBOOT,&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;this app will really help you to bypass your booting process and make it simple and fast morethan you think.&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;It will Comlete the shutdown process very quickly but the startup booting can&amp;rsquo;t be skipped.&lt;/strong&gt;** It&amp;rsquo;s really important for the startup of the system.**&lt;/p&gt;</description>
    </item>
    <item>
      <title>How to hide Ads from Android Apps</title>
      <link>https://b3nsh4.com/2016/02/how-to-hide-ads-from-android-apps.html</link>
      <pubDate>Tue, 02 Feb 2016 23:52:00 -0800</pubDate>
      <guid>https://b3nsh4.com/2016/02/how-to-hide-ads-from-android-apps.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-KyLvfogunQo/VrGxwvWMQqI/AAAAAAAAAwQ/t0kt9Tr_W2k/2016-02-02_22.35.15.jpg&#34;&gt;![](https://lh3.googleusercontent.com/-KyLvfogunQo/VrGxwvWMQqI/AAAAAAAAAwQ/t0kt9Tr_W2k/2016-02-02_22.35.15.jpg cursor: pointer;)&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;**       AD BLOCK PLUS [ROOT]**&lt;br&gt;
**________________________________&lt;br&gt;
**&lt;br&gt;
**PREREQUIREMENTS&lt;br&gt;
_____________________&lt;br&gt;
**&lt;br&gt;
&lt;strong&gt;1-ROOTED ANDROID PHONE&lt;br&gt;
2-AD BLOCK PLUS APP&lt;br&gt;
3-ENOUGH BATTERY&lt;br&gt;
4-INTERNET CONNECTIVITY&lt;br&gt;
Let&amp;rsquo;s start,&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;NOTE: THIS TUTORIAL IS ONLY MEANT FOR ROOT USERS.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-LTFVivjovU0/VrGxxStlQfI/AAAAAAAAAwY/2aWbKFehpsw/2016-02-02_22.33.02.jpg&#34;&gt;![](https://lh3.googleusercontent.com/-LTFVivjovU0/VrGxxStlQfI/AAAAAAAAAwY/2aWbKFehpsw/2016-02-02_22.33.02.jpg cursor: pointer;)&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;** &lt;br&gt;
&amp;lsquo;AD BLOCK PLUS&amp;rsquo; is a wonderful app that will help you to prevent ads.&lt;br&gt;
**&lt;br&gt;
**&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;DOWNLOAD AD BLOCK PLUS APP FROM HERE&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;br&gt;
**&lt;br&gt;
**After downloading it, install and tap update. it will update a file. Now this might take up to  30-40 KBs.  Within 8-10 seconds, it will complete the updation. Once there is a latest update , it will inform you. It is better to enable the icon ion the notification bar.&lt;br&gt;
**&lt;br&gt;
&lt;a href=&#34;https://lh3.googleusercontent.com/-pJ8eBML5rlo/VrGxxCOj5rI/AAAAAAAAAwU/vKnoNQpnzm4/2016-02-02_22.34.36.jpg&#34;&gt;![](https://lh3.googleusercontent.com/-pJ8eBML5rlo/VrGxxCOj5rI/AAAAAAAAAwU/vKnoNQpnzm4/2016-02-02_22.34.36.jpg cursor: pointer;)&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Overlock CPU speed in Androidd Device</title>
      <link>https://b3nsh4.com/2016/02/overlock-cpu-speed-in-android-device.html</link>
      <pubDate>Mon, 01 Feb 2016 21:16:00 -0800</pubDate>
      <guid>https://b3nsh4.com/2016/02/overlock-cpu-speed-in-android-device.html</guid>
      <description>&lt;p&gt;**Welcome back my readers. In this tutorial, we are going to do some cpu tweaks. **&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;NOTE:ROOT ACCESS IS NEEDED FOR THE FUNCTIONING OF THIS APP.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;strong&gt;As we all know the functioning of &amp;lsquo;CPU&amp;rsquo;  (central processing unit) handles all the operations in our device. The more it handles things fast, the more fast our device is. Well that explains a lot.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Perhaps,the performance of CPU maybe depends upon the device specification. S&lt;/strong&gt;ince it &lt;strong&gt;is&lt;/strong&gt; **a Hardware based equipment,we can&amp;rsquo;t controll that.Even in my phone, i&amp;rsquo;m using 1.3GHZ processor as well and slow processing is slow. **&lt;/p&gt;</description>
    </item>
    <item>
      <title>New level IT QUIZ (updated)</title>
      <link>https://b3nsh4.com/2016/01/it-quiz-updated.html</link>
      <pubDate>Sun, 31 Jan 2016 04:14:00 -0800</pubDate>
      <guid>https://b3nsh4.com/2016/01/it-quiz-updated.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-Xv69G8w43D8/W4duTBFEYEI/AAAAAAAAB7s/2Y73wjQwrBYqTGNR22XQbHtyul05nV9NACHMYCw/s1600/%255BUNSET%255&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://lh3.googleusercontent.com/-Xv69G8w43D8/W4duTBFEYEI/AAAAAAAAB7s/2Y73wjQwrBYqTGNR22XQbHtyul05nV9NACHMYCw/%255BUNSET%255D&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1. IC chips used in computers are&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;usually made of&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;(a) Lead&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;(b) Silicon&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;(c) Chromium&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;(d) Gold&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;ANSWER- (b) Silicon&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;strong&gt;2. One kilobyte is equal to&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;(a) 1000 bytes&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;(b) 100 bytes&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;(c) 1024 bytes&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;(d) 1023 bytes&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;ANSWER-  (c) 1024 bytes&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;strong&gt;3. Which supercomputer is developed&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;by the Indian Scientists?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;(a) Param&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;(b) Super 301&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;(c) Compaq Presario&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;(d) CRAY YMP&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;**   ANSWER-  (a) Param**&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;strong&gt;5. One Gigabyte is Approximately&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;equal is&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Remove Android Bloatware Apps safely [Root]</title>
      <link>https://b3nsh4.com/2016/01/remove-android-bloatware-apps.html</link>
      <pubDate>Sat, 30 Jan 2016 01:50:00 -0800</pubDate>
      <guid>https://b3nsh4.com/2016/01/remove-android-bloatware-apps.html</guid>
      <description>&lt;p&gt;&lt;strong&gt;Welcome back my readers. In this article let&amp;rsquo;s have a look at how are able to uninstall/delete bloatware/pre-installed applications in a rooted device.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Some apps we can run after gaining root access with links. Run special root apps like ; XPOSED,BUSYBOX,LUCKY PARTCHER,NO BLOAT,and many more.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-qvVzqzDkbo0/VquYo90UB7I/AAAAAAAAAtc/Rt3BWObQmts/s1600/2016-01-29_19.31.31.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;http://lh3.googleusercontent.com/-qvVzqzDkbo0/VquYo90UB7I/AAAAAAAAAtc/Rt3BWObQmts/s640/2016-01-29_19.31.31.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;XPOSED INSTALLER-&lt;a href=&#34;http://www.apkmirror.com/wp-content/themes/APKMirror/download.php?id=16499&#34;&gt;DOWNLOAD FROM HERE&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;NO BLOAT FREE-&lt;a href=&#34;http://www.apk20.com/apk/191071/start&#34;&gt;DOWNLOAD FROM HERE&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;BusyBox-&lt;a href=&#34;http://www.apk20.com/apk/24707/start&#34;&gt;DOWNLOAD FROM HERE&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;gt;&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;Lucky Partcher-&lt;a href=&#34;http://www.apk20.com/apk/2493063/start&#34;&gt;DOWNLOAD FROM HERE&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;gt;&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;Purify App-&lt;a href=&#34;http://forum.xda-developers.com/devdb/project/dl/?id=15170&amp;amp;task=get&#34;&gt;DOWNLOAD FROM HERE&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;WI-FI passwords-&lt;a href=&#34;http://www.apk20.com/apk/261324/start&#34;&gt;DOWNLOAD FROM HERE&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;gt;&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>How To completely remove root access from any  Device using kingroot</title>
      <link>https://b3nsh4.com/2016/01/how-to-unroot-your-device-tutorial.html</link>
      <pubDate>Sun, 24 Jan 2016 05:01:00 -0800</pubDate>
      <guid>https://b3nsh4.com/2016/01/how-to-unroot-your-device-tutorial.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://lh3.googleusercontent.com/-YHOgJdmsOfw/VqTLCkZt_iI/AAAAAAAAAok/EqOiqoy7ueM/s1600/Screenshot_2016-01-24-17-32-31.png&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://lh3.googleusercontent.com/-YHOgJdmsOfw/VqTLCkZt_iI/AAAAAAAAAok/EqOiqoy7ueM/s400/Screenshot_2016-01-24-17-32-31.png&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;**Kingroot is one of the most powerful android rooting apps out there and it is capable of ****rooting wide varieties of different **&lt;strong&gt;brandedandroid device including many &lt;strong&gt;&lt;strong&gt;Samsung, hTC, MTK androids etc.&lt;/strong&gt;&lt;br&gt;
**Now it happens that you have roo&lt;/strong&gt;&lt;/strong&gt;ted that your android devices with Kingroot but you want to unroot it maybe because youwant to carry out update/upgrade or you wantto carry out a factory reset, or you just want to unroot forany other reason best known to  you.The question now is how do you go about unrooting yourdevice? **&lt;br&gt;
&lt;strong&gt;If you want to unroot your Kingroot rooted android device, then follow the simplified steps below;Must&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>HOW TO Root samaung Galaxy Note4 using oneclick root</title>
      <link>https://b3nsh4.com/2016/01/how-to-root-galaxy-note4.html</link>
      <pubDate>Mon, 18 Jan 2016 03:29:00 -0800</pubDate>
      <guid>https://b3nsh4.com/2016/01/how-to-root-galaxy-note4.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://4.bp.blogspot.com/-czQAja9T_xc/VpzMDIhAxGI/AAAAAAAAAg8/iLHxcpVmyHQ/s1600/One-Click-Root.jpg&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;http://4.bp.blogspot.com/-czQAja9T_xc/VpzMDIhAxGI/AAAAAAAAAg8/iLHxcpVmyHQ/s400/One-Click-Root.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2 id=&#34;heading&#34;&gt;&lt;a href=&#34;https://www.oneclickroot.com/download-ocr.php&#34;&gt;&amp;laquo;&amp;laquo;DOWNLOAD ONE CLICK ROOT FROM HERE&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;raquo;&amp;gt;&lt;/a&gt;&lt;/h2&gt;
&lt;h2 id=&#34;using-one-click-root-to-root-your-samsung-galaxy-note-4&#34;&gt;USING ONE CLICK ROOT TO ROOT YOUR SAMSUNG GALAXY NOTE 4&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;One Click Root is the easiest Android rooting software available today. With just a few clicks, you can take your Note 4 from a boring, unrooted Android to an exciting, rooted Android. All you need to do is follow these four simple steps:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Step 1) Download and install One Click Root on your PC or Mac&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Easy way to install BusyBox on Android </title>
      <link>https://b3nsh4.com/2016/01/how-to-install-busybox-easily.html</link>
      <pubDate>Sat, 16 Jan 2016 05:09:00 -0800</pubDate>
      <guid>https://b3nsh4.com/2016/01/how-to-install-busybox-easily.html</guid>
      <description>&lt;p&gt;&lt;strong&gt;[Screenshots are provided at the bottom of page]&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;BusyBox is software that provides several stripped-downUnix tools in a single executable file. It runs in a variety of POSIX environments such as Linux,Android,and  Free BSD,Although many of the tools it provides are designed to work with interfaces provided by the&lt;/strong&gt; &lt;a href=&#34;http://www.linuxkernal.com&#34;&gt;&lt;strong&gt;Linux kernel&lt;/strong&gt;&lt;/a&gt;**. **&lt;/p&gt;
&lt;p&gt;After installing BusyBox, things will get more interesting. You could get modules like SSH,TELNET  and many more things. Let&amp;rsquo;s see how to install it.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Computer Quiz-Latest </title>
      <link>https://b3nsh4.com/2016/01/computer-quiz_12.html</link>
      <pubDate>Tue, 12 Jan 2016 08:31:00 -0800</pubDate>
      <guid>https://b3nsh4.com/2016/01/computer-quiz_12.html</guid>
      <description>&lt;p&gt;&lt;strong&gt;1.IC chips used in computers are usually made of?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;(a) Lead&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;(b) Silicon&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;(c) Chromium&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;(d) Gold&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;**ANSWER– (b) Silicon **&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;strong&gt;2.One kilobyte is equal to(a) 1000 bytes(b) 100 bytes(c) 1024 bytes(d) 1023 bytes&lt;/strong&gt;&lt;br&gt;
**   ANSWER–    – (c) 1024 bytes 3.Which of the following is not an example of Operating System?(a) Windows 98(b) BSD Unix(c) Microsoft Office XP(d) Red Hat Linux**&lt;br&gt;
&lt;strong&gt;ANSWER– – (c) Microsoft Office XP 4.Which supercomputer is developed by the Indian Scientists?&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>About b3nsh4</title>
      <link>https://b3nsh4.com/about/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://b3nsh4.com/about/</guid>
      <description>&lt;h3 id=&#34;hellow-&#34;&gt;Hellow 👋&lt;/h3&gt;
&lt;p&gt;I&amp;rsquo;m Ben Shaji, a 24yo Software Engineer from Kochi, Kerala.
Welcome to my space on the internet. Here my friend, I do rant, write random posts, and some intellectual stuff.&lt;/p&gt;
&lt;h3 id=&#34;are-you-working-now&#34;&gt;Are you working now?&lt;/h3&gt;
&lt;p&gt;Yes! for a service-based software company in the Engineering/Dev department. My team is specializes on Embeded and IoT systems where my job will be to fill the gap between software and hardware.&lt;/p&gt;
&lt;p&gt;This includes working with MODBUS, MQTT, Linux networking, scripting/automation, while leading dev of building a core IoT systems monitoring software.&lt;/p&gt;</description>
    </item>
    <item>
      <title>misc</title>
      <link>https://b3nsh4.com/misc/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://b3nsh4.com/misc/</guid>
      <description>&lt;hr&gt;
&lt;h3 id=&#34;misc-links&#34;&gt;Misc links&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;@b3nsh4 &lt;a href=&#34;https://dev.to/b3nsh4&#34; rel=&#34;noopener&#34; target=&#34;_blank&#34;&gt;Open Dev.to&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;ICCIDT - 2021 (Volume 09 - Issue 07) &lt;a href=&#34;https://www.ijert.org/secure-peer-to-peer-messenger-and-file-sharing-over-ipv6&#34; rel=&#34;noopener&#34; target=&#34;_blank&#34;&gt;Open paper&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;h3 id=&#34;email--contact&#34;&gt;Email &amp;amp; contact&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;You&amp;rsquo;re welcome to email me anytime: 
&lt;style&gt;
  #span-4413565b.cloaked-e-mail:before {
    content:attr(data-domain) &#34;\0040&#34; attr(data-user);
    unicode-bidi:bidi-override;
    direction:rtl;
  }
&lt;/style&gt;
&amp;#32;&lt;span class=&#34;cloaked-e-mail&#34; data-user=&#34;liam&#34; data-domain=&#34;moc.4hsn3b&#34; id=&#34;span-4413565b&#34;&gt;&lt;/span&gt;&amp;#32;

&lt;script id=&#34;script-4413565b&#34;&gt;
  var scriptTag = document.getElementById(&#34;script-4413565b&#34;);
  var link = document.createElement(&#34;a&#34;);
  var address = &#34;liam&#34;.split(&#39;&#39;).reverse().join(&#39;&#39;) + &#34;@&#34; + &#34;moc.4hsn3b&#34;.split(&#39;&#39;).reverse().join(&#39;&#39;);
  link.href = &#34;mailto&#34; + &#34;:&#34; + address;
  
  link.innerText = address.split(&#39;?&#39;)[0];
  
  
  scriptTag.parentElement.insertBefore(link, scriptTag.previousElementSibling);
  scriptTag.parentElement.removeChild(scriptTag.previousElementSibling)
&lt;/script&gt;

&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;h3 id=&#34;resume&#34;&gt;Resume&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;For Job offers/hire, please ping me via email or social medium.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://b3nsh4.com/Resume-BEN_SHAJI.pdf&#34; rel=&#34;noopener&#34; target=&#34;_blank&#34;&gt;Resume PDF&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;h3 id=&#34;gpg-key&#34;&gt;GPG key&lt;/h3&gt;
&lt;p&gt;Here is my pub key which you can use whenever needed. &lt;a href=&#34;https://b3nsh4.com/gpg/benshaji_gpg.pub&#34; rel=&#34;noopener&#34; target=&#34;_blank&#34;&gt;GPG PUB KEY&lt;/a&gt;
&lt;/p&gt;</description>
    </item>
    <item>
      <title>Projects by b3nsh4</title>
      <link>https://b3nsh4.com/projects/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://b3nsh4.com/projects/</guid>
      <description>&lt;hr&gt;
&lt;h3 id=&#34;xrep&#34;&gt;XREP&lt;/h3&gt;
&lt;p&gt;An opensource POSIX-ERE and Python regular expression generator.&lt;/p&gt;
&lt;a href=&#34;https://github.com/b3nsh4/XREP&#34; rel=&#34;noopener&#34; target=&#34;_blank&#34;&gt;b3nsh4/XREP&lt;/a&gt;

&lt;p&gt;Status: Beta v0.3&lt;/p&gt;
&lt;p&gt;Tech used: &lt;em&gt;Python, JavaScript, Flask&lt;/em&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;h3 id=&#34;pilot-realm&#34;&gt;Pilot-Realm&lt;/h3&gt;
&lt;p&gt;Enterprise IoT management toolkit with multi-tenancy support built for handling large scale users, devices and resources.&lt;/p&gt;
&lt;p&gt;Status: Proprietary software&lt;/p&gt;
&lt;p&gt;Tech used: &lt;em&gt;Django, React, Retool, MQTT, MODBUS, OpenWRT, AWS - Lambda, API-gateway, RDS, SES, Celery+RMQ, misc&amp;hellip;&lt;/em&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;h3 id=&#34;trm-eye&#34;&gt;TRM-Eye&lt;/h3&gt;
&lt;p&gt;Advanced object detection for industrial thermal sensing integrated with easy calibration. The calibration settings from a simple GUI helps to use any cam/sensor with minor changes in settings.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
