Hiren's Technical Blog

?

Channel Reputation Rank

#1480
?

Activity Status

Stale

last updated

According to the data and stats that were collected, 'Hiren's Technical Blog' channel has a mediocre rank. The feed was last updated more than a year ago. In addition 'Hiren's Technical Blog' includes a significant share of images in comparison to the text content. The channel mostly uses long articles along with sentence constructions of the basic readability level, which is a result indicating a well-balanced textual content on the channel.

About 'Hiren's Technical Blog' Channel

I am a developer and I know how hard it is to solve difficult issues while programming in case you did not get any help....

? Updates History Monthly Yearly
? Content Ratio
? Average Article Length

Long articles are widely used on 'Hiren's Technical Blog' as elaborated and interesting content can help the channel to reach a high number of subscribers. In addition there are a few medium length articles.

short

long

? Readability Level

'Hiren's Technical Blog' mostly contains texts of a basic readability level which may show their aim to reach a wider audience. Besides, there are articles of intermediate readability, which make up more than one third of all content on the channel.

advanced

basic

? Sentiment Analysis

Positive emotional expressions prevail throughout the texts: they may include favorable reviews, appreciation or praise in regard to the subjects addressed on the channel. However, the channel also contains some rather negative or critical records that make up just a small amount of all its content.

positive

negative

Recent News

Unfortunately Hiren's Technical Blog has no news yet.

But you may check out related channels listed below.

iOS 7 Phonegap Change Background Color of Status Bar

[...] I was working on Sencha Touch, Phonegap application where we have a requirement to change background color of top status bar of iPhone where we have carrier, wifi and battery symbols. There are two [...]

Sencha Touch List, Different background colors for Group Header

[...] about how how I implement it, you may have better idea. Feel free to comment. Here I added background color in each items of the list and then grouped it based in certain field. For example. Ext. [...]

What is Model View View Model (MVVM) pattern? Implement it with Knockout JS

[...] . We will not go in that detail But we will see how it is implemented with Knockout JS. First lets see the elements of MVVM pattern Model Model represents the business entity. It's your [...]

Android Slide Menu like Facebook With Effect Like Navigation Drawer

[...] we accomplished it with some different manner. In this blog I will explain you how to do this. First lets see our Main Layout XML file. &ltcom.myapp.layout.MainLayout xmlns:android="http:// [...]

AngularJs Pass Data Between Controllers

[...] . While the receiver controller will listen to the broadcast event and receives that data. First lets crete a service and function. var servicesModule = angular.module('myapp.broadcastservice', []); [...]

AngularJs and $scope.$apply - When and How to use $apply for AngularJs scope

[...] to use $apply carefully else it may give you error that $apply is already in progress. First lets understand how the AngularJs data binding works.AngularJs framework monitors data changes [...]

Sencha Touch Create Navigation Drawer (Slide Navigation Like Gmail)

[...] Recently in one of our sencha touch project we have created Navigation Drawer for sencha touch. In this blog I will explain how to create it. Let's first understand what is navigation [...]

Make Sencha Touch Site With Routes SEO Friendly

[...] Recently in one of our project which was a sencha touch app we faced an issue with SEO. As far as I know a site should have all the unique URLs for [...]

Sencha Touch - One Way to Implement Autosuggest Textbox

[...] Hello, Recently in one of our Sencha Touch project there was a requirement to add autosuggest textbox. As user starts typing there should [...]

iOS 7 Phonegap Change Background Color of Status Bar

[...] Hello, Recently I was working on Sencha Touch, Phonegap application where we have a requirement to change background color of top status bar [...]

Sencha Touch List Find Top Visible Item Index

[...] Recently in one of my project we have a Sencha Touch list and top banner. Each list item have certain banner text to show. When user scrolls up or [...]

Add Tap Hold Event in Sencha Touch panel

[...] when user tap and hold on sencha touch panel. We all know we can add itemtphold event on sencha touch list. But in my case I have to use panel. In this blog I will explain how to add tap hold event [...]

Sencha Touch List, Different background colors for Group Header

[...] Recently in one of my project we have a Sencha Touch list with grouped headers. We know that we can control group header styles by CSS or we can [...]

Sencha Touch List Accordion Layout (Expand and Collapse Sencha Touch List Item)

[...] property target.element.dom.clientHeight. If height is less then or equal to 30 which is our item height for the list, we will expand the list item. After expanding list item the height will be 100 [...]

Sencha Touch List Set Dynamic Height

[...] per number of items. For that there is one simple way if items height is fixed. For example if item height is 20 pixel and list has 10 items you can set list height to 200 so all the items would be [...]

Sencha Touch List Find Top Visible Item Index

[...] scroll view. We can simply calculate top visible item by dividing y offset of scrollview with item height of the list. This will give us top visible item index. Here is the logic to do that. Add [...]

Restart Android Service on Reboot of Phone

[...] a receiver for the device boot and power on action in your Android manifest file. This broadcast receiver will be invoked when this action happens. Following is the example code. <receiver [...]

Android Geofence Stop Getting Transition Events After Some Time

[...] , this IntentService is never called. So to overcome with this shortcomings, we have used Broadcast receiver in stead of IntentService. So first define BroadcastReceiver in Manifest file. < [...]

Sencha Touch List Expand and Collapse All Items

[...] Recently in one of our Sencha Touch project we have a requirement to have expand and collapse all button on top of like to expand and [...]

Sencha Touch Create Navigation Drawer (Slide Navigation Like Gmail)

[...] Recently in one of our sencha touch project we have created Navigation Drawer for sencha touch. In this blog I will explain how to [...]

Sencha Touch - One Way to Implement Autosuggest Textbox

[...] Hello, Recently in one of our Sencha Touch project there was a requirement to add autosuggest textbox. As user starts typing there should be [...]

Sencha Touch List Expand and Collapse All Items

[...] add above two functions in controller. expandAll: function(){ var list = this.getItemsList(); var items = list.getViewItems(); var itemsLn = items.length; for (i = 0; i < itemsLn; i++) { item = [...]

Sencha Touch List Set Dynamic Height

[...] in controller when your store is loaded you can add following logic var totalHeight = 0; var items = this.getMyList().getViewItems(); var itemsLn = items.length; for (i = 0; i < itemsLn; [...]

Create Simple MAC OSX application with WebView and Load URL in it

[...] Select App delegate from the right pane and Control + Drag from it to Webview. It will show context menu with Webview. Select the webview and it will add IBOutlet. See the following image. Now we [...]

Add Tap Hold Event in Sencha Touch panel

[...] Recently in one of my project, requirement was to display context menu when user tap and hold on sencha touch panel. We all know we can add itemtphold event on [...]

iOS Share Data Between iOS App and Today Widget (App Extension)

[...] and click on Ok. It will sync with developer portal and create app group. Now select your app extension target and go to Capabilities - > App Groups. It will be off first. On it and it will sync [...]

iOS Today App Extension Widget Tap To Open Containing App

[...] this, you should have following structure in your plist file. That's it. Now select your App Extension Target and run the widget. Tap anywhere in your widget and it will open your containing app.  [...]

?Key Phrases
iOS 7 Phonegap Change Background Color of Status Bar

[...] I was working on Sencha Touch, Phonegap application where we have a requirement to change background color of top status bar of iPhone where we have carrier, wifi and battery symbols. There are two [...]

Sencha Touch List, Different background colors for Group Header

[...] about how how I implement it, you may have better idea. Feel free to comment. Here I added background color in each items of the list and then grouped it based in certain field. For example. Ext. [...]

Related channels