Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
3answers
3k views

Joda-Time: Period to string

I'm using the Joda-Time library with Java. I'm having some difficulty trying to turn a Period object to a string in the format of "x days, x hours, x minutes". These Period objects are first created ...
8
votes
1answer
129 views

Perl period vs comma operator

Does anyone know why print "$str is " , ispalindrome($str)?"":" not" , " a palindrome\n" prints "madam is a palindrome" but print "$str is " . ispalindrome($str)?"":" not" . " a palindrome\n" ...
7
votes
4answers
492 views

PHP Find date nearest to a timeline period

So, uh, ok. This might get mathematical, so hope you brought your scientific calculator with you ;) This is my problem: Given an initial date (timestamp), time period period (seconds) and today's ...
6
votes
3answers
1k views

Split string into sentences based on periods

I have written this piece of code that splits a string and stores it in a string array:- String[] sSentence = sResult.split("[a-z]\\.\\s+"); However, I've added the [a-z] because I wanted to deal ...
6
votes
5answers
2k views

C++ - locale-independent “atof”?

I'm parsing GPS status entries in fixed NMEA sentences, where fraction part of geographical minutes comes always after period. However, on systems where locale defines comma as decimal separator, atof ...
5
votes
3answers
473 views

ASP.NET MVC: How to Route Search Term with . (Period) at the end

I get a 404 response from .Net MVC when I try to make a request where my search term ends with a . (period). This is the route that I'm using: routes.MapRoute( "Json", ...
4
votes
4answers
2k views

How to print a double with a comma

In C++ I've got a float/double variable. when I print this with for example cout the resulting string is period-delimited. cout << 3.1415 << endl $> 3.1415 Is there an easy way to ...
3
votes
3answers
308 views

What does the 'period' character (.) mean if used in the middle of a php string?

I'm fairly new to PHP, but I can't seem to find the solution to this question in google. Here is some example code: $headers = 'From: webmaster@example.com' . "\r\n" . 'Reply-To: ...
3
votes
3answers
234 views

SQL Count different timeframes over a known period

How can I count continuous time frames My data looks like this: Id| Em_Name|Em_Reg_Date -------------------------------- 1 | John |2010-03-30 00:00:00 1 | John |2010-03-31 00:00:00 2 | ...
3
votes
4answers
926 views

Licensing checker longevity of the “activated” status. How frequent is too much for the user?

