Tagged Questions
The last tag has no wiki summary.
11
votes
8answers
26k views
Changing CSS for Last li
I am wondering if there is some way to change a css attribute for the last li in a list using CSS. I have looked into using :last-child, but this seems really buggy and I can't get it to work for me. ...
10
votes
6answers
10k views
jQuery equivalent to Prototype array.last()
Prototype:
var array = [1,2,3,4];
var lastEl = array.last();
Anything similar to this in jQuery?
9
votes
4answers
176 views
Is there a cleaner way to conditionally 'last' out of this Perl loop?
Not really knowing Perl, I have been enhancing a Perl script with help from a friendly search engine.
I find that I need to break out of a loop while setting a flag if a condition comes true:
...
7
votes
5answers
395 views
How can I determine when a file was most recently renamed?
I have a program that compares files in two folders. I want to detect if a file has been renamed, determine the newest file (most recently renamed), and update the name on the old file to match.
To ...
7
votes
4answers
798 views
How to run one last function before getting killed in Python?
Is there any way to run one last command before a running Python script is stopped by being killed by some other script, keyboard interrupt etc.
Thanks for your help!
6
votes
3answers
183 views
Javascript (jQuery) remove last sentence of long text
I'm looking for a javascript function that is smart enough to remove the last sentence of a long chunk of text (one paragraph actually). Some example text to show the complexity:
<p>Blabla, ...
6
votes
2answers
703 views
How to find last 10 oracle queries by username?
Not sure if this is possible. I'm on 10g. The end result would look like this:
Username | Date/Time | sqltext
jdoe | 3/21/11 10:32:27 | select sum(total) from sales ...
5
votes
1answer
2k views
Last element in .each() set
I have an issue, where by I am doing a simple form validation, that needs some custom stuff that the validation plugin could not do for me. Basically, I have a name, email and message field, all are ...
5
votes
2answers
337 views
How do I break an outer loop from an inner one in Perl?
Suppose I have a piece of Perl code like:
foreach my $x (@x) {
foreach my $y (@z) {
foreach my $z (@z) {
if (something()) {
# I want to break free!
}
# do stuff
}
# do stuff
}
...
4
votes
2answers
1k views
BASH: echoing the last command run
I am trying to echo the last command run inside a bash script. I found a way to do it with some history,tail,head,sed which works fine when commands represent a specific line in my script from a ...
4
votes
1answer
2k views
remove bottom divider of a android listview
I have a fixed height listview it has divider between list item, but it also displays divider after last list item.
Is there a way to not display divider after the last item in listview?
4
votes
3answers
99 views
Last thread of a multithreaded application
I have a c# console application which has some threads to do some work (download a file).
each thread may exit the application at any time any where in application, but I'll show a proper message on ...
4
votes
4answers
3k views
Lisp: Get Last Element of each list
help please..say i have a list ((3 4 5) (d e f) (h i j) (5 5 5 5)) ) how can i get the last element of each list in such a way that the output would look like this (5 f j 5). Thanks in advance!
4
votes
2answers
4k views
.NET: LINQ's Last()
I'm new to LINQ and LINQ to SQL and don't understand what's wrong with this code. The Excetpion.Message I get is "Query operator 'Last' is not supported." What I'm trying to do is get the earliest ...
3
votes
1answer
101 views
googlebot last access script php
i have following function to have last acces date of googlebot
//get googlebot last access
function googlebot_lastaccess($domain_name)
{
$request = ...
3
votes
6answers
521 views
Python: Cut of the last word of a sentence?
I need to cut out the last word of a block of text. The reason is i'm grabbing some text from a database and i don't know if the last word will be cut off or not, so to be safe i'm getting rid of the ...
3
votes
3answers
2k views
last insert id with zend db table abstract
variable $tablemodel in an instance of a model which extends Zend_Db_Table_Abstract, if i do
$tablemodel->insert($data)
to insert data. Is there any method or property to get last insert id?
...
3
votes
6answers
271 views
operator << - how to detect last argument
I'm writting a log class in c++. This class is an singleton. I want to add logs in such a way:
Log::GetInstance() << "Error: " << err_code << ", in class foo";
Ok, and inside a ...
3
votes
4answers
1k views
PHP get index of last inserted item in array
It's as easy as the title sounds; I need to get the index/key of the last inserted item. Why is this difficult? See the following two code samples:
$a=array();
echo 'res='.($a[]='aaa').' - ...
3
votes
4answers
2k views
How to delete and replace last line in the terminal using bash?
I want to implement a progress bar showing elapsed seconds in bash. For this, i need to erase the last line shown on the screen ( command "clear" erases all the screen, i need to erase only the line ...
3
votes
3answers
412 views
jQuery :not() issue
jQuery 1.4:
$('#menu li:last:not(.ignore)').addClass('last');
HTML:
<div id="menu">
<ul>
<li>item 1</li>
<li>item 2</li>
<li ...
3
votes
4answers
1k views
PHP - How to get the element before the last element from an array?
How can I get the element before the last element from an array in PHP5 ?
3
votes
3answers
6k views
zend framework get last insert id of multi row insert using execute
How would I get the last inserted ID using a multirow insert?
Here is my code:
$sql='INSERT INTO t (col1, col2, col3) VALUES (1, 2, 3), (4, 5, 6), (7, 8, 9)'; // example
$stmt = ...
3
votes
4answers
379 views
Getting rid of li last item counter
I have a annoying problem .. I want my first 4 items in a list to be numbered but I wanna leave fifth item out of numbering .. here is my css :
#alternate_navigation ol
{
display:block;
...
2
votes
1answer
45 views
Getting SQL Latest Rows based on Summary
I am having a table ItemTran in sql 2005 with the following columns
RowNo Item ID Period RcptQty
1 ITEM-A 2011-01 15
2 ITEM-A 2011-02 10
3 ITEM-A ...
2
votes
4answers
73 views
Select every visible last child in jQuery
I would like to get the last visible td in each tr in a table.
This does not work because it attempts to select the last child if it is visible:
var last_visible_cells = $(table).find("tr ...
2
votes
2answers
135 views
PHP/MYSQL: Get last record of table in a Join AND row count of the joined table
Okay so I have two tables, a category table and a posts table.
I was hoping to construct a query that would return each category, the last record in the post table for that category (category.id = ...
2
votes
3answers
208 views
Most convenient way to get the last key or value in a LinkedHashMap?
LinkedHashMap description says "it maintains a doubly-linked list running through all of its entries" so I'm wondering how to get the last entry or key entered? Can I confidently downcast .values() to ...
2
votes
2answers
71 views
Use Regex to extract last row on a text
I need to extract only the last row from a multi-line string using regular expressions. I am trying to use a SingleLine pattern like following @"\n(.*?)$" but, unfortunately it extracts the text ...
2
votes
5answers
66 views
What exactly does jQuery's last return?
I'm having to make do mixing javascript and jQuery together until I can do a proper rewrite. It appears the code below isn't equivalent:
var something = $(".image:last"); // Last element with ...
2
votes
4answers
326 views
How to Find Out Last Index of each() in jQuery?
I have something like this...
$( 'ul li' ).each( function( index ) {
$( this ).append( ',' );
} );
I need to know what index will be for last element, so I can do like this...
if ( index !== ...
2
votes
3answers
40 views
Does MySQL store somehow the last querie(s)?
While working with MySQL and some really "performance greedy queries" I noticed, that if I run such a greedy query it could take 2 or 3 minutes to be computed. But if I retry the query imediatly after ...
2
votes
1answer
255 views
MySQL get nearest records to specific date grouped by type
I'm sorry I can't be more specific, but I don't know how to describe my problem in the title.. respectively I don't know how to search for similar question.
So here is the deal. I have this table ...
2
votes
1answer
138 views
Set the last letters of a string equal PostgreSQL
I have a column 'names' and 'ids' in table "OG" and want to find those names where the last letter is different and the total edit distance is two. So far I have:
SELECT
z1.names as names1, z2.names ...
2
votes
3answers
138 views
How to check if the code exited out of a loop due to a last command?
In a loop, I have several conditions and if the condition is not satisfied, I exit out of the loop using last syntax.
while (condition) {
if (possibility 1) {
...
last;
}
...
2
votes
3answers
290 views
Haskell ~ Does last iterate the entire list?
Simple question for Haskellites: Does Haskell iterate an entire sequence to obtain the last value? Specifically, are a different number of instructions executed for these two expressions?
...
2
votes
2answers
1k views
C# How to delete last line in a text file?
I have a simple log text file with the extension of .txt with a white space line at the end of tht text file every time the log file is generated from a 3rd party program.
Therfore is there any ...
2
votes
1answer
956 views
WPF: Align last TWO controls in StackPanel/DockPanel on the very right side
Thats my code so far which does not work:
<DockPanel >
<Button Content="Start" Command="{Binding Path=FirstDateCommand}" />
<Button Content="Back" ...
2
votes
7answers
290 views
Getting the last item in a $('div').each()
I am using jquery and the each function but I am having trouble finding the last item in a ul list.
DATA:
<ul id="1">
<li>1</li>
<li>2</li>
...
2
votes
4answers
454 views
How do I get the last non-empty line of a file using tail in Bash?
How do I get the last non-empty line using tail under Bash shell?
For example, my_file.txt looks like this:
hello
hola
bonjour
(empty line)
(empty line)
Obviously, if I do tail -n 1 ...
2
votes
1answer
2k views
jquery - get an input field value from the last row in a table?
I'm a little confused on how to do this...
I have a table that has a series of rows, and within each cell, there are certain form elements. I'm trying to get the value from the "code" input field ...
2
votes
7answers
3k views
Delete final line in file via python
How can one delete the very last line of a file via python?
Example File:
hello
world
foo
bar
Resulatant File:
hello
world
foo
I've created the following code to find the number of lines in the ...
2
votes
3answers
987 views
jQuery: Getting the two last list items?
I want to apply a special class to the two last list items in an unordered list with jQuery. Like this:
<ul>
<li>Lorem</li>
<li>ipsum</li>
<li>dolor</li>
...
2
votes
2answers
294 views
How to get last build label in text file
I have one project which is under Cruise control.
I want to write one console application which will write the last build label of that project in one text file.
2
votes
4answers
2k views
How to clear last line in DOS?
I have maybe dumb question - is there a function, that clears last line in command prompt? I dont mean "cls" - it clears the whole sreen, I want to delete just the last line.
e.g. I am searching for ...
1
vote
1answer
27 views
Get latest album (limit 1) associated with a profile to show in a view
I am rendering partials into my layout and so far so good with everything but I am not sure how I can limit an item. For examples I have albums which shows the albums a user uploads but how can I ...
1
vote
1answer
40 views
jQuery :last selector
I am using this jQuery code
$('#share_module:last').css("background-color","red");
but it always does it to the first #share_module
The HTML structure goes some what like this
<div id = ...
1
vote
4answers
52 views
replace only in the end of the string
echo $string can give any text.
How do I remove word "blank", only if it is the last word of the $string?
So, if we have sentence like "Steve Blank is here" - nothing should not removed, otherwise ...
1
vote
1answer
51 views
Spinner Message Issue
I have a problem with spinner. When I open the class (where is spinner) automatically it selects me the last item on the list, but it don't show me a message in toast. And when I select the item by ...
1
vote
2answers
162 views
bash remove last element from array
I want to remove the last entry in my array, and I want the array to show me that it has 1 less entry when I am using the ${#array[@]}. This is the current line I am using:
unset ...