Name | Points | Grade | wc | id |
---|---|---|---|---|
Smith, Joan | 10 | A | Smith_Joan | |
Smith, John | 7 | B | Smith_Johan |
This file contains 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
@namespace xul url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
@-moz-document url("chrome://browser/content/browser.xul") { | |
/* Windows users might also want to consider setting | |
* browser.tabs.drawInTitlebar to false in about:config | |
*/ | |
#TabsToolbar { | |
visibility: collapse !important; | |
} |
This file contains 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
// USAGE: | |
// 1. Save the zotero report and open it in your web browser. | |
// 2. Open the browser’s web console | |
// (in Firefox: Menu>Web Developer>Web console (or CTRL+SHIFT+K)) | |
// (in Chrome: Menu>More Tools>Developer tools) | |
// 3. Customize the lists below by commenting out fields you want to keep | |
// 4. Copy and paste the code into the web console and run it. | |
// 5. Your report should be cleaned up and ready to print etc. | |
// ALTERNATIVE USAGE (bookmarklet): |
This file contains 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
;;; emacs-zotero-bib-fetch.el --- Manage Zotero collections from emacs | |
;; | |
;; Filename: emacs-zotero-bib-fetch.el | |
;; Author: Anders Johansson, based on zotelo by Spinu Vitalie | |
;; Maintainer: Anders Johansson | |
;; Copyright (C) 2011-2014, Anders Johansson and Spinu Vitalie | |
;; Created: 1 Jul 2014 | |
;; Version: 1.2 | |
;; URL: https://github.com/andersjohansson/emacs-zotero-bib-fetch | |
;; Keywords: zotero, emacs, reftex, bibtex, bibliography manager |
This file contains 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
[core] | |
cache_dir = $XDG_CACHE_DIR/mopidy | |
config_dir = $XDG_CONFIG_DIR/mopidy | |
data_dir = $XDG_DATA_DIR/mopidy | |
max_tracklist_length = 10000 | |
[logging] | |
color = true | |
console_format = %(levelname)-8s %(message)s | |
debug_format = %(levelname)-8s %(asctime)s [%(process)d:%(threadName)s] %(name)s\n %(message)s |
This file contains 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
;;; Exporting | |
(add-hook 'org-export-before-parsing-hook #'aj/ox-inline-comment) | |
(defun aj/ox-inline-comment (backend) | |
(when (member backend '(latex odt)) | |
(save-excursion | |
(goto-char (point-min)) | |
(while (search-forward-regexp | |
"❰\\(?3:\\[[^\]]+\\] \\)?\\(?1:[^❱❙]+\\)\\(?:❙\\(?3:\\[[^\]]+\\] \\)?\\(?2:[^❱]+\\)\\)?❱" | |
nil t) |
This file contains 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
(advice-add 'org-clock-select-task :override #'aj/helm-org-clock-select-task) | |
(defun aj/helm-org-clock-select-task (&optional prompt) | |
"Select a task that was recently associated with clocking." | |
(interactive) | |
;; TODO sources for these | |
;; (when (marker-buffer org-clock-default-task) | |
;; (insert (org-add-props "Default Task\n" nil 'face 'bold)) | |
;; (setq s (org-clock-insert-selection-line ?d org-clock-default-task)) |
This file contains 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
(require 'org-zotxt) | |
(require 'org-pdcite) | |
(setq org-zotxt-link-description-style :betterbibtexkey) | |
(org-add-link-type | |
"zotero" | |
(lambda (rest) | |
(zotxt-select-key (substring rest 15))) | |
#'aj/org-zotero-link)) |