In my recent posts, I have explained How to install and configure Tweets By Post plugin. Now let us take a practical example to use it. Suppose you are writing on world cup cricket and you want to show related tweets at the bottom of your post to make it more social. After installation, you will get ‘Related Tweets Options‘ box below post in admin section.
Month: February 2011
‘Tweets By Post’ WordPress Plugin (Part-2 Configuration)
In first part of the tutorial, I have explained installation of ‘Tweets By Post’ WordPress plugin. In this tutorial we will discuss to configure default settings and options. Click on Settings > Tweets By Post, It will show TweetsByPost Plugin Settings page. Let us take an example to understand. Suppose you have to show #google tweets by default.(See following screen-shot)
Winner: Free Domain Giveaway
On Republic day(26 Jan), I started a contest for my readers. Here i am going to announce Winner of the contest. Random.org is used to randomize the list and selecting a winner.
‘Tweets By Post’ WordPress Plugin (Part-1 Installation)
‘Tweets By Post’ WordPress Plugin adds post wise tweets at the end of your post. It handles twitter feeds, including @username, #hashtag, and link parsing post by post. It supports displaying profiles images, and even lets you control number of tweets. you can set default twitter settings or tweets criteria(very helpful for existing posts) and update it post by post.
jqGrid: Drag and Drop columns (Reordering) with Javascript Array
jqGrid is a jQuery plugin that provides solutions to present and manipulate tabular data and display datagrid based on HTML,CSS and Javascript. I see many articles related to column reorder but all are based on server side data. So I decided to write on jqgrid column reordering based on javascript array data and retrieve data after column reordering.
10+ Notepad++ Tips For Fast Development
Notepad++ is an open-source text editor for Windows. I have to work on different technologies, It’s not possible to install all editors (like Dreamweaver, Visual studio 2010, …etc) on my old machine. So I use Notepad++ as my default text-editor. It’s simple and fast. Here are some tips for web developer and designer to use it effectively.
Concurrency violation: the UpdateCommand affected 0 of the expected 1 records
I was updating database using DataAdapter.Update method and got following error:
System.Data.DBConcurrencyException: Concurrency violation: the UpdateCommand affected 0 of the expected 1 records.
I was updating 2-3 columns of tables (having 20 columns) and expected to update those columns only. I fixed the problem and decided to write on it.