Forum for Hebcal.com - Free Jewish holiday calendars, Hebrew date converters and Shabbat times
0
Fixed

Zmanim API shows results for different dates

Steven DuBois 3 years ago updated by Michael J. Radwin 3 years ago 1

I am noticing that sometimes the zmanim API shows results for the next day for certain locations.

For example, tonight around 8:10 PM CT https://www.hebcal.com/zmanim?cfg=json&zip=60613 is showing results for 3/11/2021 and https://www.hebcal.com/zmanim?cfg=json&zip=60076 is showing results for 3/12/2021. These are two Chicago area zip codes, so they should both show results for the same date.

I believe this is likely a caching issue. When I inspect the headers I see these two values

last-modified: Thu, 11 Mar 2021 20:45:05 GMT

last-modified: Fri, 12 Mar 2021 02:10:26 GMT

Answer
Michael J. Radwin 3 years ago

Hi Steven, thanks for catching this bug. The logic for picking today's date when there is no start, end or date parameter was defaulting to today's date in UTC instead of the date at the timezone based on the location.

The issue has been fixed now and those different URLs should give consistent results.

You can always specify an explicit date like https://www.hebcal.com/zmanim?cfg=json&zip=60613&date=2021-03-12 if you don't want the implicit "today" feature.

0
Answered

Yarzheit Confusion

CL1 3 years ago updated by Michael J. Radwin 3 years ago 1

Figuring out yarzheits is not explained thoroughly in the yarzheits or help sections. It merely states to enter a date, but does not say which date: Is it the date the person was born, the date they died, or the date they were buried? Which is it? & Why?

Answer
Michael J. Radwin 3 years ago

Hi, thanks for using Hebcal.

Yahrzeit refers to the anniversary, according to the Hebrew calendar, of the day of death of a loved one. Alternative spellings include yahrtzeit, yortsayt, and yartzeit. On the anniversary of a death, it is the custom to light a candle to commemorate the departure of a loved one. [1]

In the form, enter the date of death (or birth or anniversary). Use the "+ Add another name" button at the bottom of the page to add additional names. After you generate a personal anniversary calendar, you will be able to print, subscribe to annual email reminders, or download a multi-year calendar feed to Apple, Google, Outlook, or other web, desktop and mobile calendar apps.

0
Started

Portuguese translation of API

Pedro 3 years ago updated 3 years ago 5

Is there any plan for translating the information into Portuguese? I saw that there are couple of other languages (Russian, Spanish, et cetera) and I think having the API translated to Portuguese could be beneficial to Brazilian Jewish community, as one of the biggest outside Israel.

I searched across github repository and found some .po files. I do not know if I can start translating and than send one .po file (to be honest I do not know exactly what those files are).

To conclude, I can be a volunteer translating to Portuguese if there is no planing or any special group doing this job, as I am a Portuguese native speaker.

Thank you for your attention and maintain hebcal,

Pedro

Answer
Michael J. Radwin 3 years ago

Hi, thanks for the generous offer! We'd love your help to offer a Portuguese transliteration.

You can use a tool like Poedit to create the translation file https://poedit.net/

We suggest you download a file like the Spanish language translation, and rename it "pt.po" and then make your edits there. Once you've finished, you can email the file to webmaster@hebcal.com and we will incorporate it into the website within a few days.


https://raw.githubusercontent.com/hebcal/hebcal-locales/master/po/es.po

0
Started

Do y'all have a molad calendar option?

elyssa hurwitz 3 years ago updated 3 years ago 2

I would love to have Kiddush levanah in my calendar, do y'all have that as an option somewhere?

0
Not a bug

your candle lighting times in NYC are 20+ minutes off from chabad this week

David Whitehead 3 years ago updated by Michael J. Radwin 3 years ago 2
Answer
Michael J. Radwin 3 years ago

Hi, thanks for using Hebcal.

Can you check your candle lighting times and confirm you are using 18 minutes before sundown? This is the Hebcal default but you may have set it to another value, for example 38 minutes before sundown.

0
Fixed

Links to pages for joint parashot broken

sfoxlong 3 years ago updated by Michael J. Radwin 3 years ago 1

When you try to go to the sedrah page for joint parashot (Behar-Behukotai, Achrei Mot-Kedoshim, Matot-Masei, etc) you get an error page that says, "Error 500. Cannot read property 'match' of undefined."

Answer
Michael J. Radwin 3 years ago