SKIP TO THE BOLD PART if you don't want to read it all. Hi, simple question here. I couldn't find it on the official documentation (don't you just love the Android help? :) ). I've also read about ...
2
votes
2answers
66 views

mysql date between period

Database structure: activities: id, description, date, time, endDate, endTime, userId So we got an activity, it is required to have a date, the time, endDate and endTime are not required. The ...
2
votes
4answers
218 views

What does a dot before a variable indicate in html?

I'm new to html and web coding in general. What do the periods before variables indicate in the following code? <style> <!-- Modify these styles --> .page_title {font-weight:bold} ...
2
votes
2answers
364 views

Showing period with days, hours, minutes and seconds

I have the following period 1month 5d 22h 35m 39s, which I want to format as 35d 22h 35m 39s. However when using the following formatter the months are just removed and haven't been added to the days: ...
2
votes
2answers
88 views

Determining the time frame given by a pattern

A date can be formatted using a e.g. SimpleDateFormat(formatPattern, locale). Is it somehow possible to determine the time period (in seconds) that is represented by formatPattern given a date? E.g. ...
1
vote
0answers
20 views

Binding to fields containing a period in DataTable in C#/WPF

I have a SQL CE database, which is beyond my control, that has fields in the format of ., complete with a period in the column name. The columns will always be different, so I cannot have a ...
1
vote
2answers
34 views

mysql difference in month as column in where clause

need your help. I tried myself but cant solve it. I have a table with date column (ex. birth) So i need to select all rows where birth is in past more than one months. I googled and found a SO ...
1
vote
1answer
105 views

period range selection control in ASP.NET MVC3

I want to implement similar slider than i mention in attached image. I want the slider that able to select date like 14/09 to 24/05. So basically, I want allow user to select this period in one shot ...
1
vote
2answers
92 views

Using a variable period in an interval in Postgres

I have a relation that maintains monthly historical data. This data is added to the table on the last day of each month. A service I am writing can then be called specifying a month and a number of ...
1
vote
3answers
108 views

why are there periods in php [closed]

Possible Duplicate: What does the 'period' character (.) mean if used in the middle of a php string? as the title says, why are the periods? such as ...
1
vote
2answers
106 views

RewriteRule .? only for one or more chars?

On the net I found several ways of defining a RewriteRule like: RewriteRule .? 404.php [L] RewriteRule . 404.php [L] RewriteRule ^ 404.php [L] But why would these work when entering a garbage url? ...
1
vote
5answers
118 views

OSGI bundle (or service)- how to register for a given time period?

Search did not give me a hint, how can i behave with the following situation: I'd love to have 2 OSGI implementations of the same interface: one is regular, the other should work (be ...
1
vote
1answer
144 views

Bug in jodatime Period?

How come this test I wrote fails in jodatime 1.6.2? Is it a bug? @Test public void testIfJodaTimePeriodsHandlesPeriodTypesOtherThanMinutesAndHours() { long twentyDaysInMillis = ...
1
vote
5answers
255 views

Dealing with periods and dates without using cursors

I would like to solve this issue avoiding to use cursors (FETCH). Here comes the problem... 1st Table/quantity ------------------ periodid periodstart periodend quantity 1 2010/10/01 ...
1
vote
1answer
214 views

Any way to convert a JodaTime Period to a decimal number of hours?

I have a JodaTime Period that I've created from two DateTime instants. Is there a good way to convert that Period into a decimal number of hours? For instance, I have a Period that goes from 1pm to ...
1
vote
3answers
394 views

Need help with a SQL query selecting date ranges from a table of period quarters

I have a table called Periods that looks like this PeriodID | PeriodYear | PeriodQuarter 7 | 2009 | 1 8 | 2009 | 2 9 | 2009 | 3 10 | 2009 | 4 11 | 2010 | 1 12 | 2010 | 2 Each row in the table ...
1
vote
2answers
244 views

php removing item with period from array

I have a products array of widgets. Some widgets have the reserved period symbol in their names. The problem occurs when php meets the period, the rest of the widget name is disregarded. How could ...
1
vote
2answers
233 views

running with Java.exe when period exists in directory name

I am trying to run the java prog I've built, but I want to run it from a specific directory. When specifying the relative path to the class file I want to run, that path contains a directory with a ...
1
vote
3answers
177 views

csv.reader turning commas into periods throwing errors

Here is a sample of the first row: link,Title,Description,Keywords It is made from an excel workbook, I tried saving in all CSV formats (window, ms-dos, and comma delimited list) I even tried ...
1
vote
3answers
1k views

Compare date-periods using XSLT

I have some experience with XSLT but now i've got myself a problem: I need to check if a period between a begin- and enddate completely covers an other period. Here's a part of the xml: <Parent ...
0
votes
0answers
16 views

How to find the exact period of Blum-Blum-Shub random number generator

I've read the original paper and some related ones. But the best I can find about the period of BBS is that the period is a factor of λ(λ(M)), where λ is Carmichael function and M is the product of ...
0
votes
2answers
47 views

Compare a date in a given period

I want to compare a date in a given period. I use the methods before and after. here is my method. public boolean compareDatePeriod() throws ParseException { [.....] if ...
0
votes
1answer
40 views

CakePHP Filter Component - correct usage to filter a period of time

I am quite new to CakePHp and the MVC way of thinking. Up to know I was able to create a Resultsetfiltering by the use of the Filter Component by Nik Chankov successfully. The way I am using it, is ...
0
votes
0answers
44 views

Hide ads for x period of time after being clicked on it

I'm displaying ads on my website, but I would like to hide the script for, let's say 12 hours, after it has been clicked on it. I'm not even sure how to begin nor what language should I use. Thank ...
0
votes
1answer
346 views

Single SQL Server query to get the total score by hourly, daily, weekly, monthly, and annual

I have the following requirement : single SQL Server query to get the total score by hourly, daily, weekly, monthly, and annual data. this is how the result should be: thisperiodtotalscore ...
0
votes
0answers
32 views

Exclude a set of dates from a datatable

I have a list of periods in table A(id unique identifier, periostart, periodend, status (orig as default)). In table B I have a sinqle column containing a list of dates. The goal is to modify ...
0
votes
1answer
54 views

Error in Printing Period with JodaTime?

I've have a problem trying to print a given period between two dates. Let me show you the details, and then i'll put the code : Date a = May, 20th , Date b = June, 19th Period in between should be ...
0
votes
1answer
172 views

facebook shares/likes over a time period

How can I get the number of FB shares/likes for some FB object over a time period? For example, I'd like to get how many shares where for some url from January, 1st, 2011 until January, 30th, 2011.
0
votes
0answers
243 views

Amazon CloudWatch evaluation periods not working?

I'm trying to create an alarm that will terminate instances in an Auto Scaling cluster when the average CPU utilization drops below a certain threshold after a certain number of consecutive evaluation ...
0
votes
2answers
785 views

ruby on rails - routes.rb - match file extension when multiple periods exist in filename

I have created a route plus controller for doing dynamic css in ruby on rails as per the instructions here: http://www.misuse.org/science/2006/09/26/dynamic-css-in-ruby-on-rails/ It took some ...
0
votes
2answers
47 views

how i can show the number after period

i calculate a tow number and i get this answer 9.144E-4 how i can show the real number in android
0
votes
0answers
30 views

whats an easy way to set up rolling periods (sic 1 week) for closing prices or volume figures for stock price activity over a 200 datapoint period

whats an easy way to set up rolling periods (sic 1 week) for closing prices or volume
0
votes
2answers
121 views

SQL statement to get the most frequent hours and/or period for a user

I'm new to SQL Datetime. Considering I have records in MySQL with Datetime data (as seen below), what is the best way to get the most frequent occurring HOUR or range/period for these records for a ...
0
votes
4answers
107 views

Working with an array with period in key value

I'm getting data from an array. For some reason the array has key values like [3.3] which i'm having trouble retreving data from. I have this array [3.3] => First Name [3.6] => Last Name[2] ...
0
votes
5answers
303 views

How often should I remind the user on “Rate the app” (iPhone)?

I have this application: http://www.youtube.com/watch?v=Tn7_yNt1OaE I made a mechanism that counts the number of times the app has launched, and measure the playtime duration as well. I want to ...
0
votes
1answer
150 views

Waiting Period Before iPhone APNs Starts Pushing?

I am running Push Notification on two test apps. The first test app I got working over a 2 day period. The 2nd test app I tried to implement Push Notification tonight and have been banging my head ...
0
votes
1answer
289 views

Get date from period number in Actionscript

I have a table which containt a date, a number for the number of weeks per period, and a year. the user then enters a date and I can calculate the period number from this. But I'd like to do it the ...
0
votes
3answers
714 views

SQL date,period comparison

I'm having some problem with logic of the comparison of some periods. I have a table in my database that looks like this: Id|startDate |amount of weeks| -------------------------------- ...
-1
votes
1answer
39 views

sending a period to end a mail DATA telnet session in python

im using a telnetlib in python to connect to a simple mail server and send out an email; everything works fine until the very end after i enter the DATA command, you submit the body of your message ...