Skip to content

Instantly share code, notes, and snippets.

@imReker
imReker / com.apple.HeartRate.notifications.plist
Last active April 10, 2024 21:48
plist for Apple Watch to Enable ECG v2 and Atrial Fibrillation(IRNF)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>EnableCardioFitnessNotifications</key>
<true/>
<key>EnableStationaryDiscordanceDetection</key>
<true/>
<key>EnableAtrialFibrillationDetection</key>
<true/>
@PurpleBooth
PurpleBooth / README-Template.md
Last active July 3, 2024 16:25
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@shuGH
shuGH / Lyrics Utility
Last active August 29, 2015 14:04
Script to add lyrics tag from text file in directories
# coding: utf-8
# --------------------------------------------------------------------------------
# 音楽ファイルのタグ情報を元にテキスト形式の歌詞ファイルを検索し歌詞を書き込む
# --------------------------------------------------------------------------------
# targets 対象の音楽ファイルorフォルダ(可変長)
# -d --dir 歌詞フォルダ(def:カレント以下)
# -l --matchlevel 文字列一致判定の類似度のレベル(1..3=def)
# -a --ischeckartist アーティストとフォルダ名の一致判定を行うか(def:False)
# -n --isnormalize 歌手表示を規格化するか(def:False)
@antonijn
antonijn / c.ebnf
Last active November 16, 2015 01:48
The C language in a nutshell. Any questions?
element = declaration | "typedef", declaration | implementation
declaration = pending type, finisher, { ",", finisher }, ";"
implementation = pending type, finisher, "(", param list, ")", scope
pending type = primitive | structure | enumeration | defined type
finisher = ["*", finisher | "(", finisher, ")", "(", param list, ")" | identifier]
param list = ["void" | parameter, { ",", parameter }]
parameter = pending type, finisher
primitive = integer | floating
integer =