| #2. | Managing the Roster | ||
| 472 | SHOULD | NA | |
| 473 | MUST | NA | |
| 477 | MUST | NA | |
| #2.1.1. | Ver Attribute | ||
| 514 | MUST | DONE | |
| 515 | MUST | DONE | |
| 519 | RECOMMENDED | DONE | |
| #2.1.2.1. | Approved Attribute | ||
| 543 | SHOULD | NA |
| #1.2. | Terminology | ||
| 180 | MUST | NA | |
| 180 | MUST NOT | NA | |
| 180 | REQUIRED | NA | |
| 180 | SHALL | NA | |
| 180 | SHALL NOT | NA | |
| 181 | SHOULD | NA | |
| 181 | SHOULD NOT | NA | |
| 181 | RECOMMENDED | NA | |
| 181 | NOT RECOMMENDED | NA |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defun requirements-goto-field (n) | |
| "go to beginning of nth field" | |
| (beginning-of-line) | |
| (dotimes (i n) | |
| (search-forward "|" (line-end-position) t) | |
| (if (= (point) (line-end-position)) | |
| (return nil)))) | |
| (defun requirements-field-end () | |
| "find end of field" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {-# LANGUAGE EmptyDataDecls #-} | |
| {-# LANGUAGE FlexibleContexts #-} | |
| {-# LANGUAGE GADTs #-} | |
| {-# LANGUAGE NoMonomorphismRestriction #-} | |
| {-# LANGUAGE OverloadedStrings #-} | |
| {-# LANGUAGE QuasiQuotes #-} | |
| {-# LANGUAGE TemplateHaskell #-} | |
| {-# LANGUAGE TypeFamilies #-} | |
| module DBLayout where |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #/bin/sh | |
| DOWNLOAD="wget -c --trust-server-names --max-redirect=3" | |
| if [ ! -d mods ]; then | |
| mkdir mods | |
| fi | |
| cd mods |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defvar module-abbrevs nil) | |
| (setq module-abbrevs '(("Text" | |
| "Data.Text (Text)" | |
| "qualified Data.Text as Text") | |
| ("Encoding" "qualified Data.Text.Encoding as Text") | |
| ("Map" "qualified Data.Map as Map" | |
| "Data.Map (Map)" | |
| ) | |
| ("Set" "Data.Set (Set)" | |
| "qualified Data.Set as Set") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defun haskell-qualify-import-line (&optional no-toggle) | |
| "Toggle \"qualified\" modifier of current import line" | |
| (interactive "P") | |
| (require 'haskell-align-imports) | |
| (save-excursion | |
| (beginning-of-line) | |
| (cond | |
| ((looking-at "import qualified\\([ ]?\\)[ ]*") | |
| (unless no-toggle | |
| (replace-match "import\\1") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defun underscore-to-camelcase () | |
| "Convert underscores to camelCase" | |
| (interactive) | |
| (destructuring-bind (beg . end) (bounds-of-thing-at-point 'word) | |
| (goto-char beg) | |
| (while (re-search-forward "_\\([a-z]\\)" end t) | |
| (replace-match (upcase (match-string 1)))))) | |
| (defun camelcase-to-underscore () | |
| "Convert underscores to camelCase" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"><node name="/"><node name="pontarius/service"><interface name="pontarius.service"><method name="markKeyVerified"><arg name="location" type="s" direction="in"/></method><method name="markKeyVerified"><arg name="key-id" type="s" direction="in"/><arg name="identity" type="s" direction="in"/></method><method name="revokeKey"><arg name="key-id" type="s" direction="in"/><arg name="reason" type="s" direction="in"/></method><method name="initiateChallenge"><arg name="peer" type="s" direction="in"/><arg name="question" type="s" direction="in"/><arg name="secret" type="s" direction="in"/><arg name="challenge_id" type="s" direction="out"/></method><method name="respondChallenge"><arg name="challenge_id" type="s" direction="in"/><arg name="secret" type="s" direction="in"/><arg name="succeeded" type="s" direction="out"/></method><method name="ge |