Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
6answers
2k views

How to display latest revision in a file?

I'm wondering how do you deal with displaying release revision number when pushing live new versions of your app? You can use $Rev$ in a file to get latest revision, but only after you update the ...
4
votes
1answer
353 views

What's the latest in touch screen programming?

I want to code some applications to use touch screen gestures. What is the latest technology available? What functionalities to APIs provide? Is it just the casual select and click functionality or ...
3
votes
2answers
1k views

Finding a list of recently registered domains?

Is there any site which gives the list of recently registered domains? I am looking to do some statistical analysis on domain name trends and this information is critical. Studying the latest domain ...
2
votes
3answers
82 views

SQL LIMIT to get latest records

I am writing a script which will list 25 items of all 12 categories. Database structure is like: tbl_items --------------------------------------------- item_id | item_name | item_value | timestamp ...
2
votes
1answer
43 views

Which is the best blog to get upcoming updates/news in IT/Web field? [closed]

I want to get news and latest update on IT industry regarding new releases, new programming language, best practices, new researches, new features included in programming languages, new enhanced ...
2
votes
5answers
76 views

Latest Search Results

Google unfortunately didn't seem to have the answers I wanted. I currently own a small search engine website for specific content using PHP GET. I want to add a latest searches page, meaning to have ...
2
votes
3answers
155 views

MySQL Query - recent entries per group

I'm trying to select the most recent entries per group in a table. Say I have a table "blog_posts" which has a column for "id" (all unique, auto incremented), "post_cat" which can be values ...
2
votes
2answers
2k views

Django Query using .order_by() and .latest()

I have a model: class MyModel(models.Model): creation_date = models.DateTimeField(auto_now_add = True, editable=False) class Meta: get_latest_by = 'creation_date' I had a query in my ...
2
votes
1answer
266 views

Select latest record with some more conditions

ID Level Effective Date ExpirationDate 000012-12 2 12/01/2005 NULL 000012-12 1 12/01/2005 NULL 000012-12 2 12/01/2005 01/01/2009 000012-A12 2 10/01/1994 11/30/2005 ...
2
votes
1answer
129 views

Copy the latest version of an artifact from a Maven repository

I am trying to copy a war file from my company's Nexus repository to a specific location. I am using maven-dependency-plugin in the following way: <plugin> ...
2
votes
6answers
170 views

sql sequences count

i have table a follows userid answer 1 true 1 true 1 false 1 true 1 true 1 true 2 true 1 true i want to get the ...
2
votes
2answers
945 views

MySQL SQL getting most recent records in a table?

I have an sql statement as below attempting to retrieve the most recent entries in a table. So I have two questions: is it better to order by id or by date? how do I rewrite this sql statement to ...
1
vote
1answer
40 views

Determine latest received tag

I need to write an autoupdate script for our project. I have everything, except that I can't determine the name of the latest received tag. I tried with git describe, but it tells me the latest ...
1
vote
3answers
78 views

default python mac version

I have been learning Python in my Mac [default Python installation 2.6.1 on OSX 10.6.7], but now Im in a stage where im considering if its worth it to update to latest Python? thanks!
1
vote
4answers
144 views

joining one table to the latest row in another table using mysql

I want to join Two tables in a special way, first table is devices which has a list of devices. The second table is datalog which is where abit of data is stored for everytime a device in devices ...
1
vote
3answers
415 views

Set PHP variable to latest value in MySQL row

Hey guys, searched old questions but couldn't find an answer or warp my head around it anything relevant (new to PHP and MySQl so take it easy tigers)! I have a MySQL table with the columns: id, ...
1
vote
2answers
3k views

How to get the latest selected value from a checkbox list?

I am currently facing a problem. How to get the latest selected value from a asp.net checkbox list? From looping through the Items of a checkbox list, I can get the highest selected index and its ...
1
vote
4answers
805 views

Efficient latest record query Postgresql

Alright I need to do a big query, but I only want the latest records. For a single entry I would probably do something like SELECT * FROM table WHERE id = ? ORDER BY date DESC LIMIT 1; But I need ...
0
votes
2answers
31 views

Get latest post link on wordpress

I have that site : http://ougk.gr and i want on the navigation to have a link which points to the latest post of a specific category (full post with comments etc). How can i achieve that? thank you
0
votes
1answer
78 views

mongodb: how to get N last modified documents?

Each document has a date property which is updated with new MongoDate() whenever the document is modified. How one can get N last modified documents? But not since some specific date. Just N ...
0
votes
1answer
23 views

JQM versions 1.orc shrinks website in mobile safari

I am a beginner to JQM and am developing a mobile website within Dreamweaver CS5.5. Once I received the new DW I immediately updated to jqm 1.0a4.1. Designed my site and it looks good on desktop ...
0
votes
1answer
229 views

WordPress: 1 query to get latest 7 posts from each category

I'm looking to write a SINGLE custom SQL query to retrieve the latest 7 posts from each of my 6 specific categories of a custom post type. I know how to query custom post types and taxonomies, but my ...
0
votes
1answer
43 views

access/sql: return only the latest records

I have a table that tracks the completion of interval tasks. for example, item a has to be completed every 7 days, item b every 1 days, and so on. The table logs the "nextDue" value on insert. I need ...
0
votes
0answers
36 views

Get Latest ID of Tweets

I'm building an app (like so many others) that accesses tweets. However, I'd ideally like to only access the ones that occurred after the app's installation. The logical thing would be to: Get the ...
0
votes
0answers
22 views

