What?
A very quick article to calculate the time between two timestamps and break it down into days, hours, minutes and seconds.
Why?
I've done this in lots of other systems but here's one in Zoho ...
What?
A quick article on how to get the value of 40°4′20″N 116°35′51″E into 40.079857, 116.603112.
How?
Let's pretend all the names are in column A, in Column B I have the coordinates that I want ...
What?
Really not work related but if you know your sharepoint site:
Custom Error
http:///_layouts/MySite.aspx?Error=You%20are%20a%20jerk%20and%20SharePoint%20does%20not%20share%20with%20jerks. ...
... to properly convert seconds into total hours, minutes and seconds (taking into account regional settings and without using a date function).
How?
$total_time =intval(intval($total_seconds)/ 3600).":";
$total_time.=str_pad(intval(($total_seconds/60)%60),2,"0",STR_PAD_LEFT).":";
$total_time.=str_pad(intval($total_seconds%60),2,"0",STR_PAD_LEFT);
// ...
How to Display Report Execution Time in SQL Server Reporting Services 2008 R2
So there are other articles out there but I was looking to display in milliseconds the execution time it took for a particular ...
As you can tell these are my messed up functions that convert dates into seconds and vice-versa. They're a little disorganised but they're the ones I copy and paste to my scripts then modify.
In it' ...
... guy says, "167." The robot proceeds to chat with him about subatomic physics, black holes, and game theory.
Curious, the guy comes back a second night. "What'll you have?" says the robot and the guy ...
... Time: In my case, this was due to the CRM being set to a different timezone (7 hours off) and for testing purposes, I need to add the second parameter of toString() to a desired timezone. The CRM format ...
... to tidy these all up would leave the data more and more unreliable.
So Shopify want your webhooks to respond within 1 second. This is about enough time to store the record but that's it. Processing ...
... file permanently. You only need to run either of these as the second one runs both (disassociate and delete):
// disassociate as attachment (removes attachment from the Bill but keep in ZohoBooks documents)
r_Detach ...
... artistic, unique, award-winning photograph, Canon EOS 5D Mark IV DSLR, f/8, ISO 100, 1/250 second, close-up, natural light, professional, flattering, headshot::3 black and white, grainy, deformed, watermark::-2 ...
... of each item purchased; including shipping and tax. The second is to associate these to the invoiced items and work out the profit. The third is to group by the sales person, date, and customer so as ...
... the first is the string to start with, the second is the number of spaces to pad with.
//
// set number of times to iterate through loop (plus 1)
v_CheckDaysAhead = 7;
//
// create a string ...
... each year despite it's expiry in a couple years time.
The first time I did it, there were more steps; the second time I just did as per the below. If I ever have to do the long process again, I'l ...
... Start Starts Second Sunday in March at 2:00
DST End Ends First Sunday in November at 2:00
//
// Starts Second Sunday in March at 2:00
v_FirstMonthDate = toTime(zoho.currentdate.toString("yyyy") ...
What?
A quick article to demonstrate code that creates a task in CRM based on the time logged against an Event/Meeting.
Why?
As developers, we're keep account of our time and we are currently ...
... else if(r_Record.Type == "Subform2")
{
// store the second subform into a collection
c_SubformRows = r_Record.mySubform2;
}
// loop through the selected subform rows ...
We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies. Read more about our Privacy Policy.