The read-unread tag has no wiki summary.
0
votes
2answers
71 views
iOS unread cell icon
I am trying to figure out the best way to implement the blue dot like the Mail app for unread cells. I have the blue dot but I am just trying to figure out the logic behind it. The table is populated ...
1
vote
1answer
30 views
What happens when disabling maintenance of unread marks?
We have several Lotus Notes databases that are by default has their unread marks maintained. We disabled this maintenance to speed up the application. When we disable the unread marks, is it deleted ...
1
vote
1answer
168 views
How to hide unread SMS notification?
I'm writing application which handles SMS's and as I plan it should replace stock/default application.
I'm intercepting android.provider.Telephony.SMS_RECEIVED broadcast fired by incoming SMS and ...
1
vote
2answers
365 views
how to remove unreadable characters in a context using PHP?
Hi am feeding context to zend_lucene_search and it can search for the word up to special characters and after that it is not searchable.
for example:
very well to the other job boards � one of ...
0
votes
1answer
322 views
List View Read and Unread messages
I have a list view in which i show the list of messages. I am using SimpleAdapter to show the listview. I have a flag(true/false) set in the hash map(that shows whether message is read or not).Its ...
1
vote
1answer
524 views
Brisk cassandra TimeUUIDType
I used brisk. The cassandra column family automatically maps to Hive tables.
However, if data type is timeuuid in column family, it is unreadable in Hive tables.
For example, I used following command ...
0
votes
2answers
357 views
Objective C: How to check for unread messages (number to be displayed as badge)
I have a tableView storing a list of notifications (retrieved from server). How can I check if the particular notification has been viewed by the user?
I was thinking of
1) storing the notification ...
1
vote
1answer
124 views
Handling Read/Unread Posts for users like mail in mysql
I need to handle read/ unread status of a post per user.
Write now i am using a denormalized column to store comma separated user_ids. Since it is a text column the performance of the select query is ...
14
votes
5answers
1k views
Handling unread posts in PHP / MySQL
For a personal project, I need to build a forum using PHP and MySQL. It is not possible for me to use an already-built forum package (such as phpBB).
I'm currently working through the logic needed ...
0
votes
2answers
144 views
Returning unread records using Linq To SQL
I'm not sure how to ask this question, so I'll start with an example of what I'm doing.
Here is my table structure...
Documents (Primary key = ID)
ID, Title, LatestApprovedRevID
Revisions (Primary ...
0
votes
1answer
756 views
Google Reader Unread Count
I wrote this function to get the unread count of google reader items.
function GetUnread($sid)
{
$url = "http://www.google.com/reader/api/0/unread-count?all=true&output=xml";
$msg = ...
0
votes
3answers
335 views
What's the most efficient way to remember read/unread status across multiple items?
For example, let's take the format of a forum, where we have multiple users and multiple threads. Say this forum wants to track which users have read which threads and, say, use that information to ...