Incorrect API Level available on android.com for version 3.2

If you go to android.com, it says version 3.2 is available. It specifically says that the API level to be used is 13. But if you go to download the SDK, the API level you get is 12. Even the ADT for ...
0
votes
3answers
80 views

MySQL group by a certain type and select the latest row?

Imagine a table with columns type, date, message. And some rows looking like this (type | date | message): 1 | 1310572318 | Hello 1 | 1310572317 | Hi 2 | 1310572315 | Wassup 3 | 1310572312 | Yo 3 | ...
0
votes
1answer
41 views

Django: want to display the latest note entry only

I have another Django form that stores notes and again it has the user, client and datetime stored automatically. What I want to do this time is create some note form that allows you to add a note for ...
0
votes
2answers
154 views

c# inline lambda - get rate with latest date

MVC ViewPage contains Users (intranet.Model.User). Each user may have one or more rates of pay represented in the model as intranet.model.User.UserRates. I need to be able to display the latest rate ...
0
votes
0answers
66 views

Rails Paperclip Functionality stopped working after rails Update

Glad to be a new stackoverflow member. Ok, This morning, I decided to update my rails version from v3.0.3 to v3.0.7(latest). After going through with all the steps required everything seemed to be ...
0
votes
2answers
158 views

I am after something like this scrolling Latest news box

I have looked around at some jquery bits and i can't find anything the same... Obviously a lot of it is in CSS layout but does anyone know this code ? ...
0
votes
3answers
1k views

Warning: array_slice() expects parameter 1 to be array, null given in

I'm using the following code in my wordpress site to display the latest youtube video from my account using rss: <?php include_once(ABSPATH.WPINC.'/rss.php'); // path to include script $feed = ...
0
votes
1answer
355 views

checkboxlist lastest checked/unchecked item

I have a need to get the latest checked or unchecked item from a checkboxlist. Basically I need to detect any change in the list and perform some action on that. I found the solution for latest ...
0
votes
2answers
73 views

PHP: I wanna to appear the last email from string

I have a string like that <?php $string = " hello aaa@aaa.com , you are the best. this email bbb@bbb.com my be fake (i have question to ccc@ccc.com) that's all"; ?> i wanna detect the last ...
0
votes
0answers
303 views

Get folder name of droplocation of Latest Build using TFSBuild.exe

I have a script BAT in Windows 2003 for automation TFS. I need get the foldername of the latest build, generate in folder droplocation:"\myserver\BUILDS" My script: ...
0
votes
3answers
307 views

WP - How to show the latest post (one only) on the homepage with full text, comments and all?

On Wordpress: how can I show the latest post (one only) on the homepage with full text, comments and all? I basically would like the homepage to be the latest post as if I clicked it and got the post ...
0
votes
2answers
40 views

How to keep up to date with Facebook APIs?

Somehow I have the feeling that I am not the only one scratching my head with FB documentation. There seems to be quite a lot overlapping features in APIs and I cannot tell whether something is going ...
0
votes
3answers
35 views

How to use SQL to output latest info with multiple col

I have a "weather" table below with 3 cols: City Temperature Date New York 22 C 10/10/2005 Seattle 21 C 10/10/2005 New York 18 C 10/09/2005 Seattle 20 C 10/09/2005 Washington 17 ...
0
votes
2answers
506 views

In OpenCL 1.1 my call to function min() is ambiguous and I can't figure out why

I just upgraded from OpenCL 1.0 to 1.1. When I make my call to the min() function, I get error output: <program source>:45:44: error: call to 'min' is ambiguous int ...
0
votes
1answer
75 views

Wordpress : Latest Post by Date

How can I achieve something similar to this : http://anidemon.com/latest-episodes/ Latest Posts are organized under header of the Day. I don't care for the "View" count. How can I do this?
0
votes
1answer
49 views

Getting rows from one table and latest 1 row from an associated table, in LINQ

Ok, I think this question is similar to this one: http://stackoverflow.com/questions/1704821/linq-to-sql-groupby-and-max-to-get-the-object-with-latest-date But I have a table which I want to return ...
0
votes
2answers
106 views

Latest Actions in PHP?

If you go to http://www.foxnews.com, and scroll down a little you would see the box "LATEST NEWS". Now I want to do something like that, but with modification. I have 3 queries, that get out ...
0
votes
2answers
2k views

Twitter API: Get my latest post with php

I'm trying to make a simple site that uses php and the Twitter API to write out my latest post from twitter. I found a tutorial showing me how to get my timeline (or last 20 posts) in xml format, but ...
0
votes
1answer
76 views

PHP PunBB How to have the most recent posts of the forum on the home page?

I want to display the most recent posts in a punbb forum on the website home page, does anyone have the php code for this?
0
votes
2answers
747 views

korn shell script to get the most recent file for a given day

HI, I have a list of files from the last 7 days. From this list, if there are multiple files on a certain day, i need to get the latest for that day using korn shell script. Please help!
0
votes
2answers
414 views

Question about SubSonic and a question about dateTimePicker control on a Windows Form

Question #1: Latest working Version I'm currently using SubSonic 2.1 built 491. Is there a later built? Where can I get it? I know 2.2 was released but it doesn't come with a Setup and I wouldn't ...
0
votes
3answers
3k views

Clear my cache using cmd command=> ipconfig/dnsflush?

If my computer is the web server for multiple live websites, is there any harm if i type ipconfig/dnsflush in my command prompt editor?? I always got this problem. I embed a flash (swf) in a .html ...