Thanks for the bug report! The problem has been fixed now. We're very sorry for the inconvenience.

0
Answered

Cannot subscribe error in iPhone

Dth 3 years ago updated by Michael J. Radwin 3 years ago 3

Hi,

I tried downloading the events for an iPhone, and it worked in one phone, but another phone I get this error:

Image 73


0
Answered

Create a query to determine whether today is yomtov or shabbat

CAA 3 years ago updated by Michael J. Radwin 3 years ago 1

Hi, We're making a process in Zapier that needs to abort if it's yomtov to avoid sending out messages when it isn't appropriate. Is there a way to generate RSS or JSON which we can then parse with Zapier to see whether today is yomtov? At the moment I can only see ways to generate lists for a whole month or year?

Answer
Michael J. Radwin 3 years ago

Hi, thanks for using Hebcal.

You should be able to do this using our Jewish Calendar API by setting the start and end parameters to be today's date in YYYY-MM-DD format, and setting maj=on for only major holidays. Then, you'll need to see if items is empty - and if it's not, check to see if the object inside contains yomtov: true.

For example, here's the second day of Pesach in the Diaspora:

http://hebcal.com/hebcal?cfg=json&v=1&maj=on&leyning=off&start=2021-03-29&end=2021-03-29

{
  "title": "Hebcal Diaspora March 2021",
  "date": "2021-02-08T00:07:43.224Z",
  "location": {
    "geo": "none"
  },
  "items": [
    {
      "title": "Pesach II",
      "date": "2021-03-29",
      "category": "holiday",
      "subcat": "major",
      "yomtov": true,
      "hebrew": "פסח יום ב׳",
      "link": "https://www.hebcal.com/holidays/pesach-2021?utm_source=js&utm_medium=api",
      "memo": "Passover, the Feast of Unleavened Bread. Also called Chag HaMatzot (the Festival of Matzah), it commemorates the Exodus and freedom of the Israelites from ancient Egypt"
    }
  ]

And here's an example of non-yomtov - Chol haMoed Sukkot

http://hebcal.com/hebcal?cfg=json&v=1&maj=on&leyning=off&start=2021-09-24&end=2021-09-24

{
  "title": "Hebcal Diaspora September 2021",
  "date": "2021-02-08T00:11:48.425Z",
  "location": {
    "geo": "none"
  },
  "items": [
    {
      "title": "Sukkot IV (CH''M)",
      "date": "2021-09-24",
      "category": "holiday",
      "subcat": "major",
      "hebrew": "סוכות יום ד׳ (חול המועד)",
      "link": "https://www.hebcal.com/holidays/sukkot-2021?utm_source=js&utm_medium=api",
      "memo": "Feast of Booths"
    }
  ]
}

If you pick a day that has no major holidays, you'll get an empty items array:

http://hebcal.com/hebcal?cfg=json&v=1&maj=on&leyning=off&start=2021-06-01&end=2021-06-01

{
  "title": "Hebcal Diaspora 2021",
  "date": "2021-02-08T00:13:45.611Z",
  "location": {
    "geo": "none"
  },
  "items": []
}

0
Completed

multiple (100’s) of the same yahzeit

Marc Weisenfreund 3 years ago updated by Michael J. Radwin 3 years ago 7

On my iPhone, how do I stop having multiple (100’s) of the same yahzeit event listed each anniversary? Is there an update that I can install?

Answer
Michael J. Radwin 3 years ago

Hi, thanks for using Hebcal, and sorry to hear you're having trouble with your yahrzeit calendar on iPhone.

Could you send us the Yahrzeit calendar subscription URL for debugging via private message? We'd love to investigate further on our server-side to see what's causing the problem.


To remove the Yahrzeit calendar completely, you can follow these instructions:

https://www.hebcal.com/home/221/ios-iphone-ipad-delete

0
Answered

Why is Yom Hashoa listed on April 8, i.e. 26th day of Nisan, instead of April 9th?

rabbimyers 3 years ago updated by Michael J. Radwin 3 years ago 3
Answer
Michael J. Radwin 3 years ago

Hebcal is correct.


When the actual date of Yom Hashoah falls on a Friday, the state of Israel observes Yom Hashoah on the preceding Thursday. When it falls on a Sunday, Yom Hashoah is observed on the following Monday. In the United States, Days of Remembrance runs from the Sunday before Yom Hashoah through the following Sunday.


2021 Thursday, April 8


https://www.ushmm.org/remember/days-of-remembrance/resources/calendar