<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>KosherJava &#187; Hebrew Date</title>
	<atom:link href="http://www.kosherjava.com/tag/hebrew-date/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kosherjava.com</link>
	<description>A weblog about Zmanim, Kosher Coffee (Kosher Java) and other odds &#38; ends</description>
	<lastBuildDate>Fri, 06 Jan 2012 18:28:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Calculating Kiddush Levana Times Using the Zmanim API</title>
		<link>http://www.kosherjava.com/2011/05/20/calculating-kiddush-levana-times/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=calculating-kiddush-levana-times</link>
		<comments>http://www.kosherjava.com/2011/05/20/calculating-kiddush-levana-times/#comments</comments>
		<pubDate>Fri, 20 May 2011 22:43:43 +0000</pubDate>
		<dc:creator>KosherJava</dc:creator>
				<category><![CDATA[Software Dev]]></category>
		<category><![CDATA[Zmanim]]></category>
		<category><![CDATA[Alpha]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Hebrew Date]]></category>
		<category><![CDATA[Jewish Calendar]]></category>
		<category><![CDATA[Jewish date]]></category>
		<category><![CDATA[Kiddush Levana]]></category>
		<category><![CDATA[Molad]]></category>

		<guid isPermaLink="false">http://www.kosherjava.com/?p=978</guid>
		<description><![CDATA[Calculating the earliest and latest times for Kiddush Levana has not been part of the KosherJava Zmanim API until now. This is because unlike other zmanim that solely rely on solar calculations that are tied to the Gregorian calendar, times for Kiddush Levanah depend on the Jewish calendar molad (lunar conjunction) computation. With the recent [...]]]></description>
			<content:encoded><![CDATA[<img class="alignleft" src="/images/moonCrescent3DayLunation.jpg" alt="Moon Crescent 3 Day Lunation"/>Calculating the earliest and latest times for <a href="http://en.wikipedia.org/wiki/Kiddush_levana">Kiddush Levana</a> has not been part of the KosherJava <a href="http://www.kosherjava.com/zmanim-project/">Zmanim API</a> until now. This is because unlike other zmanim that solely rely on solar calculations that are tied to the <a href="http://en.wikipedia.org/wiki/Gregorian_calendar">Gregorian calendar</a>, times for Kiddush Levanah depend on the Jewish calendar <a href="http://en.wikipedia.org/wiki/Molad">molad (lunar conjunction)</a> computation. With the recent addition of Jewish calendar support to the <a href="https://code.google.com/p/kosherjava/">alpha releases</a> of the KosherJava Zmaim API 1.3, molad calculation was added, allowing for calculation of kidush levana times. Times include the earliest time calculated as 3 and 7 days after the molad. Sof zman kidush levanah includes the <a href="http://en.wikipedia.org/wiki/Yaakov_ben_Moshe_Levi_Moelin">Maharil&#8217;s</a> opinion that it is calculated as halfway between molad and molad, and the more lenient full 15 days from the molad mentioned by the <a href="http://en.wikipedia.org/wiki/Yosef_Karo">Mechaber</a> in the <a href="http://en.wikipedia.org/wiki/Shulchan_Aruch">Shulchan Aruch</a>. It should be noted that some opinions hold that the Rema who brings down the opinion of the Maharil&#8217;s of calculating half way between molad and molad is of the opinion that the Mechaber agrees with him. Also see the Aruch Hashulchan. For additional details on the subject, See Rabbi Dovid Heber&#8217;s very detailed writeup in Siman Daled (chapter 4) of  <a href="http://www.worldcat.org/oclc/461326125">Shaarei Zmanim</a>.
<h2>Calculating the Molad</h2>
Kidush levanah times depend on the time of the molad. The time of the molad announced in shuls on <a href="http://en.wikipedia.org/wiki/Shabbat_Mevarchim#Shabbat_Mevarchim">Shabbos Mevarchim</a> is the time of the Molad Emtzai (Average Molad) in Yerushalayim <a href="http://en.wikipedia.org/wiki/Local_mean_time">local mean time</a>. This has to be converted to <a href="http://en.wikipedia.org/wiki/Standard_time">standard time</a>. Standard time uses <a href="http://en.wikipedia.org/wiki/Time_zone">time zones</a> to unify clock times across a large area. With 360&deg; of <a href="http://en.wikipedia.org/wiki/Longitude">longitude</a> around the globe, the world is divided into 24 timezones (one per hour) resulting in timezones that are 15&deg; of longitude each. <a href="http://en.wikipedia.org/wiki/Temple_Mount">Har Habayis</a> with a longitude of <a href="http://www.kosherjava.com/maps/zmanim.html?lat=31.778&#038;lng=35.2354&#038;zoom=18&#038;type=h">35.2354&deg;</a> is 5.2354&deg; away from the 30&deg; longitude line. Multiply the 5.235&deg; by 4 minutes per degree (15&deg; of longitude per hour) to reach 20.94 minutes, or 20 minutes and 56.496 seconds (5.235 * 4 = 20.94). This time is subtracted from the local molad time to arrive at Standard time. Since the time of the molad is at the same instant globally (unlike zmanim such as sunrise that depend on a person&#8217;s location), converting this to a user&#8217;s local time involves simply calculating the time difference between the time in Yerushalayim and your location. If daylight savings time is in use, this has to be added to the calculation. Java <a href="">date formatting classes</a> do this calculation on <a href="http://download.oracle.com/javase/7/docs/api/java/util/Date.html">Date objects</a> without forcing the developer to do any calculations.

<h2>Calculating the Start and End of Kiddush Levana Times</h2>
The <a href="http://www.kosherjava.com/zmanim/docs/api/net/sourceforge/zmanim/hebrewcalendar/JewishCalendar.html">JewishCalendar</a> class contains the methods for claculating these zmanim. Calculating Tchilas Zman Kiddush Levana (the earliest time Kiddush Levana can be said) is done by <a href="http://www.kosherjava.com/zmanim/docs/api/net/sourceforge/zmanim/hebrewcalendar/JewishCalendar.html#getTchilasZmanKidushLevanah3Days%28int,%20int%29">adding 3 days</a> or <a href="http://www.kosherjava.com/zmanim/docs/api/net/sourceforge/zmanim/hebrewcalendar/JewishCalendar.html#getTchilasZmanKidushLevanah7Days%28int,%20int%29">7 days</a> to the <a href="http://www.kosherjava.com/zmanim/docs/api/net/sourceforge/zmanim/hebrewcalendar/JewishCalendar.html#getMoladAsDate%28int,%20int%29">molad time</a>. Sof Zman Kiddush Levana (the latest time Kiddush Levana can be said) is either the <a href="http://www.kosherjava.com/zmanim/docs/api/net/sourceforge/zmanim/hebrewcalendar/JewishCalendar.html#getSofZmanKidushLevanahBetweenMoldos%28int,%20int%29">time between molad and molad</a> calculated by adding 14 days, 18 hours, 22 minutes and 1.666 seconds to the molad (half the 29 days, 12 hours, 44 minutes and 1 chelek (3.333 seconds)), or by <a href="http://www.kosherjava.com/zmanim/docs/api/net/sourceforge/zmanim/hebrewcalendar/JewishCalendar.html#getSofZmanKidushLevanah15Days%28int,%20int%29">adding 15 days to the molad</a>.

<h2>Using the Zmanim API Calculate Molad Based Times</h2>
Here is sample code for calculating various kiddush levana times for anywhere in the world for Shevat 5729 (1969). Since formatting classes requires a timezone for proper formatting, the simple code below assumes that you are looking for the time in your local timezone. If you want the time for a timezone other than the one your computer is in, set the SimpleDateFormat.setTimeZone() to the timezone you wish to display the times for.
<pre class="brush: java; title: ; notranslate">
int year = 5729;
int month = JewishDate.SHEVAT;
Date tchilas3Days = JewishCalendar.getTchilasZmanKidushLevanah3Days(year, month);
Date tchilas7Days = JewishCalendar.getTchilasZmanKidushLevanah7Days(year, month);
Date sofZmanBetweenMoldos = JewishCalendar.getSofZmanKidushLevanahBetweenMoldos(year, month);
Date sofZmanKidushLevanah15Days = JewishCalendar.getSofZmanKidushLevanah15Days(year, month);
SimpleDateFormat sdf = new SimpleDateFormat(&quot;MMM dd, yyyy 'at' HH:mm:ss z&quot;);
System.out.println(&quot;Tchilas Zman Kiddush Levana 3 Days: &quot; + sdf.format(tchilas3Days));
System.out.println(&quot;Tchilas Zman Kiddush Levana 7 Days: &quot; + sdf.format(tchilas7Days));
System.out.println(&quot;Sof Zman Kiddush Levana Between Moldos: &quot; + sdf.format(sofZmanBetweenMoldos));
System.out.println(&quot;Sof Zman Kiddush Levana 15 Days: &quot; + sdf.format(sofZmanKidushLevanah15Days));
</pre>

this will output the following in an EST timezone.
<pre class="brush: plain; title: ; notranslate">
Tchilas Zman Kiddush Levana 3 Days: Jan 21, 1969 at 06:06:29 EST
Tchilas Zman Kiddush Levana 7 Days: Jan 25, 1969 at 06:06:29 EST
Sof Zman Kiddush Levana Between Moldos: Feb 02, 1969 at 00:28:31 EST
Sof Zman Kiddush Levana 15 Days: Feb 02, 1969 at 06:06:29 EST
</pre>

<h2>Kiddush Levana Times During Daylight Hours</h2>
As you can see, all of these times are at night (After tzais 72 and prior to Alos 72 minutes in Montreal). Many times, these calculations will result in times that are during daylight hours when Kidush Levana can&#8217;t be said. When using the API and calculating the time for the tchilas zman kiddush levana and the time is during daylight hours, the earliest time should be tzais the following night. When the calculated time of sof zman kiddush levana is during daylight hours, the time posted should be alos on the previous night. The API may at some point support a method of automatically calculating this.]]></content:encoded>
			<wfw:commentRss>http://www.kosherjava.com/2011/05/20/calculating-kiddush-levana-times/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FAQ: How do I Calculate the Jewish/Hebrew Date for &#8230;?</title>
		<link>http://www.kosherjava.com/2011/02/23/faq-how-do-i-calculate-the-jewish-hebrew-date-for/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=faq-how-do-i-calculate-the-jewish-hebrew-date-for</link>
		<comments>http://www.kosherjava.com/2011/02/23/faq-how-do-i-calculate-the-jewish-hebrew-date-for/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 05:14:16 +0000</pubDate>
		<dc:creator>KosherJava</dc:creator>
				<category><![CDATA[Software Dev]]></category>
		<category><![CDATA[Zmanim]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[FAQ]]></category>
		<category><![CDATA[Hebrew Date]]></category>
		<category><![CDATA[Jewish Calendar]]></category>
		<category><![CDATA[Jewish date]]></category>
		<category><![CDATA[Zmanim Accuracy]]></category>

		<guid isPermaLink="false">http://www.kosherjava.com/?p=266</guid>
		<description><![CDATA[Question:How do I get the Jewish Date for &#8230; using the Zmanim API? Answer:The current version of the Zanim API does not support Jewish calendrical calculations. Zmanim are almost exclusively based on the solar calendar, so for example, the sunrise on February 8th this year in Montreal (or any other date and location), will be [...]]]></description>
			<content:encoded><![CDATA[<img class="alignleft" src="/images/calendarJava.png" alt="Java Calendar"/><h2>Question:</h2>How do I get the Jewish Date for &#8230; using the <a href="http://www.kosherjava.com/zmanim-project/">Zmanim API</a>?
<h2>Answer:</h2>The <a href="http://www.kosherjava.com/zmanim-project/downloads/">current version</a> of the Zanim API does not support <a href="http://en.wikipedia.org/wiki/Hebrew_calendar">Jewish calendrical</a> calculations. Zmanim are almost exclusively based on the <a href="http://en.wikipedia.org/wiki/Solar_calendar">solar calendar</a>, so for example, the sunrise on February 8th this year in <a href="http://en.wikipedia.org/wiki/Montreal">Montreal</a> (or any other date and location), will be almost the same every year. for this reason there was little point (as far as zmanim) to support Jewish date calculations in the API.  One of the only zmanim to rely on a Jewish date is the sof zman <a href="http://en.wikipedia.org/wiki/Kiddush_Levana">kidush levanah</a> calculation, though there are some opinions that it is purely <a href="http://en.wikipedia.org/wiki/Molad">molad</a> based, and this can be calculated without a Jewish calendar component to the API. This zman is obviously not currently implemented in the Zmanim API. I am currently working on adding Jewish date support to the API. The code is based off <a href="http://www.facebook.com/avromf">Avrom Finkelstein</a>&#8216;s no longer active <a href="http://web.archive.org/web/20061207174551/http://www.bayt.org/calendar/hebdate.html">HebrewDate project</a>. I refactored a lot of the code and fixed a number of bugs. Anyone interested in alpha testing this code can download the <a href="https://code.google.com/p/kosherjava/">latest Zmanim SVN code</a> (or download the <a href="http://kosherjava.googlecode.com/files/zmanim-1.3.0alpha3.zip">Zmanim API 1.3.0 alpha </a> release).
I mentioned that it &#8220;will be almost the same every year&#8221; and this is due the the approximate 1/4 day drift between the 356 day calendar year and the approximately 365.25 days actually present in the <a href="http://en.wikipedia.org/wiki/Astronomical_year">astronomical year</a>, a discrepancy corrected every <a href="http://en.wikipedia.org/wiki/Leap_year">leap year</a>. A future FAQ (probably a few of them) may delve specifically into this drift as well as general zmanim accuracy issues in detail. 
If you are simply looking to convert a Hebrew date to Gregorian or Gregorian to Hebrew online without the API, try the <a href="http://www.jewishgen.org">JewishGen</a> <a href="http://www.jewishgen.org/JOS/josdates.htm">calendar conversion tools</a>.]]></content:encoded>
			<wfw:commentRss>http://www.kosherjava.com/2011/02/23/faq-how-do-i-calculate-the-jewish-hebrew-date-for/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>New release of the Hebrew Date Plugin for WordPress</title>
		<link>http://www.kosherjava.com/2010/07/04/new-release-of-the-hebrew-date-plugin-for-wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-release-of-the-hebrew-date-plugin-for-wordpress</link>
		<comments>http://www.kosherjava.com/2010/07/04/new-release-of-the-hebrew-date-plugin-for-wordpress/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 19:55:55 +0000</pubDate>
		<dc:creator>KosherJava</dc:creator>
				<category><![CDATA[Software Dev]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Hebrew Date]]></category>
		<category><![CDATA[WordPress Plugin]]></category>

		<guid isPermaLink="false">http://www.kosherjava.com/?p=722</guid>
		<description><![CDATA[Mike who took over development of the WordPress Hebrew Date plugin in 2006, released a new version of the plugin. The WordPress Hebrew Date plugin is now hosted at the WordPress plugin repository. This should make it easier for people to find and update the plugin. New in this version is support for the WordPress [...]]]></description>
			<content:encoded><![CDATA[<img class="alignleft" src="/images/WPMug.png" alt="WordPress Mug"/><a href="http://mikeage.net/">Mike</a> who <a href="http://www.kosherjava.com/2006/11/05/hebrew-date-plugin-has-a-new-home/">took over development</a> of the WordPress <a href="http://www.kosherjava.com/wordpress/hebrew-date-plugin/">Hebrew Date  plugin</a> in 2006, released a new version of the plugin. The <a href="http://wordpress.org/extend/plugins/hebrewdates/">WordPress Hebrew Date plugin</a> is now hosted at the <a href="http://wordpress.org/extend/plugins/">WordPress plugin repository</a>. This should make it easier for people to find and update the plugin. New in this version is support for the WordPress 3.0 default theme, a general rewrite, and expansion of the API calls intercepted by the plugin. See the <a href="http://wordpress.org/extend/plugins/hebrewdates/changelog/">changelog page</a> for a more detailed list of all the changes. Please <a href="http://mikeage.net/personal/contact-information/"> contact Mike</a> with any suggestions, comments or bugs.]]></content:encoded>
			<wfw:commentRss>http://www.kosherjava.com/2010/07/04/new-release-of-the-hebrew-date-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ZmanimPlasma (Linux) Released</title>
		<link>http://www.kosherjava.com/2010/04/12/zmanimplasma-linux-released/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=zmanimplasma-linux-released</link>
		<comments>http://www.kosherjava.com/2010/04/12/zmanimplasma-linux-released/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 03:52:15 +0000</pubDate>
		<dc:creator>KosherJava</dc:creator>
				<category><![CDATA[Software Dev]]></category>
		<category><![CDATA[Zmanim]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[Hebrew Date]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.kosherjava.com/?p=524</guid>
		<description><![CDATA[Moshe Wagner recently released ZmanimPlasma for the Linux platform. This KDE Plasma desktop widget displays the Hebrew date and zmanim on a Linux desktop. The zmanim calculations use Moshe&#8217;s C++ port Zmanim CLI wrapper that enables a C++ program to call the Java Zmanim API. There are no current plans to make this widget available [...]]]></description>
			<content:encoded><![CDATA[<img class="alignleft" src="/images/ZmanimPlasma.png" alt="ZmanimPlasma" title="ZmanimPlasma" /><a href="http://dosilinux.wordpress.com/">Moshe Wagner</a> recently released <a href="http://dosilinux.wordpress.com/2010/03/28/zmanimplasma/">ZmanimPlasma</a>  for the Linux platform. This <a href="http://en.wikipedia.org/wiki/KDE">KDE</a> <a href="http://en.wikipedia.org/wiki/Plasma_%28KDE%29">Plasma</a>  desktop widget displays the Hebrew date and zmanim on a Linux desktop. The zmanim calculations use Moshe&#8217;s <span style="text-decoration: line-through;">C++ port</span> <a href="http://www.kosherjava.com/2009/11/21/zmanimcli-command-line-interface/">Zmanim CLI</a> wrapper that enables a C++ program to call the Java <a href="http://www.kosherjava.com/zmanim-project/">Zmanim API</a>. There are no current plans to make this widget available on any other platform. It can be downloaded from the <a href="http://code.google.com/p/luach/downloads/list">Luach project download page</a>. Moshe has in the past used the Zmanim API for use in Linux and some cross platform projects. These include the above mentioned Zmanim CLI, and <a href="http://www.kosherjava.com/2009/03/14/zmanim-gui-released/">Zmanim GUI</a> that uses the ZmanimCLI.

<span style="font-weight:bold;">Updated on 4/13/2010</span> to reflect information from Moshe explaining that this was not a <a href="http://en.wikipedia.org/wiki/Porting">port</a>]]></content:encoded>
			<wfw:commentRss>http://www.kosherjava.com/2010/04/12/zmanimplasma-linux-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ZmanimCLI (Command Line Interface)</title>
		<link>http://www.kosherjava.com/2009/11/21/zmanimcli-command-line-interface/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=zmanimcli-command-line-interface</link>
		<comments>http://www.kosherjava.com/2009/11/21/zmanimcli-command-line-interface/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 04:52:50 +0000</pubDate>
		<dc:creator>KosherJava</dc:creator>
				<category><![CDATA[Software Dev]]></category>
		<category><![CDATA[Zmanim]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Cross Platform]]></category>
		<category><![CDATA[Hebrew Date]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.kosherjava.com/?p=241</guid>
		<description><![CDATA[Moshe Wagner who wrote the Zmanim GUI notified me in August that that he created a command line interface for zmanim using my Zmanim API. The technical approach of using reflection was similar to the way I used reflection in the Zmanim Clock Applet, but he took it to new heights. Sample use of accessing [...]]]></description>
			<content:encoded><![CDATA[Moshe Wagner who wrote the <a href="http://www.kosherjava.com/2009/03/14/zmanim-gui-released/">Zmanim GUI</a> notified me in August that that he created a <a href="http://en.wikipedia.org/wiki/Command-line_interface">command line interface</a> for zmanim using my <a href="http://www.kosherjava.com/zmanim-project/">Zmanim API</a>. The technical approach of using reflection was similar to the way I used reflection in the <a href="http://www.kosherjava.com/zmanim-project/zmanim-clock-applet/">Zmanim Clock Applet</a>, but he took it to new heights. Sample use of accessing zmanim using his CLI interface is:

<pre class="brush: plain; title: ; notranslate">moshe@debian:~/Desktop$ java -jar ZmanimCLI.jar sunrise
6:10:28</pre>

<pre class="brush: plain; title: ; notranslate">moshe@debian:~/Desktop$ java -jar ZmanimCLI.jar --date 2010/08/12 tzais72
20:38:15</pre>

<pre class="brush: plain; title: ; notranslate">moshe@debian:~/Desktop$ java -jar ZmanimCLI.jar
Usage: ZmanimCLI [options] [Time]

Options:
       -d      --date &lt;yyyy/mm/dd&gt;             Set date. (Year first!)
       -lat    --latitude &lt;latitude&gt;           Set location's latitude
       -lon    --longitude &lt;longitude&gt;         Set location's longitude
       -e      --elevation &lt;elevation&gt;         Set location's
elevation; Positive only
       -tz     --timezone &lt;timezone&gt;           Set location's TimeZone

Help:
       -h      --help                          Show this help
       -stl    --time-list                     Show common available
times to display
       -ftl    --full-time-list                Show all available
times to display
       -tzl    --timezone-list                 Show available timezones

Example:
       ZmanimCLI --latitude 31.7780 --longitude 35.235149 --elevation
600 --timezone Israel Sunrise
       Will show the sunrise time today in Jerusalem</pre>

While your first reaction may be that it is interesting in a theoretical geeky way, but has no practical value, I will quote Moshe&#8217;s explanation as to why it is useful:

<blockquote>Why is this useful?
Well, first of all it was a nice experiment. But mainly, you can now use Zmanim (although externally), via any language you want, no longer being tied to Java.</blockquote>

Months later, Moshe actually put this to practical use in his C++ based <a href="http://code.google.com/p/luach/">Luach</a> project. This Luach (similar to the known <a href="http://www.kaluach.com/">Kaluach</a>) uses the <a href="http://en.wikipedia.org/wiki/Qt_%28toolkit%29">Qt</a> framework. utilizing <a href="http://libhdate.sourceforge.net">libhdate</a> for the date stuff (something not offered by the Zmanim API, and the topic of a future <a href="http://www.kosherjava.com/tag/faq/">Zmanim API FAQ</a>), displaying zmanim using the Zmanim API via CLI for the zmanim calculations. While you would expect such an approach to be slow, using the Luach seemed almost instantaneous. I will post more about his Luach program (recently reviewed at <a href="http://kosherdev.com">KosherDev.com</a>) at some point in the future.]]></content:encoded>
			<wfw:commentRss>http://www.kosherjava.com/2009/11/21/zmanimcli-command-line-interface/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordPress Hebrew Date Plugin Has a New Home</title>
		<link>http://www.kosherjava.com/2006/11/05/hebrew-date-plugin-has-a-new-home/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hebrew-date-plugin-has-a-new-home</link>
		<comments>http://www.kosherjava.com/2006/11/05/hebrew-date-plugin-has-a-new-home/#comments</comments>
		<pubDate>Mon, 06 Nov 2006 01:51:34 +0000</pubDate>
		<dc:creator>KosherJava</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[Software Dev]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Hebrew Date]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.kosherjava.com/2006/11/05/hebrew-date-plugin-has-a-new-home/</guid>
		<description><![CDATA[The Hebrew date Plugin has not been in active development for a while, and I am pleased to announce that it now has a new home at mikeage.net. Mike added a config page as well as a few new options. The plugin can be downloaded from the WordPress Hebrew dates Plugin Page. As a backup, [...]]]></description>
			<content:encoded><![CDATA[<img class="alignleft" src="/images/WPMug.png" alt="WordPress Mug"/>The Hebrew date Plugin has not been in active development for a while, and I am pleased to announce that it now has a new home at <a href="http://mikeage.net">mikeage.net</a>. Mike added a config page as well as a few new options. The plugin can be downloaded from the <a href="http://wordpress.org/extend/plugins/hebrewdates/">WordPress Hebrew dates Plugin Page</a>. <span style="text-decoration: line-through">As a backup, you can also download it from <a href="http://mikeage.net/content/wordpress/wp-content/plugins/hebrewdate.phps">Mike&#8217;s Site</a> (<a href="http://mikeage.net/content/files/hebrewdate-2.0.0.zip">zip</a></span>). In addition to Mike&#8217;s work,  <a href="http://jacobfresco.nl/">Jacob Fresco</a> has used the code to create an additional <a href="http://www.smauce.nl/wordpress-stuff/jewishdate/">Jewish Date</a> plugin that displays the current Jewish date. This plugin has since been merged to Mike&#8217;s version.
Read the following posts at Mike&#8217;s site for more details
<ul>
<li><a href="http://mikeage.net/content/software/hebrew-dates-in-wordpress/">Hebrew Dates in WordPress</a>
	</li><li><a href="http://mikeage.net/2006/10/22/wordpress-and-hebrew-dates/">WordPress and Hebrew Dates</a></li>
	<li><a href="http://mikeage.net/2006/10/23/more-hebrew-dates-updates/">More Hebrew Dates Updates</a></li>
	<li><a href="http://mikeage.net/2006/10/23/even-more-changes-to-hebrew-dates/">Even more changes to Hebrew Dates!</a></li>
	<li><a href="http://mikeage.net/2006/11/02/hebrew-date-100-released/">Hebrew Date 1.0.0 Released</a></li>
	<li><a href="http://mikeage.net/2006/11/05/hebrew-date-v101/">Hebrew Date v1.0.1</a></li>
	<li><a href="http://mikeage.net/2007/02/13/small-fix-to-hebrewdate-plugin/">Small Fix to HebrewDate plugin</a></li>
	<li><a href="http://mikeage.net/2007/02/14/hebrew-dates-v103/">Hebrew Dates v1.0.3</a></li>
	<li><a href="http://mikeage.net/2010/06/23/hebrewdates-fix-for-wordpass-3-0/">HebrewDates fix for WordPress 3.0 (2010 theme)</a></li>
	<li><a href="http://mikeage.net/2010/06/24/new-hebrew-dates-2-0-released/">New Hebrew Dates (2.0) released!</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.kosherjava.com/2006/11/05/hebrew-date-plugin-has-a-new-home/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Hebrew Year Conversion</title>
		<link>http://www.kosherjava.com/2005/07/12/hebrew-year-conversion/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hebrew-year-conversion</link>
		<comments>http://www.kosherjava.com/2005/07/12/hebrew-year-conversion/#comments</comments>
		<pubDate>Wed, 13 Jul 2005 02:19:47 +0000</pubDate>
		<dc:creator>KosherJava</dc:creator>
				<category><![CDATA[Software Dev]]></category>
		<category><![CDATA[Zmanim]]></category>
		<category><![CDATA[Hebrew Date]]></category>

		<guid isPermaLink="false">http://www.kosherjava.com/2005/07/12/hebrew-year-conversion/</guid>
		<description><![CDATA[There was a request on the <a href=" http://www.geocities.com/Athens/1584/luachmail.html#028">Correspondence page</a> of Remy Landau's <a href="http://www.geocities.com/Athens/1584/">Hebrew Calendar Science and Myths</a> site for a utility that generated "Hebrew Year Number Transliteration". Since I had already developed the code as part of <a href="http://phpgedview.sourceforge.net/">PhpGedView</a> and the <a href="/wordpress/hebrew-date-plugin/">hebrew date plugin</a>, I just ported it to JavaScript as a demo.
<br />
<script type="text/javascript" src="/js/hebrewYear.js"></script>
<br />
<form>
<table>
<tr>
<td>
Year: <input type="text" name="year" size="4" value="5765" />
</td>
<td>
Include Thousands <input type="checkbox" name="thousands" />
</td>
<td>
<span id="hebDate" lang="he-IL" dir="rtl" style="text-align: left; border-style: solid; border-width:1px; padding: 3px;">תשס"ה</span><span>
</span></td>
</tr>
</table>
<input type="button" value="Convert to Hebrew" onclick="document.getElementById('hebDate').innerHTML= getHebrewJewishYear(document.forms[0].year.value, document.forms[0].thousands.checked);" />
</form>]]></description>
			<content:encoded><![CDATA[There was a request on the <a href=" http://www.geocities.com/Athens/1584/luachmail.html#028">Correspondence page</a> of Remy Landau&#8217;s <a href="http://www.geocities.com/Athens/1584/">Hebrew Calendar Science and Myths</a> site for a utility that generated &#8220;Hebrew Year Number Transliteration&#8221;. Since I had already developed the code as part of <a href="http://phpgedview.sourceforge.net/">PhpGedView</a> and the <a href="http://www.kosherjava.com/wordpress/hebrew-date-plugin/">hebrew date plugin</a>, I just ported it to JavaScript as a demo.
<br />
<script type="text/javascript" src="/js/hebrewYear.js"></script>
<br />
<form>
<table class="borderless" style="width: 300px">
<tr><td>Year: <input type="text" name="year" size="4" value="5767" /></td><td>Include Thousands <input type="checkbox" name="thousands" /></td><td><span id="hebDate" lang="he-IL" dir="rtl" style="text-align: left; border-style: solid; border-width:1px; padding: 3px;">תשס&#8221;ז</span></td>
</tr></table>
<input type="button" value="Convert to Hebrew" onclick="document.getElementById('hebDate').innerHTML= getHebrewJewishYear(document.forms[0].year.value, document.forms[0].thousands.checked);" />
</form>]]></content:encoded>
			<wfw:commentRss>http://www.kosherjava.com/2005/07/12/hebrew-year-conversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Version of the Hebrew Date Plugin Available</title>
		<link>http://www.kosherjava.com/2005/06/26/new-version-of-the-hebrew-date-plugin-available/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-version-of-the-hebrew-date-plugin-available</link>
		<comments>http://www.kosherjava.com/2005/06/26/new-version-of-the-hebrew-date-plugin-available/#comments</comments>
		<pubDate>Sun, 26 Jun 2005 20:42:49 +0000</pubDate>
		<dc:creator>KosherJava</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Hebrew Date]]></category>
		<category><![CDATA[WordPress Plugin]]></category>

		<guid isPermaLink="false">http://www.kosherjava.com/2005/06/26/new-version-of-the-hebrew-date-plugin-available/</guid>
		<description><![CDATA[A new version (v0.3.0) of the Hebrew Date Plugin is now available. This fixes the post time formatting issue. The code is crude and relies on the detection of a &#8216;:&#8217; in the Date String to determine that it is a time and not date. This works well with the default WordPress 1.5 theme (Kubrick). [...]]]></description>
			<content:encoded><![CDATA[<img class="alignleft" src="/images/WPMug.png" alt="WordPress Mug"/>A new version (v0.3.0) of the Hebrew Date Plugin is now <a href="http://www.kosherjava.com/files/hebrewdate/hebrewdate.zip">available</a>. This fixes the post time formatting issue.  The code is crude and relies on the detection of a &#8216;:&#8217; in the Date String to determine that it is a time and not date. This works well with the default WordPress 1.5 theme (Kubrick). Other themes that use alternate date formatting might not work perfectly with this plugin. It is worth noting that as far as I know, this plugin will only work with WP 1.5. The plugin does not require changes to the theme, and can simply be activated from the Admin plugin screen.]]></content:encoded>
			<wfw:commentRss>http://www.kosherjava.com/2005/06/26/new-version-of-the-hebrew-date-plugin-available/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordPress Hebrew Date Plugin Alpha Release</title>
		<link>http://www.kosherjava.com/2005/06/26/wordpress-hebrew-date-plugin-alpha-release/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-hebrew-date-plugin-alpha-release</link>
		<comments>http://www.kosherjava.com/2005/06/26/wordpress-hebrew-date-plugin-alpha-release/#comments</comments>
		<pubDate>Sun, 26 Jun 2005 06:43:46 +0000</pubDate>
		<dc:creator>KosherJava</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Hebrew Date]]></category>
		<category><![CDATA[WordPress Plugin]]></category>

		<guid isPermaLink="false">http://www.kosherjava.com/2005/06/26/wordpress-hebrew-date-plugin-alpha-release/</guid>
		<description><![CDATA[I just hacked a simple plugin that displays Hebrew dates alongside the current Gregorian dates on posts. This is now active on this site. The alpha quality code (v0.2.0) is now available for your testing. For the most part the code is almost identical to the PHP code that I wrote to display Jewish dates [...]]]></description>
			<content:encoded><![CDATA[<img class="alignleft" src="/images/WPMug.png" alt="WordPress Mug"/>I just hacked a simple plugin that displays Hebrew dates  alongside the current Gregorian dates on posts. This is now active on this site. The alpha quality code (v0.2.0) is now <a href="http://www.kosherjava.com/files/hebrewdate/hebrewdate.zip">available</a> for your testing. For the most part the code is almost identical to the PHP code that I wrote to display Jewish dates in  <a href="http://phpgedview.net/">PhpGedView</a>. While the PhpGedView code has various display options, for the sake of simplicity and the fact that I never wrote any WordPress plugins before, I did not code any of these options yet. Also not done is parsing of the &#8220;Month, Year&#8221; format of the archive pages. The PhpGedView code has many options such as displaying the dates in 
<ul>
<li>Hebrew Only &#8211; <span lang="he-IL" dir="rtl">&#1497;&quot;&#1494; &#1505;&#1497;&#1493;&#1503; &#1514;&#1513;&#1505;&quot;&#1492;</span></li> <li>Hebrew and Gregorian &#8211; June 24th, 2005 &#8211; <span lang="he-IL" dir="rtl">&#1497;&quot;&#1494; &#1505;&#1497;&#1493;&#1503; &#1514;&#1513;&#1505;&quot;&#1492;</span></li>
<li>Hebrew using the Latin characters &#8211; 17 Sivan 5765</li>
</ul>
 and more. These may eventually be added to the plugin.]]></content:encoded>
			<wfw:commentRss>http://www.kosherjava.com/2005/06/26/wordpress-hebrew-date-plugin-alpha-release/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

