Skip to content

Instantly share code, notes, and snippets.

View mjradwin's full-sized avatar

Michael J. Radwin mjradwin

View GitHub Profile
@mjradwin
mjradwin / index.html
Last active October 5, 2023 04:32
Hebcal FullCalendar client-side. Uses the Hebcal JS API to determine holidays and candle-lighting times
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Jewish Calendar</title>
<style>
html,
body {
margin: 0;
@mjradwin
mjradwin / hebcal-omer.html
Last active April 24, 2023 15:56
Displaying today's omer count
<div id="hebcal-omer"></div>
<script defer>
function pad2(number) {
if (number < 10) {
return '0' + number;
}
return '' + number;
}
let dt = new Date();
if (dt.getHours() > 19) {
@mjradwin
mjradwin / hebcal-fullcalendar-function.html
Last active September 26, 2023 15:02
Hebcal + FullCalendar with a function to modify JSON event feed
<!DOCTYPE html>
<html lang="en">
<head>
<title>Jewish Calendar</title>
<style>
html, body {
font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
font-size: 14px;
}
</style>
#cloud-config
package_upgrade: true
packages:
- strongswan
- strongswan-plugin-eap-mschapv2
- moreutils
- iptables-persistent
- unattended-upgrades
@mjradwin
mjradwin / calibre-news-email.sh
Created December 5, 2016 04:47
calibre-news-email.sh
#!/bin/sh
RECIPE="$1"
OUTFILE=`mktemp /tmp/news.XXXXXXXXXX.mobi`
ADDRESS="example_1234567@kindle.com"
# uses heirloom-mailx on Ubuntu which supports -a for attachments
/opt/calibre/ebook-convert \
"$RECIPE.recipe" $OUTFILE --output-profile kindle && \
@mjradwin
mjradwin / index.html
Last active August 27, 2021 21:46
Hebcal Shabbat API with AJAX
<!DOCTYPE html>
<html><head>
<meta charset="UTF-8">
<title>Example</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="results"></div>
<script>
document.addEventListener('DOMContentLoaded', function() {
# Example YAML to get you started quickly.
# Be aware that YAML has indentation based scoping.
# Code completion support is available so start typing for available options.
swagger: '2.0'
# This is your document metadata
info:
version: "1.0.0"
title: Hebcal API
description: Jewish Calendar, Hebrew Date Converter, Holidays
@mjradwin
mjradwin / hebcal-shabbat-style.css
Last active October 25, 2015 20:59
Hebcal example of how to style Shabbat Times
.hebcal-container {
font-family: "Gill Sans MT","Gill Sans",GillSans,Arial,Helvetica,sans-serif;
font-size: small;
}
.hebcal-container h3 {
font-family: Georgia,Palatino,"Times New Roman",Times,serif;
}
ul.hebcal-results { list-style-type:none }
ul.hebcal-results li {
margin-bottom: 11px;
@mjradwin
mjradwin / winsorize-apache-spark.scala
Last active August 29, 2015 14:24
Winsorize an RDD of Doubles for Apache Spark
import org.apache.spark.rdd.RDD
def winsorize(data: RDD[Double], limits:(Double,Double)): RDD[Double] = {
val r = data.sortBy(x => x)
val c = r.count()
if (c <= 2) r
else {
val n0 = limits._1 * (c + 1d)
val n1 = limits._2 * (c + 1d)
val k0 = n0.toLong
@mjradwin
mjradwin / hebcal-shabbat-api.json
Last active July 24, 2020 18:45
Hebcal Shabbat REST API
{
"title":"São Paulo, Brazil",
"date":"2015-02-20T19:37:54-00:00",
"link":"https://www.hebcal.com/shabbat?geonameid=3448439;m=50;c=on;maj=on;nx=on;geo=geoname",
"location":{
"city":"São Paulo",
"longitude":-46.63611,
"title":"São Paulo, Brazil",
"geonameid":3448439,
"tzid":"America/Sao_Paulo",