-
Even more changes to Hebrew Dates!
Latest changes: Lots of code cleanup. Easier to add languages (I’d like to add an academic spelling as well) Support for full names (Marcheshvan, Menachem Av) XHTML 1.1 compliant! (span rtl) Screenshot of the current configuration page:
-
More Hebrew Dates Updates
I’ve added a few more things to the Hebrew Dates plugin patches I mentioned earlier: Configuration screen shows when an update was performed, option of showing Hebrew (or transliterated) only, Gregorian – Hebrew, or Hebrew – Gregorian, and some general code cleanup …
-
WordPress and Hebrew Dates
I’ve modified the Hebrew Dates plugin from KosherJava slightly, so that all configuration data is now stored in the database (not hard coded into the PHP file). Additionally, it can now compute the dates of posts or comments based on local sunset time. That way, comments made in the evening will be assigned the the […]
-
Block spam harvesters
On my site, I have a few “special” pages who’s only purpose is to ban bots that ignore robots.txt (or worse, use it as a hint for where “the good stuff” is!). Here’s how I do that:
-
Dividing Integers (& Casting Precedance)
Quiz: What does the following code print: int i,j; float k; i = 5; j = 2; k = i/j; printf(“%f\n”,k);